I've
been looking through the SOAP source code to help resolve a problem I've been
having, and came across something unexpected. For testing purposes, I've
been trying to connect to the IBM test UDDI server using through Java using an
HTTPUrlConnection. (Remember, this is just for testing...) Every
time I try to connect, I get the following error:
Getting an input stream...
java.io.FileNotFoundException: http://www-3.ibm.com/services/uddi/testregistry/inquiryapi
So,
I went pouring through the SOAP HTTP transport source code, and I notice that
the connections are all done using sockets. Was this because the
URLConnection is limited, and consistently fails trying to connect to a servlet,
or is there some other reasoning?
Anybody have any ideas?
Thanks!