Problems with consume webservice OE10.0B

rguerrer

Member
Hi;

I hope somebody can help with this:

We configured a webservice with OE10.0B, we guess the configuration its correct because we tested the broker and was ok, we generated the webservice with proxy tool and deployed it without errors, we enabled too, the webservice was published with link http://hostB:8080/wsa/wsa1/wsdl?, everything seems work fine, but when we tried to consume the webservice through 4gl, we receive a SOAP error like this:

SOAP faultstring es: An error was detected while executing the Web Service request. (10893)(11506)

And it he WSA log seem like this:

Error in SOAP request execution: Connect Failure: Timeout or Interrupt occurred while attempting to communicate with NameServer. (8231) (10926)


I dont know if is a configuration problem, or if the issue is in the 4gl code. I aprecciate some ideas.

Thanks.

Our arqchitecture is divided in two servers (there's no firewall between servers, but there's a firewall beteween client and webserver)

SERVER A (unix)
  • DB
  • AppServer Broker
SERVER B (linux)
  • Apache/Tomcat
  • WSA Adapter
We configure ubroker.properties with remote status, like this:

SERVER A (ubroker.properties)
[WSA.wsa1]
location=remote
logFile=$WRKDIR/wsa1.wsa.log
loggingLevel=2
wsaUrl=http://hostB:8080/wsa/wsa1

SERVER B (ubroker.properties)
[WSA.wsa1]
adminAuth=0
location=remote
logFile=$WRKDIR/wsa1.wsa.log
loggingLevel=2
adminEnabled=1
webAppEnabled=1
webServerAuth=0
wsaUrl=http://hostB:8080/wsa/wsa1
 

rguerrer

Member
Hi, problem result

thanks everyone.

I modified the default.props file in tomcat wsa configuration, becuase the tag <appServiceHost> comes localhost, I changed to serverB and it works.

<appServiceProtocol>Appserver</appServiceProtocol>
<appServiceHost>serverB</appServiceHost>
<appServicePort>5162</appServicePort>
<appServiceName>asBrokerNameTest</appServiceName>





SERVER A (Solaris 32-bits)
SERVER B (Debian Linux 32-bits)
 
Top