Exposing web service in mule -


i want expose web service. have wsdl file me. using cxf proxy service operation. now, have doubt in inbound attributes value of port,namespace & service should take wsdl file only,right? if yes, then, after deploying through, http://localhost:8081?wsdl link not getting same wsdl want expose. so, tell me going wrong?thanks.

to test project, url should use in soapui, appropriate request xml generate...

here flow,

<flow name="meterreadingdocumenterpresultbulkcreateconfirmation_outflow">         <http:listener config-ref="http_listener_configuration" path="/" doc:name="http"/>         <cxf:proxy-service configuration-ref="cxf_configuration" port="meterreadingdocumenterpresultbulkcreateconfirmation_outport" namespace="http://sap.com/xi/is-u/global2" service="meterreadingdocumenterpresultbulkcreateconfirmation_outservice" payload="body" doc:name="cxf"  validationenabled="true"/>         <logger message="#[payload]" level="info" doc:name="logger"/>         <mulexml:dom-to-xml-transformer doc:name="dom xml"/>         <logger level="info" doc:name="logger" message="#[payload]"/>      </flow> 

after exposing web service not getting proper response...


Comments

Popular posts from this blog

amazon web services - S3 Pre-signed POST validate file type? -

c# - Check Keyboard Input Winforms -