Jader Wallauer
Jader Wallauer

Reputation: 215

Mule Service Proxy Issue

I'mm trying to proxy a service but somehow its not working the way other services did, what am I doing wrong?

This is the original service http://webservicesh.sc.gov.br/SEA/Materiais/Fardamento/WS_Materiais_v1.wsdl

What I did was:

<pattern:web-service-proxy name="BiometriaRH"
      inboundAddress="http://LocalIP/services/BiometriaRH/WS_BiometriaRH_v1"
      outboundAddress="http://webservicesh.sc.gov.br/SEA/RecursosHumanos/biometria/WS_BiometriaRH_v1.asmx"
      wsdlFile="BiometriaRH.wsdl"/>

It does access the WSDL file but I can't load the service any place like soapUI or Eclipse...

Upvotes: 0

Views: 74

Answers (1)

David Dossot
David Dossot

Reputation: 33413

Why do you configure wsdlFile="BiometriaRH.wsdl"? Did you manually customize it?

If not, and assuming a WSDL is served at this URL http://webservicesh.sc.gov.br/SEA/RecursosHumanos/biometria/WS_BiometriaRH_v1.asmx?wsdl , then you only need:

<pattern:web-service-proxy name="BiometriaRH"
  inboundAddress="http://LocalIP/services/BiometriaRH/WS_BiometriaRH_v1"
  outboundAddress="http://webservicesh.sc.gov.br/SEA/RecursosHumanos/biometria/WS_BiometriaRH_v1.asmx" />

Upvotes: 1

Related Questions