Click here to Skip to main content
15,897,273 members
Home / Discussions / C#
   

C#

 
GeneralRe: text steganography Pin
Member 1000977129-Apr-13 2:44
Member 1000977129-Apr-13 2:44 
GeneralRe: text steganography Pin
Dave Kreskowiak29-Apr-13 7:09
mveDave Kreskowiak29-Apr-13 7:09 
AnswerRe: text steganography Pin
Manfred Rudolf Bihy29-Apr-13 2:30
professionalManfred Rudolf Bihy29-Apr-13 2:30 
GeneralRe: text steganography Pin
Member 1000977129-Apr-13 2:48
Member 1000977129-Apr-13 2:48 
GeneralRe: text steganography Pin
Manfred Rudolf Bihy29-Apr-13 3:15
professionalManfred Rudolf Bihy29-Apr-13 3:15 
GeneralRe: text steganography Pin
Pete O'Hanlon29-Apr-13 3:47
mvePete O'Hanlon29-Apr-13 3:47 
GeneralRe: text steganography Pin
Manfred Rudolf Bihy29-Apr-13 7:45
professionalManfred Rudolf Bihy29-Apr-13 7:45 
GeneralRe: text steganography Pin
Pete O'Hanlon29-Apr-13 8:35
mvePete O'Hanlon29-Apr-13 8:35 
GeneralRe: text steganography Pin
Manfred Rudolf Bihy29-Apr-13 8:50
professionalManfred Rudolf Bihy29-Apr-13 8:50 
AnswerRe: text steganography Pin
Keith Barrow29-Apr-13 2:32
professionalKeith Barrow29-Apr-13 2:32 
GeneralRe: text steganography Pin
Manfred Rudolf Bihy29-Apr-13 2:39
professionalManfred Rudolf Bihy29-Apr-13 2:39 
AnswerRe: text steganography Pin
Manfred Rudolf Bihy29-Apr-13 2:48
professionalManfred Rudolf Bihy29-Apr-13 2:48 
GeneralRe: text steganography Pin
Member 1000977129-Apr-13 2:52
Member 1000977129-Apr-13 2:52 
QuestionService web inside Windows service Pin
Alvinnne29-Apr-13 0:31
Alvinnne29-Apr-13 0:31 
AnswerRe: Service web inside Windows service Pin
Eddy Vluggen29-Apr-13 0:52
professionalEddy Vluggen29-Apr-13 0:52 
QuestionLogin to windows 7 using fingerprint scanner Pin
gankanda29-Apr-13 0:22
gankanda29-Apr-13 0:22 
AnswerRe: Login to windows 7 using fingerprint scanner Pin
Eddy Vluggen29-Apr-13 0:50
professionalEddy Vluggen29-Apr-13 0:50 
GeneralRe: Login to windows 7 using fingerprint scanner Pin
gankanda29-Apr-13 22:31
gankanda29-Apr-13 22:31 
AnswerRe: Login to windows 7 using fingerprint scanner Pin
Eddy Vluggen29-Apr-13 23:02
professionalEddy Vluggen29-Apr-13 23:02 
QuestionServer Client Arhitecture Pin
Rares T28-Apr-13 22:28
Rares T28-Apr-13 22:28 
AnswerRe: Server Client Arhitecture - Semi-long post. Pin
Keith Barrow28-Apr-13 22:48
professionalKeith Barrow28-Apr-13 22:48 
GeneralRe: Server Client Arhitecture - Semi-long post. Pin
Rares T29-Apr-13 0:24
Rares T29-Apr-13 0:24 
GeneralRe: Server Client Arhitecture - Semi-long post. Pin
Keith Barrow29-Apr-13 1:33
professionalKeith Barrow29-Apr-13 1:33 
You need to work out architecture you need for your situation. The WebAPI stuff I suggested will work. The problem is the synchronisation. Instant synchronisation is impossible, the latency introduced by the network sees to that. O
You need to decide whether you need updates in near-real time (e.g. at save or even edit) or when complete (e.g. when the user syncs). The first, fully collaborative approach is going to be hard: you could designate a server which holds the document and actually edits, and have the updates in near real-time so that the clients act as dumb-terminals in effect. The second approach is easier: you upload the doc and update a timestamp, the clients are either informed about this (better) or they get the document on a polling interval (a good half-way house approach is long-polling: you can Google for this) which sends documents newer than the last poll.
In either case either a web api or a WCF service could be of use, but you aren't going to have 100% instant sync and you will have concurrency problems. WCF has a bonus in that it can run peer-to-peer bu orchestrating across machines is going to be hard, so I think your client(s)/server approach seems good.
“Education is not the piling on of learning, information, data, facts, skills, or abilities - that's training or instruction - but is rather making visible what is hidden as a seed”
“One of the greatest problems of our time is that many are schooled but few are educated”


Sir Thomas More (1478 – 1535)

AnswerRe: Server Client Arhitecture Pin
Eddy Vluggen29-Apr-13 0:58
professionalEddy Vluggen29-Apr-13 0:58 
QuestionHow to Protect the dll or exe Code Pin
kalyanacvk28-Apr-13 22:22
kalyanacvk28-Apr-13 22:22 

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.