NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: vklemet on August 21, 2013, 09:30:24 PM

Title: Multisite host and dll addresses
Post by: vklemet on August 21, 2013, 09:30:24 PM
Hello,

I've been playing around with the MultiSite -example for few days to see if it fits our needs of managing multiple webservers.

The normal way I guess would be to point to client-dll with subdomain address ie. client1.example.com. The ideal way of forming the client-dll addresses for our needs would be to separate each client the following way:

 http://www.example.com/client1/
 http://www.example.com/client2/

Can this be done with the host.exe?

-Vesa-
Title: Re: Multisite host and dll addresses
Post by: Bruce on August 21, 2013, 09:44:16 PM
no, that's not so easy to do because the /client1 part is not part of the HostName header field - and the hostname is what is used to separate the calls.

That said, you're implying that all the clients will be using the same actual app - right? Or are you creating a custom app, and custom dll for each client?

cheers
Bruce
Title: Re: Multisite host and dll addresses
Post by: vklemet on August 21, 2013, 10:34:30 PM
Thanks for the reply Bruce!

All clients would use the same app and dll. I planned that each client would have their own copy of the dll that is registered to the host.exe, and each dll would have their own dataset.

-Vesa-