You are viewing a plain text version of this content. The canonical link for it is here.
Posted to soap-user@ws.apache.org by "Paul J. Caritj" <pc...@riovia.net> on 2002/11/19 23:30:51 UTC

NoClassDefFoundError: org/apache/soap/Envelope

Greetings,

I have an annoying little problem pertaining to SOAP-Messaging. When I
attempt to invoke a soap messaging service I get the following fault
(shown in relevant part):

<faultactor>/soap/servlet/messagerouter</faultactor>
<detail>
<stackTrace>java.lang.NoClassDefFoundError: org/apache/soap/Envelope
        at java.lang.Class.getDeclaredMethods0(Native Method)
        at java.lang.Class.privateGetDeclaredMethods(Class.java:1627)
        at java.lang.Class.privateGetPublicMethods(Class.java:1655)
        at java.lang.Class.getMethod0(Class.java:1744)
        at java.lang.Class.getMethod(Class.java:963)

I was hoping someone could throw me a line :) RPC style services work
just fine. I'm using Tomcat 1.4.12 and Apache SOAP 2.3 on Redhat 8.0


Also, on a related note, is it my imagination or is there a grievous
shortage of documentation on the use of Soap-Messaging (EDI, or what
have you)? Every book I have read (and Apache's own documentation)
focuses heavily on RPC style. Does anyone know of a
book/website/anything that covers Messaging thoroughly? (preferably in
Java, but I'll take what I can get)

Best Regards,
Paul Caritj


 




Re: NoClassDefFoundError: org/apache/soap/Envelope

Posted by "Paul J. Caritj" <pc...@riovia.net>.
Scott,
Many thanks. I've been looking for a resolution for this problem in all
the documentation I could find but to no avail; a search for this error
on Google brings up a total of one response (an unanswered question
posted to a group such at this in December 2001). 

Kudos.

On Tue, 2002-11-19 at 23:46, Scott Nichol wrote:
> Paul,
> 
> You have probably put your service class at a different level than
> Apache SOAP in the Tomcat class loader delegation chain.  Because
> messaging service classes rely on Apache SOAP classes (Envelope,
> SOAPContext), they must be loaded by a class loader that can also load
> the Apache SOAP classes.  If you have deployed Apache SOAP as a Tomcat
> webapp (which you should), you must make your service class (and
> dependent classes) part of the webapp as well, i.e. put it under
> $CATALINA_HOME/webapps/soap/WEB-INF/classes.  My guess is you put the
> class in $CATALINA_HOME/classes, the class loader for which cannot load
> the Apache SOAP classes.
> 
> Scott Nichol
> 
> ----- Original Message -----
> From: "Paul J. Caritj" <pc...@riovia.net>
> To: <so...@xml.apache.org>
> Sent: Tuesday, November 19, 2002 5:30 PM
> Subject: NoClassDefFoundError: org/apache/soap/Envelope
> 
> 
> > Greetings,
> >
> > I have an annoying little problem pertaining to SOAP-Messaging. When I
> > attempt to invoke a soap messaging service I get the following fault
> > (shown in relevant part):
> >
> > <faultactor>/soap/servlet/messagerouter</faultactor>
> > <detail>
> > <stackTrace>java.lang.NoClassDefFoundError: org/apache/soap/Envelope
> >         at java.lang.Class.getDeclaredMethods0(Native Method)
> >         at java.lang.Class.privateGetDeclaredMethods(Class.java:1627)
> >         at java.lang.Class.privateGetPublicMethods(Class.java:1655)
> >         at java.lang.Class.getMethod0(Class.java:1744)
> >         at java.lang.Class.getMethod(Class.java:963)
> >
> > I was hoping someone could throw me a line :) RPC style services work
> > just fine. I'm using Tomcat 1.4.12 and Apache SOAP 2.3 on Redhat 8.0
> >
> >
> > Also, on a related note, is it my imagination or is there a grievous
> > shortage of documentation on the use of Soap-Messaging (EDI, or what
> > have you)? Every book I have read (and Apache's own documentation)
> > focuses heavily on RPC style. Does anyone know of a
> > book/website/anything that covers Messaging thoroughly? (preferably in
> > Java, but I'll take what I can get)
> >
> > Best Regards,
> > Paul Caritj
> >
> >
> >
> >
> >
> >
> >
> > --
> > To unsubscribe, e-mail:
> <ma...@xml.apache.org>
> > For additional commands, e-mail:
> <ma...@xml.apache.org>
> >
> >
> 
> 
> --
> To unsubscribe, e-mail:   <ma...@xml.apache.org>
> For additional commands, e-mail: <ma...@xml.apache.org>
> 
> 



Re: NoClassDefFoundError: org/apache/soap/Envelope

Posted by "Paul J. Caritj" <pc...@riovia.net>.
Scott,
Many thanks. I've been looking for a resolution for this problem in all
the documentation I could find but to no avail; a search for this error
on Google brings up a total of one response (an unanswered question
posted to a group such at this in December 2001). 

Kudos.

On Tue, 2002-11-19 at 23:46, Scott Nichol wrote:
> Paul,
> 
> You have probably put your service class at a different level than
> Apache SOAP in the Tomcat class loader delegation chain.  Because
> messaging service classes rely on Apache SOAP classes (Envelope,
> SOAPContext), they must be loaded by a class loader that can also load
> the Apache SOAP classes.  If you have deployed Apache SOAP as a Tomcat
> webapp (which you should), you must make your service class (and
> dependent classes) part of the webapp as well, i.e. put it under
> $CATALINA_HOME/webapps/soap/WEB-INF/classes.  My guess is you put the
> class in $CATALINA_HOME/classes, the class loader for which cannot load
> the Apache SOAP classes.
> 
> Scott Nichol
> 
> ----- Original Message -----
> From: "Paul J. Caritj" <pc...@riovia.net>
> To: <so...@xml.apache.org>
> Sent: Tuesday, November 19, 2002 5:30 PM
> Subject: NoClassDefFoundError: org/apache/soap/Envelope
> 
> 
> > Greetings,
> >
> > I have an annoying little problem pertaining to SOAP-Messaging. When I
> > attempt to invoke a soap messaging service I get the following fault
> > (shown in relevant part):
> >
> > <faultactor>/soap/servlet/messagerouter</faultactor>
> > <detail>
> > <stackTrace>java.lang.NoClassDefFoundError: org/apache/soap/Envelope
> >         at java.lang.Class.getDeclaredMethods0(Native Method)
> >         at java.lang.Class.privateGetDeclaredMethods(Class.java:1627)
> >         at java.lang.Class.privateGetPublicMethods(Class.java:1655)
> >         at java.lang.Class.getMethod0(Class.java:1744)
> >         at java.lang.Class.getMethod(Class.java:963)
> >
> > I was hoping someone could throw me a line :) RPC style services work
> > just fine. I'm using Tomcat 1.4.12 and Apache SOAP 2.3 on Redhat 8.0
> >
> >
> > Also, on a related note, is it my imagination or is there a grievous
> > shortage of documentation on the use of Soap-Messaging (EDI, or what
> > have you)? Every book I have read (and Apache's own documentation)
> > focuses heavily on RPC style. Does anyone know of a
> > book/website/anything that covers Messaging thoroughly? (preferably in
> > Java, but I'll take what I can get)
> >
> > Best Regards,
> > Paul Caritj
> >
> >
> >
> >
> >
> >
> >
> > --
> > To unsubscribe, e-mail:
> <ma...@xml.apache.org>
> > For additional commands, e-mail:
> <ma...@xml.apache.org>
> >
> >
> 
> 
> --
> To unsubscribe, e-mail:   <ma...@xml.apache.org>
> For additional commands, e-mail: <ma...@xml.apache.org>
> 
> 



--
To unsubscribe, e-mail:   <ma...@xml.apache.org>
For additional commands, e-mail: <ma...@xml.apache.org>


Re: WSIF

Posted by Sanjiva Weerawarana <sa...@watson.ibm.com>.
Hi Paul,

THe specific problem you're having is that the server at 
192.168.8.31:8080 is not sending a content-type header for
WSDL files. I'd guess you're using Tomcat- I reported that
as a bug a while back but don't know what was done. (The
default mime.types should be updated.)

You can of course configure the server to send back a type-
edit the mime.types file yourself.

There are a couple of articles about WSIF by Nirmal Mukhi
on developerWorks which may help you. Also, please direct 
WSIF questions to axis-dev@xml.apache.org with the word [WSIF] 
in the subject.

Bye,

Sanjiva.


----- Original Message ----- 
From: "Paul J. Caritj" <pc...@riovia.net>
To: <so...@xml.apache.org>
Sent: Thursday, November 21, 2002 4:17 AM
Subject: WSIF


> Greetings,
> Does anyone out there know of a good guide/tutorial/intro to WSIF? I'm
> *attempting* to use IBM's WSIF package but to no avail.
> 
> Here is what I get back when I try to invoke the service using IBMs
> WSIF:
> 
> Exception in thread "main" WSDLException: faultCode=OTHER_ERROR: Unable
> to resolve imported document at
> 'http://192.168.0.31:8080/soap/RPCMultiplierService.wsdl'.: no
> content-type: java.net.UnknownServiceException: no content-type
>         at
> java.net.URLConnection.getContentHandler(URLConnection.java:1059)
>         at java.net.URLConnection.getContent(URLConnection.java:583)
>         at java.net.URL.getContent(URL.java:974)
>         at
> com.ibm.wsdl.util.StringUtils.getContentAsReader(StringUtils.java:356)
>         at com.ibm.wsdl.xml.WSDLReader.readWSDL(WSDLReader.java:1027)
>         at com.ibm.wsif.stub.WSIFUtils.readWSDL(WSIFUtils.java:326)
>         at Main.main(Main.java:39)
>         at com.ibm.wsdl.xml.WSDLReader.readWSDL(WSDLReader.java:1040)
>         at com.ibm.wsif.stub.WSIFUtils.readWSDL(WSIFUtils.java:326)
>         at Main.main(Main.java:39)
> 
> I really have no idea what I'm doing as I have yet to find a
> comprehensive explanation of how to use WSIF. It is also worth noting
> that I am *not* using UDDI in conjunction with this (I'm merely passing
> a literal URL to the target WSDL file).
> 
> Thoughts, anyone?
> 
> 
> --
> To unsubscribe, e-mail:   <ma...@xml.apache.org>
> For additional commands, e-mail: <ma...@xml.apache.org>


Re: WSIF

Posted by Scott Nichol <sn...@scottnichol.com>.
I don't know much about WSIF, but I do know that it is now a subproject
of Apache Axis.  As such, the newest code and docs would be there.

Scott Nichol

----- Original Message -----
From: "Paul J. Caritj" <pc...@riovia.net>
To: <so...@xml.apache.org>
Sent: Thursday, November 21, 2002 4:17 AM
Subject: WSIF


> Greetings,
> Does anyone out there know of a good guide/tutorial/intro to WSIF? I'm
> *attempting* to use IBM's WSIF package but to no avail.
>
> Here is what I get back when I try to invoke the service using IBMs
> WSIF:
>
> Exception in thread "main" WSDLException: faultCode=OTHER_ERROR:
Unable
> to resolve imported document at
> 'http://192.168.0.31:8080/soap/RPCMultiplierService.wsdl'.: no
> content-type: java.net.UnknownServiceException: no content-type
>         at
> java.net.URLConnection.getContentHandler(URLConnection.java:1059)
>         at java.net.URLConnection.getContent(URLConnection.java:583)
>         at java.net.URL.getContent(URL.java:974)
>         at
> com.ibm.wsdl.util.StringUtils.getContentAsReader(StringUtils.java:356)
>         at com.ibm.wsdl.xml.WSDLReader.readWSDL(WSDLReader.java:1027)
>         at com.ibm.wsif.stub.WSIFUtils.readWSDL(WSIFUtils.java:326)
>         at Main.main(Main.java:39)
>         at com.ibm.wsdl.xml.WSDLReader.readWSDL(WSDLReader.java:1040)
>         at com.ibm.wsif.stub.WSIFUtils.readWSDL(WSIFUtils.java:326)
>         at Main.main(Main.java:39)
>
> I really have no idea what I'm doing as I have yet to find a
> comprehensive explanation of how to use WSIF. It is also worth noting
> that I am *not* using UDDI in conjunction with this (I'm merely
passing
> a literal URL to the target WSDL file).
>
> Thoughts, anyone?
>
>
> --
> To unsubscribe, e-mail:
<ma...@xml.apache.org>
> For additional commands, e-mail:
<ma...@xml.apache.org>
>
>


--
To unsubscribe, e-mail:   <ma...@xml.apache.org>
For additional commands, e-mail: <ma...@xml.apache.org>


Re: WSIF

Posted by Scott Nichol <sn...@scottnichol.com>.
I don't know much about WSIF, but I do know that it is now a subproject
of Apache Axis.  As such, the newest code and docs would be there.

Scott Nichol

----- Original Message -----
From: "Paul J. Caritj" <pc...@riovia.net>
To: <so...@xml.apache.org>
Sent: Thursday, November 21, 2002 4:17 AM
Subject: WSIF


> Greetings,
> Does anyone out there know of a good guide/tutorial/intro to WSIF? I'm
> *attempting* to use IBM's WSIF package but to no avail.
>
> Here is what I get back when I try to invoke the service using IBMs
> WSIF:
>
> Exception in thread "main" WSDLException: faultCode=OTHER_ERROR:
Unable
> to resolve imported document at
> 'http://192.168.0.31:8080/soap/RPCMultiplierService.wsdl'.: no
> content-type: java.net.UnknownServiceException: no content-type
>         at
> java.net.URLConnection.getContentHandler(URLConnection.java:1059)
>         at java.net.URLConnection.getContent(URLConnection.java:583)
>         at java.net.URL.getContent(URL.java:974)
>         at
> com.ibm.wsdl.util.StringUtils.getContentAsReader(StringUtils.java:356)
>         at com.ibm.wsdl.xml.WSDLReader.readWSDL(WSDLReader.java:1027)
>         at com.ibm.wsif.stub.WSIFUtils.readWSDL(WSIFUtils.java:326)
>         at Main.main(Main.java:39)
>         at com.ibm.wsdl.xml.WSDLReader.readWSDL(WSDLReader.java:1040)
>         at com.ibm.wsif.stub.WSIFUtils.readWSDL(WSIFUtils.java:326)
>         at Main.main(Main.java:39)
>
> I really have no idea what I'm doing as I have yet to find a
> comprehensive explanation of how to use WSIF. It is also worth noting
> that I am *not* using UDDI in conjunction with this (I'm merely
passing
> a literal URL to the target WSDL file).
>
> Thoughts, anyone?
>
>
> --
> To unsubscribe, e-mail:
<ma...@xml.apache.org>
> For additional commands, e-mail:
<ma...@xml.apache.org>
>
>


Re: WSIF

Posted by Sanjiva Weerawarana <sa...@watson.ibm.com>.
Hi Paul,

THe specific problem you're having is that the server at 
192.168.8.31:8080 is not sending a content-type header for
WSDL files. I'd guess you're using Tomcat- I reported that
as a bug a while back but don't know what was done. (The
default mime.types should be updated.)

You can of course configure the server to send back a type-
edit the mime.types file yourself.

There are a couple of articles about WSIF by Nirmal Mukhi
on developerWorks which may help you. Also, please direct 
WSIF questions to axis-dev@xml.apache.org with the word [WSIF] 
in the subject.

Bye,

Sanjiva.


----- Original Message ----- 
From: "Paul J. Caritj" <pc...@riovia.net>
To: <so...@xml.apache.org>
Sent: Thursday, November 21, 2002 4:17 AM
Subject: WSIF


> Greetings,
> Does anyone out there know of a good guide/tutorial/intro to WSIF? I'm
> *attempting* to use IBM's WSIF package but to no avail.
> 
> Here is what I get back when I try to invoke the service using IBMs
> WSIF:
> 
> Exception in thread "main" WSDLException: faultCode=OTHER_ERROR: Unable
> to resolve imported document at
> 'http://192.168.0.31:8080/soap/RPCMultiplierService.wsdl'.: no
> content-type: java.net.UnknownServiceException: no content-type
>         at
> java.net.URLConnection.getContentHandler(URLConnection.java:1059)
>         at java.net.URLConnection.getContent(URLConnection.java:583)
>         at java.net.URL.getContent(URL.java:974)
>         at
> com.ibm.wsdl.util.StringUtils.getContentAsReader(StringUtils.java:356)
>         at com.ibm.wsdl.xml.WSDLReader.readWSDL(WSDLReader.java:1027)
>         at com.ibm.wsif.stub.WSIFUtils.readWSDL(WSIFUtils.java:326)
>         at Main.main(Main.java:39)
>         at com.ibm.wsdl.xml.WSDLReader.readWSDL(WSDLReader.java:1040)
>         at com.ibm.wsif.stub.WSIFUtils.readWSDL(WSIFUtils.java:326)
>         at Main.main(Main.java:39)
> 
> I really have no idea what I'm doing as I have yet to find a
> comprehensive explanation of how to use WSIF. It is also worth noting
> that I am *not* using UDDI in conjunction with this (I'm merely passing
> a literal URL to the target WSDL file).
> 
> Thoughts, anyone?
> 
> 
> --
> To unsubscribe, e-mail:   <ma...@xml.apache.org>
> For additional commands, e-mail: <ma...@xml.apache.org>


WSIF

Posted by "Paul J. Caritj" <pc...@riovia.net>.
Greetings,
Does anyone out there know of a good guide/tutorial/intro to WSIF? I'm
*attempting* to use IBM's WSIF package but to no avail.

Here is what I get back when I try to invoke the service using IBMs
WSIF:

Exception in thread "main" WSDLException: faultCode=OTHER_ERROR: Unable
to resolve imported document at
'http://192.168.0.31:8080/soap/RPCMultiplierService.wsdl'.: no
content-type: java.net.UnknownServiceException: no content-type
        at
java.net.URLConnection.getContentHandler(URLConnection.java:1059)
        at java.net.URLConnection.getContent(URLConnection.java:583)
        at java.net.URL.getContent(URL.java:974)
        at
com.ibm.wsdl.util.StringUtils.getContentAsReader(StringUtils.java:356)
        at com.ibm.wsdl.xml.WSDLReader.readWSDL(WSDLReader.java:1027)
        at com.ibm.wsif.stub.WSIFUtils.readWSDL(WSIFUtils.java:326)
        at Main.main(Main.java:39)
        at com.ibm.wsdl.xml.WSDLReader.readWSDL(WSDLReader.java:1040)
        at com.ibm.wsif.stub.WSIFUtils.readWSDL(WSIFUtils.java:326)
        at Main.main(Main.java:39)

I really have no idea what I'm doing as I have yet to find a
comprehensive explanation of how to use WSIF. It is also worth noting
that I am *not* using UDDI in conjunction with this (I'm merely passing
a literal URL to the target WSDL file).

Thoughts, anyone?


--
To unsubscribe, e-mail:   <ma...@xml.apache.org>
For additional commands, e-mail: <ma...@xml.apache.org>


WSIF

Posted by "Paul J. Caritj" <pc...@riovia.net>.
Greetings,
Does anyone out there know of a good guide/tutorial/intro to WSIF? I'm
*attempting* to use IBM's WSIF package but to no avail.

Here is what I get back when I try to invoke the service using IBMs
WSIF:

Exception in thread "main" WSDLException: faultCode=OTHER_ERROR: Unable
to resolve imported document at
'http://192.168.0.31:8080/soap/RPCMultiplierService.wsdl'.: no
content-type: java.net.UnknownServiceException: no content-type
        at
java.net.URLConnection.getContentHandler(URLConnection.java:1059)
        at java.net.URLConnection.getContent(URLConnection.java:583)
        at java.net.URL.getContent(URL.java:974)
        at
com.ibm.wsdl.util.StringUtils.getContentAsReader(StringUtils.java:356)
        at com.ibm.wsdl.xml.WSDLReader.readWSDL(WSDLReader.java:1027)
        at com.ibm.wsif.stub.WSIFUtils.readWSDL(WSIFUtils.java:326)
        at Main.main(Main.java:39)
        at com.ibm.wsdl.xml.WSDLReader.readWSDL(WSDLReader.java:1040)
        at com.ibm.wsif.stub.WSIFUtils.readWSDL(WSIFUtils.java:326)
        at Main.main(Main.java:39)

I really have no idea what I'm doing as I have yet to find a
comprehensive explanation of how to use WSIF. It is also worth noting
that I am *not* using UDDI in conjunction with this (I'm merely passing
a literal URL to the target WSDL file).

Thoughts, anyone?


Re: NoClassDefFoundError: org/apache/soap/Envelope

Posted by Scott Nichol <sn...@scottnichol.com>.
Paul,

You have probably put your service class at a different level than
Apache SOAP in the Tomcat class loader delegation chain.  Because
messaging service classes rely on Apache SOAP classes (Envelope,
SOAPContext), they must be loaded by a class loader that can also load
the Apache SOAP classes.  If you have deployed Apache SOAP as a Tomcat
webapp (which you should), you must make your service class (and
dependent classes) part of the webapp as well, i.e. put it under
$CATALINA_HOME/webapps/soap/WEB-INF/classes.  My guess is you put the
class in $CATALINA_HOME/classes, the class loader for which cannot load
the Apache SOAP classes.

Scott Nichol

----- Original Message -----
From: "Paul J. Caritj" <pc...@riovia.net>
To: <so...@xml.apache.org>
Sent: Tuesday, November 19, 2002 5:30 PM
Subject: NoClassDefFoundError: org/apache/soap/Envelope


> Greetings,
>
> I have an annoying little problem pertaining to SOAP-Messaging. When I
> attempt to invoke a soap messaging service I get the following fault
> (shown in relevant part):
>
> <faultactor>/soap/servlet/messagerouter</faultactor>
> <detail>
> <stackTrace>java.lang.NoClassDefFoundError: org/apache/soap/Envelope
>         at java.lang.Class.getDeclaredMethods0(Native Method)
>         at java.lang.Class.privateGetDeclaredMethods(Class.java:1627)
>         at java.lang.Class.privateGetPublicMethods(Class.java:1655)
>         at java.lang.Class.getMethod0(Class.java:1744)
>         at java.lang.Class.getMethod(Class.java:963)
>
> I was hoping someone could throw me a line :) RPC style services work
> just fine. I'm using Tomcat 1.4.12 and Apache SOAP 2.3 on Redhat 8.0
>
>
> Also, on a related note, is it my imagination or is there a grievous
> shortage of documentation on the use of Soap-Messaging (EDI, or what
> have you)? Every book I have read (and Apache's own documentation)
> focuses heavily on RPC style. Does anyone know of a
> book/website/anything that covers Messaging thoroughly? (preferably in
> Java, but I'll take what I can get)
>
> Best Regards,
> Paul Caritj
>
>
>
>
>
>
>
> --
> To unsubscribe, e-mail:
<ma...@xml.apache.org>
> For additional commands, e-mail:
<ma...@xml.apache.org>
>
>


Re: NoClassDefFoundError: org/apache/soap/Envelope

Posted by Scott Nichol <sn...@scottnichol.com>.
Paul,

You have probably put your service class at a different level than
Apache SOAP in the Tomcat class loader delegation chain.  Because
messaging service classes rely on Apache SOAP classes (Envelope,
SOAPContext), they must be loaded by a class loader that can also load
the Apache SOAP classes.  If you have deployed Apache SOAP as a Tomcat
webapp (which you should), you must make your service class (and
dependent classes) part of the webapp as well, i.e. put it under
$CATALINA_HOME/webapps/soap/WEB-INF/classes.  My guess is you put the
class in $CATALINA_HOME/classes, the class loader for which cannot load
the Apache SOAP classes.

Scott Nichol

----- Original Message -----
From: "Paul J. Caritj" <pc...@riovia.net>
To: <so...@xml.apache.org>
Sent: Tuesday, November 19, 2002 5:30 PM
Subject: NoClassDefFoundError: org/apache/soap/Envelope


> Greetings,
>
> I have an annoying little problem pertaining to SOAP-Messaging. When I
> attempt to invoke a soap messaging service I get the following fault
> (shown in relevant part):
>
> <faultactor>/soap/servlet/messagerouter</faultactor>
> <detail>
> <stackTrace>java.lang.NoClassDefFoundError: org/apache/soap/Envelope
>         at java.lang.Class.getDeclaredMethods0(Native Method)
>         at java.lang.Class.privateGetDeclaredMethods(Class.java:1627)
>         at java.lang.Class.privateGetPublicMethods(Class.java:1655)
>         at java.lang.Class.getMethod0(Class.java:1744)
>         at java.lang.Class.getMethod(Class.java:963)
>
> I was hoping someone could throw me a line :) RPC style services work
> just fine. I'm using Tomcat 1.4.12 and Apache SOAP 2.3 on Redhat 8.0
>
>
> Also, on a related note, is it my imagination or is there a grievous
> shortage of documentation on the use of Soap-Messaging (EDI, or what
> have you)? Every book I have read (and Apache's own documentation)
> focuses heavily on RPC style. Does anyone know of a
> book/website/anything that covers Messaging thoroughly? (preferably in
> Java, but I'll take what I can get)
>
> Best Regards,
> Paul Caritj
>
>
>
>
>
>
>
> --
> To unsubscribe, e-mail:
<ma...@xml.apache.org>
> For additional commands, e-mail:
<ma...@xml.apache.org>
>
>


--
To unsubscribe, e-mail:   <ma...@xml.apache.org>
For additional commands, e-mail: <ma...@xml.apache.org>