Soap Section Index | Page 2
What is UDDI?
Ariba, IBM, and Microsoft developed the first version of UDDI, the Universal Description, Discovery and Integration specification. As the name suggests, UDDI allows a business to describe the ser...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.
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 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
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
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
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
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
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
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
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.
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
Where can i find sample code for a simple, general purpose SOAP client in Java that uses no specialized SOAP libraries?
Here are some pointers to sample java code that do not use any toolkits:
Listing 1. The complete SOAP client
Chapter 3. Writing XML with Java
more