Resuse Code / Web Services

  • Thread starter Thread starter C
  • Start date Start date
C

C

Hi,

I have a small application that I am developing in
ASP.Net / VB.Net.

I have a class that performs various functions that code
be called by other applications so I am going create an
assembly for this class. Is there any overhead in doing
this?

My main question is - :
Is there much work involved if I want to expose the
assembly as a web service down the road.

Thanks,
C
 
C,

It would be very easy to expose. You would just create a web service page,
inherit or import the class, and call the method(s) you wish in the web
services subs / functions.

Here is a good article on web services:

http://samples.gotdotnet.com/quickstart/aspplus/

Plus there are more tutorials (just scan the left menu of the page).

Good luck!

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
 
Back
Top