Is it possible to have my webservice client in the same project as my webservice?
When I try and build the project, NetBeans cant find a reference to the WSDL as it is not deployed.
What is the approved way of doing this?
WulfgarPro
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I figured this out.
Just needed to add the eventual url of the web-service in web/WEB-INF/wsdl/mywsdlfile.wsdl where it stipulates:
<soap:address location="REPLACE_WITH_ACTUAL_URL"/>Doing this, then clean-build and deploy, fixed all my problems. Now I have both my service and client running in the same project.
I’m not liking that NetBeans has so many property/configuration files. Seems to me that NetBeans is trying to do too much.
WulfgarPro