Thursday, August 14, 2008

TechTip.Weblogic: class ...jaxws... "could not be found"

It's one of those issues when seemingly simple code gets disproportionally hard to run. Try to get something like

@WebService(serviceName="helloworldservice")

public class HelloWorldImpl {
public String sayHelloWorld(String message) {
return "Here is the message: '" + message + "'"; }
}

deployed in wls10 and get wierd error message...

then look for the problme on the Google and fund a bunch of frustrated comrades that also are buffled by it, leaving a trail of un-answered threads until someone gets it solved.

duh!

the laurels this time goes to Mr. cretz

http://forum.springframework.org/showthread.php?p=190547

the answer is:
@SOAPBinding(parameterStyle=ParameterStyle.BARE) or wrapping element.

No comments: