I try to start a webpage that connect to the web service. I have problem in first stage, usually I add web service reference and initialize in the page and usually the service url is like this:
http://10.169.225.250:8080/Service1.asmx
But this time I am not able to initialize it and only difference is the service url that is like this:
https://10.15.16.20/Data.svc
Is it any difference between .asmx and .svs?
By the way this is the way I initilise service:
TDServices.tdInvoice oWin;
string oResponse;
try
{
oWins = new TDServices.tdInvoice (); //initializing the service
......
but in .svc one when I define like: bluebookService.DataExchange oDataExchange;
then oDataExchange is not available in intellisense as variable to make to thi ...
Go to the complete details ...