Re: BeanDeserializer fails in class element for xsd:any type

2005-02-04 Thread Toshiyuki Kimura
$B4_K\$5$s!"(B (B $B!!LZB<$G$9!#$*Hh$lMM$G$7$?!*(B (B $B!!LdBj$,2r7h$7$J$$$N$G$9$M(B...$B!#$=$l$G$G$O!"$D$$$K%P%0(BDB$B$K(B $BEPO?$9$Y$-$H$-$,$d$C$F$-$?$h$&$G$9!#(B (B

Re: JRE 1.5 enum is a Reserved Word Does Axis Comply withthis rule?

2005-02-04 Thread Michael Schuerig
On Thursday 03 February 2005 04:27, Davanum Srinivas wrote: you can replace xxx.enum.yyy with xxx.constants.yyy This only works in cases where one simply uses the constants. It does not work for variable, field, and parameter types. Michael -- Michael Schuerig Not only does

Transfer specific property

2005-02-04 Thread Slimane AMAR
Hello, I want to know if it is possible to tranfer a specific property from a client to a server AXIS like the username, password ... I'm using MessageContext.setProperty(MyProperty, value) but at the serveur i obtain the null value. Thanks in advance.

Re: Transfer specific property

2005-02-04 Thread Sunil Kothari
Try SOAP Headers .You can use them to do send username and password and also you can specify which function needs to be invoked. Sunil Kothari Valtech India - Original Message - From: Slimane AMAR [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, February 04, 2005 3:28 PM Subject:

Server does not load custom axis (De)Serializers

2005-02-04 Thread babloosony
Hi All, I am very fond of JiBX and I am trying to use it for implementing my own (De)Serializers replacing AXIS default (De)Serializers. However when I register my (De)Serializers with AXIS's server-config.wsdd file and start my web service deployed on WebSphere 5.0, I am getting an exception

Weird AXIS Bug ?

2005-02-04 Thread babloosony
Hi All, I am trying consume a ejb web sevice deployed using AXIS 1.2 RC2, WEBSPHERE 5.0 and axis custom (De)Serializers and I am getting below error: [java] AxisFault [java] faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException [java] faultSubcode:

Re: JRE 1.5 enum is a Reserved Word Does Axis Comply withthis rule?

2005-02-04 Thread Davanum Srinivas
can u give me an example? -- dims On Fri, 4 Feb 2005 10:06:11 +0100, Michael Schuerig [EMAIL PROTECTED] wrote: On Thursday 03 February 2005 04:27, Davanum Srinivas wrote: you can replace xxx.enum.yyy with xxx.constants.yyy This only works in cases where one simply uses the constants. It

Re: Weird AXIS Bug ?

2005-02-04 Thread Adrian Perez Jorge
I believe you should supply the server-side stack trace of the fault to know where is the problem. I think this is the client-side stack trace of an exception originated at server side. Check out container log or whatever file axis is logging exceptions at server side. babloosony wrote: Hi

how to turn on logging

2005-02-04 Thread a9906767
Hi! For my purposes I need to somewhat understand how the AxisServlet works (it is the main servlet in axis that dispatches all requests to the actual services: org.apache.axis.transport.http.AxisServlet). That servlet uses a logger(log4j I think). In the code you then have a few

Web Service Security

2005-02-04 Thread Christopher Johnson
While Axis creates WSDL's for you based off deployed java code they are not always secure. How do I add my own schemas to the created WSDL's. Do I use the Java2WSDL then edit them as needed, where do I put these documents on the server. How do I tell axis to use my custom WSDL rather then make

Re: How to monitor remote web service endpoints

2005-02-04 Thread Christopher Johnson
If the remote host is using axis you could make use of the SOAPMonitor or... you could make use of etheral to watch all network traffic Chris On Fri, 4 Feb 2005, babloosony wrote: Hi All, I am using AXIS TCPMonitor to monitor my soap requests and soap response for all the web service

Re: Issues with .NET clients to axis service

2005-02-04 Thread Anne Thomas Manes
Simon's correct: .NET supports both RPC/encoded and Document/Literal. But it does not support RPC/Literal, and that's what this WSDL is using. I suggest you convert your service to Document/Literal using the wrapped convention. Anne On Wed, 2 Feb 2005 14:39:42 -0600, Brown, Mike [EMAIL

Re: Whois

2005-02-04 Thread Anne Thomas Manes
There are 4 or 5 WhoIs services listed at www.xmethods.org. Anne On Wed, 2 Feb 2005 20:18:12 +0100 (CET), Tomek Minkowski [EMAIL PROTECTED] wrote: Hi, I guess this is off-topic, but I guess you' re the guys that might know the thing... Is there an integrated web

Re: duplicating namespaces

2005-02-04 Thread Yves Langisch
I still have this issue with 1.2RC2. Any ideas? Yves On Fri, 2004-11-05 at 15:15 +0100, Yves Langisch wrote: All, I try to access a message style web service with following client code (1.2RC1): Call call = (Call) new Service().createCall();

Re: Next Generation Web Services presentation

2005-02-04 Thread Anne Thomas Manes
Dennis, Great presentation -- Thanks! I disagree with you about UDDI, of course. UDDI is an important component for enterprise SOA management and governance. I don't see very many people using it for dynamic discovery, but many firms that have deployed a large number of services rely on UDDI to

RE: duplicating namespaces

2005-02-04 Thread Jandhyala, Ajay
I get this error on the server when I try to Undeploy one of the web services. Can anyone tell me why. I am new to Axis. Thanks, Ajay. 17:20:36,530 INFO [Server] JBoss (MX MicroKernel) [3.2.2RC4 (build: CVSTag=JBoss_3_2_2_RC4 date=200309172341)] Started in 30s:939ms 17:21:01,843 INFO

Client Certificates in Axis

2005-02-04 Thread Joaco
Hi I need Client Certificate, to authentic a Client. I know how to set up a certificate in Server side to authentic a Server , but I donĀ“t know how to use a client certificate to authentic Client. It is possible in axis ? There are an other options to authentic a Client but not whit password ?

RE: Client Certificates in Axis

2005-02-04 Thread Kees van Dieren
Hi, Set the reference to the client in the system properties, e.g.: System.setProperty(javax.net.ssl.trustStore, /location/to/your/clientcert.keystore); If the client is axis, it should use your certificate now Kind regards, Kees van Dieren Senior Software Engineer MP Objects Software for

Re: JRE 1.5 enum is a Reserved Word Does Axis Comply withthis rule?

2005-02-04 Thread Michael Schuerig
On Friday 04 February 2005 12:52, Davanum Srinivas wrote: On Fri, 4 Feb 2005 10:06:11 +0100, Michael Schuerig [EMAIL PROTECTED] wrote: On Thursday 03 February 2005 04:27, Davanum Srinivas wrote: you can replace xxx.enum.yyy with xxx.constants.yyy This only works in cases where one

Re: Loose-coupling a namespace-to-package binding

2005-02-04 Thread Takahiro Tsubono
$BDZLn$G$9!#(B (B (B $B!!EAJ97A<0$N>pJs$rN.$9>l9g$O!"6qBNE*$K!V$$$D!W!&!VC/$,!W!&!V$3$N(B (B $B$h$&$JFbMF!W$rDs>'$7$F$$$k!"$H$$$C$?>pJs%=!<%9$rL@<($7$F2<$5$$!#(B (B ($B0lHV:G=i$NEj9F$G$b8f4j$$$7$^$7$?$M!#(B) (B (B

Re: JRE 1.5 enum is a Reserved Word Does Axis Comply withthis rule?

2005-02-04 Thread Venkat Reddy
Is it not because you are passing an instance of super class while it expects an instance of a derived class? -- venkat On Fri, 4 Feb 2005 17:28:45 +0100, Michael Schuerig [EMAIL PROTECTED] wrote: On Friday 04 February 2005 12:52, Davanum Srinivas wrote: On Fri, 4 Feb 2005 10:06:11 +0100,

RE: Client Certificates in Axis

2005-02-04 Thread Ephemeris Lappis
On the server side, using the standard J2EE authentication scheme, you just set up a trust certificate store, with the accepted client certificates, and configure your web application to use it for authentication. I did it with Tomcat (alone) or Tomcat+Jonas without any problem for simple web

Re: JRE 1.5 enum is a Reserved Word Does Axis Comply withthis rule?

2005-02-04 Thread Venkat Reddy
Is it not because you are passing an instance of a super class while it expects an instance of a derived class? - Venkat On Fri, 4 Feb 2005 17:28:45 +0100, Michael Schuerig [EMAIL PROTECTED] wrote: Try to compile this: package test; import org.apache.axis.constants.Style; public

RE: Client Certificates in Axis

2005-02-04 Thread Joaco
Thanks for your fast answer kees van Dieren ! -- Mensaje original -- Reply-To: [EMAIL PROTECTED] From: Kees van Dieren [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: RE: Client Certificates in Axis Date: Fri, 4 Feb 2005 17:00:21 +0100 Hi, Set the reference to the client in the system

Re: JRE 1.5 enum is a Reserved Word Does Axis Comply withthis rule?

2005-02-04 Thread Michael Schuerig
On Friday 04 February 2005 18:18, Venkat Reddy wrote: Is it not because you are passing an instance of super class while it expects an instance of a derived class? Yes, it is exactly because of that. I can't change the class of the various constants such as Style.DOCUMENT and USE.LITERAL. What

RE: Whois

2005-02-04 Thread Oleg Lebedev
Maybe somebody could point me to a translation webservice. Something that would take a word, original language and the language to translate the word to and return the translated word. They have two translating webservices on xmethods, but they are very limited in their functionality. Thanks.

Re: Client Certificates in Axis

2005-02-04 Thread Christopher Johnson
/* Gives applications knowledge of client certificate */ System.setProperty(javax.net.ssl.keyStore, mycert.p12); System.setProperty(javax.net.ssl.keyStoreType, pkcs12); System.setProperty(javax.net.ssl.keyStorePassword, password); Make sure you have the server ask for the Client cert. On Fri, 4

Is latest nightly build stable

2005-02-04 Thread Praveen Peddi
We were using 1.1 and I tried to move to 1.2 RC2 but it doesn't seem to work with weblogic 8.1.3 due to bug http://issues.apache.org/jira/browse/AXIS-1683. I see that Davanam Srinivas fixed this bug on Dec 04 which means RC2 also doesn't have this. So I tried to get latest nightly build

Help on error: faultString: org.xml.sax.SAXParseException: Premature end of file.

2005-02-04 Thread tom chen
I am using axis to return a bean object. But I get the following error == AxisFault faultCode: {http://schemas.xmlsoap.org/soap/envelope/}Server.userException faultSubcode: faultString: org.xml.sax.SAXParseException: Premature end of file. faultActor: faultNode: faultDetail:

JAXRPCTIE01: caught exception while handling request

2005-02-04 Thread babloosony
Hi All, We are using a custom web service framework tool that uses AXIS 1.1 Final, JiBX for (De)Serializing. When I run my web service client program that uses the stubs generated by my web service framework tool to connect to a third party web service endpoint address. I am getting below error.

How to monitor remote web service endpoints

2005-02-04 Thread babloosony
Hi All, I am using AXIS TCPMonitor to monitor my soap requests and soap response for all the web service deployed on my machine i.e. localhost. But I dont know how to configure AXIS TCPMonitor to monitor my request soap messsage and response soap messagefor monitoring say a remote host