Click here to Skip to main content
15,891,567 members
Home / Discussions / C#
   

C#

 
GeneralWebSvcs vs Remoting Pin
Kant27-Jan-04 6:24
Kant27-Jan-04 6:24 
GeneralRe: WebSvcs vs Remoting Pin
Heath Stewart27-Jan-04 6:36
protectorHeath Stewart27-Jan-04 6:36 
GeneralRe: WebSvcs vs Remoting Pin
Kant27-Jan-04 6:47
Kant27-Jan-04 6:47 
GeneralRe: WebSvcs vs Remoting Pin
Uwe Keim28-Jan-04 3:11
sitebuilderUwe Keim28-Jan-04 3:11 
GeneralCustom controls Pin
Radoslav Bielik27-Jan-04 6:01
Radoslav Bielik27-Jan-04 6:01 
GeneralRe: Custom controls Pin
John Fisher27-Jan-04 6:54
John Fisher27-Jan-04 6:54 
GeneralRe: Custom controls Pin
Radoslav Bielik27-Jan-04 6:57
Radoslav Bielik27-Jan-04 6:57 
GeneralRe: Custom controls Pin
John Fisher27-Jan-04 7:12
John Fisher27-Jan-04 7:12 
GeneralRe: Custom controls Pin
Radoslav Bielik27-Jan-04 7:26
Radoslav Bielik27-Jan-04 7:26 
GeneralRe: Custom controls Pin
John Fisher27-Jan-04 7:37
John Fisher27-Jan-04 7:37 
GeneralRe: Custom controls Pin
Radoslav Bielik27-Jan-04 7:45
Radoslav Bielik27-Jan-04 7:45 
GeneralRe: Custom controls Pin
John Fisher27-Jan-04 12:44
John Fisher27-Jan-04 12:44 
GeneralRe: Custom controls Pin
Nick Parker27-Jan-04 6:56
protectorNick Parker27-Jan-04 6:56 
GeneralRe: Custom controls Pin
Heath Stewart27-Jan-04 7:02
protectorHeath Stewart27-Jan-04 7:02 
GeneralRe: Custom controls Pin
Radoslav Bielik27-Jan-04 7:21
Radoslav Bielik27-Jan-04 7:21 
GeneralRe: Custom controls Pin
Heath Stewart27-Jan-04 8:53
protectorHeath Stewart27-Jan-04 8:53 
GeneralRe: Custom controls Pin
Radoslav Bielik27-Jan-04 20:14
Radoslav Bielik27-Jan-04 20:14 
GeneralAnother Internet Explorer question... Pin
profoundwhispers27-Jan-04 5:13
profoundwhispers27-Jan-04 5:13 
GeneralRe: Another Internet Explorer question... Pin
Heath Stewart27-Jan-04 6:31
protectorHeath Stewart27-Jan-04 6:31 
GeneralAny idea about editing mpeg2 files Pin
habiburrehman27-Jan-04 4:19
habiburrehman27-Jan-04 4:19 
GeneralVoice in C# Pin
Abkarino27-Jan-04 3:35
Abkarino27-Jan-04 3:35 
GeneralRe: Voice in C# Pin
Heath Stewart27-Jan-04 4:40
protectorHeath Stewart27-Jan-04 4:40 
GeneralRe: Voice in C# Pin
bindu012321-Apr-09 21:21
bindu012321-Apr-09 21:21 
GeneralMessage Queues & Service Pin
Dpriya27-Jan-04 2:21
Dpriya27-Jan-04 2:21 
GeneralRe: Message Queues & Service Pin
Heath Stewart27-Jan-04 4:32
protectorHeath Stewart27-Jan-04 4:32 
It depends on what kind of queue you created. If you've created a private queue, then the queue runs under the permissions configured for the Windows Service. If you're running the service as the LocalSystem account, you won't be able to access it. Same goes if you're running it as another user, unless you impersonate that user access will be denied. Create a public queue instead.

As far as writing messages continuously while reading them, you should create a separate thread or threads for writing to the queue or use asynchronous calls to send messages while you continue reading them one by one (which is all you can do since they are queued).

 

-----BEGIN GEEK CODE BLOCK-----
Version: 3.21
GCS/G/MU d- s: a- C++++ UL@ P++(+++) L+(--) E--- W+++ N++ o+ K? w++++ O- M(+) V? PS-- PE Y++ PGP++ t++@ 5 X+++ R+@ tv+ b(-)>b++ DI++++ D+ G e++>+++ h---* r+++ y+++
-----END GEEK CODE BLOCK-----

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.