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

C#

 
GeneralProblem running release build on non-development machine Pin
rahmanasdf30-Dec-04 7:16
rahmanasdf30-Dec-04 7:16 
GeneralRe: Problem running release build on non-development machine Pin
Nick Parker30-Dec-04 7:22
protectorNick Parker30-Dec-04 7:22 
GeneralRe: Problem running release build on non-development machine Pin
Ray Cassick30-Dec-04 11:14
Ray Cassick30-Dec-04 11:14 
GeneralRe: Problem running release build on non-development machine Pin
Uwe Keim30-Dec-04 20:48
sitebuilderUwe Keim30-Dec-04 20:48 
GeneralRe: Problem running release build on non-development machine Pin
rahmanasdf2-Jan-05 5:21
rahmanasdf2-Jan-05 5:21 
GeneralWebService send message to clients Pin
brunoconde30-Dec-04 2:49
brunoconde30-Dec-04 2:49 
GeneralRe: WebService send message to clients Pin
Nick Parker30-Dec-04 3:02
protectorNick Parker30-Dec-04 3:02 
GeneralRe: WebService send message to clients Pin
Heath Stewart30-Dec-04 7:36
protectorHeath Stewart30-Dec-04 7:36 
Actually, that's not even possible. XML Web Services are invoked over HTTP, which is - by nature (and it's very protocol) - client request / server response driven. A server cannot contact a client; only a client can make requests on the server, in which case the server (should) respond.

If you need a "net send" equivalent take a look at the .NET Remoting Overview[^]. You'll want to use a channel that is not HTTP-based, like the TcpChannel. The clients will still need to connect to the server (like a chat application), but they can stay connected and the .remoted object (on the remoting server) can send the connected clients data or even invoke requests on the client, instead of only the clients being able to invoke methods on the server.

The .NET Framework 1.x provides the HttpChannel and TcpChannel, and 2.0 will add an IpcChannel. Channels - like formatters - are extensible. Here on CodeProject someone even posted a channel using MSMQ (Microsoft Message Queue) server. Nifty.

This posting is provided "AS IS" with no warranties, and confers no rights.

Software Design Engineer
Developer Division Sustained Engineering
Microsoft

[My Articles] [My Blog]
GeneralSending Fax Using RightFax.DLL in c#.net Pin
pavan goud30-Dec-04 2:39
pavan goud30-Dec-04 2:39 
GeneralRe: Sending Fax Using RightFax.DLL in c#.net Pin
Heath Stewart30-Dec-04 7:28
protectorHeath Stewart30-Dec-04 7:28 
GeneralRe: Sending Fax Using RightFax.DLL in c#.net Pin
Kotte_SDS23-Sep-11 5:48
Kotte_SDS23-Sep-11 5:48 
GeneralI am unable to handle POST method. Response required as soon as possible. Pin
Mohammed Aijaz Mohiuddin30-Dec-04 1:21
Mohammed Aijaz Mohiuddin30-Dec-04 1:21 
GeneralRe: I am unable to handle POST method. Response required as soon as possible. Pin
Nick Parker30-Dec-04 2:43
protectorNick Parker30-Dec-04 2:43 
GeneralRe: I am unable to handle POST method. Response required as soon as possible. Pin
Heath Stewart30-Dec-04 7:11
protectorHeath Stewart30-Dec-04 7:11 
GeneralFinding if a Pocket PC is attached to desktop via usb Pin
yetanotherchris29-Dec-04 23:05
yetanotherchris29-Dec-04 23:05 
GeneralRe: Finding if a Pocket PC is attached to desktop via usb Pin
Heath Stewart30-Dec-04 7:02
protectorHeath Stewart30-Dec-04 7:02 
GeneralRe: Finding if a Pocket PC is attached to desktop via usb Pin
Nick Parker30-Dec-04 7:19
protectorNick Parker30-Dec-04 7:19 
GeneralPocket PC Apllication Pin
vksrisridhar29-Dec-04 23:04
vksrisridhar29-Dec-04 23:04 
GeneralPocket PC Application. Pin
vksrisridhar29-Dec-04 23:03
vksrisridhar29-Dec-04 23:03 
GeneralRe: Pocket PC Application. Pin
Heath Stewart30-Dec-04 6:33
protectorHeath Stewart30-Dec-04 6:33 
GeneralRe: Pocket PC Application. Pin
vksrisridhar30-Dec-04 17:09
vksrisridhar30-Dec-04 17:09 
GeneralRe: Pocket PC Application. Pin
vksrisridhar30-Dec-04 17:44
vksrisridhar30-Dec-04 17:44 
GeneralRe: Pocket PC Application. Pin
Heath Stewart30-Dec-04 19:53
protectorHeath Stewart30-Dec-04 19:53 
GeneralRe: Pocket PC Application. Pin
vksrisridhar30-Dec-04 21:10
vksrisridhar30-Dec-04 21:10 
GeneralRe: Pocket PC Application. Pin
Heath Stewart31-Dec-04 6:00
protectorHeath Stewart31-Dec-04 6:00 

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.