You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-user@axis.apache.org by "Mohit.Gupta" <Mo...@india.rsystems.com> on 2005/08/18 13:55:25 UTC

RE: [SPAM_EMAIL] - WSDL Help needed - Email has different SMTP TO: and MIME TO: fields in the email addresses

Check if the required class files for the service should be there in classpath of web service. 

It should be in web-inf/class folder.

Thanks,
Mohit.

-----Original Message-----
From: Ben Gill [mailto:ben.d.gill@gmail.com]
Sent: Thursday, August 18, 2005 4:28 PM
To: axis-user@ws.apache.org; users@appfuse.dev.java.net
Subject: [SPAM_EMAIL] - WSDL Help needed - Email has different SMTP TO:
and MIME TO: fields in the email addresses


Hi,

I am still trying to work out why I get this error:

"AXIS error

Could not generate WSDL!

There is no SOAP service at this location"

When clicking on the wsdl link in my browser (despite the service
seeming to be there and I can connect to it from a java client
fine..)...

I have not told Axis about the WSDL, or generated it.. all I have done
is given a file called server-config.wsdd and put that in the WEB-INF
directory..   This file declares my service:

<deployment xmlns="http://xml.apache.org/axis/wsdd/"
            xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">

 <service name="EmployeeService" provider="java:RPC">
  <parameter name="className" value="services.EmployeeService"/>
  <parameter name="allowedMethods" value="testEmployeeService
updateEmployee loadEmployeesByFirstName"/>
  <beanMapping qname="myNS:Employee" xmlns:myNS="urn:EmployeeService"
languageSpecificType="java:employees.pojo.Employee"/>
  <beanMapping qname="myNS:EmployeeList"
xmlns:myNS="urn:EmployeeService"
languageSpecificType="java:java.util.List"/>
  
  <parameter name="scope" value="Session"/>
 </service>

</deployment>

Have I missed a step?  or do I need to generate and deploy a wsdl file
and put it somewhere?  or have I not registered something I should
have done etc/?

I have searched the Axis source files, and cannot even find the error message..

I am totally lost for what to do next?

Can anyone help?