nuSOAP between clusters not working

A

Anonymous

Guest
Hi
here is the situation,

i have to get data from one site to another i use nuSOAP on both for data transfer.
but the problem is that both the sites are in cluster. it works fine if either one of the SOAP server/client is in the FTP, but both on cluster is not working.

tried using curl, getting this error

failed to connect with host(<hostname> )

i get this error only when the call is from one cluster to another cluster.
any help would be much appriciated.

Thanks
varma
 
nu soap I think tries to resolve the servername of the address path...
so if you have incorrect servername set... there are problems

eg if you set ...
Code:
<VirtualHost 192.168.0.23>
Servername somedomain.com
...
</VirtualHost>
this will give err..

but ...
this won't give err.
Code:
<VirtualHost 192.168.0.23>
Servername 192.168.0.23
...
</VirtualHost>

I hope that I've made myself clear.... :(
 
Back
Top