RE: Web Services testing

2004-02-04 Thread I-Sampige, Srinivas
First of all, are you looking for a free open source one or are you willing to spend money. If you are looking for an open source tool then here you go - I am using Jmeter for functional as well as load testing. Since I had special requirements like attaching files to SOAP messsage directly; I

Attachments not getting cleaned up in Axis1.1

2004-01-29 Thread I-Sampige, Srinivas
Hi, My web service is handling a huge number of attachments. The Axis engine is not cleaning up the attachments and eventually I run out of disk space. I implemented a suggestion posted earlied in the mailing list - http://marc.theaimsgroup.com/?l=axis-userm=105896276712046w=2. This works

RE: Environment variables

2003-12-15 Thread I-Sampige, Srinivas
Be very careful how you put those parameters in the web.xml file. Here is a working sample - ?xml version=1.0 encoding=ISO-8859-1? !DOCTYPE web-app PUBLIC -//Sun Microsystems, Inc.//DTD Web Application 2.2//EN http://java.sun.com/j2ee/dtds/web-app_2.2.dtd; web-app

RE: init-param ...getting null values

2003-12-12 Thread I-Sampige, Srinivas
to the *Impl class, and I would would vote to change this behavior so that is the case. Aaron Hamid I-Sampige, Srinivas wrote: Hi I have implemented the ServiceLifecycle interface method in my web service implementation class and trying to read some input parameters from my web.xml. But, I

RE: init-param ...getting null values

2003-12-12 Thread I-Sampige, Srinivas
last time I checked, and my impl was not itself inspected/called. What Axis version are you using, 1.1? Are you using RPC style with stubs? Aaron I-Sampige, Srinivas wrote: Aaron, I got it working after some close analysis and trial and error. I had place the parameters in the wrong section

init-param ...getting null values

2003-12-11 Thread I-Sampige, Srinivas
Hi I have implemented the ServiceLifecycle interface method in my web service implementation class and trying to read some input parameters from my web.xml. But, I don't see the input parameters at all in my init method even though I am able to print out other details like the real path to a

Web service methods implemented as static methods..

2003-12-08 Thread I-Sampige, Srinivas
I was searching for information to understand the remifications for implementing the methods in my web service implementation class as static menthods. This is the information I found - The Axis web services engine does not include static methods when it generates WSDL

RE: Custom Exceptions non-axis clients

2003-11-17 Thread I-Sampige, Srinivas
Rob, I am experimenting with custom error handling and interop. This is what I have to share - I wrote a custom class that extends java.rmi.RemoteException and implements Serializable (I think you are missing the implements Serializable part). It works just fine for me. On the .NET side I

RE: MessageContext doesn't work at client side?

2003-11-15 Thread I-Sampige, Srinivas
Chris, From you posting I am a bit confused. As far as I understand, after the client has completed the call to the web service, the MessageContext object can still be accessed by retrieving it from the Call object by invoking the getMessageContext() method. So, how can it be said that the

RE: Client accessing MessageContext?

2003-11-13 Thread I-Sampige, Srinivas
Well, I am doing a similar thing..my code for receiving attachments works - Client snippet... String[] array = new String[1]; array[0] = hello; org.apache.axis.MessageContext messageContext = call.getMessageContext(); org.apache.axis.Message currentMessage

RE: Usage with WSAD5.1

2003-11-12 Thread I-Sampige, Srinivas
http://www.websphere-world.com/modules.php?name=Newsfile=articlesid=707 -Srinivas -Original Message- From: Pradeep Jonnalagadda [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 12, 2003 6:13 PM To: [EMAIL PROTECTED] Subject: Usage with WSAD5.1 Hi Guys, Do any of you

RE: Usage with WSAD5.1

2003-11-12 Thread I-Sampige, Srinivas
Further followup to my posting. I am curious why you would want to do that. WSAD5.1 has the necessary things to developtest web services. I guess that is all you need isn't it? -Original Message- From: I-Sampige, Srinivas Sent: Wednesday, November 12, 2003 6:30 PM To: [EMAIL PROTECTED

RE: Custom mapping's and DataHandlers?

2003-11-11 Thread I-Sampige, Srinivas
Here is how I returned a data handler from my web service method (a great resource for you would be to look at the echoAttachments sampple that comes with Axis) - My WSSD - service name=NoAttachment provider=java:RPC operation name=ping returnQName=returnqname returnType=DataHandler parameter

RE: samples.attachments WSDL error?

2003-11-11 Thread I-Sampige, Srinivas
I also had the same problem. I took off the name space prefixes. This might not be the solution but that is what I did to get stuff to work. Others might have a better solution. This is how my WSSD looks like for the service - service name=NoAttachment provider=java:RPC operation name=ping

RE: Custom mapping's and DataHandlers?

2003-11-11 Thread I-Sampige, Srinivas
- From: I-Sampige, Srinivas [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 11, 2003 3:52 PM To: [EMAIL PROTECTED] Subject: RE: Custom mapping's and DataHandlers? Here is how I returned a data handler from my web service method (a great resource for you would be to look

RE: Custom mapping's and DataHandlers?

2003-11-11 Thread I-Sampige, Srinivas
level of complexity for the clients in order to support attachments. Will this mess be all sorted out with SOAP 1.2? Kind Regards, Greg -Original Message- From: I-Sampige, Srinivas [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 11, 2003 4:56 PM To: [EMAIL PROTECTED] Subject: RE

RE: Custom mapping's and DataHandlers?

2003-11-11 Thread I-Sampige, Srinivas
If I understood you correctly, you are suggesting that binary data should be encoded with Base64 inside of the SOAP message itself. Many of the articles I have read have said that Base64 encoding within the SOAP message is inefficient. For example here are two articles -

RE: DIME WSDL

2003-11-11 Thread I-Sampige, Srinivas
Followup to my own posting..somebody please help!.. (please read my posting below..) -Original Message- From: I-Sampige, Srinivas Sent: Monday, November 10, 2003 9:58 PM To: [EMAIL PROTECTED] Subject: DIME WSDL I wrote a web service to handle attachment inputs from the client and send

RE: Sending Array of DataHandlers

2003-11-11 Thread I-Sampige, Srinivas
Rob, Did you face any interoperability issues when returning the DataHandler array? I am most specifically interested in C# if possible. I couldn't get a C# client to be generated for my web service that returns a DataHandler. Thanks Srinivas -Original Message- From: rob rowntree

DIME WSDL

2003-11-10 Thread I-Sampige, Srinivas
I wrote a web service to handle attachment inputs from the client and send attachments back to the client using MIME. I switched over to using DIME and that also worked. But I want to understand the implications of using DIME when it comes to autogeneration of client code using wsdl2java. Can

Fundamental question - what is not and what is an attachment?

2003-11-07 Thread I-Sampige, Srinivas
After writing some code and after reading many articles on the web I am in a confused state. I have a web service with the following method (I have registered the serializers and deserializers) public DataHandler getFile()

Method overloading

2003-11-06 Thread I-Sampige, Srinivas
Does SOAP support overloading? If I want to expose two methods- 1.sayHello(String firstName) 2.sayHello(String firstName, String lastName) Then how do I do it in AXIS. Can somebody point me to some samples and materials where I can learn more about this

RE: Sending Array of DataHandlers to SOAP Service ??

2003-11-06 Thread I-Sampige, Srinivas
Have you tried sending your binary data as atrtachments? As I understand, the way you are doing it, the binary data is encoded as a part of the SOPA message which causes problems when large binary data is invloved. Here is whatI did on my service side to put the attachements in the response -

RE: Method overloading

2003-11-06 Thread I-Sampige, Srinivas
: I-Sampige, Srinivas [mailto:[EMAIL PROTECTED] Sent: Thursday, November 06, 2003 3:48 PM To: [EMAIL PROTECTED] Subject: Method overloading Does SOAP support overloading? If I want to expose two methods- 1. sayHello(String firstName) 2. sayHello(String firstName, String lastName

RE: Building a WAR with web services already deployed

2003-09-12 Thread I-Sampige, Srinivas
Hi Doug I apologize to you if I am asking an obbvious question. I am having a bit of a confusion here since I am new to axis and have been learning and experimenting with it for the past few days. As I understand, axis when living as a webapp say under tomcat(I followed the