My application is consuming a WebService using Weblogic 9.x, I want to write test cases using Junit for the webservices I consume using weblogic.
I have Eclipse integrated with weblogic and Junit for development.
Can you please share some examples or usefull links for me to start with.
Ganesh,
If you are trying to be test driven, you are better served by not starting with "testing a webservice." Instead, unit test the logic of the web service. No remote calls needed.
Once that logic is working, you do need to test the plumbing. JUnit can call a servlet, ejb, etc - just like any other code.