Results 1 to 3 of 3

Thread: One more reason you get 'No Adapter found for [endpoint class]' error

  1. #1

    Exclamation One more reason you get 'No Adapter found for [endpoint class]' error

    The class AbstractJDomPayloadEndpoint exists in two different packages:

    1. org.springframework.ws.server.endpoint.AbstractJDo mPayloadEndpoint
    2. org.springframework.ws.endpoint.AbstractJDomPayloa dEndpoint

    both having the abstract invokeInternal method. So when you extend this class, you should carefully choose the first one in order to invoke this method and actually get your spring WS work. If you extend the one in point 2, then you will keep getting 'No adapter found for [..] ' error all the way when you try to invoke the WS from external client like SoapUI.

    I haven't gone thoroughly through the docos yet, but would like to understand the functionality provided by the class in no. 2.

    Thanks,
    Akshay

  2. #2
    Join Date
    Jan 2006
    Location
    Seattle, Washington
    Posts
    467

    Default

    The second one appears to be obsolete. It's not in the latest release.

  3. #3

    Default

    ohh ok. Considering a lot of people still using 1.5.6, I thought this would be useful.

    Thanks for the update!

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •