• 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

weblogic workshop webService + SOAP fault problem

 
Greenhorn
Posts: 28
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
PROBLEM.

have a webservice created using Workshop that has the operation 'MyOperation' expecting the schema 'MySchema' as input parameter. Problem is there exists a tight binding with the parameter schema specified and MyOperation chokes when any other schema type is received including a SOAP Fault(with the exception below).

CODE.

/**
* @common peration
* @jws rotocol form-post="false" form-get="false"
* @jws arameter-xml schema-element="ns0:MySchema"
*/

public void MyOperation (MySchemaDocument request)
{
// do something
}

EXCEPTION

com.bea.wlw.runtime.core.request.RequestValidationException: Could not resolve method with element 'http://schemas.xmlsoap.org/soap/envelope/:Fault' as top element.


Any Suggestions to make MyOperation receive SOAP Faults???
Thanks
 
reply
    Bookmark Topic Watch Topic
  • New Topic