Re: Axis and Weblogic

2004-03-01 Thread Lanto Randriamiharisoa
AxisServlet oamp_ws/services/* You should not put oamp_ws in your web.xml if it's your context If you want to access with the URL http://localhost/oamp_ws/services, you should put AxisServlet /services And so on... /services/* is the URL pattern for http://localhost:7001/oamp_ws/services/you

Custom Serializers and Public Data Members

2004-03-01 Thread Bob Roberts
Hello, I have been working with some pretty simple Custom Serializers/Deserializers and I have noticed that I have had to make my private data members public. If I don't, I get a java.lang.NoSuchFieldException message telling me that Axis cannot find the private field. Is this normal behavior? It

Soap over JMS question

2004-03-01 Thread Saurabh Alurkar
Hello all, I am facing a problem deploying SOAP over JMS and hope that somebody can provide some tip. I am using openJMS and Axis for asynchronous calling of web services., I use a JMS sender to send the message to the queue. I have a JMS listener that retrieves the SOAP msg from the queue an

RE: Interoperability/.NET/Arrays ... and more [long]

2004-03-01 Thread Davanum Srinivas
Folks, If you find a problem, PLEASE try latest CVS, IF it still exists, OPEN a bug report, WITH a sample that can be used to recreate the problem. The ONLY way we can fix problems is IF we know about it and we can RECREATE it. thanks, dims --- Vivek Nagulapati <[EMAIL PROTECTED]> wrote: > Hel

Axis and Weblogic

2004-03-01 Thread Bobba, Ramesh
Hi, I am trying to deploy axis under weblogic 8.1. It looks like axis has deployed (at least from the console perspective). My Context is oamp_ws. When I try to go to http://localhost:7001/oamp_ws it basically shows the page cannot be found message and I also tried: http://localhost:7001/oamp_ws/

Re: Interoperability/.NET/Arrays ... and more [long]

2004-03-01 Thread Dan Christopherson
If you had WSDL that you hand-built in XML-Spy (which is the right way to go, IMHO), why were you trying to use the generated WSDL? I wouldn't do that if I were you - I wouldn't really expect it to work. I'm not confident that the WSDL->Java->WSDL conversion process will give back the original

RE: Interoperability/.NET/Arrays ... and more [long]

2004-03-01 Thread Vivek Nagulapati
Hello Magnus, Thanks for sharing the information. It really helped me!! Magnus, as you said that Axis would not support Document/literal with .NET clients what can be the other option to bypass the serializing/deserializing phase of Axis? When you say that Axis does not support Doc/Lit, do you

wsdl2java and multiref

2004-03-01 Thread Wei Hsu
Hi all,   I am trying to create a wsdl for already existing web services so that people can easily generate client side code using wsdl2java. In my wsdl file, I've decided to use rpc/encoded to best replicate the existing soap messages in use.  But the generated stubs like to use multiRef

Deserialization problem: Axis client and ClassLoader

2004-03-01 Thread marc . brette
Hi all, I use Axis 1.1 to consume the Google WebService. I generated stubs for Google webservice, and when I put Axis jars in the same ClassLoader as my application's, it works fine. Unfortunately, my application will ultimately run in production within a different ClassLoader (the axis jars are

Automatic wsdl creation errors

2004-03-01 Thread Brian Shields
Hi all, i have had my service running for a while now with very few problems. But for some reason, within the wsdl file the namespace for my service has gone from (url)/axis/services/myService to (url)/axis/services/myService/axis/services/myService. This is causing errors with the clients con

servlet 2.3 dependancy?

2004-03-01 Thread Henrik Eriksson
Is Axis 1.2 supposed to be dependent upon the Servlet 2.3 spec? I've downloaded the alpha release from 01-dec-2003 and it appears to be using 2.3 specific stuff in the AxisServlet (HttpServletRequest.getRequestURL). Does anyone know if this is just a flaw in the alpha source or if 1.2 final is g

RE: How to make client using SSL

2004-03-01 Thread Greg Hess
Hi Ayyappan, I assume you mean developing secure clients and servers. If so yes. As your SOAP Web Service is accessed over http just set your web server up for ssl as per you container docs and then request you service using https, that's it. The only difference with the client is that you need t

RE: Interoperability/.NET/Arrays ... and more [long]

2004-03-01 Thread Abhinav Maheshwari
Hi Magnus, You can use the following elements in WSDL to generate proper faults : Define a complex type: Define a message: Define a port: When implementing on Axis, derive your exceptions from java.rmi.RemoteException. I have found that Axis does

AXIS as standalone SOAP parser?

2004-03-01 Thread Søren Neigaard
Is it possible to use AXIS simply as a SOAP parser? I mean without any applicationserver, but where I give AXIS the SOAP XML as a string or a stream? And how is this done? Do I need to generate some classes from the WSDL via some commandline tool? Med venlig hilsen/Best regards Søren Neigaard S

Re: WSDL4Java : where is javax.wsdl.Definition

2004-03-01 Thread Lanto Randriamiharisoa
Thanks a lot, it works better now ;) Henrik Eriksson wrote: It's in wsdl4j.jar (...\axis-1_1\libwsdl4j.jar). -Original Message- From: Lanto Randriamiharisoa To: [EMAIL PROTECTED] Sent: 3/1/04 11:13 AM Subject: WSDL4Java : where is javax.wsdl.Definition Hi all, I'm a new user for Axis,

Interoperability/.NET/Arrays ... and more [long]

2004-03-01 Thread Magnus Sandberg
I have seen quite a bit of post here on interoperability and problems with Axis not generation WSDL as expected. I have been trying for some time to deploy a quite large service, using Axis 1.1, with about a hundred functions and very deep complex data structures, including Arrays. Just want to

RE: WSDL4Java : where is javax.wsdl.Definition

2004-03-01 Thread Henrik Eriksson
It's in wsdl4j.jar (...\axis-1_1\libwsdl4j.jar). -Original Message- From: Lanto Randriamiharisoa To: [EMAIL PROTECTED] Sent: 3/1/04 11:13 AM Subject: WSDL4Java : where is javax.wsdl.Definition Hi all, I'm a new user for Axis, at this time I was able to run and test a service. My next go

Re: WSDL4Java : where is javax.wsdl.Definition

2004-03-01 Thread Tomasz Pik
Lanto Randriamiharisoa wrote: Hi all, I'm a new user for Axis, at this time I was able to run and test a service. My next goal is to convert an Axis WSDL to Java, but I encounter this problem : Exception in thread "main" java.lang.NoClassDefFoundError: javax.wsdl.Definition You need wsdl4j lib

WSDL4Java : where is javax.wsdl.Definition

2004-03-01 Thread Lanto Randriamiharisoa
Hi all, I'm a new user for Axis, at this time I was able to run and test a service. My next goal is to convert an Axis WSDL to Java, but I encounter this problem : Exception in thread "main" java.lang.NoClassDefFoundError: javax.wsdl.Definition Did I miss something ? Here is my CLASSPATH E:\Pr

parameterOrder problem with WSDL2java

2004-03-01 Thread Henrik Eriksson
Hi everyone, I'm trying to run WSDL2java on a WSDL that I have no influence over. I'm pretty sure there's nothing wrong with the format of it, but when I run WSDL2java I get the following Exception: java.io.IOException: Emitter failure. All input parts must be listed in the parameterOrder attrib

RE: Error while restarting httpd

2004-03-01 Thread damitha
Hi, Please check whether you have tested apache2, xerces, linux versions. I've no other idea. Most probably your xerces version is different damitha > Thanks for quick response ... > I have copied the xerces library file into libaxiscpp_mod2.so into > /usr/lib, but error persists > > Cannot load