Hi, I want to bind a web service in esb. For this I am using servicemix-http component. I have my web service up and running. This is my xbean.xml file <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns:http="http://servicemix.apache.org/http/1.0" xmlns:test="http://swebservice.samples.servicemix.apache.org"> <classpath> <location>.</location> </classpath> <http:endpoint service="test:HelloTestService" endpoint="HelloTestPort" role="provider" locationURI="http://localhost:9090/hello" soap="true" soapAction="" wsdlResource="http://localhost:9090/hello/?wsdl" /> <http:endpoint service="test:MyConsumerService" endpoint="HelloWebService" role="consumer" targetService="test:HelloTestService" locationURI="http://localhost:9091/services/HelloWebService" soap="true" defaultMep="http://www.w3.org/2004/08/wsdl/in-out" wsdlResource="http://localhost:9090/hello/?wsdl" /> </beans> I created the service assembly successfully and depployed it successfully too but when i tried to see the new wsdl file. It is giving me this error. HTTP ERROR: 404 Unable to find requested resource RequestURI=/services/HelloWebService/main.wsdl Powered by Jetty:// Do i need any entry in the http pom file. Please help me in resolving this issue. Thanks. -- View this message in context: http://www.nabble.com/Binding-web-service-in-esb%3AProblem-in-accessing-new-wsdl-tp19931516p19931516.html Sent from the ServiceMix - User mailing list archive at Nabble.com.
