Question

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!

Was it helpful?

Solution

You can use and package .ashx files in your DotNetNuke module. If you are creating a module to display the information that would be preferred over setting up it's own web service and putting it stand alone in IIS beside DNN.

You can then do whatever is necessary on Server A since it's not in DNN.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top