Web Services Question

  • Thread starter Thread starter Erica
  • Start date Start date
E

Erica

I have a secure site that utilizes web service to access data. The ws runs on
a seperate machine. On the same server as the secure site, I am now creating
a public site that needs to pull some info from the same databases. Would I
have to create a whole new service? Any advice is greatly appreciated! Thanks.
 
This really depends on your architecture.

If your services can be moved to WCF, you have the ability to add different
end points to the same service bits. If not, you may have to write another
service, but you need not rewrite everything as long as you have your actual
"application" code in libraries and not in the web services code.


--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*************************************************
| Think outside the box! |
*************************************************
 
This really depends on your architecture.

If your services can be moved to WCF, you have the ability to add different
end points to the same service bits. If not, you may have to write another
service, but you need not rewrite everything as long as you have your actual
"application" code in libraries and not in the web services code.


--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA

*************************************************
| Think outside the box! |
*************************************************
 
Back
Top