0
votes
1answer
43 views

Consuming a JAX-WS in a Mule ESB flow

I want to consume a JAX-WS service method. the methode is named find and accept a String as argument. this the Mule flow : <flow name="InvokeAWebServiceFlow1" ...
0
votes
1answer
141 views

Unable to invoke web service with security

I have crated a CXF JAXWS Service as below. I have provided a custom UserNameToken validator and a callback handler. But this is not working. It throws an error everytime. <http:inbound-endpoint ...
0
votes
2answers
110 views

Issue running CXF JAX WS Service

I have exposed a web service using the CXF JAXWS Service via the HTTP outbound. Given below is the syntax of my end-point declaration from my Mule config. <http:inbound-endpoint ...
0
votes
0answers
89 views

How to configure cxf validation to return multiple schema validation errors instead one error a time?

I am using mule to create a JAX-WS flow. <flow name="accountWSFlow" doc:name="accountWSFlow" processingStrategy="synchronous"> <http:inbound-endpoint exchange-pattern="request-response" ...
0
votes
1answer
61 views

JAX-WS Service is not allowed to be child of element HTTP

I'm trying to made creating a JAX-WS Service in mule i do a sample from here I get error in the configuration: Element: JAX-WS Service is not allowed to be child of element HTTP i install mule ...
2
votes
2answers
183 views

Looking at the SOAP message before it is sent to the consuming service

I am using CXF JAX-WS in mule flow to access a service. I am able to access it successfully. Is there any way I can see the message that is being sent to the service just before it is sent?
1
vote
2answers
338 views

Adding soap:encodingStyle attribute to soap:body while using cxf:jaxws-client

I am accessing a rpc/literal style webservice from my flow in mule. The binding part of the wsdl looks like below : <binding name="AppWebServiceBinding" type="interface:AppWebService"> ...
1
vote
1answer
1k views

CXF exception when Mule flow try to call web service

I'm new in mule ESB and I'm trying implement a simple application flow: <mule ...> <flow name="extrator_gep_spedFlow1" doc:name="extrator_gep_spedFlow1"> ...
0
votes
0answers
177 views

JAX WS (Mule ESB) SOAP echo error

When testing on Mule Server my webservice works fine when testing in mule standalone on my server there is a weird quirk. I test my SOAP endpoint using SOAPui and it says: ...
0
votes
1answer
849 views

Mule - Schedule a flow to consume a web service

I'm new to Mule, and wanted to do one "simple" thing : Every X seconds, call a soap webservice operation and store the result in a file. My Flow looks actually like this : <?xml version="1.0" ...
1
vote
1answer
226 views

Generate JAX-WS Source NullPointerException

I'm trying to generate Java service classes from a WSDL definition I have already created. My current problem is that it fails with the following message, no more detail than that: Unable to generate ...
1
vote
0answers
204 views

Mule IDE unable to generate JAX-WS client

Using Mule IDE version 3.2.3 to invoke JAX-WS web service. In the "Import WSDL" dialogue after entering the WSDL URL and package name the JAX-WS client generation fails with error message Error ...
0
votes
0answers
704 views

Configuring Flows in Mule ESB for multiple service calls

I am using Flows for service orchestration. I have four SOAP services, say A B C and D. A will be called first, then, B and C are called together and D is called at last. The story so far I was ...
1
vote
3answers
6k views

How to consume a SOAP web service in a Mule Flow?

I am beginning with Mule flows and have seen the I have seen this page http://www.mulesoft.org/documentation/display/MULE3CONCEPTS/Using+Mule+with+Web+Services and ...
4
votes
1answer
2k views

JAX-WS Java client, WCF service interoperability: “400: Bad Request”

I have also asked this question on the Mirth forum. We are currently trying to connect to a WCF service using the open source health care integration engine Mirth . Mirth is Java-based, uses Mule ...
0
votes
1answer
105 views

Feedback/Patterns on creating a protocol adaptor

I have a backend system that currently returns a domain object. I want to build a REST & SOAP front end using mule. To create responses that are REST or SOAP based, and ensure that the backend ...
1
vote
1answer
1k views

Expose a POJO as a Websevice in Mule via Configuration _Only_?

Technologies Involved Mule Apache CXF Given A simple POJO (controversial acronym, but let's say a smart POJO): public class SmartPojo implements SomeBusinessInterface { public ...