NetTalk Central

Author Topic: Multisite host and dll addresses  (Read 1775 times)

vklemet

  • Newbie
  • *
  • Posts: 30
    • View Profile
Multisite host and dll addresses
« 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-

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11179
    • View Profile
Re: Multisite host and dll addresses
« Reply #1 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

vklemet

  • Newbie
  • *
  • Posts: 30
    • View Profile
Re: Multisite host and dll addresses
« Reply #2 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-