GUI Access tp a Service?

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<-
 
T

Tom Shelton

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 :)
 
B

Brian S.

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 :)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top