B
bob
Hi,
I have a web app that feeds off two web services.
Been working for a while and hasn't had any development activity for
months.
Went to fire up the solution in the IDE and found it was broken.
The web app could access the small web service (A logon Facility) but
couldn't access the large web service (business logic)
Anyway I found that the IDE had decided on a new port for running the
business logic webservice.
So I altered the web reference Web reference URL Property to match the
new Port number
and the solution worked again in the IDE.
Didn't think much about it after that.
Published the app and the services onto production server.
The web app consumes the Log On web service OK but attempt on business
logic service fails with:
No connection could be made because the target machine actively
refused it 127.0.0.1:54642
54642 is the new port number that the IDE decided to use when running.
The web.config file for the web application looks good to me.
<applicationSettings>
<wbTracker.Properties.Settings>
<setting name="wbTracker_Tracker_wsTracker"
serializeAs="String">
<value>http://localhost/wsTracker/Tracker.asmx</value>
</setting>
<setting name="wbTracker_TrackLogon_TrackLogon"
serializeAs="String">
<value>http://localhost/wsTrackLogon/TrackLogon.asmx</value>
</setting>
</wbTracker.Properties.Settings>
</applicationSettings>
The Tracker.asmx wsdl is accessible from a web browser both internally
and externally and a simple test function invokes OK internally.
Any thoughts on how to sort this out would be appreciated.
thanks
Bob
I have a web app that feeds off two web services.
Been working for a while and hasn't had any development activity for
months.
Went to fire up the solution in the IDE and found it was broken.
The web app could access the small web service (A logon Facility) but
couldn't access the large web service (business logic)
Anyway I found that the IDE had decided on a new port for running the
business logic webservice.
So I altered the web reference Web reference URL Property to match the
new Port number
and the solution worked again in the IDE.
Didn't think much about it after that.
Published the app and the services onto production server.
The web app consumes the Log On web service OK but attempt on business
logic service fails with:
No connection could be made because the target machine actively
refused it 127.0.0.1:54642
54642 is the new port number that the IDE decided to use when running.
The web.config file for the web application looks good to me.
<applicationSettings>
<wbTracker.Properties.Settings>
<setting name="wbTracker_Tracker_wsTracker"
serializeAs="String">
<value>http://localhost/wsTracker/Tracker.asmx</value>
</setting>
<setting name="wbTracker_TrackLogon_TrackLogon"
serializeAs="String">
<value>http://localhost/wsTrackLogon/TrackLogon.asmx</value>
</setting>
</wbTracker.Properties.Settings>
</applicationSettings>
The Tracker.asmx wsdl is accessible from a web browser both internally
and externally and a simple test function invokes OK internally.
Any thoughts on how to sort this out would be appreciated.
thanks
Bob