Soap Section Index | Page 2
Where can i find a sample SOAP client using Apache SOAP for Java?
http://www.soapuser.com/client2.html
Is there a Developers Guide to implementing Web Services with J2EE?
Developer's Guide to Building XML-based Web Services with the Java 2 Platform, Enterprise Edition (J2EE)more
What is JAX Pack? What does it contain?
http://java.sun.com/xml/jaxpack.html is a bundle of XML technologies from SUN. It supports SAX, DOM, XSLT, SOAP, UDDI, ebXML, and WSDL into one convenient download.more
What are Web Services? What are the Web Services Standards?
Web services constitute a distributed computer architecture made up of many different computers trying to communicate over the network to form one system. They consist of a set of standards that ...more
Are there tools to test SOAP-based Web Services?
PushToTest is a free open-source utility for testing SOAP-based Web services for scalability and performance.
Does tomcat support Web Services?
No, Tomcat has no built-in support for Web Services. However, since Web Services are all built on HTTP, it is possible to write your own SOAP or XML-RPC servlet.
Are there toolkits that automatically generate service proxy code from a WSDL service description?
IBM's http://www.alphaworks.ibm.com/tech/webservicestoolkit ServiceGen and ProxyGen utilities that can create a service proxy from a WSDL service description.
more
Can i mix SOAP, SSL and digital signatures? Where can i read up about how to do it?
IBM's DeveloperWorks has an article:
http://www-106.ibm.com/developerworks/webservices/library/ws-soapsec/more
What are the namespaces that are usually used in SOAP messages? Where can i get more information about them?
1. xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
2. xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
3. xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
4. xmlns:xsd=...more
I'm just getting started with SOAP. Where can I find tutorials on SOAP programming?
Try these links:
http://www.w3schools.com/SOAP/default.asp
http://www.onjava.com/pub/a/
onjava/excerpt/java_xml_2_ch2/index.html http://www-106.ibm.com/developerworks/lib
rary/ws-peer2/ http:/...more
How can i debug SOAP traffic?
Apache SOAP has a TCP tunneling GUI that can be used. More information can be found at:
http://www-106.ibm.com/developerworks/webservices/library/ws-peer3/?dwzone=wsmore
What is SUN doing in the area of SOAP and Web Services?
Java APIs for XML Messaging (JAXM)
SOAP Messaging Using the JavaTM API for XML Messaging (JAXM)
SOAP 1.1 in the JavaTM Platform: Introducing the Java API for XML based RPC (JAX-RPC)
CREATING WEB ...more
Has Microsoft bundled support for a SOAP Client with Windows XP?
Yes. There's an Overview of SOAP Client in Windows XP at MSDN.
Do i have to use SOAP to tunnel through firewalls? Are there any alternatives?
Tunneling through the corporate network shows you how to implement HTTP tunneling with servlets.more
Are there tools to look at the SOAP messages between my client and the server?
There are tools like proxyTrace that allow you to debug the SOAP messages.