Click here to Skip to main content
15,887,027 members
Home / Discussions / C#
   

C#

 
AnswerRe: UserControl Selection Pin
OriginalGriff27-Mar-14 9:09
mveOriginalGriff27-Mar-14 9:09 
QuestionNeed help/example using Sharepoint web services Pin
turbosupramk327-Mar-14 7:46
turbosupramk327-Mar-14 7:46 
SuggestionRe: Need help/example using Sharepoint web services Pin
Richard MacCutchan27-Mar-14 22:22
mveRichard MacCutchan27-Mar-14 22:22 
QuestionEventSource does not have Event Property? Pin
coinci26-Mar-14 20:28
coinci26-Mar-14 20:28 
SuggestionRe: EventSource does not have Event Property? Pin
Richard MacCutchan26-Mar-14 23:13
mveRichard MacCutchan26-Mar-14 23:13 
GeneralRe: EventSource does not have Event Property? Pin
coinci27-Mar-14 16:57
coinci27-Mar-14 16:57 
QuestionNeed Advice on PC to PC COMM approach Pin
cmarcus197926-Mar-14 16:20
cmarcus197926-Mar-14 16:20 
AnswerRe: Need Advice on PC to PC COMM approach Pin
BobJanova27-Mar-14 7:19
BobJanova27-Mar-14 7:19 
Your options here are:
- DCOM
- TCP or server on machine 1 and client in the UI on machine 2
- UDP transceivers in both machines
- Some kind of high level service on machine 1 (e.g. REST, WCF) and client code on machine 2

DCOM is disgusting and horrible and I really wouldn't go that way.

All the other options require a daemon (in Windows land, a service) that is always on, so you can request that it starts the other application.

Depending on how strict you want 'real time' to be, I'd pick either a TCP client/server or UDP open channel model. What you want to communicate is simple enough that imo high level service frameworks are overkill, and they add bandwidth and latency.

UDP is faster but less reliable (i.e. packets can arrive out of order or be dropped). If you want to get the latest data and don't care about prior updates then use UDP and send an update in a single packet (1KB will easily fit in a packet). If you want the full ordered stream to create timeseries data then use TCP and some kind of message protocol (see my article for one way you can do that).
Questionhelp me in attendence management system urgentlyy Pin
Member 1070214226-Mar-14 11:44
Member 1070214226-Mar-14 11:44 
AnswerRe: help me in attendence management system urgentlyy Pin
InsertCleverUserName26-Mar-14 11:49
InsertCleverUserName26-Mar-14 11:49 
AnswerRe: help me in attendence management system urgentlyy Pin
jschell26-Mar-14 11:55
jschell26-Mar-14 11:55 
AnswerRe: help me in attendence management system urgentlyy Pin
Dave Kreskowiak26-Mar-14 12:21
mveDave Kreskowiak26-Mar-14 12:21 
AnswerRe: help me in attendence management system urgentlyy Pin
_Maxxx_26-Mar-14 17:04
professional_Maxxx_26-Mar-14 17:04 
GeneralRe: help me in attendence management system urgentlyy Pin
Mycroft Holmes26-Mar-14 20:45
professionalMycroft Holmes26-Mar-14 20:45 
AnswerRe: help me in attendence management system urgentlyy Pin
BobJanova27-Mar-14 7:04
BobJanova27-Mar-14 7:04 
AnswerRe: help me in attendence management system urgentlyy Pin
OriginalGriff27-Mar-14 9:10
mveOriginalGriff27-Mar-14 9:10 
QuestionRe: help me in attendence management system urgentlyy Pin
Richard MacCutchan27-Mar-14 22:21
mveRichard MacCutchan27-Mar-14 22:21 
AnswerRe: help me in attendence management system urgentlyy Pin
OriginalGriff27-Mar-14 23:34
mveOriginalGriff27-Mar-14 23:34 
QuestionC# Refresher / Bare Minimums Course Pin
C-P-User-326-Mar-14 10:43
C-P-User-326-Mar-14 10:43 
AnswerRe: C# Refresher / Bare Minimums Course Pin
BillWoodruff26-Mar-14 15:21
professionalBillWoodruff26-Mar-14 15:21 
GeneralRe: C# Refresher / Bare Minimums Course Pin
C-P-User-327-Mar-14 1:44
C-P-User-327-Mar-14 1:44 
GeneralRe: C# Refresher / Bare Minimums Course Pin
BobJanova27-Mar-14 7:00
BobJanova27-Mar-14 7:00 
AnswerRe: C# Refresher / Bare Minimums Course Pin
Ravi Bhavnani28-Mar-14 5:17
professionalRavi Bhavnani28-Mar-14 5:17 
GeneralRe: C# Refresher / Bare Minimums Course Pin
C-P-User-329-Mar-14 15:59
C-P-User-329-Mar-14 15:59 
GeneralRe: C# Refresher / Bare Minimums Course Pin
Ravi Bhavnani29-Mar-14 18:07
professionalRavi Bhavnani29-Mar-14 18:07 

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.