Choosing the right web service

Posted by Ratan Sharma on Stack Overflow See other posts from Stack Overflow or by Ratan Sharma
Published on 2012-10-06T06:42:25Z Indexed on 2012/10/06 9:37 UTC
Read the original article Hit count: 343

Filed under:
|
|
|
|

My website currently working in ASP.NET 1.1

Old Process

In our database we have huge amount of data stored for a decoding purpose. We have to update this huge set of data table each week(Data is supplied from a vendor).

In our website (in asp.net 1.1) we query our database to decode information.

New process

Now instead of storing data in our database and query them, we want to replace this through the web service, AS now the vendor is supplying us a DLL, which will give us the decoded information.

Information on the DLL provided by the vendor

The DLL provided, can only be added in 4.0 sites. SO that also impleies that i can not directly add the dll to my 1.1 site. This DLL is exposing certain methods, we simply have to add the DLL refernce in our web service and call the method and fetch the needed information.

Thus we will not have to store those information in our database.

So which type of web service I should go for (asmx OR WCF) that will use the DLLs provided by vendor to fetch the decoded information ??

Flexibility i am looking for in the web service are:
  • It can be consumed from asp.net 1.1 site directly and also using jQuery ajax.
  • It can be consumed from other web services running on the server.
  • It can be consumed from some windows services running from the server.

NOTE : Moreover we have a plan to migrate our website from asp.net 1.1 to 4.0 version in future.So it should be that much supportive for future upgrade.

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about .NET