AW: Problem setting up Axis

2005-06-27 Thread Ferruh Zamangoer
Hi Janet, if you have downloaded the axis-1_2.zip binaries you can extract this file. After you have extracted you have a folder structure like: - axis-1_2 - docs - lib - samples - webapps - xmls Normally the wsdl4j.jar must be in lib directory, otherwise you can look at axis-1_2\

LogConfigurationException on Webapp startup

2005-06-27 Thread Alexandre Touret
I deployed a simple EAR into OC4J. I had uncommented the "search class loader" instruction in the orion-web.xml and my webapp runs well in tomcat. But in OC4J 10.1.2 I have the following error on the startup of the component and on deployment: 05/06/24 09:16:02 java.lang.ExceptionInInitializerE

AW: deserializing error

2005-06-27 Thread Ferruh Zamangoer
Can you attach your ProvidentResponse class and your deploy.wsdd. _ Von: Patrick Quinn [mailto:[EMAIL PROTECTED] Gesendet: Montag, 27. Juni 2005 23:47 An: axis-user@ws.apache.org Betreff: RE: deserializing error Hi I added the lines suggested below to the deploy.wsdd fi

Re: NTLM Authentication (again)

2005-06-27 Thread Evgeny Beskrovny
Hi, I think the reason it doesn't work for you is because in order to make it work you need to have a Sun implementation of HTTPUrlConnection on a client, while here as I understand you use HttpClient of Apache that might have no implementation of NTLM. When you connect to a proxy it internally use

Help needed to get the parameter order and thier equivalent java type

2005-06-27 Thread Ravi Krishnamurthy
Hello: Would appreciate if somebody should give some pointers how to do dynamic invocation to capture the parameter order and their equivalent java class name for basic types. this is very urgent. Thanks for your time, regards, Ravi

RE: Problem setting up Axis

2005-06-27 Thread anna.veirauchs
Heya, I have a wsdl4j-1.5.1.jar in that directory (I copied the entire contents of \axis-bin-1_2\axis-1_2\webapps\ to Tomcat since I'm just in the testing phase). I'm using Tomcat 5.0.28 and Java SDK 1.4.2_07, though. Anna SunGard Advisor Technol

RE: Problem setting up Axis

2005-06-27 Thread Miller, Janet
I am also missing a file called wsdl4j.jar which the Axis documentation says is supposed to be in my CLASSPATH and AXISCLASSPATH. I've installed everything and don't have this file on my machine. Where does this file come from? Could someone check to see if this file exists on your machine? It

Problem setting up Axis

2005-06-27 Thread Miller, Janet
I have just finished installing Axis and Tomcat. I'm using Tomcat 5.5.9 and Java 1.5.0.03. My happy page displayed correctly, but when I tried to access a sample JWS web service that comes with Axis as follows: http://localhost:8080/axis/EchoHeaders.jws?method=list I got the following error:

RE: Please need some urgent help on java Exception JAXRPCTIE01

2005-06-27 Thread Steven Smith
Hi,     You have a NumberFormatException being thrown, so a String value is being converted into a Number through a method like Integer.parseInt or Double.parseDouble. Check your code for these types of methods, note there is one for each data type Float, Long, etc. Then check to see what va

Re: Please need some urgent help on java Exception JAXRPCTIE01

2005-06-27 Thread Jeff Greif
You specified a parameter as a number, but then supplied no value. The empty string "" is not a valid element or attribute value for a numeric type. Jeff Dipty Maybhate wrote: Hi, I have written a client to invoke a few services. I created the stubs using WSDL2Java and called a t

Please need some urgent help on java Exception JAXRPCTIE01

2005-06-27 Thread Dipty Maybhate
  Hi,     I have written a client to invoke a few services. I created the stubs using WSDL2Java and called a test program using the files created. It generates the stack trace as follows I am passing all the parameters; none is blank and is of the same type as mentioned in the WSDL.  

java.net.SocketException: Broken pipe

2005-06-27 Thread Jay, Thomas
I have a client program that works fine on Windows but on Solaris I get the following error: 15:08:27,251 ERROR [Message] java.io.IOException: java.net.SocketException: Broken pipe at java.net.SocketOutputStream.socketWrite0(Native Method) at java.net.SocketOutputStream.socketWrite

XML and OO (RE: want to put interface declaration for my scheme objects into wsdl?)

2005-06-27 Thread anna.veirauchs
Heya, "Here's a hint: XML is not object oriented. Don't try to apply OO concepts." This statement sort-of interested me. Does it really cause that much interoperability? Or does it mean that the client side interpretation of the schema might vary? Most of my experience is in Java/C+

Problem getting Axis to compile JWS

2005-06-27 Thread Miller, Janet
I have just finished installing Axis and Tomcat. I'm using Tomcat 5.5.9 and Java 1.5.0.03. My happy page displayed correctly, but when I tried to a sample JWS web service that comes with Axis as follows: http://localhost:8080/axis/EchoHeaders.jws?method=list I got the following error: soape

RE: deserializing error

2005-06-27 Thread Patrick Quinn
Hi I added the lines suggested below to the deploy.wsdd file (actually, I only needed to add the encoding style URL, the rest was already there). The error remains the same: Exception in thread "main" AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException faul

Re: want to put interface declaration for my scheme objects into wsdl?

2005-06-27 Thread Anne Thomas Manes
Mick, Schema elements and types aren't objects or classes, so they don't implement interfaces. You can define an abstract type, and then you extend that type by extension or by restriction. Using abstract types is pretty much guaranteed to cause you interoperability problems, though, so you shoul

xml type mappings to Java

2005-06-27 Thread Ravi Krishnamurthy
Hello: From a given Parameter, I could get the TypeEntry QName. Given the QName of the xml type, is there a utility in axis to get the java class it could represent if it is basic type. Thanks, Ravi

running wsdl2java in maven, but instruct not to generate schema files, just defs

2005-06-27 Thread Mick Knutson
I want to have wsdl2java just generate the definitions, not the schema files. I am doing this in maven. I also needed to modify my schema to match my application, but want to continue to generate the definitions as the URLs are changing for testing. Can anyone help me to configure maven to do

Re: Basic Setup Question - Newbie

2005-06-27 Thread Nikita Tovstoles
Take a look at Axis documentation that comes with axis 1.2.1 distro zip(jar). Specifically, check out AXIS_HOME/docs/install.html. Tomcat should be enough for your purposes, you do not need a j2ee container. Tomcat is essentially a web server that understands servlets, ie a servlet container.

Basic Setup Question - Newbie

2005-06-27 Thread Miller, Janet
Very basic question about setting up Axis and figuring out what I need to install. I just want to create a simple test web service that will not be used in a production environment. I need to install a servlet container in order to use Axis. Tomcat is suggested by Apache. Is this all I will need

Exception JAXRPCTIE01

2005-06-27 Thread Dipty Maybhate
Hi,   I am writing a client to invoke a few services. I created the stubs using WSDL2Java and called a test program using the files created. It generates the stack trace as follows   In cancel notification.. AxisFault  faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Client  fau

Basic Setup Question - Newbie

2005-06-27 Thread Miller, Janet
Very basic question about setting up Axis and figuring out what I need to install. I just want to create a simple test web service that will not be used in a production environment. I need to install a servlet container in order to use Axis. Tomcat is suggested by Apache. Is this all I will need

wsdl2java: what to do with client-side (re-)generated java bean classes

2005-06-27 Thread Nikita Tovstoles
I have a Swing application that is also a client of a web service I created. That Swing client uses several Java Bean classes, which are also used as arguments/return types in the said web service. When I use wsdl2java to generate client-side web service stubs, source code for these JavaBean da

RE: want to put interface declaration for my scheme objects into wsdl?

2005-06-27 Thread Mick Knutson
Can anyone please help me with this? I get this generated: public class ConsumerType implements java.io.Serializable { But I need wsdl2java to generate this: public class ConsumerType implements com.baselogic.consumer.IConsumer, java.io.Serializable { From: "Mick Knutson" <[EMAIL PROTE

NTLM Authentication (again)

2005-06-27 Thread Martin Woodward
Hi, I'm trying to talk to a web service that requires NTLM authentication for my sins. The good news is that it works, the bad news is that I have to proxy the request through a local instance of TCPmon to get it to work. Does this sound familiar to anyone, I could very possibly be me doing some

RE: using proxy to connect to server with ssl and arrays with complex objects

2005-06-27 Thread Jairam, Roopnaraine
Problem only occurs with array of complex objects with more than one object. I am sending up to my webservice as one of my param's an array of complex objects, when it has more than 1, the service time's out. I tried changing my service to accept everything as one complex object which contains an

AW: Wss4j.jar

2005-06-27 Thread Dorner, Thomas
Hi, I get the following exception with a wss4j.jar downloaded at an tutuorial! --> Exception say: Proxy file (keys/x509.PFX.MSFT) not found.[] How can I solve this problem? Thank you in advance Tomi java.lang.reflect.InvocationTargetException at sun.reflect.NativeConstructorAccessorImpl

Re: change soapenv / get rid of ns1,ns2,...

2005-06-27 Thread Paul Barry
That's what I feared. Thanks. On 6/26/05, Anne Thomas Manes <[EMAIL PROTECTED]> wrote: > Paul, > > Unfortunately, there is no easier way. Your service is obviously not > WS-compliant if it places unreasonable constraints on the structure of > the message, such as use of namespace prefixes. > >

Wss4j.jar

2005-06-27 Thread Dorner, Thomas
Hi all, Can someone pls give ma an url, where I can download an up-to-date version of the wss4j.jar or send me? --> I also looking for a dokumentation, how to build up keymanagement to use with wss4j. What should I do to get wss4j working for example with WSDoAllSender/Receiver Some help would be

Doubt

2005-06-27 Thread venkatesh
Hi Users,    what is the use of this declaration. I'm using this in SSL.. What this method will do?   AxisProperties.setProperty("axis.socketSecureFactory","org.apache.axis.components.net.SunFakeTrustSocketFactory");     Can somebody help me to know about this method..   Bye

org.apache.axis.ConfigurationException problem.

2005-06-27 Thread Kor Liah
Title: org.apache.axis.ConfigurationException problem. Hello, I have generated a client using WSDL2JAVA . When I run the client I see the following exception but everything seems to work fine(I get the correct return value from the called webservice). Should a client-config.wsdd be added ?

.net client issue for session management

2005-06-27 Thread Rajesh Patel
Hi, I have implemented axis webservice managing sessions using axis 1.2.1. Session management works fine with java client but .net client behaves unexpectedly. For .net client session starts after second method call instead of first call. Here is what happens,   1** First method cal

Re: Dynamic Endpoints

2005-06-27 Thread John Baker
Well, I can conclude that I have disclosed everything I nkow, and I have some idea what I'm doing :-) I guess in broader terms, I'd like to know how to modify deployment descriptors on the fly! Imagine I were creating a Java GUI FrontEnd, and Mr. user wants to add a new Service or Port? Or modify

RE: NoSuchFieldError

2005-06-27 Thread Patrick Quinn
Okay, I think I have worked out the reason for this now - within axis.jar the field has been moved from org.apache.axis.enum.Style.WRAPPED to: org.apache.axis.constants.Style.WRAPPED Patrick -Original Message- From: Patrick Quinn Sent: Sun 26/06/2005 19:

RE: deserializing error

2005-06-27 Thread Patrick Quinn
Great, thanks for the response Ferruh - I will try this when I get a chance. Patrick -Original Message- From: Ferruh Zamangoer [mailto:[EMAIL PROTECTED] Sent: Mon 27/06/2005 11:13 To: axis-user@ws.apache.org Cc: Subject: AW: deserializin

AW: deserializing error

2005-06-27 Thread Ferruh Zamangoer
Yes you have to edit manually your deploy.wsdd with the following lines: http://ProvidentConnector.ProvidentResponseToOrch> http://ProvidentConnector.ProvidentResponseToOrch"; qname="ns: ProvidentResponse" type="java:[packagename of your class]. ProvidentResponse" ser

Axis with Applets

2005-06-27 Thread Dirk Strauss
Hello, I'd like to use Axis in a "simple" Java applet. My testings were successfull .. until I used a real browser. Seems that the browser is a little bit concerned about some functions :/ Anyway, signing the applet isn't enough so I want to ask you if there is a tutorial or a faq somewhere

Please unsubscribe me

2005-06-27 Thread CREMENESCU FLORIN
Hi, I'm trying to unsubscribe from the axis list, but I found this impossible. Could someone remove my address [EMAIL PROTECTED] from this list ? Thank you, Florin PS Here are my subscribe request and the unsubscribe answer from your list manager program (you can see that it's the same