rounting in apache
Does anyone know how to implement SOAP message routing using the actor attribute? Has anynoe inplemented the same using apache2.2? thanx in advance vamsi _ Click below to visit monsterindia.com and review jobs in India or Abroad http://monsterindia.rediff.com/jobs
Any tutorials about EJB integration in SOAP
There's something wrong with the samples/ejb included in SOAP2.2. Where can I find something about EJBs with SOAP Thanks _ Chat with friends online, try MSN Messenger: http://messenger.msn.com
Re: Any tutorials about EJB integration in SOAP
I do not know of any, nor do I have experience with the sample. From a quick look at it, I would say you should be certain that the deployment descriptor you use is modified to conform to the environment in which you are working. You must also have your EJB container made aware of hellobean.jar. The deployment descriptor is http://xml.apache.org/xml-soap/deployment"; id="urn:testprovider"> org.apache.soap.server.DOMFaultListener The ContextProviderURL and FullContextFactoryName will likely need to be changed to conform to your environment. Scott - Original Message - From: "sherine khoury" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 23, 2002 9:04 AM Subject: Any tutorials about EJB integration in SOAP > > > There's something wrong with the samples/ejb included in SOAP2.2. > Where can I find something about EJBs with SOAP > > Thanks > > _ > Chat with friends online, try MSN Messenger: http://messenger.msn.com > >
Re: Parsing XML document for validation errors
Does anyone know how to validate a SOAP message which I got from client side? Thanks
Apache SOAP RPC vs SOAP Messaging
I have a question related to the way Apache SOAP 2.2 was engineered SOAP RPC as against SOAP Messaging. If You look at the SOAP RPC server, there is nothing which ties the server code to SOAP specific API's. e.g public class SoapSample { public String[] print() { return "Hello World!"; } } Its the abstraction level above that(may be the rpcrouter), which gives this piece of code the definition of SOAP RPC server. Now if you look at a SOAP Messagin server, e.g public class SoapMsgServer { public void purchaseOrder(Envelope inputEnv, SOAPContext reqCtx, SOAPContext resCtx) { try { // dummy messaging server. resCtx.setRootPart("Hello from SOAP messaging server!", "text/html"); } catch(Exception ex) { ex.printStackTrace(); } } } There is a tight coupling, between the server code and the SOAP API's. I was wondering why has the Apache SOAP Message server designed this way. Why cant I return String or some datatype and the layer above that(messagerouter ) encapsulate the details of forming the SOAPEnvelope and return it back to the client Basically its the question of ownership. any takers. reg Nilesh
a question of using soap attachments
hi, i have a question of using soap attachments. what is the max size of attachments can soap transport it? i can transport a 11M file using soap sample in folder samples.mime.*, but when i increase the size to about 15M, the sample can not work correctly and return the faultString like these: Fault Code = SOAP-ENV:Server.Exception: Fault String = java.lang.OutOfMemoryError Thank you very much.
Re: Heavy loads on SOAP RPC
Hi, > From: Scott Nichol [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 23, 2002 1:50 AM > I do not know about w2k ws, but on NT workstation it is 10. W2k pro, too. http://support.microsoft.com/default.aspx?scid=kb;en-us;Q122920 Regards, // NaHi