GUI Access tp a Service?

  • Thread starter Thread starter Scott Townsend
  • Start date Start date
S

Scott Townsend

I've written a service that does TCP Packet Processing. It works great,
though I's like to write a Front end to it so I can Change some Parameters
and or See Data that is coming in.

Any good links on access the Data from a service with another Application?

Thanks,
Scott<-
 
I've written a service that does TCP Packet Processing. It works great,
though I's like to write a Front end to it so I can Change some Parameters
and or See Data that is coming in.

Any good links on access the Data from a service with another Application?

Thanks,
Scott<-

WCF (if your using 2008 or 2005 - framework 3.0 or higher), Remoting in
framework 2.0 or lower.

Those are probably the easiest ways, though the service base class
allows you to send custom integer commands to a service - and so you
could use this to cause the service to dump say to a file or something
that you could read :)
 
Do you either one of you have a link?

Tom Shelton said:
WCF (if your using 2008 or 2005 - framework 3.0 or higher), Remoting in
framework 2.0 or lower.

Those are probably the easiest ways, though the service base class
allows you to send custom integer commands to a service - and so you
could use this to cause the service to dump say to a file or something
that you could read :)
 
Back
Top