Hi
I want to call a remote business process to get some work done and if it success it will return an information that it worked or not. I tried using the RPCManager sendRequest like
Well this is not working as written in the documentation because the ip 192.168.8.185 is not the domain where my smartclient page is running. My question is there not a similar way like the RPCManager.sendRequest to send requests to a remote server?
Thanks,
Jeronimo
I want to call a remote business process to get some work done and if it success it will return an information that it worked or not. I tried using the RPCManager sendRequest like
Code:
isc.RPCManager.sendRequest({ actionURL: "http://192.168.8.185:8080/place/location", httpMethod:"GET", useSimpleHttp:true, params:{ "var1":"48", "var2":"D1-11-8-23" }, serverOutputAsString: true, callback: "Myshow(rpcResponse, data, rpcRequest)" }); function Myshow(rpcResponse, data, rpcRequest) { isc.say(rpcResponse); }
Thanks,
Jeronimo
Comment