Web services

I need to extract data out of a domino server and display it on a asp.net 2.0 application. I know I can do this with com, http requests and xml etc. I believe a web service would be perfect for what I am trying to accomplish.Question,

Can you build a web service in domino 6? I have not found any easy examples. Everything is version 7 becuase it is fully supported. I have read other people complain about how difficult it is to create in 6 and it sounds like it is not worth the effort. Upgrading domino is not an option at this time. Any ideas, help is appreciated.

Subject: web services

It’s not too difficult.

Create a domino agent and post your request to the agent

(you know you can open an agent directly by url).

The agents start with getting the doc from session.documentcontext

the posted code is in the field “Request_Content”

extract the code, do your calculations and print the

repsonse out by

Print “Content-Type: text/xml”

Print your string

the printed code is returned to the consumer.