Web services 如何通过新地址(自己的地址)显示来自internet的wsdl?

Web services 如何通过新地址(自己的地址)显示来自internet的wsdl?,web-services,wsdl,cxf,mule,Web Services,Wsdl,Cxf,Mule,我希望在mule中使用wsdl表单internet,例如: 我想: 然后我写[http://localhost:8082/myservice?wsdl][2] 从地址显示wsdl 我把我的流程放在这里,很简单 <cxf:configuration name="CXF_Configuration1" configurationLocation="http://www.ommolketab.org/OML_News.asmx" enableMuleSoapHeaders="true"

我希望在mule中使用wsdl表单internet,例如: 我想: 然后我写
[http://localhost:8082/myservice?wsdl][2] 
从地址显示wsdl 我把我的流程放在这里,很简单

   <cxf:configuration name="CXF_Configuration1" configurationLocation="http://www.ommolketab.org/OML_News.asmx" enableMuleSoapHeaders="true" initializeStaticBusInstance="true" doc:name="CXF Configuration"/>
<flow name="service-cxf-wsdlfirstFlow1" doc:name="service-cxf-wsdlfirstFlow1">
    <http:inbound-endpoint exchange-pattern="request-response" address="http://localhost:8882/OrderSvcs" doc:name="HTTP"/>
    <cxf:proxy-service configuration-ref="CXF_Configuration1"    payload="envelope" doc:name="SOAP" enableMuleSoapHeaders="false" namespace="http://tempuri.org/" service="OML_News"/>
</flow>


您在
名称空间中的值与
wsdlLocation
中的值类似

而且
port=“80”
显然是错误的:SOAP端口不是HTTP端口。检查WSDL的实际值


最后,您能展示一下
CXF\u Configuration1
元素配置了什么吗?

您能重新表述一下您的问题吗?谢谢,请多吃点specific@Satya我eddited,它合适吗?@Sercan ozdemir我eddited,它合适吗?@Maryam,看起来不错,所以我的理解是,每当有人点击你的本地URL时,它应该从ommolketab URL获取内容并显示。对吗?我更改了一些值并清除了端口=80我留下了所有配置。你能检查一下并帮助我吗?我不知道我到底配置了什么?@Satya希望你能帮我更多吗u@genjosanzo我希望你能帮我更多吗u@brelian你能帮我更多吗?我希望ui重视WSDLLocation,我的程序现在是正确的,非常感谢大家