Can the client catch application exception?

2004-02-12 Thread Gao gjyalpha
Hi guys: I have a MyClass class (extends Exception) which is throw by a method in my web service. I used wsdl2java to generate the proxy classes from its wsdl. And there is wsdl:fault... element in the wsdl:operation... element for this method in the wsdl. When I invoke the method via the

if i used AXIS for Java SOAP Client to call Integrated Window based .NET WEB Service will resolved the issue.

2004-02-12 Thread nilesh
i am having Integrated Windows Authentication based .NET WEB Service which is deployed on IIS. I am having JAVA based Apache SOAP Client so i tried to call the .NET WEB Service but the response i am getting is You are not authorized. becuase SOAPHTTPConnection is only support Basic

virtual host and webservice

2004-02-12 Thread boblgum
hi, can someone explain how to configure Apache2+Tomcat4.1+Axis ? now i call a webservice by this url: http://www.mydomain.com:8080/axis/services/MyService but i want: http://services.mydomain.com/MyService thnx boblgum 12.02.2004, 09:26

RE: getting client ip in service class

2004-02-12 Thread Pathuru, Kiran
Here we go HttpServletRequest req = (HttpServletRequest)MessageContext.getCurrentContext).getPropertyHTTPConstan ts.MC_HTTP_SERVLETREQUEST); String clientIp = req.getRemoteAddr(); regards, kiran pathuru -Original Message- From: Samir Shaikh [mailto:[EMAIL PROTECTED] Sent:

RE: WSDL documentation

2004-02-12 Thread Galbreath, Mark A
I just received Richard Monson-Haefel's J2EE Web Services (Addison Wesley, 2004) from Amazon and it looks GREAT. There is an entire section and numerous references to WSDL elements (though only a passing mention of Axis). I can't wait to read it. Mark BTW: Richard was just elected to the

Original user-defined exception from Axis server rethrown in Axis client?

2004-02-12 Thread Merten Schumann
Title: Original user-defined exception from Axis server rethrown in Axis client? Hello, is Axis (version 1.1) able to rethrow an original user-defined exception on the client side? I've read the user guide and all, there's a quite nice section about exceptions. :-) The exception of my

RE: WSDL documentation

2004-02-12 Thread Anne Thomas Manes
I was one of the technical reviewers of Richard's book. It's very good. Almost all of his examples are based on the Sun JAX-RPC SI, though. Anne At 08:26 AM 2/12/2004, you wrote: I just received Richard Monson-Haefel's J2EE Web Services (Addison Wesley, 2004) from Amazon and it looks GREAT.

mismatching in throwed AxisFault on Axis Server and Axis Client

2004-02-12 Thread Ofer Baranes
Hi I have a strange problem , on the server side (using debug) Axis throw an AxisFault which its root cause was what I expected to be , BUT on the client side the WSDL2Java client stub catch an AxisFault which its root cause is differ then the root cause of what was thrown in the

ws publication without static code.

2004-02-12 Thread dario
hi, I wanna expose some backend functionality, but I don't wanna make the tedious task of coding each method invocation, cause they'll be just wrappers to db stored procedures. In fact, I'd like to code just a generic web service's method caller, which take the method name as parameter. I've

anonymous cvs access ??

2004-02-12 Thread Leo de Blaauw
Hi all, Does anybody on here know why cvs access with: cvs -d :pserver:[EMAIL PROTECTED]:/home/cvspublic login gives me a no such repository error in wincvs ? Greetz and thanks Leo

Re: ws publication without static code.

2004-02-12 Thread Chris Haddad
have you looked at making your implementation a message service? /Chris -- Original Message -- From: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Thu, 12 Feb 2004 13:30:35 -0600 hi, I wanna expose some backend functionality, but I don't wanna

How Does Axis Support SSL/TLS

2004-02-12 Thread Zhao Sharon-CSC002
Title: How Does Axis Support SSL/TLS I wonder how does Axis support the SSL/TLS? Does it has any API defined? Thanks, Sharon Zhao

Server Service as Client

2004-02-12 Thread Peter Girard
Is it possible to allow a Server Service makea Call as a Client to a Service on another machine? I have been through the responses about chaining, Intermediaries, and handlers, but this would be more on the order of business logic determined. For example, a Service (sendMessage on Server

axis 1.1 findings

2004-02-12 Thread Nandakumar Mounasamy
Hello! I spent few days trying to eval Axis 1.1 WS. After going thru' the documents on the site and user group mails, and with the errors that i am getting with the sample code, i am coming to the following conclusions. Can someone confirm these? a) Axis 1.1 does not support document and wrapped

Error: 1 core axis library is missing in happyaxis

2004-02-12 Thread Jay Chiu
I am trying to setup Axis with Jetty as embedded web server in our application. I copied webapps/axis directory to jetty web root and added Axis libraries in classpath. But when I access the happyaxis.jsp page, I got an Error with axis.jar. I do have activation.jar in my classpath. Can someone

Comparison between Axis and Sun's RI?

2004-02-12 Thread Mark Woon
Hi all... Are there any comparisons available on Axis vs. Sun's reference implementation in the JWSDP? If not, can anyone summarize the pros/cons of Axis vs. what Sun's putting out? Thanks, -Mark

RE: How Does Axis Support SSL/TLS

2004-02-12 Thread Leo de Blaauw
Title: How Does Axis Support SSL/TLS Nope, its to the transport layer to deal with that. Greetz Leo -Oorspronkelijk bericht-Van: Zhao Sharon-CSC002 [mailto:[EMAIL PROTECTED]Verzonden: donderdag, februari 2004 23:19Aan: '[EMAIL PROTECTED]'Onderwerp: How Does Axis Support

RE: axis 1.1 findings

2004-02-12 Thread Leo de Blaauw
Hi, a) Axis 1.1 does not support document and wrapped style services. It supports just rpc and message style Services. service name="MyService" style="rpc" provider="java:RPC" service name="MyService" style="message" provider="java:MSG"[Leo de Blaauw] i have no problems with either of