Re: Does SOAP support attachments with JDK1.3

2005-02-18 Thread Scott Nichol
Apache SOAP can send and receive MIME attachments, so it could be used to upload a zip file if the service supports MIME attachments. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message -

Re: Report to the Apache Board for Dec 2004

2004-12-10 Thread Davanum Srinivas
Folks, [SORRY! for the cross-posting] Can you please add news/issues about your projects on the wiki? (http://wiki.apache.org/ws/ReportForDec2004) Thanks, dims On Wed, 1 Dec 2004 07:14:15 -0500, Davanum Srinivas <[EMAIL PROTECTED]> wrote: > Yes, it's time for a report to the Board. I'd encourag

Re: Soap under Tomcat

2004-11-15 Thread feilong
ong - Original Message - From: "Scott Nichol" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, November 15, 2004 4:31 PM Subject: Re: Soap under Tomcat The error message suggests to me that your CalcService.java is missing the line package onjav

Re: Soap under Tomcat

2004-11-15 Thread Scott Nichol
The error message suggests to me that your CalcService.java is missing the line package onjava; The Java class loader finds the CalcService.class file where it expects based on the deployment descriptor saying onjava.CalcService, but then discovers that the bytecode in CalcService.class do

Re: setTimeout

2004-10-20 Thread Scott Nichol
If you are using SOAP 2.3.1, the timeout only applies to read/write. That is because SOAP 2.3.1 was released when JDK 1.3 was current, and JDK 1.3 did not support a timeout for the socket connect. The "nightly" build of Apache SOAP supports timeout for connect if you are using JDK 1.4 or later

Re: faultString: org.xml.sax.SAXException: Invalid element in com.amazon.soap.AWSProductData._CartAddResponse - OperationRequest

2004-10-04 Thread Scott Nichol
lt;[EMAIL PROTECTED]> Sent: Monday, October 04, 2004 8:47 AM Subject: Re: faultString: org.xml.sax.SAXException: Invalid element in com.amazon.soap.AWSProductData._CartAddResponse - OperationRequest > Hi, > > I am using amazoan web services and executing the java swing applicatio

Re: faultString: org.xml.sax.SAXException: Invalid element in com.amazon.soap.AWSProductData._CartAddResponse - OperationRequest

2004-10-04 Thread Bindu
tober 04, 2004 6:14 PM Subject: Re: faultString: org.xml.sax.SAXException: Invalid element in com.amazon.soap.AWSProductData._CartAddResponse - OperationRequest > I am sorry, what is the error you are getting? > > Scott Nichol > > Do not send e-mail directly to this e-mail address, > be

Re: faultString: org.xml.sax.SAXException: Invalid element in com.amazon.soap.AWSProductData._CartAddResponse - OperationRequest

2004-10-04 Thread Scott Nichol
I am sorry, what is the error you are getting? Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: "Bindu" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, October 04, 20

RE: First row under header return null

2004-09-29 Thread "FIORAMORE, François"
Thanks Scott, it work. And yes you assume correctly, sorry I should have said it earlier. Thank Paul also. Appreciate your help. -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED] Sent: Monday, September 27, 2004 4:44 PM To: [EMAIL PROTECTED] Subject: Re: First row under

Re: IBM BSF jar file.

2004-09-28 Thread Felipe Palma Dias
Thanks, Scott. Thread closed. --- Scott Nichol <[EMAIL PROTECTED]> escreveu: > Go to > http://archive.apache.org/dist/ws/soap/version-2.2/. > > Scott Nichol > > Do not send e-mail directly to this e-mail address, > because it is filtered to accept only mail from > specific mail lists. > -

Re: IBM BSF jar file.

2004-09-28 Thread Scott Nichol
Go to http://archive.apache.org/dist/ws/soap/version-2.2/. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: "Felipe Palma Dias" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent

Re: First row under header return null

2004-09-27 Thread Scott Nichol
I assume you are receiving this message using the messaging API, i.e. your service has a method like public void SubmitReq(Envelope env, SOAPContext reqCtx, SOAPContext resCtx) throws Exception { Vector headerEntries = env.getHeader().getHeaderEntries(); Element headerElement

RE: First row under header return null

2004-09-27 Thread "FIORAMORE, François"
2004 3:46 PMTo: [EMAIL PROTECTED]Subject: Re: First row under header return null I don't know which package you use to parse the soap. I use Jakata AXIS web service which adopt Jakata SOAP. I wrote a test code which it print the right information.   import javax.xml.s

RE: First row under header return null

2004-09-27 Thread "FIORAMORE, François"
ork.  :)   Thank.   Ciao, François.   -Original Message-From: Paul Hsu [mailto:[EMAIL PROTECTED] Sent: Friday, September 24, 2004 7:19 PMTo: [EMAIL PROTECTED]Subject: Re: First row under header return null try this, it should work. You problem is tempElement is the righ

Re: First row under header return null

2004-09-27 Thread Paul Hsu
ex) { }  } } - Original Message - From: FIORAMORE, François To: '[EMAIL PROTECTED]' Sent: Monday, September 27, 2004 11:21 AM Subject: RE: First row under header return null Hi Paul,   Thank for the support.  But is didn't work. I

Re: First row under header return null

2004-09-24 Thread Paul Hsu
PROTECTED] Sent: Friday, September 24, 2004 4:04 PM Subject: Re: First row under header return null I think you should change the code to NodeList tempNodeList = headerElement.getElementsByTagName("TransactionID");  //I want the TransactionID. --

Re: First row under header return null

2004-09-24 Thread Paul Hsu
Title: First row under header return null I think you should change the code to NodeList tempNodeList = headerElement.getElementsByTagName("TransactionID");  //I want the TransactionID. - Original Message - From: FIORAMORE, François To: '[EMAIL PROTECTED]' Sent: Frid

Re: Multi-threaded soap call issue.

2004-08-19 Thread Scott Nichol
I suspect the problem is in your client code. The Call class is not thread safe. For a multithreaded client, each thread should have its own Call instance. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists.

Re: sample server code

2004-08-03 Thread Scott Nichol
The distribution includes a samples directory. You can also see the samples in CVS at http://cvs.apache.org/viewcvs.cgi/ws-soap/java/samples/. Most of the samples include service code. For example, the address book sample service code is http://cvs.apache.org/viewcvs.cgi/*checkout*/ws-soap/ja

Re: [jira] Closed: (SOAP-157) s

2004-04-09 Thread Scott Nichol
CTED]> Sent: Friday, April 09, 2004 10:46 AM Subject: RE: [jira] Closed: (SOAP-157) s Please delete me from this list Thanks. -- garskof -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, April 09, 2004 9:25 AM To: [EMAIL PROTECTED] Subject: [jira

RE: [jira] Closed: (SOAP-157) s

2004-04-09 Thread GARSKOF, ROBERT D (SNETCOMM)
Please delete me from this list Thanks. -- garskof -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, April 09, 2004 9:25 AM To: [EMAIL PROTECTED] Subject: [jira] Closed: (SOAP-157) s Message: The following issue has been closed. Resolver: Scott

RE: [jira] Assigned: (SOAP-156) BeanSerializer : bug for indexed properties

2004-04-09 Thread Kerrigan, Grahame
been re-assigned. Assignee: Scott Nichol (mailto:[EMAIL PROTECTED]) - View the issue: http://issues.apache.org/jira/browse/SOAP-156 Here is an overview of the issue

Re: Apache license update

2004-04-08 Thread Scott Nichol
but I cannot find it right now. I want to be sure the next true release of Apache SOAP follows all the rules. Thanks. Scott Nichol - Original Message - From: "Dirk-Willem van Gulik" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Thur

Re: Apache license update

2004-04-08 Thread Dirk-Willem van Gulik
On Apr 8, 2004, at 3:11 AM, Scott Nichol wrote: There is a new "nightly" release at http://cvs.apache.org/dist/soap/nightly/2004-04-07/. Folks - a gentle nudge:- try to avoid calling those things things 'releases'. They aint. They are just developer convenience snapshots. Releases are: -> off

Re: Apache license update

2004-04-07 Thread Scott Nichol
There is a new "nightly" release at http://cvs.apache.org/dist/soap/nightly/2004-04-07/. This has the new Apache license (finally), manifest files in soap.jar and soap.war (hurray), and a fix that trims the value in the HTTP Content-Length header. Scott Nichol Do not send e-mail directly to t

RE: eliminating one or two in memory copies of the response payload

2004-04-07 Thread WJCarpenter
wjc> I'm developing an obsession with getting rid of unnecessary wjc> copies during response processing. A patch for this is attached to bug SOAP-166: http://nagoya.apache.org/jira/browse/SOAP-166 I'd appreciate it if anyone who can would give it a try and report pro or con. For me, it gave

Re: http://xml.apache.org/xml-soap

2004-03-30 Thread Scott Nichol
The namespace URI http://xml.apache.org/xml-soap is abstract: there is no physical document there. To my knowledge, no one has ever created an XML Schema document for that namespace. However, here is my quick guess as to how a Vector should be defined: Scott Nichol Do not send e-mai

RE: eliminating one or two in memory copies of the response payload

2004-03-19 Thread WJCarpenter
wjc> I'm developing an obsession with getting rid of unnecessary wjc> copies during response processing. To refresh your memories, I'm working on a patch that will allow streaming the response payload directly into the XML parser inside Call.invoke(), and I think I can also have a real stream insi

Re: cvs commit: xml-soap/java/src/org/apache/soap/transport/httpSOAPHTTPConnection.java

2004-03-07 Thread Scott Nichol
ol" <[EMAIL PROTECTED]> Sent: Sunday, March 07, 2004 10:24 AM Subject: Re: cvs commit: xml-soap/java/src/org/apache/soap/transport/httpSOAPHTTPConnection.java Which one is nightly version? Could you mind to tell me? many thanks. http://apache.netsolutions.com.hk/ws/soap/version

Re: cvs commit: xml-soap/java/src/org/apache/soap/transport/httpSOAPHTTPConnection.java

2004-03-06 Thread Scott Nichol
ot; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Saturday, March 06, 2004 9:56 AM Subject: Re: cvs commit: xml-soap/java/src/org/apache/soap/transport/httpSOAPHTTPConnection.java Yes. I got that full message exception. Premature end of stream. Data is truncated. Read 69256 bytes suc

RE: eliminating one or two in memory copies of the response payload

2004-03-03 Thread WJCarpenter
wjc> I ran a series of tests where the response payload varied in 10 wjc> steps from just under 200 kbytes to just under 2 mbytes wjc> The difference in collectible memory footprint is a bigger wjc> mystery, though. wjc> For example, at the 1 mbyte payload step, the difference is about wjc> 9 mby

RE: eliminating one or two in memory copies of the response payload

2004-03-02 Thread WJCarpenter
wjc> I'm developing an obsession with getting rid of unnecessary wjc> copies during response processing. I got a chance to work on this over the weekend, and things went well. (I have it working perfectly for the case that I care about, but I haven't yet proved to myself that I didn't goof up case

Re: MutableBoolean.equals() method?

2004-03-01 Thread Scott Nichol
Hmmm. You are correct that (1) equals is a frequent source of problems and (2) it is not used in the code. Since MutableBoolean is used so specifically, dropping equals does seem like a good path to pursue. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtere

Re: eliminating one or two in memory copies of the response payload

2004-02-27 Thread WJCarpenter
sn> One thing I notice. In B you say "pass a MimeBodyPart sn> (constructed from a DataSource in turn constructed from the sn> original SocketInputStream)" and in D you say "where that sn> InputSource would be constructed from the original sn> SocketInputStream". Since you can only read the InputS

Re: eliminating one or two in memory copies of the response payload

2004-02-27 Thread Scott Nichol
I encourage you to pursue this! One thing I notice. In B you say "pass a MimeBodyPart (constructed from a DataSource in turn constructed from the original SocketInputStream)" and in D you say "where that InputSource would be constructed from the original SocketInputStream". Since you can only

RE: Problem in knowing which directory to compile and set classpath

2004-02-26 Thread Secka-Jallow, Dibor
Nichol [mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 2:47 PM To: [EMAIL PROTECTED] Subject: Re: Problem in knowing which directory to compile and set classpath How are you trying to compile? Are you trying to run javac from the command line, or are you using the JDeveloper IDE

Re: Problem in knowing which directory to compile and set classpath

2004-02-26 Thread Scott Nichol
se it is filtered to accept only mail from specific mail lists. - Original Message - From: "Secka-Jallow, Dibor" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 26, 2004 4:14 PM Subject: RE: Problem in knowing which directory to compile and set class

RE: Problem in knowing which directory to compile and set classpath

2004-02-26 Thread Secka-Jallow, Dibor
L PROTECTED] Subject: Re: Problem in knowing which directory to compile and set classpath I am too unfamiliar with JDeveloper to guide you. You should probably either browse the on-line help or use some sort of JDeveloper support. Scott Nichol Do not send e-mail directly to this e-mail address, be

Re: Problem in knowing which directory to compile and set classpath

2004-02-26 Thread Scott Nichol
How are you trying to compile? Are you trying to run javac from the command line, or are you using the JDeveloper IDE? Since you have installed JDeveloper, I would think you would want to use that. You will have to add the Axis jars to the classpath JDeveloper uses for compiling. Scott Nicho

Re: Problem in knowing which directory to compile and set classpath

2004-02-26 Thread Scott Nichol
IL PROTECTED]> Sent: Thursday, February 26, 2004 5:43 PM Subject: RE: Problem in knowing which directory to compile and set classpath I have worked with servlets and java in a different environment before. This is a new environment for me . We just installed Oracle 9ias and Oracle portal. I a

RE: Problem in knowing which directory to compile and set classpath

2004-02-26 Thread Secka-Jallow, Dibor
: Re: Problem in knowing which directory to compile and set classpath Given the errors you are receiving, it appears your environment is not properly configured to use the command-line compiler, nor to run Tomcat, for that matter. Since you do not normally compile from the command line, I would

RE: Problem in knowing which directory to compile and set classpath

2004-02-26 Thread Secka-Jallow, Dibor
Housing Authority [EMAIL PROTECTED] 404-817-7370 -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 4:57 PM To: [EMAIL PROTECTED] Subject: Re: Problem in knowing which directory to compile and set classpath Take a look at the Axis installation

Re: Problem in knowing which directory to compile and set classpath

2004-02-26 Thread Scott Nichol
TED] 404-817-7370 -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 2:47 PM To: [EMAIL PROTECTED] Subject: Re: Problem in knowing which directory to compile and set classpath How are you trying to compile? Are you trying to run javac from th

Re: Problem in knowing which directory to compile and set classpath

2004-02-26 Thread Scott Nichol
ROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 26, 2004 3:40 PM Subject: RE: Problem in knowing which directory to compile and set classpath I was compiling the code using the command line under where I installed tomcat? Is that right?? Am I suppose to compile it in the Jdevelo

RE: Problems in installing and deploying Apache soap

2004-02-25 Thread Secka-Jallow, Dibor
11:20 AM To: [EMAIL PROTECTED] Subject: RE: Problems in installing and deploying Apache soap     Hi,   "I cannot find any of the classes to import to be able to compile my code"   ð  I'm also using Apache SOAP and had any problems concerning compiling ð  They should b

RE: Problems in installing and deploying Apache soap

2004-02-25 Thread Sakari . Isoniemi
  Hi,   "I cannot find any of the classes to import to be able to compile my code"   ð  I'm also using Apache SOAP and had any problems concerning compiling ð  They should be in some .jars (Don't remember any more)   -Original Message- From: Secka-Jallow, Dibor [mail

Re: SOAP timeouts over a proxy

2004-02-24 Thread Raoul . Golan
Thank you very much, it does exactly what you describe. "Scott Nichol" <[EMAIL PROTECTED]> 02/25/04 02:25 PM Please respond to soap-dev                 To:        <[EMAIL PROTECTED]>         cc:                 Subject:        Re: SOAP timeouts over a proxy The cu

Re: SOAP timeouts over a proxy

2004-02-24 Thread Scott Nichol
The current code (post-2.3.1) does what you suggest and even gracefully falls back when a pre-1.4 JVM is used. You can download a nightly build from http://cvs.apache.org/dist/soap/nightly/2003-09-09/, or grab the source from CVS. Scott Nichol Do not send e-mail directly to this e-mail address

Re: Connection Pool with Axis

2004-02-17 Thread Scott Nichol
For Axis questions, post to [EMAIL PROTECTED] Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: "Soumya Dasgupta" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, Febr

Re: doing a 2.3.2 (was: Re: nightly CVS snapshot from Sep 2003)

2004-02-17 Thread Davanum Srinivas
e-mail directly to this e-mail address, > because it is filtered to accept only mail from > specific mail lists. > > - Original Message - > From: "Davanum Srinivas" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Tuesday, February 17, 2004 10:51

Re: doing a 2.3.2 (was: Re: nightly CVS snapshot from Sep 2003)

2004-02-17 Thread Scott Nichol
mail lists. - Original Message - From: "Davanum Srinivas" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 17, 2004 10:51 AM Subject: Re: doing a 2.3.2 (was: Re: nightly CVS snapshot from Sep 2003) http://nagoya.apache.org/wiki/apachewiki.c

Re: doing a 2.3.2 (was: Re: nightly CVS snapshot from Sep 2003)

2004-02-17 Thread Davanum Srinivas
> Scott Nichol > > Do not send e-mail directly to this e-mail address, > because it is filtered to accept only mail from > specific mail lists. > - Original Message - > From: "Sanjiva Weerawarana" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> &

Re: doing a 2.3.2 (was: Re: nightly CVS snapshot from Sep 2003)

2004-02-17 Thread Scott Nichol
end e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: "Sanjiva Weerawarana" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 16, 2004 4:39 AM Subject: doing a 2.3.

doing a 2.3.2 (was: Re: nightly CVS snapshot from Sep 2003)

2004-02-16 Thread Sanjiva Weerawarana
;[EMAIL PROTECTED]> Sent: Saturday, February 14, 2004 11:34 AM Subject: Re: nightly CVS snapshot from Sep 2003 > I would love a 2.3.2. Previously, when I tried to get help from other committers, no one had any time, since they had either stopped working on Apache projects or had moved to

Re: SAXSource vs DocumentBuilder performance

2004-02-14 Thread WJCarpenter
sn> My tests comparing the two methods showed no net difference. Each sn> method would slightly better the other in some tests, but in no sn> test was either better by more than 10%, if I recall. After originally posting the question today, I did run a short series of tests (that I already had la

Re: nightly CVS snapshot from Sep 2003

2004-02-13 Thread Scott Nichol
not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: "WJCarpenter" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, February 13, 2004 5:21 PM Subject: Re: nightly CVS

Re: SAXSource vs DocumentBuilder performance

2004-02-13 Thread Scott Nichol
My tests comparing the two methods showed no net difference. Each method would slightly better the other in some tests, but in no test was either better by more than 10%, if I recall. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail fr

Re: nightly CVS snapshot from Sep 2003

2004-02-13 Thread WJCarpenter
sn> I had a quick look to confirm that there are no new nightly sn> builds. Relatedly, since things seem pretty quiet in recent months, would it be possible to contemplate an Apache SOAP 2.3.2 release to get the accumulated fixes and performance improvements out the door? (If there is some grun

Re: nightly CVS snapshot from Sep 2003

2004-02-06 Thread Scott Nichol
It seems my ISP has sorted out some SMTP problems and can successfully forward my e-mail to apache.org again... I had a quick look to confirm that there are no new nightly builds. I am poking around to try to understand how Axis (and some other Apache Web Services) projects are being built nig

Re: Server-Side as a Client of other Web Service

2004-02-03 Thread Scott Nichol
In this case, I want to change the URL of each of the Listener's Services, so I have one Listener (Listener.class) in my TOMCAT_HOME/shared/classes path (in the same Tomcat instance of my service). All of my listeners are going to use the same class and class' name. How could I use another L

Re: Server-Side as a Client of other Web Service

2004-02-03 Thread Maximiliano Barone
continue to send e-mail directly to you, Max, because my posts to the > list are timing out and being returned to me.) > > Scott Nichol > > Do not send e-mail directly to this e-mail address, > because it is filtered to accept only mail from > specific mail lists. > - Ori

Re: Server-Side as a Client of other Web Service

2004-02-02 Thread Maximiliano Barone
the service classes in $CATALINA_HOME/shared/classes. > > Scott Nichol > > Do not send e-mail directly to this e-mail address, > because it is filtered to accept only mail from > specific mail lists. > - Original Message - > From: "Maximiliano Barone" <

Re: Server-Side as a Client of other Web Service

2004-01-31 Thread Maximiliano Barone
Scott: Thank you very much for your answers. When my service dinamically tries to send the request (invoking) to other Web Services, it fails because it doesn´t find none of the following classes: - Constants - Parameter - Fault - Call - Response All of these classes belongs to org.apache.soap.r

RE: will C++ client work with Apache SOAP server?

2004-01-30 Thread Gatton, Kurt D
Cheng, You might be able to run javah on the .java file. That would make a header file for you. That way you would know what parameters you should pass/expect Kurt -Original Message- From: Cheng Hao [mailto:[EMAIL PROTECTED] Sent: Friday, January 30, 2004 7:38 AM To: [EMAIL PROTECTED] S

Re: Server-Side as a Client of other Web Service

2004-01-30 Thread Maximiliano Barone
Scott: Thanks for your answer. According to your comments I say: 2) I use "Constants.NS_URI_LITERAL_XML" because, as you said, I use Element parameters between these Services. So I will eliminate the BeanSerializer (I was using it and it worked well). 3) Could you please tell me how I c

RE: Building custom faults in Java

2004-01-06 Thread Joe Brown
Title: Message Ransel,   I am a beginner with SOAP & Java, also!   However, I believe what you need to do is to generate your own exceptions.   Try "Java and SOAP" by Robert Englander, O'Reilly Press, 2002 for lots of good info.   Here is code for custom fault:   public class generateMyFau

Re: Request Scope does not invalidate the session at the end of therequest, long-lived sessions hang until timeout causing out-of-sessions error.

2004-01-06 Thread Scott Nichol
address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: "Max Poon" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, January 06, 2004 5:10 AM Subject: Re: Request Scope does not inval

[Fwd: Re: Request Scope does not invalidate the session at the end of therequest, long-lived sessions hang until timeout causing out-of-sessions error.]

2004-01-06 Thread Max Poon
Hi all I am also deploying applications on top (routed by MessageRouterServlet).  It seems that, during our stress test, the MessageRouterServlet is creating a lot of Session objects and exceeding the servlet container's limit. Since my 'application' can just run within the request and do

Re: SocketException

2003-12-11 Thread Scott Nichol
It looks like the server you are connecting to is closing the connection after you write to it. It could be a bug in the server or intentional behavior if, for example, you are supposed to supply some sort of authentication information. Scott Nichol Do not send e-mail directly to this e-mail a

Re: NoMethodDefined

2003-12-11 Thread Scott Nichol
Kurt, The error is coming from your *client*, not the server. Make sure soap.jar is in your client CLASSPATH. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: "Gatton, Kurt

Re: Is this possible?

2003-11-13 Thread Sanjiva Weerawarana
Yes, writing a provider is the way to get total control of message processing. Sanjiva. - Original Message - From: "Mark" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, November 13, 2003 2:51 PM Subject: Is this possible? > Hi > I am new to SOAP and des

Re: No Deserializer found to deserialize

2003-11-06 Thread Scott Nichol
The error message is strange, because it shows both the namespace (http://schemas.xmlsoap.org/soap/envelope/) and namespace prefix (SOAP-ENV) with the local name (Fault). What server is returning the Fault to your client? Can you capture the response message (e.g. on Win2k with netmon, on UNIX

Re: Tomcat Service and Shared Drives?

2003-11-05 Thread Scott Nichol
When you run Tomcat as a service, you also assign it an account under which it will run. On Win2k, this shows up under the "Log In As" in the Services administration tool. That account must have permission to access the share in question. As to what drive mapping a service sees, I am not certa

Re: Undeploying All Services?

2003-11-04 Thread Scott Nichol
There is no way to undeploy all services with one command (although it would be nice, as you point out). What I do on development environments is stop Tomcat, delete DeployedServices.ds, then start Tomcat, which provides a fresh start. I also agree that undeploying using the deployment descript

Re: SOAP 1.2 data model

2003-10-24 Thread Scott Nichol
Mark, I suggest you try [EMAIL PROTECTED] or [EMAIL PROTECTED] Those lists support Apache Axis, which supports SOAP 1.2 (Apache SOAP will not advance beyond SOAP 1.1). Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail

Re: [soapbuilders] Re: Release plan of Apache Axis C++ version 1.0

2003-10-21 Thread Sanjiva Weerawarana
[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, October 19, 2003 4:45 PM Subject: Re: [soapbuilders] Re: Release plan of Apache Axis C++ version 1.0 > Hi, > As gSoap does more than what is proposed here - that should be the

Re: binding style

2003-10-20 Thread Scott Nichol
A few comments. 1. Apache SOAP does not support document style for a service. If you want responses for users/programmers of a SOAP implementation that does, try Apache Axis. 2. Yes, SOAPAction would be a likely way to specify the operation to perform. 3. Although many parts *can* be specified

Re: [soapbuilders] Re: Release plan of Apache Axis C++ version 1.0

2003-10-20 Thread ask ari
PROTECTED]>, <[EMAIL PROTECTED]>, <[EMAIL PROTECTED]> Subject: [soapbuilders] Re: Release plan of Apache Axis C++ version 1.0 Date: Wed, 15 Oct 2003 13:34:22 -0400 That is good news, but I wonder why SOAP 1.1 and SOAP 1.2 are not fully supported? Also you don't mention MEPs such as on

Re: Renewed SOAP/Axis Website

2003-10-16 Thread [EMAIL PROTECTED]
Dear Sirs, what is the better WS-SOAP spec to develop web-services: apache-SOAP or apache-AXIS? And... What are the differences between the two? Thank You v.m. cBorrelli Info92 Srl, R&D, AQ Italy +39 335 7866355 <>

Re: Renewed SOAP/Axis Website

2003-10-16 Thread Davanum Srinivas
Awesome...And Thanks. -- dims --- Tetsuya Kitahata <[EMAIL PROTECTED]> wrote: > > Hi, WS-Axis Development Team > Hi, WS-SOAP Development Team > (Sorry for the cross-post, too) > > I have committed re-newed website of SOAP/Axis into > "ws-site" module. F

Re: Renewed SOAP/Axis Website

2003-10-15 Thread Tetsuya Kitahata
Hi, WS-Axis Development Team Hi, WS-SOAP Development Team (Sorry for the cross-post, too) I have committed re-newed website of SOAP/Axis into "ws-site" module. Forrest-ized. Please feel free to review and comment on it. http://ws.apache.org/axis/ http://ws.apache.org/soap/ Be

Re: Release plan of Apache Axis C++ version 1.0

2003-10-15 Thread Sanjiva Weerawarana
TED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, October 15, 2003 11:34 PM Subject: Re: Release plan of Apache Axis C++ version 1.0 > > That is good news,

Re: Release plan of Apache Axis C++ version 1.0

2003-10-15 Thread Tetsuya Kitahata
Hi, Just a suggestion: On Wed, 15 Oct 2003 15:39:08 +0600 "Susantha Kumara" <[EMAIL PROTECTED]> wrote: > Release Announcements: > - > [EMAIL PROTECTED] > [EMAIL PROTECTED] > [EMAIL PROTECTED] > [EMAIL PROTECTED] > [EMAIL PROTECTED] > [EMAIL PROTE

Re: Release plan of Apache Axis C++ version 1.0

2003-10-15 Thread Robert van Engelen
That is good news, but I wonder why SOAP 1.1 and SOAP 1.2 are not fully supported? Also you don't mention MEPs such as one-way and async. Do you plan to support polymorphism (e.g. Apache Axis map)? Attachments? Note that gSOAP (SourceForge and soon: Debian) is already stable and provides more f

RE: Release plan of Apache Axis C++ version 1.0

2003-10-15 Thread thomas . cherel
Title: Message Very nice :-) The list of the Major features is saying partial support for SOAP1.1 and SOAP1.2. Is there a list somewhere of what is not supported? Thanks.   Thomas -Original Message-From: Susantha Kumara [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 15, 2

Re: Release plan of Apache Axis C++ version 1.0

2003-10-15 Thread Davanum Srinivas
+1 for the release plan. Thanks, dims --- Susantha Kumara <[EMAIL PROTECTED]> wrote: > Hi all, > > We are happy to announce our plan to release Apache Axis C++ implementation. > > I have volunteered to be the release manager for Apache Axis C++ initial release. > > Following is the release pl

Re: Forrestized -- WS-SOAP

2003-10-07 Thread Tetsuya Kitahata
Hi! On Sun, 5 Oct 2003 22:13:49 -0400 "Scott Nichol" <[EMAIL PROTECTED]> wrote: > It would be wonderful to upgrade the look of the docs. Since these > pages on the site are also packaged with the code distribution, the > content would, of course, need to be rendered statically. Is that > how yo

Re: Forrestized -- WS-SOAP

2003-10-05 Thread Scott Nichol
Wow! Thanks for the great work. I am so happy to see the site with a more modern look and more consistent with the other sites. I always wanted that, but there were other development issues to address first. It would be wonderful to upgrade the look of the docs. Since these pages on the site

Re: Deploy Soap on iWS 6

2003-10-02 Thread Scott Nichol
Are you able to run any JSPs on your iPlanet 6 installation? The error seems to be that iPlanet cannot find the Sun Java compiler to compile a page. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Origin

Re: Errors on execution of ServiceManagerClient

2003-09-30 Thread Scott Nichol
ssage - From: "CHALISSARY DAVID" <[EMAIL PROTECTED]> To: "'Scott Nichol'" <[EMAIL PROTECTED]> Sent: Tuesday, September 30, 2003 9:40 AM Subject: RE: Errors on execution of ServiceManagerClient > Anyhow, It doesn't make any difference I g

Re: How to access HTTP response status code

2003-09-30 Thread Scott Nichol
There is not currently any way to do this. The Apache SOAP code reads the HTTP status down in HTTPUtils#post, but does not pass it back up the call stack. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. -

Re: Errors on execution of ServiceManagerClient

2003-09-30 Thread Scott Nichol
mail lists. - Original Message - From: "CHALISSARY DAVID" <[EMAIL PROTECTED]> To: "'Scott Nichol'" <[EMAIL PROTECTED]> Sent: Tuesday, September 30, 2003 5:44 AM Subject: RE: Errors on execution of ServiceManagerClient > No there is a shared

Re: Errors on execution of ServiceManagerClient

2003-09-30 Thread Scott Nichol
address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: "CHALISSARY DAVID" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, September 30, 2003 4:52 AM Subject: Re: Errors on execution of ServiceMan

Re: Errors on execution of ServiceManagerClient

2003-09-30 Thread CHALISSARY DAVID
Hi all,   I am running the ServiceManagerClient to see if the installation is correct, when I connect using the browser I am getting the message as was expected but when I execute on the command line I get an error as mentioned below The error is about the response being in text/html

RE: Node.namespaceURI

2003-08-29 Thread Glen Daniels
ret" <[EMAIL PROTECTED]> > To: "Scott Nichol" <[EMAIL PROTECTED]> > Cc: "WWW DOM" <[EMAIL PROTECTED]> > Sent: Thursday, August 28, 2003 1:16 PM > Subject: Re: Node.namespaceURI > > > On Fri, 2003-07-25 at 11:20, Scott Nichol wrote: >

Re: Soap SSL Communication

2003-08-14 Thread Scott Nichol
Some docs for using SOAP with SSL are included in the distribution and can also be found on-line at http://cvs.apache.org/viewcvs.cgi/*checkout*/xml-soap/java/docs/install/FAQ_ Tomcat_SOAP_SSL.html?rev=HEAD&content-type=text/html. Scott Nichol - Original Message - From: "Santa" <[EMAIL PR

Re: How to descibe Element in wsdl?

2003-07-31 Thread Scott Nichol
Did you write your own serializer or use literal XML encoding? If you used the latter, to my knowledge, Apache SOAP is the only implementation that supports this, so there is no sense trying to write WSDL. If you wrote your own serializer, you can write WSDL, although if you truly send arbitra

Re: Re: encoded characters in SOAP

2003-07-22 Thread Jan Hudec
IL PROTECTED] >Předmět: Re: encoded characters in SOAP > > >Jan, > >I ran a test on the current build of Apache SOAP and did not get the same behavior. >However, in looking more closely at the envelop below, it looks to me as if you might >be using Axis instead of Apache SO

Re: encoded characters in SOAP

2003-07-21 Thread Scott Nichol
Jan, I ran a test on the current build of Apache SOAP and did not get the same behavior. However, in looking more closely at the envelop below, it looks to me as if you might be using Axis instead of Apache SOAP. If you are indeed using Axis, I suggest you post to [EMAIL PROTECTED] If you ar

Re: encoded characters in SOAP

2003-07-21 Thread Scott Nichol
Jan, I am looking into this. There is no reason to use the entities in XML. Only '&', '<' and '>' need to be "escaped". I will find and change the code that is doing this. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specifi

  1   2   3   4   5   6   7   8   9   10   >