It is quite hard to figure out what your problem is.

Usually the error:
 "SOAP-ENV:Client Requested service is not registerd at the server
server name:listen port AxisWsddException:Requested service not found"

means that the Axis C++ Apache module cannot locate the lib
implementation for the requested service. This means that there is
something wrong in the settings in the server.wsdd.

1. Either the .so file is not there as specified by the location
mentioned in the server.wsdd file
2. Or the service name and the allowed method names specified in the
server.wsdd is different

However, as your local client is working, it looks to me that none of
the above are possible.

I tried with a non local host and my client (base sample) works with
another machine in the network. So I guess the problem has noting to be
with the client being not on the same machine.

One other possibility is that the user account under which Apache
process is run cannot access the directory where the server
implementation (the .so file) is located. Give full read/write access to
this folder (using chmod -R 777) and try.

Additionally, Please double check your system:
1. your AXISCPP_DEPLOY setting (the user account under which Apache
process is run should be able to pick this)
2. ls $AXISCPP_DEPLOY/etc/axiscpp.conf 
3. more AXISCPP_DEPLOY/etc/axiscpp.conf
4. ls [WSDDFilePath setting's vale of $AXISCPP_DEPLOY/etc/axiscpp.conf]
5. more [WSDDFilePath setting's vale of
$AXISCPP_DEPLOY/etc/axiscpp.conf]
6. ls -l [value attribute of className parameter in server.wsdd file]

Thanks,
Samisa...


On Thu, 2005-06-30 at 21:46, krishna wrote:
> Somehow I didnt see the header in the previous email. Sorry about that. 
> Though I am signed on the developers list I am still at the axis user 
> level :).
> So my guess is as good as yours.
> 
> Krishna
> 
> Yampolsky, Robert wrote:
> 
> >>The Axis server requires your SOAPAction to be in the format 
> >>"HUB_TO_HUB#HUB_Request"
> >>Could you check whether your remote client has the SOAPAction set that
> >>    
> >>
> >way?
> >
> >  
> >
> >>The SOAP-Request of the failing remote client would settle the doubts.
> >>    
> >>
> >
> >  
> >
> >>Cheers
> >>Krishna
> >>    
> >>
> >
> >Here's the full failing request.  The only place it has the SOAPAction
> >is in the header (which I included in my prior email).  The rest of the
> >request includes a Hub_Request input data structure, but that's
> >different than the HUB_Request method name in the SOAPAction, and
> >besides, it works with my local client, and the SOAP generated looks
> >almost identical.  Axis calls the namespace for the request parameters
> >ns1: instead of tns:, that's about the only difference.  Well, I also
> >notice that the remote client is throwing in a bunch of extra namespaces
> >that weren't specified in my wsdl, including a namespace s: that points
> >to the same XMLSchema as namespase xsd: does.  Could that be a problem?
> >
> >Anyway, there may be additional problems with the body of the request,
> >but shouldn't the header be okay to find the service?
> >
> >
> >Again, here's the full request from the remote client.  Even though the
> >SOAPAction looks right, Axis can't locate the HUB_TO_HUB service:
> >
> >POST /axis/HUB_T0_HUB HTTP/1.0
> >User-Agent: SQLData Client/3.02
> >Host: 156.43.4.68:80
> >Connection: Close
> >Accept: */*
> >Content-Length: 964
> >SOAPAction: "HUB_TO_HUB#HUB_Request"
> >Content-Type: text/xml;
> >charset="utf-8"
> >
> ><?xml.version="1.0".encoding="UTF-8" standalone="no"?>
> ><SOAP-ENV:Envelope
> >xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/";
> >xmlns:http="http://schemas.xmlsoap.org/wsdl/http/";
> >xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/";
> >xmlns:s="http://www.w3.org/2001/XMLSchema";
> >xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/";
> >xmlns:tns="http://www.ebizformedia.com/hub";
> >xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/";
> >xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/";
> >xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/";
> >xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
> >xmlns:xsd="http://www.w3.org/2001/XMLSchema";.>
> ><SOAP-ENV:Body>
> ><tns:Hub_Request.xmlns:tns="http://www.ebizformedia.com/hub";>
> ><tns:TO_TP>AAA</tns:TO_TP>
> ><tns:FROM_TP>BBB</tns:FROM_TP>
> ><tns:TO_HUB>CCC</tns:TO_HUB>
> ><tns:FROM_HUB>DDD</tns:FROM_HUB>
> ><tns:UID></tns:UID>
> ><tns:APIKEY>FFF</tns:APIKEY>
> ><tns:ROUTING>GGG</tns:ROUTING>
> ><tns:MESSAGE></tns:MESSAGE>
> ></tns:Hub_Request>
> ></SOAP-ENV:Body>
> ></SOAPENV:Envelope>
> >
> >R o b   Y a m p o l s k y
> >Harris Corporation, BCD
> >(212) 303 4250
> >
> >
> >
> >  
> >
-- 
Samisa Abeysinghe <[EMAIL PROTECTED]>
Virtusa Corporation

Reply via email to