TB
I need to call a webservice to get information about a person.
something like:
http://xxxx.xxx.de:8085/gelb_dev/servlet/madetail?uid=xxx&mode=xml
It will return a XML file.
How can I make an external Call in a Javascript Report?
Thomas
Hello,
You can use java object in Aris Script. For exemple, if you want to create a java String:
var myString = java.lang.String("hello ");
In your case, you can try to use the java.net.URL object :
var result = new java.net.URL(“http://xxxx.xxx.de:8085/.../madetail?uid=xxx&mode=xml”).getContent();
See online java doc to use the URL object
Best Regards,