Posted on: 12/24/2013 11:34:58 AM | Views : 767

Hi there,
I called on a web service from my asp.net application and it's working fine on my development enviroment.
I found out that after deployment, the application doesn't call the web service again. and I got 'The remote name could not be resolved 'online.valuecard.com''
below is the code I used to call the web service
On the button click event: IntegrateMRP.MerchantPortalWebService myService = new IntegrateMRP.MerchantPortalWebService(); XElement XData = XElement.Parse(myService.GetTerminalDetails(txtVisitationTermID.Text)); if (XData.Value == "") { ApplicationLogic.ShowAlert("Terminal ID does not exist!"); } else { txtVisitationMerchName.Text = XData.Element("DATA").Element("RETAILERNAME").Value; txt ...

Go to the complete details ...