Re: [ATTN] Japanese patches are applied

2005-01-06 Thread Toshiyuki Kimura
[EMAIL PROTECTED]"3'$5$s(B (B $B!!LZB<$G$9!#(B (B (B[EMAIL PROTECTED]"3+H/Cf$N:G?7HG$,%"%C%W$5$l$^$7$?!#(B (Bhttp://cvs.apache.org/dist/axis/nightly/axis-bin-1_2RC2.zip (B $B!!K\%P!<%8%g%s$r%$%s%9%H!<%k8e$K!"2<5-$NMM$K%"%/%;[EMAIL PROTECTED](B

RPC/Literal and support in Axis 1.1

2005-01-06 Thread Sunil Kothari
Hi All, I am a bit confused about RPC/Literal combination and support in Axis 1.1. I have heard a lot of discussion about document/literal and RPC/encoded style but not much about RPC/literal in Axis context. Also, it would be nice to know whether it really affects performance in Axis

[Repost] extra classes vs. inheritance search

2005-01-06 Thread Bouche Paul
Hi, I habe the following problem I have an interface similar to this public interface IWebService { public RequestSearchResult requestSearch(SearchRequestBase[] searchRequests); } and the classes look the following the ReqeustSearchResult is not the problem public abstract class

RE: XMLBean data

2005-01-06 Thread Bouche Paul
First of you cannot automatically serialized any arbritrary java object with Axis (it wouldn't know how). For Axis to automatically serialize/deserialize your objects they need to be Java Bean compatible (if you don't know what that is google for java beans). One of the requirements for a java

Re: [BUG] multiple cookies handling bug

2005-01-06 Thread Davanum Srinivas
check jira, there are a few related bugs...am waiting for someone to step in, review the old patches, submit a fresh patch against latest cvs. i can't do that since i don't have a way to test the fixes... thanks, dims On Wed, 05 Jan 2005 23:05:29 -0800, Tim K. (Gmane) [EMAIL PROTECTED] wrote:

RE: XMLBean data

2005-01-06 Thread Jonathan Colwell
I wrote some AXIS de/serializers for XmlBeans that I've been using successfully in the Beehive project. http://svn.apache.org/repos/asf/incubator/beehive/trunk/wsm/src/runtime/ org/apache/beehive/wsm/axis/util/encoding/ Feel free to check them out to see if they suit your needs. One thing to

Re: XMLBean data

2005-01-06 Thread Davanum Srinivas
In CollectionSerializer.java: Copyright (c) 2004 Walt Disney Internet Group. All Rights Reserved.? -- dims On Thu, 6 Jan 2005 07:48:09 -0800, Jonathan Colwell [EMAIL PROTECTED] wrote: I wrote some AXIS de/serializers for XmlBeans that I've been using successfully in the Beehive project.

Re: XMLBean data

2005-01-06 Thread Davanum Srinivas
Jonathan, Do you want to submit a small example as well? patch against current axis cvs would be great! Please add the whole things as a patch in JIRA. thanks, -- dims On Thu, 6 Jan 2005 07:48:09 -0800, Jonathan Colwell [EMAIL PROTECTED] wrote: I wrote some AXIS de/serializers for XmlBeans

Re: axis performance in multithreading env

2005-01-06 Thread Vy Ho
Thanks. I can't wait to get my hand on this. Well, I'll get the nightly build and try it out.

Importing packages

2005-01-06 Thread psm041
Hi all, im new to the list (and to axis too) and i have one question to start... I`ve published the following service just for test and all went well (Sum.jws): public class Sum { public int sum(int valor1, int valor2) { return valor1 + valor2; } } Now i want to publish

Re: Axis with HTTPS : What do I have to make ?

2005-01-06 Thread Alex Karshakevich
No changes are needed, just configure your server for https, how to do that depends on your server. On the client just change the url from http:// to https:// and that should be it. Petese Fabienne (CSE) wrote: I want to install a WebService on a HTTPS Server. I don't want client

webapp redeployment error

2005-01-06 Thread Julien ALLANOS
Hello, here is what I get when my webapp is auto-redeployed (using reloadable=true): 6 janv. 2005 17:12:35 org.apache.catalina.loader.WebappClassLoader findResourceInternal INFO: Illegal access: this web application instance has been stopped already. Could not load

Re: Axis with HTTPS : What do I have to make ?

2005-01-06 Thread Lyndon Tiu
Petese Fabienne (CSE) wrote: Hello, I want to install a WebService on a HTTPS Server. I don't want client authentification. I just want to use the SSL encryption. What do I have to make ? Need I special .jars ? Thanks 1) On client-side java code, add to the beginning (modify the paths

RE: Object as parameters

2005-01-06 Thread Suzy Fynes
How does the wrapped style work? -Original Message- From: Anne Thomas Manes [mailto:[EMAIL PROTECTED] Sent: 05 January 2005 15:41 To: [EMAIL PROTECTED] Subject: Re: Object as parameters It doesn't matter. If you prefer to use parameters, use the wrapped style. If you prefer to use an

RE: Importing packages

2005-01-06 Thread Patrick Martin
Do you really need to have a web service calling another web service directly? This adds more things to consider (exceptions to handle, as you've found). You can easily add import java.rmi.RemoteException; To Sum6.jws But wouldn't it be easier to have the Sum class in a .jar in the web

Null Pointer Exception when trying to create Service

2005-01-06 Thread Hewitt, Christopher
Hi, I have a web service setup that has been working fine in testing. I am now trying to incorporate the client code into an application running in Weblogic 8.1 on a different machine, but there is an issue when creating the Service object. This is the call: Service das = new Service(wsdlUrl,

Re: Importing packages

2005-01-06 Thread Paulo Sérgio
Patrick, thanks for your attention... Your advice didn't work...you can see it by yourself in http://ese.cos.ufrj.br:8081/axis/Soma6.jws (Soma = sum in portuguese ;) ), here is the code again: import org.apache.axis.client.Service; import org.apache.axis.client.Call; import

RE: Importing packages

2005-01-06 Thread Bill Keicher
i haven't been paying attention to this thread...but i just noticed this and clicked on the link since i was bored: Object[] param = new Object[]{new Integer(valor1), Integer(6)}; is not validyou need new Integer(6) -bill -Original Message- From: Paulo Sérgio

Public constructors

2005-01-06 Thread Seaman, Sloan
Title: Public constructors Axis seems to require a public default constructor when using the BeanDeserializerFactory. Is there are way to get it to work against protected/private as well? I was able to write my own BeanDeserializer that extends BeanDeserializer and work against

null return values being filtered out

2005-01-06 Thread Jeremy Link
Im having a problem with some of my response values being filtered out by Axis. I send a request to the server and get back an array of Strings. Some of the values returned from the server will have a null value: string xsi:nil=true / If there are 10 response fields and 5 of them

Axis - .Net Interop Problems

2005-01-06 Thread John Deviney
Problem: The .Net 1.1 wsdl tool does not like the wsdl generated by Axis 1.1. The datatype 'Array' is missing. Environment: Jboss 3.2.3/Axis 1.1 - .NET 1.1 Hosting services via Axis SOAP RPC Encoding which include complex types and arrays of other complex types. I've

Re: Document/Literal : bad part name in axis server response

2005-01-06 Thread Bill Keese
OK. I looked over your mail again and I saw a problem. You are using document/literal, right? For the request, you should have the name of the method within your soap body. And for the response, I'm not sure what is correct but I listed my hypothesis below. (I'm still figuring it out

Re: SV: simple axis tests fail

2005-01-06 Thread Bill Keese
2.i can't get the tcpmon running. when i enter a port number to listen to i get nullpointerexception from a awt-component. by the way which ports should i use for tcpmon and soapmonitor? I've never used soapmonitor. But I have used tcpmon. My app server (running axis) is on port 8080. So I

LocalTransport: Setting operation metadata?

2005-01-06 Thread Michael Schuerig
I'm using LocalTransport in a unit test involving out parameters. Currently, I'm getting back these parameters with names that are determined through introspection. Is there some programmatic way to set metadata like this explicitly? Michael -- Michael Schuerig Those

Re: RPC/Literal and support in Axis 1.1

2005-01-06 Thread Bill Keese
RPC/Literal isn't supported (well). Maybe what you want is document/literal wrapped (sometimes called wrapped/literal). This ends up being similar to RPC/Literal. Although the XML transmitted on the wire is document/literal, Axis automatically parses out the arguments to each method so that

Re: Axis Wiki ?? Where did it go??

2005-01-06 Thread Davanum Srinivas
Yep that's the one...Rick created it from the old one :) -- dims On Fri, 07 Jan 2005 11:28:01 +0900, Bill Keese [EMAIL PROTECTED] wrote: Huh? I thought the wiki was http://wiki.apache.org/ws/FrontPage/Axis ? What's the deal? Davanum Srinivas wrote: it's not clean yet. but the

RE: XMLBean data

2005-01-06 Thread Hung Vu2000
Jonathan, Thanks for your help. I need time to read and use your source code. It' s great if you have a sample how to to use your patch. Best regards, Hung From: Jonathan Colwell [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: XMLBean data Date: Thu, 6 Jan

TCPMon and Resend working for .NET client but not for java client

2005-01-06 Thread Sunil Kothari
Hi, I came acrossthis strange working of TCP monitor tool. First, here's my configuration: 1. Axis 1.1 2. Tomcat 5.0.27 I tried to use resend button in TCPMon with a java client and I also set the content-length in the header accordingly.But I was unsuccessful in getting a response back.

Re: JSPs on Axis Best Practice for accessing server code?

2005-01-06 Thread Bill Keese
I've been wondering about this myself. People always talk about separating the presentation layer from the application layer (business logic), sometimes even running them on separate machines and communicating via EJB, although I've never personally heard of anyone connecting them via SOAP.

Re: [ATTN] Japanese patches are applied

2005-01-06 Thread Shouhei Kodama
$BLZB<$5$s!'(B (B (B[EMAIL PROTECTED](B $B:G?7HG$GF0:n3NG'$r9T$$$^$7$?!#(B (B (Bi18n_ja.properties $B$NF|K\8lLu$K9;@5$,F~$C$F$^$9$M!#(B $B$o$+$j$d$9$/$J$C$F$$$k$N$GNI$+$C$?$G$9!#(B $B$"$j$,$H$&$4$6$$$^$7$?!#(B (B (B (B# $B%*%j%8%J%k$N(Bindex.html$B$K%"%/%;%9$7$F$_$?$H$3$m!"(B

RE: Document/Literal : bad part name in axis server response

2005-01-06 Thread Ephemeris Lappis
Hello. I don't think the problem comes from the request format. First, similar examples, all in document/literal style works fine with the same client (Wireless Toolkit) running against the SUN's JWSDK server. Then, i suppose that if the requests were not correct, the axis server should respond