Monday, August 18, 2008

ToRead:
http://www.amazon.com/Inner-Voice-Making-Singer/dp/0670033510

The Inner Voice: The Making of a Singer (Hardcover)

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.

TechTip.Weblogic: Testing Web Services with the Test Client

Testing Web Services with the Test Client

http://edocs.bea.com/wlw/docs101/guide/webservices/conTestingWebServices.html
ToRead:
http://www.amazon.com/Dynamics-Software-Development-Best-Practices/dp/0735623198
Dynamics of Software Development (Best Practices) (Paperback)by Jim McCarthy (Author)

accompanied by:
http://www.developer.com/net/vb/article.php/3108351