Click here to Skip to main content
15,909,737 members
Home / Discussions / C#
   

C#

 
AnswerRe: reading data from serial port and graph it Pin
PhilDanger12-Jul-07 10:23
PhilDanger12-Jul-07 10:23 
GeneralRe: reading data from serial port and graph it Pin
ahmad al-omar13-Jul-07 10:01
ahmad al-omar13-Jul-07 10:01 
AnswerRe: reading data from serial port and graph it Pin
Ed.Poore12-Jul-07 12:02
Ed.Poore12-Jul-07 12:02 
GeneralRe: reading data from serial port and graph it Pin
ahmad al-omar13-Jul-07 10:05
ahmad al-omar13-Jul-07 10:05 
GeneralRe: reading data from serial port and graph it Pin
Ed.Poore13-Jul-07 12:09
Ed.Poore13-Jul-07 12:09 
QuestionRemoting problem Pin
Wjousts12-Jul-07 9:30
Wjousts12-Jul-07 9:30 
AnswerRe: Remoting problem Pin
Larantz12-Jul-07 11:46
Larantz12-Jul-07 11:46 
GeneralRe: Remoting problem Pin
Wjousts13-Jul-07 2:05
Wjousts13-Jul-07 2:05 
Thanks for the reply.
I should be connecting to the localhost. Here's how I have it set up:

// Create server<br />
            BinaryServerFormatterSinkProvider provider = new BinaryServerFormatterSinkProvider();<br />
            provider.TypeFilterLevel = System.Runtime.Serialization.Formatters.TypeFilterLevel.Full;<br />
            IDictionary props = new Hashtable();<br />
            props["port"] = mySettings.TCPPort;    <br />
            TcpChannel channel = new TcpChannel(props, null, provider);<br />
            ChannelServices.RegisterChannel(channel, false);<br />
            RemotingConfiguration.RegisterWellKnownServiceType(typeof(MyMessenger), "MyRemoteService", WellKnownObjectMode.Singleton);<br />
<br />
// Get copy for myself<br />
messenger = (MyMessenger)Activator.GetObject(typeof(MyMessenger), "tcp://localhost:" + mySettings.TCPPort + "/MyRemoteService");


Am I doing this correctly?
GeneralRe: Remoting problem Pin
Larantz13-Jul-07 23:05
Larantz13-Jul-07 23:05 
Question.Net 3 Pin
mehrdadc4812-Jul-07 9:24
mehrdadc4812-Jul-07 9:24 
AnswerRe: .Net 3 Pin
Zoltan Balazs12-Jul-07 9:29
Zoltan Balazs12-Jul-07 9:29 
GeneralRe: .Net 3 Pin
sidbaruah12-Jul-07 19:55
sidbaruah12-Jul-07 19:55 
AnswerRe: .Net 3 Pin
leckey12-Jul-07 10:05
leckey12-Jul-07 10:05 
GeneralRe: .Net 3 Pin
Christian Graus12-Jul-07 10:11
protectorChristian Graus12-Jul-07 10:11 
GeneralRe: .Net 3 Pin
leckey12-Jul-07 10:44
leckey12-Jul-07 10:44 
GeneralRe: .Net 3 Pin
Paul Conrad12-Jul-07 11:11
professionalPaul Conrad12-Jul-07 11:11 
GeneralRe: .Net 3 Pin
leckey12-Jul-07 11:30
leckey12-Jul-07 11:30 
GeneralRe: .Net 3 Pin
Paul Conrad12-Jul-07 11:43
professionalPaul Conrad12-Jul-07 11:43 
GeneralRe: .Net 3 Pin
leckey12-Jul-07 17:03
leckey12-Jul-07 17:03 
GeneralRe: .Net 3 Pin
Paul Conrad12-Jul-07 17:17
professionalPaul Conrad12-Jul-07 17:17 
GeneralRe: .Net 3 Pin
martin_hughes12-Jul-07 12:21
martin_hughes12-Jul-07 12:21 
GeneralRe: .Net 3 Pin
leckey12-Jul-07 17:00
leckey12-Jul-07 17:00 
GeneralRe: .Net 3 Pin
Paul Conrad12-Jul-07 17:34
professionalPaul Conrad12-Jul-07 17:34 
Questionadd error handling page to project Pin
daku112-Jul-07 8:01
daku112-Jul-07 8:01 
AnswerRe: add error handling page to project Pin
Dave Sexton12-Jul-07 11:01
Dave Sexton12-Jul-07 11:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.