Re: Migrating from Apache SOAP to Axis

2004-10-13 Thread Scott Nichol
In Fault.java, can you change the line Bean paramBean = xjmr.unmarshall(declEncStyle, to be Bean paramBean = xjmr.unmarshall(actualEncStyle, I cannot say for certain that the issue will be fixed, but just from reading the code this looks like it should be changed. Scot

RE: Migrating from Apache SOAP to Axis

2004-10-13 Thread Shukla, Minaxi
Scott, Both captures has response with Fault. The first part is the request message and after that there is response message. Let me know if you need more info. Thanks -Minaxi -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 13, 2004 3:22

Re: Migrating from Apache SOAP to Axis

2004-10-13 Thread Scott Nichol
Do you have a capture when the Axis service returns a Fault? Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: "Shukla, Minaxi" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent:

RE: Migrating from Apache SOAP to Axis

2004-10-13 Thread Shukla, Minaxi
Has anyone come across any issues when migrating from Apache SOAP to Axis? I would really appreciate if anyone can help me with the issue described below. Thanks -Minaxi -Original Message- From: Shukla, Minaxi Sent: Wednesday, October 13, 2004 11:54 AM To: '[EMAIL PROTECTED]'

Re: XERCES maladies

2004-10-13 Thread Scott Nichol
Martin, Please post Axis questions to [EMAIL PROTECTED] Thanks. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: "Martin Gainty" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> S

XERCES maladies

2004-10-13 Thread Martin Gainty
A bit too newbie but at least descriptive F:\SOAP\axis-1_1RC2\samples\stock>java -version java version "1.5.0-rc" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-rc-b63) Java HotSpot(TM) Client VM (build 1.5.0-rc-b63, mixed mode, sharing) F:\SOAP>java org.apache.axis.transport.http.

RE: Migrating from Apache SOAP to Axis

2004-10-13 Thread Shukla, Minaxi
Yes, I have captured the SOAP messages from both the deployments (with Apache SOAP and Axis). See the SOAP messages attached. Thanks for your help -Minaxi <> <> -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 13, 2004 11:38 AM To:

Re: Migrating from Apache SOAP to Axis

2004-10-13 Thread Scott Nichol
What would help most: capture and post to this list the contents of the response that is causing the client a problem. Depending on your OS and tool preference, you can capture with Network Monitor (Windows), tcpdump (*nix), TcpTunnelGui (Apache SOAP), tcpmon (Axis), tcpTrace/proxyTrace (for Wi

Re: problem in deploying a web service

2004-10-13 Thread Scott Nichol
public void GetComp() { Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: "Francesco Dipalo" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 13, 2004 11:19

Migrating from Apache SOAP to Axis

2004-10-13 Thread Shukla, Minaxi
Hi, I want to migrate our web services deployed on Apache SOAP 2.2 to Axis 1.1 without having to update the client developed with Apache SOAP. It works fine with good scenarios where the service returns a successful respose. But, when service throws a business exception, the client gets ClassCa

Re: problem in deploying a web service

2004-10-13 Thread Francesco Dipalo
When I try to compile the provider class, in this example, this java file: package tesi; import java.io.*; import java.util.*; import prova.*; public class application_controller { public GetComp() { servizio s = new servizio(); composizione c = new composizione( s.

Re: problem in deploying a web service

2004-10-13 Thread Felipe Palma Dias
Try http://ws.apache.org/soap/faq/faq_chawke.html#Q1_1. --- Francesco Dipalo <[EMAIL PROTECTED]> escreveu: > I want to deploy a service. I executed the following > operations: > > - deploying with Apache SOAP using a deployment > descriptor file named WebService: > > > xmlns:isd="http://

Re: problem in deploying a web service

2004-10-13 Thread Scott Nichol
With Apache SOAP 2.3.1, you cannot have whitespace in the faultListener element. The problem is fixed in the current code base. You need to change org.apache.soap.server.DOMFaultListener to org.apache.soap.server.DOMFaultListener then re-deploy (undeploy followed by deploy with

problem in deploying a web service

2004-10-13 Thread Francesco Dipalo
I want to deploy a service. I executed the following operations:   - deploying with Apache SOAP using a deployment descriptor file named WebService:      xmlns:isd="http://xml.apache.org/xml-soap/deployment"   id="urn:CompService">      scope="Application" methods="getComp"