Re: Axis and .Net client

2005-01-11 Thread Bill Keese
I guess you ran wsdl2java, and you are using the generated deploy.wsdd file, right?  When you run wsdl2java, maybe you need the -W flag so it doesn't change to wrapped?  Haven't tried it though. Vishu wrote: I specified “document” in WSDL and Axis translated that to “Wrap

RE: Axis and .Net client

2005-01-11 Thread Vishu
I specified “document” in WSDL and Axis translated that to “Wrapped”. I see that it lets empty method names only in “document” style encoding.   Thanks, Vishu   From: Bill Keese [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 11, 2005 10:31 PM To: [EMAIL PROTECTED] Subject: R

Re: Axis and .Net client

2005-01-11 Thread Bill Keese
It depends what binding style and encoding your AXIS server is running with.  If it's in rpc/encoded or wrapped/literal it's expecting at least the method name inside the soap body.    The default for AXIS is RPC/Encoded. http://www-128.ibm.com/developerworks/webservices/library/ws-whichw

[ATTN] English Axis Wiki was updated

2005-01-11 Thread Toshiyuki Kimura
To: $BF|K\8l(BAxis$B%3%_%e%K%F%#$N3'MM(B (B $B!!LZB<$G$9!#(B (B $B!!F|K\8l%3%_%e%K%F%#$N(BFAQ/Wiki [1] $B$+$iK\2H(B FAQ/Wiki [2] $B$H$7$F%j%s%/$,(B $BD%$i$l$F$$$k1Q8l%3%s%F%s%D$K$D$$$F$G$9!#(B (B $B!!$3$l$^$G(BWiki$B$d%"!<%+%$%P$r1?MQ$7$F$$$?(Bnagoya$B$H$$$&%5!<%PL>$,GQ;_$5$l

Axis and .Net client

2005-01-11 Thread Vishu
Hi, I am trying to invoke a webservice running on Axis from a .Net client. The method doesn’t take any arguments (empty). The .Net client sends a message that looks like the following   Axis complains with “java.lang.Exception: Body not found” Any ideas?   Thanks, Vishu

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

2005-01-11 Thread Toshiyuki Kimura
Hi folks, I've updated the whole of the new Wiki site. Now, most of links should be working well. Please let me know if you find any crucial issues on it. Thanks, Toshi <[EMAIL PROTECTED]> On Thu, 6 Jan 2005, Jeff Greif wrote: - Original Message - From: "Toshiyuki Kimura" <[EMAIL PROTECTED

RE: Service.createCall

2005-01-11 Thread Vivek Singhai
Hi, I figured out that writing a client with stub is the most easiest thing to do. You don't have to worry about writing the creation of call code manually. Create the stub from wsdl2java. You can use AudaOrderService audaOrderService = new AudaOrderServiceLocator();

Service.createCall

2005-01-11 Thread jecki
hi, I'm trying to consume a web service using AXIS client API. Can anyone give me the best practice to code the client application? Should I create Service or Call object all the time, or can I reuse it... or what if I want to use Service or Call object in a Servlet, which is not thread-safe.

Service.createCall

2005-01-11 Thread jecki
hi, I'm trying to consume a web service using AXIS client API. Can anyone give me the best practice to code the client application? Should I create Service or Call object all the time, or can I reuse it... or what if I want to use Service or Call object in a Servlet, which is not thread-safe.

Re: Big problem generating correct code with WSDL2Java

2005-01-11 Thread Bill Keese
No such operation 'SignRequest' This happens because your operation is called "getSign" not "SignRequest", right? I don't really understand how this works though. I thought that you have the same name for the operation and the top element in your request. (Your names are differen

RE: Disabling Certification validation in HTTPS

2005-01-11 Thread Carsten Friedrich
Instead of modifying the meta-inf stuff you can also call System.setProperty( "org.apache.axis.components.net.SecureSocketFactory", "com.xxx.client.util.UnsecureSocketFactory"); at the very start of your application. Either in main or init (if run

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

2005-01-11 Thread Bill Keese
OK, I think I understand what's going on now.  There is both a bug and a "missing feature". Bug: In document/literal mode, Axis generate a tag when writing out the return value;  it shouldn't.  That tag only makes sense in wrapped/literal mode.  (This is what Ann was saying.) Missing feature

Re: org.xml.sax.SAXException: Found character data inside an array element while deserializing

2005-01-11 Thread Chris Kelly
You might need to change your array definitions from the current form to something like this: There was a message about this on axis-dev a while back but I can't find it. On 11 Jan 2005 at 16:03, Daniel Hinojosa wrote: > Has anyone seen this exception? > > > org.xml.sax

org.xml.sax.SAXException: Found character data inside an array element while deserializing

2005-01-11 Thread Daniel Hinojosa
Has anyone seen this exception? org.xml.sax.SAXException: Found character data inside an array element while deserializing at org.apache.axis.AxisFault.makeFault(AxisFault.java:101) at org.apache.axis.client.Call.invoke(Call.java:2405) at org.apache.axis.client.Call.invoke(Call.java:2301)

RE: client-config.wsdd

2005-01-11 Thread Flores, Raul
I found the following in this article: http://www.fawcette.com/javapro/2003_04/online/wsdl_kjones_04_29_03/defa ult_pf.aspx To create an Axis client that uses simple sessions, you need to configure the Axis client-side framework to use the handler. The procedure is similar to that for the server,

client-config.wsdd

2005-01-11 Thread EXT-Patel, Rajesh M
Where can documentation on how to configure client side axis using client-config.wsdd. Raj

RE: Disabling Certification validation in HTTPS

2005-01-11 Thread Rich Bramante
Title: Message Hi Christian,   Take a look at this thread.   http://marc.theaimsgroup.com/?l=axis-user&m=110211375809714&w=2   What we had to do was to create a custom socket factory that trusted all certs, and then point Axis at our factory class via the meta-inf stuff.     -O

RE: Disabling Certification validation in HTTPS

2005-01-11 Thread Flores, Raul
Title: Message The code below uses a keystore to validate sites. Check sun site or other resources to find out how to build a keystore/truststore from: keytool   I generate a self signed cert in the keystore and then import remote client certs.       // If we are running https protocol (

Problem with custom serialization

2005-01-11 Thread jocsch
Hi list, I have a problem with the serialization of a javabean style object. Short description: The javabean has an integer field which is not represented by a type but instead by a pair of http://schemas.xmlsoap.org/soap/encoding/"; soapenc:arrayType="xsd:anyType[3]" xsi:type="soapenc:

RE: AXIS for Tandem OSS

2005-01-11 Thread Ayers, Sam
Title: AXIS for Tandem OSS Claude, I've implemented Axis on HP NonStop (Tandem).  There is a presentation posted on the ITUG Java SIG home page (see link below)     http://www.itug.org/sigs/java.cfm   Scroll down to the "Document downloads" section.  The presentation is entitled "Practical

Disabling Certification validation in HTTPS

2005-01-11 Thread Faucher, Christian
Title: Message Hi,   I have a SOAP Server that does not have (yet) its trusted certificate, but nonetheless runs in HTTPS.  For instance, we can use portals on it, providing we accept the fact the server cannot authenticate itself.   I run a Axis client that connects to this server, using a H

Big problem generating correct code with WSDL2Java

2005-01-11 Thread Antonio Ruiz Martínez
Hello! I'm writing you because I'm having a lot of problems to generate a simple web service from a file .wsdl that is very simple. I wonder if you could help me please. I'm going to try to describe the steps that I'm doing. For this example, I'm using axis1.2rc2. 1) The command that I'm usi

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

2005-01-11 Thread Ephemeris Lappis
I don't know if Jonas uses all axis tools options to generate what it needs to deploy the ws endpoints. I will ask it to the Jonas team. If i had time, i should also build a simple test ou of Jonas to evaluate the axis behaviour without Jonas. But, for the moment, time is precisely what i have not

Re: Please!!! help me on this exception

2005-01-11 Thread James Ludlow
tom chen wrote: D:\axis-1_2RC1\samples\stock>java -cp d:\jakarta-tomcat-5.5.4\webapps\axis.jar;d:\jakarta-tom cat-5.5.4\webapps\commons-discovery.jar;d:\jakarta-tomcat-5.5.4\webapps\commons-logging.jar;d :\jakarta-tomcat-5.5.4\webapps\jaxrpc.jar;d:\jakarta-tomcat-5.5.4\webapps\saaj.jar;d:\jakarta

Re: Please!!! help me on this exception

2005-01-11 Thread Robert Gombotz
is axis.jar in your classpath?   rob - Original Message - From: tom chen To: [EMAIL PROTECTED] Sent: Tuesday, January 11, 2005 6:16 PM Subject: Please!!! help me on this exception Hello All,   I am trying to setup axis in tomcat 5.5.4 with java 5.0.

Please!!! help me on this exception

2005-01-11 Thread tom chen
Hello All,   I am trying to setup axis in tomcat 5.5.4 with java 5.0. I got an Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/axis/client/AdminClient.    I do not know what is wrong. Please help me!   Thank you very much!   --tom   === D:\axis-1_2RC1

really stumped... messageContext.getOperation() = null

2005-01-11 Thread Kevin Colussi
Hello, I have been running Axis 1.1 for a while... With a handler that calls messageContext.getOperation() to log the client method request... The service runs in a WAS 5.1 env on AIX... Out of the blue I start getting null pointers from the handler... I traces it down this line: public void invoke

Slow network usage by Java/Axis; fast with .Net client

2005-01-11 Thread Nuno Guerreiro
Hi, I'm using Axis 1.1 (under JRE 1.3.1_01) as the client to consume a Web Service exposed by a Siebel system. As usual, proxy classes were generated, based on the WSDL exposed by the Siebel system and compilation runs fine. The problem is that this Web Service returns a 17k response and someti

soap over jms

2005-01-11 Thread Lubomir ILanovsky
Hi all, does anybody know where I can find some 'ready to deploy' and well commented examples on soap over jms? (not the one included in axis) deeper tutorial on this topic would be also very appreciated :) thank you very much lubo

RE: Axis installation - WSDL2Java

2005-01-11 Thread Marika Ludmann
Ooops, Thank you, Sorry about this everyone Marika -Original Message- From: Papadakis, Elliot [mailto:[EMAIL PROTECTED] Sent: 11 January 2005 16:06 To: '[EMAIL PROTECTED]' Subject: RE: Axis installation - WSDL2Java It looks like the path to commons-discovery.jar is wrong (you are missi

RE: Axis installation - WSDL2Java

2005-01-11 Thread Papadakis, Elliot
It looks like the path to commons-discovery.jar is wrong (you are missing the "lib" dir assuming it is in the same place as all the other jars). -Original Message- From: Marika Ludmann [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 11, 2005 10:04 AM To: [EMAIL PROTECTED] Subject: RE: Ax

Re: Tried to enter bugzilla bug on Axis JWS but not listed

2005-01-11 Thread Tim K. (Gmane)
http://issues.apache.org/jira/ I'm not sure though what the difference between Axis and Axis2 projects is. I think Axis is where you want to enter your bug. Tim Michael Oliver wrote: How do I go about entering a bugzilla bug for Axis Michael Oliver CTO Alarius Systems LLC 3325 N. Nellis Blvd,

RE: Axis installation - WSDL2Java

2005-01-11 Thread Marika Ludmann
Here is the axis bit of my classpath .;C:\axis-1_1\lib\axis.jar;C:\axis-1_1\lib\jaxrpc.jar;C:\axis-1_1\lib\saaj.j ar;C:\axis-1_1\lib\commons-logging.jar;C:\axis-1_1\commons-discovery.jar;C:\ axis-1_1\lib\wsdl4j.jar;C:\axis-1_1\; -Original Message- From: Larry Meadors [mailto:[EMAIL PROTEC

Tried to enter bugzilla bug on Axis JWS but not listed

2005-01-11 Thread Michael Oliver
How do I go about entering a bugzilla bug for Axis   Michael Oliver CTO Alarius Systems LLC 3325 N. Nellis Blvd, #1 Las Vegas, NV 89115 Phone:(702)643-7425 Fax:(520)844-1036 *Note new email changed from [EMAIL PROTECTED]  

Re: AXIS for Tandem OSS

2005-01-11 Thread Thomas B Winans
Out of curiosity, have you considered connecting with HP/Compaq? Not sure who, but Compaq folks should be accessible to you if your company has a Tandem. Second thought: is it possible for you to get the source distribution of Axis and build it on Tandem? Does Tandem support the Java jdk that is

AXIS for Tandem OSS

2005-01-11 Thread Conzemius, Clarence P.
Title: AXIS for Tandem OSS What version of AXIS would be used for Tandem OSS? My specific problem is related to the fact that wsdl2java created source files with org/apache/axis/client/Service which is not found on Tandem OSS. Has anyone installed AXIS on Tanem OSS? Any suggestions or directi

RE: Axis installation - WSDL2Java

2005-01-11 Thread Larry Meadors
Not to be contrary, but clearly, you do not have them all on the classpath if you are getting this error. :-) Larry >>> [EMAIL PROTECTED] 01/11/05 7:45 AM >>> Thank you all, I am using JBOSS and I do have all of the jars in the class path Exception in thread "main" java.lang.NoClassDefFoundErro

RE: Axis installation - WSDL2Java

2005-01-11 Thread Marika Ludmann
Thank you all, I am using JBOSS and I do have all of the jars in the class path   Marika   From: sunil [mailto:[EMAIL PROTECTED] Sent: 11 January 2005 11:39 To: [EMAIL PROTECTED] Subject: Re: Axis installation - WSDL2Java   Hi,  You need to include the following .ja

Re: Is lower case first letters oblicatory always in wsdl?

2005-01-11 Thread Anne Thomas Manes
It shouldn't matter. What errors are you getting? On Mon, 10 Jan 2005 11:17:44 +0200, Ilkka Heinonen <[EMAIL PROTECTED]> wrote: > Hello All, > > Thank You, Anne, from your reply for last question. > http://www.newsarch.com/archive/mailinglist/axis/user/msg08622.html > > Using WSDL2Java, seems

Re: ClassCastException parsing fault with 1.2RC2

2005-01-11 Thread Anne Thomas Manes
I believe that the element is invalid. The detail element is defined so: Therefore the content in the detail should be specified within a qualified child element or attribute, but not as string content within . Anne On Mon, 10 Jan 2005 15:31:07 -0500, Rich Bramante <[EMA

Re: Axis installation - WSDL2Java

2005-01-11 Thread sunil
Hi,  You need to include the following .jar files in your classpath. I am using Axis 1.1. running under Tomcat 5.0.27.    think you should download tomcat 5.0.x and use the jars provided by tomcat in the  bin directory.   My classpath has the following jar files. C:\axis\axis-1_1\lib\axis.ja

RE: Axis - .Net Interop Problems

2005-01-11 Thread John Deviney
Thanks Brian. Looking through your wsdl and comparing it to mine put me in the right direction. I put together a smaller prototype where business object getters/setters return only typed arrays for 1 - m relationships. .Net wsdl.exe had no problems with the Axis generated wsdl. .Net did not lik

invoking a service operation with a complex type

2005-01-11 Thread Eddie Johnston
Hello, I've been looking in vain for a solution to this (simple sounding) problem. I'd like to invoke a web service operation with some nested parameters. The operation takes three arguments, but some of the arguments have sub-parts. Probably best shown with a real example - here's what the outgo

Re: Axis installation - WSDL2Java

2005-01-11 Thread Larry Meadors
Better yet- look at the WSDL2Java batch file, it has all the dependencies in it. >>> [EMAIL PROTECTED] 01/11/05 6:05 AM >>> Marika Ludmann wrote: > *I am new to Axis and Web services development. I have however done > web development (JSP, Servlets). I also done some web service > development i

Re: Axis installation - WSDL2Java

2005-01-11 Thread karim
Marika Ludmann wrote: *I am new to Axis and Web services development. I have however done web development (JSP, Servlets). I also done some web service development in .NET.* * * * * *I need to create a web service and client and service using Java and I am trying to (need to) use Axis.* *I am

Axis installation - WSDL2Java

2005-01-11 Thread Marika Ludmann
I am new to Axis and Web services development. I have however done web development (JSP, Servlets). I also done some web service development in .NET.     I need to create a web service and client and service using Java and I am trying to (need to) use Axis. I am also using JBOSS to depl

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

2005-01-11 Thread Michael Schuerig
On Tuesday 11 January 2005 07:26, Ephemeris Lappis wrote: > I don't use wsdl2java. I had it the wrong way around and confused the java2wsdl from your original message with wsdl2java. > In Jonas, using the new (not so new) ejb 2.1 service endpoint > features, i just provide the wsdl (that is gene

RE: axis performance in multithreading env

2005-01-11 Thread Patrick Martin
Well, I wouldn't want to tell you what to do, but how I have gone about it in the past is to [i] Concoct a nice long test, so start-up costs don't get measured as the main cost in the output [ii]Fire up the profiler [iii] Run it under different scenarios This profiler has several modes

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