Re: Tomcat Servlet

2001-10-11 Thread siddharth aggarwal
I guess having tomcat and jserve on the same m/c shouldn't be a problem. apache soap can be downloaded from http://xml.apache.org/dist/soap/version-2.2/ Sid On Thu, 11 Oct 2001 Yael Moskovich wrote :

Re: Started problem

2001-10-10 Thread siddharth aggarwal
Hi Juguang, The directory containing the package "samples" needs to be in your CLASSPATH. i.e. if your "samples" package is in the directory C:\soap-2_2\ then your CLASSPATH should contain C:\soap-2_2\ By the way where is your application deployed --> linux or windows. I suppose you have i

oracle soap

2001-10-04 Thread siddharth aggarwal
Hi, Has anybody worked on oracle using SOAP? What kind of support is porvided in oracle for soap? thanx, Sid

Re: NEW SOAP user.

2001-10-03 Thread siddharth aggarwal
Hi shanthi, In case you are using apache soap2.0 and xerces1.4.3 parser, maybe you should cross check on the following things: 1. CLASSPATH contains: location of soap.jar, xerces.jar and location of your java classes(i.e. you client and server side applications) 2. JAVA_HOME contains hom

Re: Re: Re: performance of apache SOAP

2001-09-23 Thread siddharth aggarwal
But just out of curiosity I'd like to know what would happen if I set the backlog to a much larger value .. say 5000.

Re: Re: performance of apache SOAP

2001-09-20 Thread siddharth aggarwal
Hi, Thanks a lot Scott, for your effort. I'm sure it will solve my problem. I have a small doubt about the backlog parameter that you have mentioned in the excerpt from server.xml that you have given from your mail In my file it looks something like

Re: Re: performance of apache SOAP

2001-09-19 Thread siddharth aggarwal
Hi, The files are client.java and server.java client.java has some redundant code anyway run as >java client 10 10 those 10 and 10 donot have any significance for benchmarking .. just adding two integers. client.java --- package sum; import java.net.URL; import java.util.Vector; im

Re: Re: performance of apache SOAP

2001-09-19 Thread siddharth aggarwal
Hi, I have attached the files client.java and sumserver.java which are the client and server programs respectively. I ran the two on the same machine. Presently I have set the no of threads spawned in the client program to 500. I tried also for 20 and 50 threads. My benchmarking results were:

performance of apache SOAP

2001-09-18 Thread siddharth aggarwal
Hi, I was trying to test the performance of APACHE soap on windows NT 4.0 I wrote a simple service application which adds two numbers. The service is deployed with tomcat engine. The client creates a large number of threads and each thread builds its own call object and sends two numbers to th

multithreaded soap server

2001-09-17 Thread siddharth aggarwal
side SOAP application or is it taken care of by apache soap implementation itself. Regards, Siddharth On Tue, 18 Sep 2001 siddharth aggarwal wrote : >But isn't glue a SOAP implementation (or is it a soap >server)? I am already using Apache SOAP (I am >comfortable with its API c

Re: RE: multithreaded soap server

2001-09-17 Thread siddharth aggarwal
8 Sep 2001 graham glass wrote : >GLUE is free for most commercial uses. >download from: http://www.themindelectric.com > >cheers, >graham > >-Original Message- >From: siddharth aggarwal [mailto:[EMAIL PROTECTED] >com] >Sent: Monday, September 17, 2001 11:22

multithreaded soap server

2001-09-17 Thread siddharth aggarwal
Hi, Can anybody suggest a multithreaded high performance soap server to me in java which is freeware? (At the moment I am using jakarta-Tomcat server) Regards, Siddharth.

problem with custom parameters

2001-09-13 Thread siddharth aggarwal
Hi, I want to trnasfer some custom parameters using apache SOAP RPC.I was trying to transfer a Vector. My client code looks like. // file Client.java package dbcustom; public class Client { public static void main(String[] args) throws Exception { URL url=new URL(args[0]); // Address o

which is the best soap implementation?

2001-09-11 Thread siddharth aggarwal
times faster than >apache soap2.x. >The major chage was they are using sax parser instead >of dom it makes to >take less memory and increases >the prerformance. > > >cheers >gopi > > > > > >-Original Message- >From: siddharth aggarwal [mailto:

problem making choice of soap implementation

2001-09-10 Thread siddharth aggarwal
Hi, I want to send a stream of words from a client to a server. The server processes this stream of words and sends back 1 or more xml documents (i think this could be done by concatenating the xml documents and then converting it all to one string). The client then needs to process these xml

problem specifying parameters

2001-09-10 Thread siddharth aggarwal
Hi, I am using apache soap to transfer xml data between a client and server and vice versa. I want to transfer a set of strings as parameter to the remote procedure call. I have inserted the strings into a Vector and then I am sending this vector as parameter . The code is as follows on the