Mike C# said:
You are welcome.
After a little more investigation it looks like it might not even be that
easy
Ah, the real world can be so ugly.
It looks like they want the front end for this service to be a web page.
I'm thinking the path of least resistance will be to have the service just
write to an XML file and use AJAX to dynamically update the page with the
contents of the XML file. Anyone else done anything like this (use a web
browser as a front end for a web service?) As always any hints, tips or
suggestions are appreciated!
On a project that was started while .Net was still in beta I did something
similar. I built an ISAPI extension which fielded requests from the browser.
It took the request, mapped it into a datagram and sent it through a pipe to
a service which knew nothing of either HTTP or HTML.
It was _very_ fast but a _lot_ of work. Except in an environment where
scalability is of prime importance that's not likely to be a good choice
these days.
These days, you are much likely to see something done with ASP.NET. This
page has a link to a quick start on web services
http://samples.gotdotnet.com/quickstart/aspplus/doc/
and this one has an interesting video on what they call a "zero code DAL":
http://www.codeplex.com/Wiki/View.aspx?ProjectName=actionpack
(If like me, you've never run across that buzz phrase before it is a web
based, data access layer which requires no code. Or so they say <g>.)
Regards,
Will