Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9239501
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T08:00:05+00:00 2026-06-18T08:00:05+00:00

I published a web service in mule 3.3.0 CE with cxf proxy-service. <mule xmlns:http=http://www.mulesoft.org/schema/mule/http

  • 0

I published a web service in mule 3.3.0 CE with cxf proxy-service.

<mule xmlns:http="http://www.mulesoft.org/schema/mule/http"
xmlns:spring="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.mulesoft.org/schema/mule/core" xmlns:cxf="http://www.mulesoft.org/schema/mule/cxf"
xmlns:cxf-core="http://cxf.apache.org/core" xmlns:mule-xml="http://www.mulesoft.org/schema/mule/xml"
xmlns:vm="http://www.mulesoft.org/schema/mule/vm" xmlns:doc="http://www.mulesoft.org/schema/mule/documentation"
xmlns:mule-ss="http://www.mulesoft.org/schema/mule/spring-security"
xmlns:ss="http://www.springframework.org/schema/security" xmlns:test="http://www.mulesoft.org/schema/mule/test"
xsi:schemaLocation=" http://www.mulesoft.org/schema/mule/http http://www.mulesoft.org/schema/mule/http/current/mule-http.xsd 
    http://www.mulesoft.org/schema/mule/cxf http://www.mulesoft.org/schema/mule/cxf/current/mule-cxf.xsd 
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-current.xsd 
    http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd 
    http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd 
    http://www.mulesoft.org/schema/mule/xml http://www.mulesoft.org/schema/mule/xml/current/mule-xml.xsd 
    http://www.mulesoft.org/schema/mule/vm http://www.mulesoft.org/schema/mule/vm/current/mule-vm.xsd 
    http://www.mulesoft.org/schema/mule/spring-security http://www.mulesoft.org/schema/mule/spring-security/3.3/mule-spring-security.xsd 
    http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.1.xsd 
    http://www.mulesoft.org/schema/mule/test http://www.mulesoft.org/schema/mule/test/current/mule-test.xsd "
    version="CE-3.3.0">
<flow name="wbs" doc:name="wbs">
    <http:inbound-endpoint host="localhost" port="9094"
        path="myPath/app" exchange-pattern="request-response" doc:name="HTTP">
    </http:inbound-endpoint>

    <cxf:proxy-service doc:name="wbsrv" service="AppWSService"
        wsdlLocation="schema/wsdl/App/WSService.wsdl" namespace="http://wbservice.com/"
        payload="body"></cxf:proxy-service>
    <copy-properties propertyName="SOAPAction" doc:name="Property" />
    <cxf:proxy-client doc:name="wbsrv" />

    <http:outbound-endpoint address="http://websrv.mydns.com:8080/App/WSService"
        doc:name="HTTP" encoding="UTF-8" responseTimeout="1000000"
        exchange-pattern="request-response">
    </http:outbound-endpoint>
</flow>

Ip of my mule server is : 192.168.0.59. I can see outbound address (http://websrv.mydns.com:8080/App/WSService) just by that Ip (192.168.0.59).
after runnig web service I can see my wsdl that I publish it with cxf proxy but when I checked it with SoapUI, I can’t receive response. I have below error in SoapUI xml:

<soap:Fault>
     <faultcode>soap:Server</faultcode>
     <faultstring>Failed to route event via endpoint: DefaultOutboundEndpoint{endpointUri=http://websrv.mydns.com:8080/App/WSService, connector=HttpConnector
{   name=httpConnector   lifecycle=start   this=16a2c7b  
numberOfConcurrentTransactedReceivers=4  
createMultipleTransactedReceivers=true   connected=true  
supportedProtocols=[http]   serviceOverrides=
session.handler=org.mule.session.NullSessionHandler } ,  name='endpoint.http.websrv.mydns.com.8080.App.WSService',
mep=REQUEST_RESPONSE, properties={},
transactionConfig=Transaction{factory=null, action=INDIFFERENT,
timeout=0}, deleteUnacceptedMessages=false, initialState=started,
responseTimeout=1000000, endpointEncoding=UTF-8,
disableTransportTransformer=false}. Message payload is of type:
websrvMethod
</faultstring>
      </soap:Fault>

How to redirect outbound address that I can use it each server and IP?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T08:00:07+00:00Added an answer on June 18, 2026 at 8:00 am

    Try with the following configuration:

    <flow name="wbs">
        <http:inbound-endpoint host="localhost" port="9094"
            path="myPath/app" exchange-pattern="request-response">
            <cxf:proxy-service service="AppWSService"
                wsdlLocation="schema/wsdl/App/WSService.wsdl"
                namespace="http://wbservice.com/"
                payload="body" />
        </http:inbound-endpoint>
    
        <copy-properties propertyName="SOAPAction" />
    
        <http:outbound-endpoint address="http://websrv.mydns.com:8080/App/WSService"
            encoding="UTF-8" responseTimeout="1000000"
            exchange-pattern="request-response">
            <cxf:proxy-client payload="body" />
        </http:outbound-endpoint>
    </flow>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using Grails and CXF, I have published a small web service that looks like
Every example I've seen on the web, e.g. http://www.codeproject.com/KB/docview/jms_to_jms_bridge_activem.aspx , creates a publisher and
I have published xml document through web service like this <WebMethod()> _ Public Function
I have a web service that I have published locally. I wrote an HTML
We have an MTOM-enabled web service that is published with Grails and the Metro
I've just published a web service and written up some fairly primitive documentation. I've
Before, I've published a web service on my host and it's used for my
I have one web service created in asp.net and published in iis 5.1 .Now
I have a web service that I am calling and their published WSDL doesn't
I'am getting sometimes the following error on my published web app with ELMAH: System.Web.HttpException

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.