Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>That's a very broad question. At a high level, SOAP refers to the XML protocol of the messages that travel back and forth. WSDL is another XML protocol that defines the format of the SOAP messages (very useful for tools that translate SOAP requests and responses for you). Typically a SOAP service endpoint will also have a way to access the static WSDL document about that service (e.g. if a service is hosted at <a href="http://myservice.com/services/MyService" rel="nofollow noreferrer">http://myservice.com/services/MyService</a>, the WSDL will usually be served from <a href="http://myservice.com/services/MyService?WSDL" rel="nofollow noreferrer">http://myservice.com/services/MyService?WSDL</a> in most implementations). UDDI is yet another XML protocol that describes queries to a registry asking for information about SOAP services stored there.</p> <p>Learn SOAP and WSDL first. UDDI is not all that widely used (although getting more so slowly). JAXR is the Java API around UDDI, which means that you probably should never need to write a raw UDDI query yourself.</p> <p>JAXP is just a Java XML parser API. It can be used for lots of things, not just SOAP and WSDL. <a href="http://ws.apache.org/axis2" rel="nofollow noreferrer">Apache Axis</a> is a good Java SOAP client tool, and <a href="http://sourceforge.net/projects/wsdl4j" rel="nofollow noreferrer">wsdl4j</a> is a good WSDL parsing tool, although Axis will also autogenerate SOAP requests and responses from Java objects for you by parsing WSDL. Optimally, you should never need to parse a WSDL document yourself, but you often have to in practice when the tool doesn't quite do what you want.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload