Written by

Senior Startups and Community Programs Manager at InterSystems Corporation
Question Evgeny Shvarov · Jul 9, 2017

How to Get the Source Code of a Class on Remote Server?

Hi, folks!

I need to get the source code of a class installed on a remote server. I have no Studio or Atelier access to it but I can manage REST and Web terminal access.

What is the easiest way for me to make it?

Comments

Herman Slagman · Jul 9, 2017

Will you be able to use the Atelier REST services ?

%Api.Atelier.v1.GetDoc 

0
Evgeny Shvarov  Jul 9, 2017 to Herman Slagman

Hi, Herman! 

Thanks! I'll give it a try!

0
Eduard Lebedyuk · Jul 9, 2017
do ##class(%Compiler.UDL.TextServices).GetTextAsString(namespace, class, .text)
write text
0