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

C#

 
GeneralRe: what is wrong here ? Pin
Heath Stewart31-Dec-04 8:05
protectorHeath Stewart31-Dec-04 8:05 
GeneralHidden Window Screenshot Pin
eggie530-Dec-04 10:21
eggie530-Dec-04 10:21 
GeneralRe: Hidden Window Screenshot Pin
Heath Stewart30-Dec-04 11:53
protectorHeath Stewart30-Dec-04 11:53 
GeneralRe: Hidden Window Screenshot Pin
eggie530-Dec-04 16:40
eggie530-Dec-04 16:40 
GeneralRe: Hidden Window Screenshot Pin
Heath Stewart30-Dec-04 19:51
protectorHeath Stewart30-Dec-04 19:51 
Generalgenerate a random number of the bignumber Pin
asmyan30-Dec-04 9:18
asmyan30-Dec-04 9:18 
GeneralRe: generate a random number of the bignumber Pin
Heath Stewart30-Dec-04 9:45
protectorHeath Stewart30-Dec-04 9:45 
GeneralRe: regarding dundas evaluation version Pin
Heath Stewart30-Dec-04 9:14
protectorHeath Stewart30-Dec-04 9:14 
GeneralSorry for asking such a question Pin
asmyan30-Dec-04 17:29
asmyan30-Dec-04 17:29 
GeneralRe: Sorry for asking such a question Pin
Heath Stewart30-Dec-04 19:53
protectorHeath Stewart30-Dec-04 19:53 
GeneralRe: regarding dundas evaluation version Pin
Nick Parker30-Dec-04 9:40
protectorNick Parker30-Dec-04 9:40 
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 

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.