N
Nicholas Paldino [.NET/C# MVP]
Moty,
If your windows service already exists, then you have to use whatever
communications mechanism it exposes, don't you? Or are you going to add to
the current service?
You say you still have windows 98 clients, which leads me to believe
that you have clients outside of the network that the machine that the
service is on. If this is the case, I'd expose a web service and then have
that connect to the service.
If you are on an internal network, then you could use tcp, byt why use
wse2 if you are going to use tcp? I mean, why not just use remoting? Or do
you have a need for cross-platform access? If so, then just expose a web
service which connects to your service, then everyone can connect to it.
Hope this helps.
If your windows service already exists, then you have to use whatever
communications mechanism it exposes, don't you? Or are you going to add to
the current service?
You say you still have windows 98 clients, which leads me to believe
that you have clients outside of the network that the machine that the
service is on. If this is the case, I'd expose a web service and then have
that connect to the service.
If you are on an internal network, then you could use tcp, byt why use
wse2 if you are going to use tcp? I mean, why not just use remoting? Or do
you have a need for cross-platform access? If so, then just expose a web
service which connects to your service, then everyone can connect to it.
Hope this helps.