How to access NS remotly?
Hi,
It suppose to be real simple, but I can not find out how to do it. I have a SQL server and Web server on 2 separate PCs. When I create NSInstance object
NS_Instance =New Microsoft.SqlServer.NotificationServices.NSInstance(NS_InstanceName)
.Net tries to access NS right on the Web server.
How to point it to the another PC?
Thanks
Oleksiy
[470 byte] By [
Oleksiy] at [2008-2-10]
[copied from the newsgroups]
On the server that will host your subscription management application,
you need to register the instance using something like:
nscontrol register -name instanceName -server databaseServer
where instanceName is the name of the instance and databaseServer is
the name of the server that hosts the instance database.
If you omit the -server parameter, NSControl defaults to the local
server name.
How did you register your instance on the IIS box?
HTH...