Re: Class not found error: javax/xml/rpc/namespace/QName

2002-02-15 Thread Glyn Normington
See http://marc.theaimsgroup.com/?l=axis-userm=101363089701434w=2 Glyn

RE: how to log debug message in Axis

2002-02-15 Thread Koen Weyn
Jianlin, I a logging all messages to a file called axis.log: - Take the log4j.properties file out of axis.jar - Adapt it to look like this (or have a look at the log4j Manual if you want something else) # Set root category priority to ERROR and its only appender to A1.

Off topic .NET question

2002-02-15 Thread Adam.Leggett
Currently, I am working to interop with an MS colleague using .NET client with my AXIS service. I have a handler chain that uses LDAP to authenticate/authorize access to my deployed service. Works fine with my AXIS client. Trouble is, we cant seem to be able to get .NET to send the required

RE: Off topic .NET question

2002-02-15 Thread Thomas Börkel
HI! This (basic HTTP authentication) works here. .NET does not send the authorization info with the first attempt, but it sends it with the second attempt if the first attempt has been refused with HTTP error 401 and the correct challenge. It does the second attempt automatically, if the

RE: Off topic .NET question

2002-02-15 Thread Adam.Leggett
Thanks thomas, But im slightly confused here. To authenticate to my AXIS service(s) I have a handler sitting in the request flow, that returns a SOAP Fault in the SOAP response if user cannot be authenticated. The AxisFault generated in the Handler is rethrown as ServletException so a 500 server

JWS WSDL

2002-02-15 Thread Dimmick, Bill
Does Axis currently support the following? http://foo.bar.com:8080/axis/SOAPService.jws?wsdl I'd like to create some quick-and-dirty services and then use Wsdl2Java on them to build client stubs... Thanks, Bill

RE: how to log debug message in Axis

2002-02-15 Thread Jianlin Chang
Title: RE: how to log debug message in Axis With regard to reply from Koen Weyn, how do I insert code using log4j facility in my own handlers? Where can I find relevant docs? Thanks. -Original Message- From: Jianlin Chang Sent: Thursday, February 14, 2002 8:31 PM To: '[EMAIL

RE: how to log debug message in Axis

2002-02-15 Thread Taras Shkvarchuk
Title: RE: how to log debug message in Axis http://jakarta.apache.org/log4j/docs/documentation.html In your class you will need to have something like this: import org.apache.log4j.Category; public class Boo { private static Category log=Category.getInstance(Boo.class.getName());

how to create a transient web service

2002-02-15 Thread Jeffrey Hau
Hi, does anyone know how to make a web service undeploy itself after a certain period of time? is there any easy way in axis to do this? please help. Jeffrey

Sending a float using Axis

2002-02-15 Thread Jon Kurland
I am trying to send a float parameter to a soap server and I keep getting the following error: org.xml.sax.SAXParseException: Character conversion error: Unconvertible UTF-8 character beginning with 0x90 (line number may be too low). Does anyone know how I can go about fixing this. I believe

Having compile problems

2002-02-15 Thread David Hainlin
Greetings, I cannot get the nightly drops to build. It appears to be a problem with org.apache.axis.encoding interfaces which used to be classes. I can build alpha-3 with no issues. I modified the ArraySerializer.java from extends Deserializer to implements Deserializer and it compiled just

Re: Having compile problems

2002-02-15 Thread R J Scheuerle Jr
The encoding framework has changed substantially. The code has been split into interfaces and classes (classes end with Impl). The actual serializers and deserializers are now under org.apache.axis.encoding.ser. It appears that you have an old ArraySerializer class in your tree ? You may want

Re: Having compile problems

2002-02-15 Thread David Hainlin
That got it, thanks for the quick turn. A real rookie mistake... R J Scheuerle Jr wrote: The encoding framework has changed substantially. The code has been split into interfaces and classes (classes end with Impl). The actual serializers and deserializers are now under