Well this will be my first question in the forum, so please be kind. I am a novice wM user.
I have written a webservice client in core Java before I owned wM. To get outside my firewall, I MUST use a http socks proxy server. So connecting to a secure http webservice took some time.
The solution involved sockets. First a socket is created from the application server, to the proxy server. Then a string command is sent to the proxy server:
String msg = "CONNECT " + sslHost + ":" + sslPort + " HTTP/1.0\n" +
"User-Agent: " +
sun.net.www.protocol.http.HttpURLConnection.userAgent +
"\r\n\r\n";
After that magic happens and the client utilizes the webservice. My questions are as follows,
- How can I read the WSDL file from the https web service into Developer
- How can I set up a proxy tunnel in a similar fashion to the java application described above
If all else fails, would wrapping this java application into the IS make sense? Is this described in the documentation?
Thanks again for the help everyone, much appreciated.