Click here to Skip to main content
16,018,353 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
There is no functionality of javascript.js performed. If I start the program I only receive a printout of javascript.js text on the screen. Like:
/*****************************************************************************\ Javascript "SOAP Client" library @version: 1.4 - 2005.12.10 @author: Matteo Casati, Ihar Voitka - http://www.guru4.net/ @description: (1) ..... and so on

What I have tried:

<script type="text/javascript" src="./JS/soapclient.js">

function getService()
{
	var parm = new SOAPClientParameters();
	parm.add("address location", "https://10.196.2.98/servicemanager/1");
	var result = SOAPClient.Invoke("./wsdl/ServiceManager.wsdl", "getServices", parm, true, getService_callback);
}

function getService_callback(services)
{
	alert(services);
}
</script>
Posted
Updated 10-Sep-17 1:43am

1 solution

Sorry, it was a double definition in include files
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900