Re: soap, Jetty

2002-10-09 Thread Emma Johansson
Hi Scott, Thanks alot for your email yesterday, I really appreciate your help. Since you're talking about bat files I assume that you're using a windows OS. I myself am using Jetty 4.0.5 on Sun Solaris with a j2sdk1.4.0. My jetty.bat file seems to be incorrect since I only read /Jetty/bin/jetty.b

Parsing a SOAP request

2002-10-09 Thread Dale Attree
How would one extract data from an HTTP request generated by a soap client using PHP? Kind Regards, Dale -- To unsubscribe, e-mail: For additional commands, e-mail:

Parsing SOAP message request in Java

2002-10-09 Thread KavithaK
Hi All, I want to know how can i access a request that has been sent thru the message.sent() method .. for example.. i send my xml document through this soap method msg.send (new URL ("http://localserver/soap/messagerouter";), "urn:testservice", msgEnv); where msgEnv parsed is a soap xml. wh

SOAP parsing

2002-10-09 Thread Dale Attree
Is there anyway with PHP to obtain the entire HTTP request containing the SOAP message so as to decode the SOAP message and obtain the data within the SOAP message? Here is the request being sent by my client, I now need to be able to parse on the server side. POST /development/de/xkernel.php HT

Bug handling survey - Tree based models

2002-10-09 Thread Gunes Koru
Hello Soap contributors, I am conducting a survey about the way bugs are handled in open source software projects. The survey includes questions that can be answered by developers,testers, bug fixers, project managers, and owners of defect databases. It is only and only for research purposes and

Re: Parsing a SOAP request

2002-10-09 Thread Scott Nichol
The way you have phrased the question is ambiguous: is the request generated by a PHP SOAP client, or is the extraction to be done using PHP? Either way, I'll point out that Apache SOAP and NuSOAP interoperate well. Scott Nichol - Original Message - From: "Dale Attree" <[EMAIL PROTECTED

Re: SOAP parsing

2002-10-09 Thread Scott Nichol
Again, I am somewhat unclear. Is the idea that you want a PHP SOAP server? If so, check NuSOAP. I would also recommend checking PHP resources, e.g. php.net. Scott Nichol - Original Message - From: "Dale Attree" <[EMAIL PROTECTED]> To: "SOAP-Dev" <[EMAIL PROTECTED]> Sent: Wednesday, Oc

Re: Parsing SOAP message request in Java

2002-10-09 Thread Scott Nichol
You want to use the getBody method of Envelope. In turn, the getBodyEntries method of Body will let you access the immediately children of the element. Normally, this would be the method call (below you have , which I would guess to be a SOAP struct). Scott Nichol - Original Message -

Re: soap, Jetty

2002-10-09 Thread Scott Nichol
The jetty.sh with Jetty 4.1.4 has the section # # Build the classpath with Jetty's bundled libraries. # if [ $JAVA_VERSION -lt 4 ] then CP=$(ls $JETTY_HOME/ext/*.jar $JETTY_HOME/lib/*.ja

Re: Classpath on Windows ME

2002-10-09 Thread Scott Nichol
The Windows ME version of start does not support a title parameter; therefore, you should remove the "Catalina" parameter from line 3. Also, your classpath is all wrong. Tomcat does not want your normal classpath. It wants a classpath with its own bootstrap.jar and the tools.jar from your JDK.

Re: committing some perf improvements

2002-10-09 Thread Scott Nichol
+1 as far as I'm concerned. Scott Nichol - Original Message - From: "Sanjiva Weerawarana" <[EMAIL PROTECTED]> To: "Apache SOAP" <[EMAIL PROTECTED]> Sent: Tuesday, October 08, 2002 10:43 PM Subject: committing some perf improvements > Several months ago I made some changes to the codeba

Transfer

2002-10-09 Thread ROB . HEWLETT
Can I transfer say a 20 M file via soap? If so how do I wrap that and should I be even considering SOAP for such a transfer? -- To unsubscribe, e-mail: For additional commands, e-mail:

RE: Transfer

2002-10-09 Thread SoumenS
SOAP is XML based application protocol mapped to some transport protocol. Since you are transferring large file, transport protocol issues are involved. I beleive, you need to search for a SOAP implementation on some suitable transport protocol. The document should be transferred as an attachment.

Re: Transfer

2002-10-09 Thread Scott Nichol
Reasons you might want to use SOAP: 1. You want to process the document as soon as it is received 2. You want the sender to know the result of the processing 3. You want to write as little plumbing as possible Here's what I would do in a couple situations 1 = don't care, 2 = no, 3 = yes I woul

Re: Transfer

2002-10-09 Thread Skip Marler
You can attach the file within the SOAP envelope, but, it will use encoding. I can't give the exact calculation but for every 6 bytes you want to send you actually send 8. Regards, Skip Marler www.parasoft.com [EMAIL PROTECTED] - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL P

Re: Transfer

2002-10-09 Thread Scott Nichol
The base64-encoded data compresses pretty nicely with gzip, though. Scott Nichol - Original Message - From: "Skip Marler" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 09, 2002 2:31 PM Subject: Re: Transfer > You can attach the file within the SOAP envelope, but,