• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Exception AxesFault Exception : No endpoint

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I am using Exlipse to create web service and webservice client.
When I try to access the method of client I am getting the AxesFault Exception : No endpoint

Below is the error:

May 19, 2011 2:12:57 PM org.apache.axis.utils.JavaUtils isAttachmentSupported
WARNING: Unable to find required classes (javax.activation.DataHandler and javax.mail.internet.MimeMultipart). Attachment support is disabled.

AxisFault
faultCode: {http://xml.apache.org/axis/}Server.NoEndpoint
faultSubcode:
faultString: No endpoint
faultActor:
faultNode:
faultDetail:
{http://xml.apache.org/axis/}exceptionName:org.apache.axis.NoEndPointException
{http://xml.apache.org/axis/}stackTrace:No endpoint
at com.ws3webservices.MyServiceSoap11BindingStub.deleteAccount(MyServiceSoap11BindingStub.java:238)
at com.ws3webservices.TestClietn.main(TestClietn.java:11)

{http://xml.apache.org/axis/}hostname:ABC

No endpoint
at com.ws3webservices.MyServiceSoap11BindingStub.deleteAccount(MyServiceSoap11BindingStub.java:238)
at com.ws3webservices.TestClietn.main(TestClietn.java:11)


Here is the code I am using in client

WS3WebServiceSoap11BindingStub stub = new WS3WebServiceSoap11BindingStub();
stub.deleteAccount(35);


How to solve this problem?
Thanks
 
reply
    Bookmark Topic Watch Topic
  • New Topic