Hi florentlbI am getting the same Internal Server error.I am trying to
call an external Soap service through my Javascript activity. Here is my
code:document.cnx = new
HttpSoapConnection('http://www.dneonline.com/calculator.asmx', 'utf-8',
0)document.soapSrv = new SoapService(cnx,
'http://www.dneonline.com/calculator.asmx?op=Add')document.soapSrv.addMethod('Add',
'xtk:session#Add', ['intA', 'long','intB', 'long'], ['AddResult',
'long'])var soapResult = document.soapSrv.Add(1,2) if(
soapResult.*....