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 Mark Striebeck <ma...@web.de> on 2002/02/10 02:16:56 UTC

Apache/SOAP and jboss

Hi,

I know that there were already many requests about this. But so far I could
not find anything that really helped me.

I want to setup Apache/SOAP on top of jboss WITHOUT using Tomcat (or any
other servlet container). My current architecture does not require a servlet
engine and I don't like the idea to introduce one just for handling SOAP.

Re: Apache/SOAP and jboss

Posted by Christian Gruendemann <ch...@gruendemann.com>.
Hello all.

SOAP doesn't have to use HTTP.  E.g you could use smtp, if you find an 
implementation.
If you want to register your ejb at apache soap I guess you have to modify 
the apache source...

Using http-apache to the SOAP request isn't a good idea because it doesn't 
know how to handle apache-soap rpc messaging.

Why don't you write an servlet using jaxm (SUN) that uses jndi to locate your 
ejb? The ejb does the business stuff and returns a SOAPMesage to the client.
I guess this is an easy way, insteand of using java.net.* and DOM and many 
other stuff.   You won't get an exactly RPC style paradigma, but it is also 
uses  an Request/response technique.

e.g 

public class ReqResSOAPServlet extends JAXMServlet implements ReqRespListener 
{
    
	// is called, when a SOAPMessage arrives.
     public SOAPMessage onMessage(SOAPMessage message) {
        	
	SOAPMessage  reult = 	// do your buiness stuff, e.g call your ejb 		
	
     return result   
   }
}

I know this doesn't use Apache SOAP, but it works fine for me.. Maybe it 
helps you just to use SOAP.

Greetings,
Christian


On Monday 11 February 2002 01:04, you wrote:
> Ah, sorry, now I understand your question. Yes, it will arrive via http.
> But I want to avoid a complete servlet engine. So, I was thinking about
> three different solutions:
>
> 1. There are some low-level http server classes for Java. I could imagine
> using them.
>
> 2. Having only Apache in front of jboss to receive the request.
>
> 3. If I have to use the servlet engine, I want the EJB methods registered
> for the SOAP request (the examples I found are registering a servlet for
> the SOAP request and invoke - RMI - the EJBs)
>
> Thanks,
> 	MarkS
>
> > -----Original Message-----
> > From: William Brogden [mailto:wbrogden@bga.com]
> > Sent: Sunday, February 10, 2002 4:57 PM
> > To: soap-user@xml.apache.org
> > Subject: RE: Apache/SOAP and jboss
> >
> >
> > Exactly how is this SOAP message arriving? If it is coming
> > by HTTP you must have a servlet container in there somewhere.
> >
> > > -----Original Message-----
> > > From: mark.striebeck@web.de [mailto:mark.striebeck@web.de]
> > > Sent: Sunday, February 10, 2002 7:09 PM
> > > To: soap-user@xml.apache.org
> > > Subject: RE: Apache/SOAP and jboss
> > >
> > >
> > > Hi William,
> > >
> > > isn't there a way to connect the SOAP engine directly with the EJB
> > > container? I.e. I register my EJBs and their method in the
> > > SOAP engine and
> > > the get called when a SOAP request comes.
> > >
> > > MarkS
> > >
> > > > -----Original Message-----
> > > > From: William Brogden [mailto:wbrogden@bga.com]
> > > > Sent: Sunday, February 10, 2002 3:00 AM
> > > > To: soap-user@xml.apache.org
> > > > Subject: RE: Apache/SOAP and jboss
> > > >
> > > > > -----Original Message-----
> > > > > From: mark.striebeck@web.de [mailto:mark.striebeck@web.de]
> > > > > Sent: Saturday, February 09, 2002 8:17 PM
> > > > > To: soap-user@xml.apache.org
> > > > > Subject: Apache/SOAP and jboss
> > > > >
> > > > >
> > > > > Hi,
> > > > >
> > > > > I know that there were already many requests about this. But
> > > > > so far I could
> > > > > not find anything that really helped me.
> > > > >
> > > > > I want to setup Apache/SOAP on top of jboss WITHOUT using
> > > > > Tomcat (or any
> > > > > other servlet container). My current architecture does not
> > > > > require a servlet
> > > > > engine and I don't like the idea to introduce one just for
> > > > > handling SOAP.
> > > > >
> > > > > From the mails I found I get the impression that it is
> > > > > possible. But I could
> > > > > not find any step-by-step instruction or such. If somebody
> > > > > could point me
> > > > > there, I would be more than happy!
> > > > >
> > > > > Thank you,
> > > > > 	MarkS
> > > >
> > > > What is missing from your question is how you expect to
> > > > handle SOAP messages. Do you want messages over HTTP, eMail,
> > > > Java Message Service, JavaSpaces or what?
> > > >
> > > >
> > > > wbrogden@bga.com
> > > > Author of Soap Programming with Java - Sybex; ISBN: 0782129285

Re: Apache/SOAP and jboss

Posted by Christian Gruendemann <ch...@gruendemann.com>.
Hello all.

SOAP doesn't have to use HTTP.  E.g you could use smtp, if you find an 
implementation.
If you want to register your ejb at apache soap I guess you have to modify 
the apache source...

Using http-apache to the SOAP request isn't a good idea because it doesn't 
know how to handle apache-soap rpc messaging.

Why don't you write an servlet using jaxm (SUN) that uses jndi to locate your 
ejb? The ejb does the business stuff and returns a SOAPMesage to the client.
I guess this is an easy way, insteand of using java.net.* and DOM and many 
other stuff.   You won't get an exactly RPC style paradigma, but it is also 
uses  an Request/response technique.

e.g 

public class ReqResSOAPServlet extends JAXMServlet implements ReqRespListener 
{
    
	// is called, when a SOAPMessage arrives.
     public SOAPMessage onMessage(SOAPMessage message) {
        	
	SOAPMessage  reult = 	// do your buiness stuff, e.g call your ejb 		
	
     return result   
   }
}

I know this doesn't use Apache SOAP, but it works fine for me.. Maybe it 
helps you just to use SOAP.

Greetings,
Christian


On Monday 11 February 2002 01:04, you wrote:
> Ah, sorry, now I understand your question. Yes, it will arrive via http.
> But I want to avoid a complete servlet engine. So, I was thinking about
> three different solutions:
>
> 1. There are some low-level http server classes for Java. I could imagine
> using them.
>
> 2. Having only Apache in front of jboss to receive the request.
>
> 3. If I have to use the servlet engine, I want the EJB methods registered
> for the SOAP request (the examples I found are registering a servlet for
> the SOAP request and invoke - RMI - the EJBs)
>
> Thanks,
> 	MarkS
>
> > -----Original Message-----
> > From: William Brogden [mailto:wbrogden@bga.com]
> > Sent: Sunday, February 10, 2002 4:57 PM
> > To: soap-user@xml.apache.org
> > Subject: RE: Apache/SOAP and jboss
> >
> >
> > Exactly how is this SOAP message arriving? If it is coming
> > by HTTP you must have a servlet container in there somewhere.
> >
> > > -----Original Message-----
> > > From: mark.striebeck@web.de [mailto:mark.striebeck@web.de]
> > > Sent: Sunday, February 10, 2002 7:09 PM
> > > To: soap-user@xml.apache.org
> > > Subject: RE: Apache/SOAP and jboss
> > >
> > >
> > > Hi William,
> > >
> > > isn't there a way to connect the SOAP engine directly with the EJB
> > > container? I.e. I register my EJBs and their method in the
> > > SOAP engine and
> > > the get called when a SOAP request comes.
> > >
> > > MarkS
> > >
> > > > -----Original Message-----
> > > > From: William Brogden [mailto:wbrogden@bga.com]
> > > > Sent: Sunday, February 10, 2002 3:00 AM
> > > > To: soap-user@xml.apache.org
> > > > Subject: RE: Apache/SOAP and jboss
> > > >
> > > > > -----Original Message-----
> > > > > From: mark.striebeck@web.de [mailto:mark.striebeck@web.de]
> > > > > Sent: Saturday, February 09, 2002 8:17 PM
> > > > > To: soap-user@xml.apache.org
> > > > > Subject: Apache/SOAP and jboss
> > > > >
> > > > >
> > > > > Hi,
> > > > >
> > > > > I know that there were already many requests about this. But
> > > > > so far I could
> > > > > not find anything that really helped me.
> > > > >
> > > > > I want to setup Apache/SOAP on top of jboss WITHOUT using
> > > > > Tomcat (or any
> > > > > other servlet container). My current architecture does not
> > > > > require a servlet
> > > > > engine and I don't like the idea to introduce one just for
> > > > > handling SOAP.
> > > > >
> > > > > From the mails I found I get the impression that it is
> > > > > possible. But I could
> > > > > not find any step-by-step instruction or such. If somebody
> > > > > could point me
> > > > > there, I would be more than happy!
> > > > >
> > > > > Thank you,
> > > > > 	MarkS
> > > >
> > > > What is missing from your question is how you expect to
> > > > handle SOAP messages. Do you want messages over HTTP, eMail,
> > > > Java Message Service, JavaSpaces or what?
> > > >
> > > >
> > > > wbrogden@bga.com
> > > > Author of Soap Programming with Java - Sybex; ISBN: 0782129285

RE: Apache/SOAP and jboss

Posted by William Brogden <wb...@bga.com>.
You need at least the capability of getting an HTTP request and
parsing the XML into a call to the EJB, followed by formatting
the results and transmitting a response. That sounds like a
servlet operating in a servlet container to me.

You could strip everything out of a Tomcat installation except
for a single servlet derived from Apache SOAP by correct settings
in the server.xml and web.xml files.


> -----Original Message-----
> From: mark.striebeck@web.de [mailto:mark.striebeck@web.de] 
> Sent: Sunday, February 10, 2002 8:05 PM
> To: soap-user@xml.apache.org
> Subject: RE: Apache/SOAP and jboss
> 
> 
> Ah, sorry, now I understand your question. Yes, it will 
> arrive via http. But
> I want to avoid a complete servlet engine. So, I was thinking 
> about three
> different solutions:
> 
> 1. There are some low-level http server classes for Java. I 
> could imagine
> using them.
> 
> 2. Having only Apache in front of jboss to receive the request.
> 
> 3. If I have to use the servlet engine, I want the EJB 
> methods registered
> for the SOAP request (the examples I found are registering a 
> servlet for the
> SOAP request and invoke - RMI - the EJBs)
> 
> Thanks,
> 	MarkS
> 
> > -----Original Message-----
> > From: William Brogden [mailto:wbrogden@bga.com]
> > Sent: Sunday, February 10, 2002 4:57 PM
> > To: soap-user@xml.apache.org
> > Subject: RE: Apache/SOAP and jboss
> >
> >
> > Exactly how is this SOAP message arriving? If it is coming
> > by HTTP you must have a servlet container in there somewhere.
> >
> > > -----Original Message-----
> > > From: mark.striebeck@web.de [mailto:mark.striebeck@web.de]
> > > Sent: Sunday, February 10, 2002 7:09 PM
> > > To: soap-user@xml.apache.org
> > > Subject: RE: Apache/SOAP and jboss
> > >
> > >
> > > Hi William,
> > >
> > > isn't there a way to connect the SOAP engine directly with the EJB
> > > container? I.e. I register my EJBs and their method in the
> > > SOAP engine and
> > > the get called when a SOAP request comes.
> > >
> > > MarkS
> > >
> > > > -----Original Message-----
> > > > From: William Brogden [mailto:wbrogden@bga.com]
> > > > Sent: Sunday, February 10, 2002 3:00 AM
> > > > To: soap-user@xml.apache.org
> > > > Subject: RE: Apache/SOAP and jboss
> > > >
> > > >
> > > > > -----Original Message-----
> > > > > From: mark.striebeck@web.de [mailto:mark.striebeck@web.de]
> > > > > Sent: Saturday, February 09, 2002 8:17 PM
> > > > > To: soap-user@xml.apache.org
> > > > > Subject: Apache/SOAP and jboss
> > > > >
> > > > >
> > > > > Hi,
> > > > >
> > > > > I know that there were already many requests about this. But
> > > > > so far I could
> > > > > not find anything that really helped me.
> > > > >
> > > > > I want to setup Apache/SOAP on top of jboss WITHOUT using
> > > > > Tomcat (or any
> > > > > other servlet container). My current architecture does not
> > > > > require a servlet
> > > > > engine and I don't like the idea to introduce one just for
> > > > > handling SOAP.
> > > > >
> > > > > From the mails I found I get the impression that it is
> > > > > possible. But I could
> > > > > not find any step-by-step instruction or such. If somebody
> > > > > could point me
> > > > > there, I would be more than happy!
> > > > >
> > > > > Thank you,
> > > > > 	MarkS
> > > >
> > > > What is missing from your question is how you expect to
> > > > handle SOAP messages. Do you want messages over HTTP, eMail,
> > > > Java Message Service, JavaSpaces or what?
> > > >
> > > >
> > > > wbrogden@bga.com
> > > > Author of Soap Programming with Java - Sybex; ISBN: 0782129285
> > > >
> > > >
> > > >
> > > >
> > > >
> > >
> > >
> >
> >
> 
> 



RE: Apache/SOAP and jboss

Posted by William Brogden <wb...@bga.com>.
You need at least the capability of getting an HTTP request and
parsing the XML into a call to the EJB, followed by formatting
the results and transmitting a response. That sounds like a
servlet operating in a servlet container to me.

You could strip everything out of a Tomcat installation except
for a single servlet derived from Apache SOAP by correct settings
in the server.xml and web.xml files.


> -----Original Message-----
> From: mark.striebeck@web.de [mailto:mark.striebeck@web.de] 
> Sent: Sunday, February 10, 2002 8:05 PM
> To: soap-user@xml.apache.org
> Subject: RE: Apache/SOAP and jboss
> 
> 
> Ah, sorry, now I understand your question. Yes, it will 
> arrive via http. But
> I want to avoid a complete servlet engine. So, I was thinking 
> about three
> different solutions:
> 
> 1. There are some low-level http server classes for Java. I 
> could imagine
> using them.
> 
> 2. Having only Apache in front of jboss to receive the request.
> 
> 3. If I have to use the servlet engine, I want the EJB 
> methods registered
> for the SOAP request (the examples I found are registering a 
> servlet for the
> SOAP request and invoke - RMI - the EJBs)
> 
> Thanks,
> 	MarkS
> 
> > -----Original Message-----
> > From: William Brogden [mailto:wbrogden@bga.com]
> > Sent: Sunday, February 10, 2002 4:57 PM
> > To: soap-user@xml.apache.org
> > Subject: RE: Apache/SOAP and jboss
> >
> >
> > Exactly how is this SOAP message arriving? If it is coming
> > by HTTP you must have a servlet container in there somewhere.
> >
> > > -----Original Message-----
> > > From: mark.striebeck@web.de [mailto:mark.striebeck@web.de]
> > > Sent: Sunday, February 10, 2002 7:09 PM
> > > To: soap-user@xml.apache.org
> > > Subject: RE: Apache/SOAP and jboss
> > >
> > >
> > > Hi William,
> > >
> > > isn't there a way to connect the SOAP engine directly with the EJB
> > > container? I.e. I register my EJBs and their method in the
> > > SOAP engine and
> > > the get called when a SOAP request comes.
> > >
> > > MarkS
> > >
> > > > -----Original Message-----
> > > > From: William Brogden [mailto:wbrogden@bga.com]
> > > > Sent: Sunday, February 10, 2002 3:00 AM
> > > > To: soap-user@xml.apache.org
> > > > Subject: RE: Apache/SOAP and jboss
> > > >
> > > >
> > > > > -----Original Message-----
> > > > > From: mark.striebeck@web.de [mailto:mark.striebeck@web.de]
> > > > > Sent: Saturday, February 09, 2002 8:17 PM
> > > > > To: soap-user@xml.apache.org
> > > > > Subject: Apache/SOAP and jboss
> > > > >
> > > > >
> > > > > Hi,
> > > > >
> > > > > I know that there were already many requests about this. But
> > > > > so far I could
> > > > > not find anything that really helped me.
> > > > >
> > > > > I want to setup Apache/SOAP on top of jboss WITHOUT using
> > > > > Tomcat (or any
> > > > > other servlet container). My current architecture does not
> > > > > require a servlet
> > > > > engine and I don't like the idea to introduce one just for
> > > > > handling SOAP.
> > > > >
> > > > > From the mails I found I get the impression that it is
> > > > > possible. But I could
> > > > > not find any step-by-step instruction or such. If somebody
> > > > > could point me
> > > > > there, I would be more than happy!
> > > > >
> > > > > Thank you,
> > > > > 	MarkS
> > > >
> > > > What is missing from your question is how you expect to
> > > > handle SOAP messages. Do you want messages over HTTP, eMail,
> > > > Java Message Service, JavaSpaces or what?
> > > >
> > > >
> > > > wbrogden@bga.com
> > > > Author of Soap Programming with Java - Sybex; ISBN: 0782129285
> > > >
> > > >
> > > >
> > > >
> > > >
> > >
> > >
> >
> >
> 
> 



RE: Apache/SOAP and jboss

Posted by Mark Striebeck <ma...@web.de>.
Ah, sorry, now I understand your question. Yes, it will arrive via http. But
I want to avoid a complete servlet engine. So, I was thinking about three
different solutions:

1. There are some low-level http server classes for Java. I could imagine
using them.

2. Having only Apache in front of jboss to receive the request.

3. If I have to use the servlet engine, I want the EJB methods registered
for the SOAP request (the examples I found are registering a servlet for the
SOAP request and invoke - RMI - the EJBs)

Thanks,
	MarkS

> -----Original Message-----
> From: William Brogden [mailto:wbrogden@bga.com]
> Sent: Sunday, February 10, 2002 4:57 PM
> To: soap-user@xml.apache.org
> Subject: RE: Apache/SOAP and jboss
>
>
> Exactly how is this SOAP message arriving? If it is coming
> by HTTP you must have a servlet container in there somewhere.
>
> > -----Original Message-----
> > From: mark.striebeck@web.de [mailto:mark.striebeck@web.de]
> > Sent: Sunday, February 10, 2002 7:09 PM
> > To: soap-user@xml.apache.org
> > Subject: RE: Apache/SOAP and jboss
> >
> >
> > Hi William,
> >
> > isn't there a way to connect the SOAP engine directly with the EJB
> > container? I.e. I register my EJBs and their method in the
> > SOAP engine and
> > the get called when a SOAP request comes.
> >
> > MarkS
> >
> > > -----Original Message-----
> > > From: William Brogden [mailto:wbrogden@bga.com]
> > > Sent: Sunday, February 10, 2002 3:00 AM
> > > To: soap-user@xml.apache.org
> > > Subject: RE: Apache/SOAP and jboss
> > >
> > >
> > > > -----Original Message-----
> > > > From: mark.striebeck@web.de [mailto:mark.striebeck@web.de]
> > > > Sent: Saturday, February 09, 2002 8:17 PM
> > > > To: soap-user@xml.apache.org
> > > > Subject: Apache/SOAP and jboss
> > > >
> > > >
> > > > Hi,
> > > >
> > > > I know that there were already many requests about this. But
> > > > so far I could
> > > > not find anything that really helped me.
> > > >
> > > > I want to setup Apache/SOAP on top of jboss WITHOUT using
> > > > Tomcat (or any
> > > > other servlet container). My current architecture does not
> > > > require a servlet
> > > > engine and I don't like the idea to introduce one just for
> > > > handling SOAP.
> > > >
> > > > From the mails I found I get the impression that it is
> > > > possible. But I could
> > > > not find any step-by-step instruction or such. If somebody
> > > > could point me
> > > > there, I would be more than happy!
> > > >
> > > > Thank you,
> > > > 	MarkS
> > >
> > > What is missing from your question is how you expect to
> > > handle SOAP messages. Do you want messages over HTTP, eMail,
> > > Java Message Service, JavaSpaces or what?
> > >
> > >
> > > wbrogden@bga.com
> > > Author of Soap Programming with Java - Sybex; ISBN: 0782129285
> > >
> > >
> > >
> > >
> > >
> >
> >
>
>


RE: Apache/SOAP and jboss

Posted by Mark Striebeck <ma...@web.de>.
Ah, sorry, now I understand your question. Yes, it will arrive via http. But
I want to avoid a complete servlet engine. So, I was thinking about three
different solutions:

1. There are some low-level http server classes for Java. I could imagine
using them.

2. Having only Apache in front of jboss to receive the request.

3. If I have to use the servlet engine, I want the EJB methods registered
for the SOAP request (the examples I found are registering a servlet for the
SOAP request and invoke - RMI - the EJBs)

Thanks,
	MarkS

> -----Original Message-----
> From: William Brogden [mailto:wbrogden@bga.com]
> Sent: Sunday, February 10, 2002 4:57 PM
> To: soap-user@xml.apache.org
> Subject: RE: Apache/SOAP and jboss
>
>
> Exactly how is this SOAP message arriving? If it is coming
> by HTTP you must have a servlet container in there somewhere.
>
> > -----Original Message-----
> > From: mark.striebeck@web.de [mailto:mark.striebeck@web.de]
> > Sent: Sunday, February 10, 2002 7:09 PM
> > To: soap-user@xml.apache.org
> > Subject: RE: Apache/SOAP and jboss
> >
> >
> > Hi William,
> >
> > isn't there a way to connect the SOAP engine directly with the EJB
> > container? I.e. I register my EJBs and their method in the
> > SOAP engine and
> > the get called when a SOAP request comes.
> >
> > MarkS
> >
> > > -----Original Message-----
> > > From: William Brogden [mailto:wbrogden@bga.com]
> > > Sent: Sunday, February 10, 2002 3:00 AM
> > > To: soap-user@xml.apache.org
> > > Subject: RE: Apache/SOAP and jboss
> > >
> > >
> > > > -----Original Message-----
> > > > From: mark.striebeck@web.de [mailto:mark.striebeck@web.de]
> > > > Sent: Saturday, February 09, 2002 8:17 PM
> > > > To: soap-user@xml.apache.org
> > > > Subject: Apache/SOAP and jboss
> > > >
> > > >
> > > > Hi,
> > > >
> > > > I know that there were already many requests about this. But
> > > > so far I could
> > > > not find anything that really helped me.
> > > >
> > > > I want to setup Apache/SOAP on top of jboss WITHOUT using
> > > > Tomcat (or any
> > > > other servlet container). My current architecture does not
> > > > require a servlet
> > > > engine and I don't like the idea to introduce one just for
> > > > handling SOAP.
> > > >
> > > > From the mails I found I get the impression that it is
> > > > possible. But I could
> > > > not find any step-by-step instruction or such. If somebody
> > > > could point me
> > > > there, I would be more than happy!
> > > >
> > > > Thank you,
> > > > 	MarkS
> > >
> > > What is missing from your question is how you expect to
> > > handle SOAP messages. Do you want messages over HTTP, eMail,
> > > Java Message Service, JavaSpaces or what?
> > >
> > >
> > > wbrogden@bga.com
> > > Author of Soap Programming with Java - Sybex; ISBN: 0782129285
> > >
> > >
> > >
> > >
> > >
> >
> >
>
>


RE: Apache/SOAP and jboss

Posted by William Brogden <wb...@bga.com>.
Exactly how is this SOAP message arriving? If it is coming
by HTTP you must have a servlet container in there somewhere.

> -----Original Message-----
> From: mark.striebeck@web.de [mailto:mark.striebeck@web.de] 
> Sent: Sunday, February 10, 2002 7:09 PM
> To: soap-user@xml.apache.org
> Subject: RE: Apache/SOAP and jboss
> 
> 
> Hi William,
> 
> isn't there a way to connect the SOAP engine directly with the EJB
> container? I.e. I register my EJBs and their method in the 
> SOAP engine and
> the get called when a SOAP request comes.
> 
> MarkS
> 
> > -----Original Message-----
> > From: William Brogden [mailto:wbrogden@bga.com]
> > Sent: Sunday, February 10, 2002 3:00 AM
> > To: soap-user@xml.apache.org
> > Subject: RE: Apache/SOAP and jboss
> >
> >
> > > -----Original Message-----
> > > From: mark.striebeck@web.de [mailto:mark.striebeck@web.de]
> > > Sent: Saturday, February 09, 2002 8:17 PM
> > > To: soap-user@xml.apache.org
> > > Subject: Apache/SOAP and jboss
> > >
> > >
> > > Hi,
> > >
> > > I know that there were already many requests about this. But
> > > so far I could
> > > not find anything that really helped me.
> > >
> > > I want to setup Apache/SOAP on top of jboss WITHOUT using
> > > Tomcat (or any
> > > other servlet container). My current architecture does not
> > > require a servlet
> > > engine and I don't like the idea to introduce one just for
> > > handling SOAP.
> > >
> > > From the mails I found I get the impression that it is
> > > possible. But I could
> > > not find any step-by-step instruction or such. If somebody
> > > could point me
> > > there, I would be more than happy!
> > >
> > > Thank you,
> > > 	MarkS
> >
> > What is missing from your question is how you expect to
> > handle SOAP messages. Do you want messages over HTTP, eMail,
> > Java Message Service, JavaSpaces or what?
> >
> >
> > wbrogden@bga.com
> > Author of Soap Programming with Java - Sybex; ISBN: 0782129285
> >
> >
> >
> >
> >
> 
> 



RE: Apache/SOAP and jboss

Posted by William Brogden <wb...@bga.com>.
Exactly how is this SOAP message arriving? If it is coming
by HTTP you must have a servlet container in there somewhere.

> -----Original Message-----
> From: mark.striebeck@web.de [mailto:mark.striebeck@web.de] 
> Sent: Sunday, February 10, 2002 7:09 PM
> To: soap-user@xml.apache.org
> Subject: RE: Apache/SOAP and jboss
> 
> 
> Hi William,
> 
> isn't there a way to connect the SOAP engine directly with the EJB
> container? I.e. I register my EJBs and their method in the 
> SOAP engine and
> the get called when a SOAP request comes.
> 
> MarkS
> 
> > -----Original Message-----
> > From: William Brogden [mailto:wbrogden@bga.com]
> > Sent: Sunday, February 10, 2002 3:00 AM
> > To: soap-user@xml.apache.org
> > Subject: RE: Apache/SOAP and jboss
> >
> >
> > > -----Original Message-----
> > > From: mark.striebeck@web.de [mailto:mark.striebeck@web.de]
> > > Sent: Saturday, February 09, 2002 8:17 PM
> > > To: soap-user@xml.apache.org
> > > Subject: Apache/SOAP and jboss
> > >
> > >
> > > Hi,
> > >
> > > I know that there were already many requests about this. But
> > > so far I could
> > > not find anything that really helped me.
> > >
> > > I want to setup Apache/SOAP on top of jboss WITHOUT using
> > > Tomcat (or any
> > > other servlet container). My current architecture does not
> > > require a servlet
> > > engine and I don't like the idea to introduce one just for
> > > handling SOAP.
> > >
> > > From the mails I found I get the impression that it is
> > > possible. But I could
> > > not find any step-by-step instruction or such. If somebody
> > > could point me
> > > there, I would be more than happy!
> > >
> > > Thank you,
> > > 	MarkS
> >
> > What is missing from your question is how you expect to
> > handle SOAP messages. Do you want messages over HTTP, eMail,
> > Java Message Service, JavaSpaces or what?
> >
> >
> > wbrogden@bga.com
> > Author of Soap Programming with Java - Sybex; ISBN: 0782129285
> >
> >
> >
> >
> >
> 
> 



RE: Apache/SOAP and jboss

Posted by Mark Striebeck <ma...@web.de>.
Hi William,

isn't there a way to connect the SOAP engine directly with the EJB
container? I.e. I register my EJBs and their method in the SOAP engine and
the get called when a SOAP request comes.

MarkS

> -----Original Message-----
> From: William Brogden [mailto:wbrogden@bga.com]
> Sent: Sunday, February 10, 2002 3:00 AM
> To: soap-user@xml.apache.org
> Subject: RE: Apache/SOAP and jboss
>
>
> > -----Original Message-----
> > From: mark.striebeck@web.de [mailto:mark.striebeck@web.de]
> > Sent: Saturday, February 09, 2002 8:17 PM
> > To: soap-user@xml.apache.org
> > Subject: Apache/SOAP and jboss
> >
> >
> > Hi,
> >
> > I know that there were already many requests about this. But
> > so far I could
> > not find anything that really helped me.
> >
> > I want to setup Apache/SOAP on top of jboss WITHOUT using
> > Tomcat (or any
> > other servlet container). My current architecture does not
> > require a servlet
> > engine and I don't like the idea to introduce one just for
> > handling SOAP.
> >
> > From the mails I found I get the impression that it is
> > possible. But I could
> > not find any step-by-step instruction or such. If somebody
> > could point me
> > there, I would be more than happy!
> >
> > Thank you,
> > 	MarkS
>
> What is missing from your question is how you expect to
> handle SOAP messages. Do you want messages over HTTP, eMail,
> Java Message Service, JavaSpaces or what?
>
>
> wbrogden@bga.com
> Author of Soap Programming with Java - Sybex; ISBN: 0782129285
>
>
>
>
>


RE: Apache/SOAP and jboss

Posted by Mark Striebeck <ma...@web.de>.
Hi William,

isn't there a way to connect the SOAP engine directly with the EJB
container? I.e. I register my EJBs and their method in the SOAP engine and
the get called when a SOAP request comes.

MarkS

> -----Original Message-----
> From: William Brogden [mailto:wbrogden@bga.com]
> Sent: Sunday, February 10, 2002 3:00 AM
> To: soap-user@xml.apache.org
> Subject: RE: Apache/SOAP and jboss
>
>
> > -----Original Message-----
> > From: mark.striebeck@web.de [mailto:mark.striebeck@web.de]
> > Sent: Saturday, February 09, 2002 8:17 PM
> > To: soap-user@xml.apache.org
> > Subject: Apache/SOAP and jboss
> >
> >
> > Hi,
> >
> > I know that there were already many requests about this. But
> > so far I could
> > not find anything that really helped me.
> >
> > I want to setup Apache/SOAP on top of jboss WITHOUT using
> > Tomcat (or any
> > other servlet container). My current architecture does not
> > require a servlet
> > engine and I don't like the idea to introduce one just for
> > handling SOAP.
> >
> > From the mails I found I get the impression that it is
> > possible. But I could
> > not find any step-by-step instruction or such. If somebody
> > could point me
> > there, I would be more than happy!
> >
> > Thank you,
> > 	MarkS
>
> What is missing from your question is how you expect to
> handle SOAP messages. Do you want messages over HTTP, eMail,
> Java Message Service, JavaSpaces or what?
>
>
> wbrogden@bga.com
> Author of Soap Programming with Java - Sybex; ISBN: 0782129285
>
>
>
>
>


RE: Apache/SOAP and jboss

Posted by William Brogden <wb...@bga.com>.
> -----Original Message-----
> From: mark.striebeck@web.de [mailto:mark.striebeck@web.de] 
> Sent: Saturday, February 09, 2002 8:17 PM
> To: soap-user@xml.apache.org
> Subject: Apache/SOAP and jboss
> 
> 
> Hi,
> 
> I know that there were already many requests about this. But 
> so far I could
> not find anything that really helped me.
> 
> I want to setup Apache/SOAP on top of jboss WITHOUT using 
> Tomcat (or any
> other servlet container). My current architecture does not 
> require a servlet
> engine and I don't like the idea to introduce one just for 
> handling SOAP.
> 
> From the mails I found I get the impression that it is 
> possible. But I could
> not find any step-by-step instruction or such. If somebody 
> could point me
> there, I would be more than happy!
> 
> Thank you,
> 	MarkS

What is missing from your question is how you expect to 
handle SOAP messages. Do you want messages over HTTP, eMail,
Java Message Service, JavaSpaces or what? 


wbrogden@bga.com
Author of Soap Programming with Java - Sybex; ISBN: 0782129285





RE: jboss

Posted by Dennis Petersen <fe...@software.dk>.
Certainly.
JBoss is a J2EE compliant application server that manages applications.
Database connections does not have to be run from within an
application server.
Sincerely,
Dennis Petersen
  -----Oprindelig meddelelse-----
  Fra: james chen [mailto:james_ch_chen@yahoo.com.tw]
  Sendt: 10. februar 2002 02:39
  Til: soap-user@xml.apache.org
  Emne: jboss



  Hi:

  can I ask a stupit and basic question ......??

  I am working on a project of my own. I was wondering if I wish to provide
a service which requires a database connection, do I have to use JBoss??

  Could I get a way with just use JDBC in the "service class" to send and
reply the query in that way ?

  thanks

  james chen





----------------------------------------------------------------------------
--
  < 每天都 Yahoo!奇摩 > www.yahoo.com.tw

RE: jboss

Posted by Dennis Petersen <fe...@software.dk>.
Certainly.
JBoss is a J2EE compliant application server that manages applications.
Database connections does not have to be run from within an
application server.
Sincerely,
Dennis Petersen
  -----Oprindelig meddelelse-----
  Fra: james chen [mailto:james_ch_chen@yahoo.com.tw]
  Sendt: 10. februar 2002 02:39
  Til: soap-user@xml.apache.org
  Emne: jboss



  Hi:

  can I ask a stupit and basic question ......??

  I am working on a project of my own. I was wondering if I wish to provide
a service which requires a database connection, do I have to use JBoss??

  Could I get a way with just use JDBC in the "service class" to send and
reply the query in that way ?

  thanks

  james chen





----------------------------------------------------------------------------
--
  < 每天都 Yahoo!奇摩 > www.yahoo.com.tw

jboss

Posted by james chen <ja...@yahoo.com.tw>.
 
Hi:
can I ask a stupit and basic question ......??
I am working on a project of my own. I was wondering if I wish to provide a service which requires a database connection, do I have to use JBoss?? 
Could I get a way with just use JDBC in the "service class" to send and reply the query in that way ?
thanks
james chen



---------------------------------
  www.yahoo.com.tw

jboss

Posted by james chen <ja...@yahoo.com.tw>.
 
Hi:
can I ask a stupit and basic question ......??
I am working on a project of my own. I was wondering if I wish to provide a service which requires a database connection, do I have to use JBoss?? 
Could I get a way with just use JDBC in the "service class" to send and reply the query in that way ?
thanks
james chen



---------------------------------
  www.yahoo.com.tw

RE: Apache/SOAP and jboss

Posted by William Brogden <wb...@bga.com>.
> -----Original Message-----
> From: mark.striebeck@web.de [mailto:mark.striebeck@web.de] 
> Sent: Saturday, February 09, 2002 8:17 PM
> To: soap-user@xml.apache.org
> Subject: Apache/SOAP and jboss
> 
> 
> Hi,
> 
> I know that there were already many requests about this. But 
> so far I could
> not find anything that really helped me.
> 
> I want to setup Apache/SOAP on top of jboss WITHOUT using 
> Tomcat (or any
> other servlet container). My current architecture does not 
> require a servlet
> engine and I don't like the idea to introduce one just for 
> handling SOAP.
> 
> From the mails I found I get the impression that it is 
> possible. But I could
> not find any step-by-step instruction or such. If somebody 
> could point me
> there, I would be more than happy!
> 
> Thank you,
> 	MarkS

What is missing from your question is how you expect to 
handle SOAP messages. Do you want messages over HTTP, eMail,
Java Message Service, JavaSpaces or what? 


wbrogden@bga.com
Author of Soap Programming with Java - Sybex; ISBN: 0782129285