this is very confusing for me, cannot picture how it can be done. I have the following scenario: I have a server A & server B, Server A hosts an application that saves in it information. Server B hosts a Dot Net Nuke website where the information should be displayed.
Now on server A web service resides and it converts the data to xml and is scheduled to run daily at a particular time. On server B there are methods which reads the xml and import.
I need to expose the import method so that server A can use it. It can be done by implementing a webservice residing in the same application pool, I want to package this webservice as a module which once installed will immediately create the virtual directory in the iis of the dot net nuke site and expose the needed methods.
My concerns are the following: Can I create a module to act as a webservice? or should I create a webservice and call it in the module?
Please help!