Matthew,

Is the IP address you provided in your code, the actual address?   If  
so, since that IP address (192.168.13.54)  is an address for a  
machine on your subnet, are you on the same network with the web  
service provider?

If you are not on the same network, you will need an IP address which  
can be accessed remotely.  IP addressed in the range 192.168.0.0  to  
192.168.255.255 are reserved for private use.   If you aren't sharing  
the same network, when you call the webservice, it's looking for it  
as part of your own subnet, not externally (which also explains why  
you're timing out).

HTH,

Jon

On Apr 16, 2007, at 9:48 AM, Matthew Friedman wrote:

> I am having an issue trying to access a webserver.
>
> I am getting a timeout error. The partner that is suppling the  
> webservice tells me
> I have correct information and they are not timeing out.
>
> Any insite would be helpful since I am new to webservices.
>
> Below is the code I am using to accesss the service.
>
> <cfsetting requesttimeout="100">
>
> <!--- login into the lobster system --->
> <cfinvoke
>    method="Login"
>    returnvariable="responseinfo"
>    webservice="http://192.168.13.54/LobsterWebService/Lobster.wsdl";>
>  <cfinvokeargument name="Domain" value="domain">
>   <cfinvokeargument name="User" value="matt">
>    <cfinvokeargument name="Pass" value="password">
> </cfinvoke>
>
> AxisFault
>  faultCode: {http://schemas.xmlsoap.org/soap/envelope/} 
> Server.userException
>  faultSubcode:
>  faultString: java.net.ConnectException: Connection timed out: connect
>  faultActor:
>  faultNode:
>  faultDetail:
>       {http://xml.apache.org/axis/}stackTrace:java.net.ConnectException:  
> Connection timed out: connect
>       at java.net.PlainSocketImpl.socketConnect(Native Method)
>       at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
>       at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java: 
> 171)
>       at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
>       at java.net.Socket.connect(Socket.java:461)
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Upgrade to Adobe ColdFusion MX7
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJQ 

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:275394
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to