Soap Section Index
What is WSDL?
WSDL is a language for describing the capabilities of Web services. Proposed by IBM and Microsoft, WSDL combines the best of IBMs NASSL (Network Accessible Services Language) and Microsoft ...more
what is ebXML?
ebXML is a modular suite of specifications that enables enterprises of any size and in any geographical location to conduct business over the Internet. Using ebXML, companies now have a standard m...more
Exception handling in Apache-SOAP - Is there a way of catching server exceptions in the client side?
If you go to the site http://www.onjava.com/pub/a/onjava/excerpt/java_xml_2_ch2/index.html, you can find examples on how to catch server exceptions. Here's an example:
response = call.invoke(url,...more
I want to run a query against a UDDI Registry...Should i use Apache SOAP or Apache Axis to create a SOAP Message myself and run it against the Registry? Is there a better way since i don't want to know the guts of UDDI messages?
If you are just interested in accessing a UDDI Registry and don't want to know the innards of UDDI, you should consider using a client API like the one from http://www.uddi4j.org.more
Can i have a sample JAXM Client that connects to say a Stock Quote Service from XMethods.net?
Here's a sample JAXM Client that connects to "Delayed Stock Quote" Service from http://www.xmethods.net/. JAXM is part of the Winter JAX Pack that can be downloaded from http://java.sun.com/xml/do...more
Can i use JAXM to run a UDDI Query against say IBM's UDDI Registry?
Here's a stand-alone JAXM Client that can connect to IBM's UDDI Registry found at https://www-3.ibm.com/services/uddi/protect/registry.html.
import javax.xml.soap.*;
import javax.xml.messaging.*...more
How can i find SOAP Services that other people/companies have exposed?
There are two competing standards for SOAP Registry:
UDDI
ebXML
A detailed article on UDDI, WSDL can be found at:
http://www-106.ibm.com/developerworks/webservices/library/ws-wsdl3/?dwzone=we...more
What is JAX-RPC? What is JAXM? What is the difference between the two?
JAX/RPC
To aid developers in building XML-based requests such as SOAP requests, The JCP is developing the Java APIs for XML based RPC
(JAX/RPC). JAX/RPC is used for sending and receiving (in...more
Is there a white paper that provides an overview of the web services APIs currently available or soon to be available from SUN?
http://java.sun.com/xml/webservices.pdf
ebXML Messaging Service Implementation. Does anybody Implemented ebXML Messaging Service?
ebXML Messaging Service Implementation
does anybody Implemented ebXML Messaging Service?
I am trying the implementation of
ebXML Messaging. do any body implementated the ebXML MS?, let me know, a...more
How to send attachment using soap? Where can I find article or example on how to send attachment using soap?
Check out the apache SOAP libs.
(http://xml.apache.org/soap). It contains
an example in samples/mime/MimeTest*.
Enjoy,
- Filip
Where can i get an overview of JAXM with some sample code?
Web Services Journal has an article:
JAXM: Interoperable SOAP Communications for the Java Platform.
Is SOAP secure?
SOAP is as secure as HTTP is...SOAP travels across HTTP and enters via port 80, as does HTTP. The only difference is that a SOAP message carries a payload of XML, whereas HTTP would normally carry...more
My Java based SOAP Service needs to external connections in the internet but it is behind a proxy server (on an intranet). How do I tunnel through the firewall?
Suppose your proxy server is called "proxy.foo.com" and it is on port 9999.
There are a couple of ways of configuring Apache to use a proxy. One solution is to use the JVM capabilities to deal wit...more
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