limiting # of simultanious calls

2003-10-23 Thread tom schuring
hello, i have created a webservice that when called uses quite a bit of memory. when multiple requests are made multiple chunks of memory get used. how would you go about in limiting the number of concurrent requests to a webservice under axis ? i have tried a static counter, but it never get

Re: xml document as string

2002-11-19 Thread tom schuring
e code, parameters become instances of RPCParam, and >serializing strings in RPCParam results in them being encoded. > >So it looks like you don't need to deal with encoding strings yourself: >Axis will do it for you. > >Steve Gollery > > >tom schuring wrote: &g

xml document as string

2002-11-19 Thread tom schuring
hello, i'm sending a serialized xml doc via an RPC-SOAP call with a signature something like: String sendDocument(String myXmlString); when i use one of the examples to send something i see that it automatically encodes by xml-document so it fits in the envelope. (meaning < get replaced by < e

RE: Returning a parameter, ie. an [out] parameter

2002-11-12 Thread Tom Schuring
just saw a sign-off that is pretty funny: 10q This correspondence is for the named person's use only. It may contain confidential or legally privileged information, or both. No confidentiality or privilege is waived or lost by any mistransmission. If you receive this correspondence in error,

RE: deploying

2002-11-10 Thread Tom Schuring
looks like it works by just adding the entry to the server-config.wsdd   -Original Message-From: Tom Schuring Sent: Monday, November 11, 2002 9:41 AMTo: [EMAIL PROTECTED]Subject: deploying hello,   when i deploy my webservice with   java

deploying

2002-11-10 Thread Tom Schuring
hello,   when i deploy my webservice with   java org.apache.axis.client.AdminClient -lhttp://localhost/axis/services/AdminService deploy.wsdd   i notice that it adds an entry to the:       server-config.wsdd   file for my service.   Can i automatically deploy my service by adding this ent

RE: How to pass a parametre to a webservice on startup

2002-11-10 Thread Tom Schuring
y of passing/retrieving parameters to webservices and if you move to any other SOAP framework you'll have to rewrite that piece of code. -- mattia > > Mohammed > > -Ursprüngliche Nachricht- > Von: Tom Schuring [mailto:Tom.Schuring@;BaycorpAdvantage.com] > Gesendet: D

RE: How I can send a XML file using AXIS

2002-11-10 Thread Tom Schuring
One way is by using RPC-Soap that implements an RPC call like: sendMyXML( String serialisedXMLDocument ) it's pretty simple to implement and does the job. -Original Message- From: Amit Khurana [mailto:amit.khurana@;vichara.com] Sent: Sat 11/9/2002 1:21 AM To: [EMAIL PROTECTED] Cc

RE: How to pass a parametre to a webservice on startup

2002-11-07 Thread Tom Schuring
Hello Mohammed, i asked the same question yesterday and got this useful help: --- I use the parameter element in the WSDD deployment for the service such as: In my service code, I use the following: MessageContext msgCxt = MessageContext.getCurrentContext();

axis-user@xml.apache.org

2002-11-06 Thread Tom Schuring
hello,   to access the :           configFileLocation    C:\myapp\config\config.xml      section in the web.xml file in a servlet i use:   application.getInitParameter("configFileLocation")   to get the parameter value "C:\myapp\config\config.xml"   is there a similar way to acc