Re: Axis memory leak

2005-01-14 Thread V D
I reported it at: http://issues.apache.org/jira/browse/AXIS-1765 Tim K. (Gmane) wrote: Can you please file a bug for this at:

Re: Please help vote for this issue

2005-01-11 Thread V D
Thank you for pointing this out. However, what about the problem of attachment to a different request. Right now, after the the first request the receive an attachment, using the same stub to make another request (a different function call) would then send the attachment. This should not hap

Re: java2wsdl ant task for document/literal

2004-12-20 Thread V D
Good question. I assume that this problem was talked about so many times up here, someone must listen. However, I am wrong to assume forum can replace bug report (probably some laziness kick in too), and I should have file the bug report instead. I'll do that and post a link here later. Tha

Re: java2wsdl ant task for document/literal

2004-12-20 Thread V D
WAJSBERG Julien RD-BIZZ wrote: Ephemeris Lappis a écrit : Thanks for your feedback. Bad news !... I'd like to have a point of view from the Axis team about this issue. I'm not currently working a lot in web services domains, but according to what i've been reading in this list and others, documen

Axis server performance problem with corrupted message

2004-12-15 Thread V D
I tried to send corrupted message to an Axis server. Normally, I would get ~ 250 hits/seconds. However, when a corrupted message is sent to the server, I get 1 hit per 9 seconds. This is more than 2 thousand times slowser! Could this be used for denial of service attack? Also, because the

Re: returning multiple parameters - including datahandler

2004-12-12 Thread V D
I wonder if this has something to some buffered flag. Did you try to send some small text file attachment? If it works, then it could be the size of the file you send (Tomcat could limit the size that you can post to it, I think you can change this limit somewhere in the configuration). Don'

Axis, gSoap Project

2004-12-10 Thread V D
I just created a Netbeans 4.0 project which has the following: 1) Custom ant script for generating wsdl from java interfaces 2) Custom ant script generating Java stub and skeleton from wsdl. 3) Ant script for generating gSoap code for C and C++ 4) A swing example client that can call the server 5)

Re: Quality of Axis with respect to document and literal style

2004-12-05 Thread V D
Here's my summary of what's going on: 1) Using Java2Wsdl to generate wsdl for RPC/encode and then using Wsdl2Java to generate all stubs and skeletons works fine. However, switching this to document/literal does not work. Some API are changed such as Arrays are wrapped in a class, and if I manu

Re: Quality of Axis with respect to document and literal style

2004-12-05 Thread V D
The problem below probably has something to do with the attachment. This is really serious. When looking at the xml data sending back and forth, the request to the server from client send the attachment comming back from previous call. The problem is that this function call does not have any

Re: Quality of Axis with respect to document and literal style

2004-12-05 Thread V D
The following is not a problem of Axis. When sending back an array from the server, the array's element order appeared to be changed. Looking at the xml data sending back, the array's element is already changed here. I am sorry for this mistake. This was my fault. I changed the order of the it

Re: Quality of Axis with respect to document and literal style

2004-12-05 Thread V D
Investigating this further, I found out the reason for one of the problems above. When sending back an array from the server, the array's element order appeared to be changed. Looking at the xml data sending back, the array's element is already changed here. So it has something to do with th

Quality of Axis with respect to document and literal style

2004-12-04 Thread V D
I am not sure this is my own case, or it's general to other people. I got Axis to work well with rpc/encoding style. However, since switching to document/literal style, I have all kind of problems. Problem with Java2Wsdl generating wrong wsdl file, problem with requests works and fail randomly

Re: Bug in Java2Wsdl

2004-12-04 Thread V D
More on this, when using Java2Wsdl with document and literal style, and also using it with rpc encoding on a same interface, any method that returns an array of a bean class will have different signatures (between doc/lit style and rpc/enc style). For example: public interface Test{ public My

Bug in Java2Wsdl

2004-12-04 Thread V D
I have an interface: public interface Test{ public String [] getList(); } when using java2wsdl with document and literal style, the return type of getList is String, not String[] or ArrayOfString, or anything like that. This is Axis 1.2 RC2

Big bug in Axis? DataHandler data is sent when making request without any parameter

2004-11-25 Thread V D
I have something like this: DataHandler getData(); When a client call a server, the server send back a file (a FileDataSource passing into a DataHandler instance). All good. The client receive the data, wrap it in a BufferedReader and read all the data, then close the reader stream. However,

Does axis 1.2 comply with JDK 5.0 (1.5)

2004-11-14 Thread V D
When generating java code using wsdl2java, I have these lines: oper.setStyle(org.apache.axis.enum.Style.RPC); oper.setUse(org.apache.axis.enum.Use.ENCODED); These enums causes problem when I compiling with jdk 5.0. So, does Axis 1.2 supporting Jdk1.5? Is there any option for the co

What is the name space for DataHandler?

2004-11-14 Thread V D
When generating a wsdl from java with attachment (DataHandler), I see this: in the message declaration. Is this "apachesoap" namespace not following standard? What is the standard way of doing this? Would this WSDL be a problem if running under other library/platform than Axis? Thanks, Vh.

Cannot run AdminClient

2004-11-14 Thread V D
Running axis 1.2 RC, when I deploy the attachment example, I got the follow error: Processing file attachdeploy.wsdd Exception: AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException faultSubcode: faultString: java.net.ConnectException: Connection refused: connect fa

Re: Performance issue with using Axis

2004-08-03 Thread V D
How about adding a local host entry into the host file? Hrishikesh Kumar wrote: We are using 1.2 Beta version on Linux with Tomcat. This is what is giving such high time. We tested the same 1.2 Beta same program on WINNT and it is working within .5 seconds. We are still working on changing the ver

Re: Performance issue with using Axis

2004-08-02 Thread V D
Maybe try a hello world problem first. It should take you couple mili seconds. Hrishikesh Kumar wrote: Hi All, We have implemented a Web Service using Axis. We have also developed Java clients using the stubs created by Axis (WSDL). A simple call which returns like some 10 tags is taking aroun

Re: WSDL to C++ in Visual Studio ??

2004-07-18 Thread V D
Assuming you get the WSDL, then you can use pretty much any one of the handful of SOAP implementations out there that support VC++. Available products include (not an exhaustive list): PocketSOAP (www.pocketsoap.com ) WhiteMesa (www.whitemesa.com

Re: Advanced Troubleshootiong with Arrays in Axis

2004-07-17 Thread V D
Could you please take just a minute, and test it out, instead of reasoning? Just call this query function, but do not assign the returned value to any object. [EMAIL PROTECTED] wrote: I do not think that is truly the case because I can see from my logging handler that an array is created and f