Click here to Skip to main content
15,895,142 members
Home / Discussions / C#
   

C#

 
AnswerRe: Threads? - Another Question Pin
johnstacey25-Feb-04 11:30
johnstacey25-Feb-04 11:30 
Generalremoting/serialization problem Pin
occcy24-Feb-04 22:50
occcy24-Feb-04 22:50 
GeneralRe: remoting/serialization problem Pin
Heath Stewart25-Feb-04 5:01
protectorHeath Stewart25-Feb-04 5:01 
GeneralRe: remoting/serialization problem Pin
occcy25-Feb-04 20:39
occcy25-Feb-04 20:39 
GeneralRe: remoting/serialization problem Pin
Heath Stewart26-Feb-04 2:58
protectorHeath Stewart26-Feb-04 2:58 
GeneralRe: remoting/serialization problem Pin
occcy26-Feb-04 3:11
occcy26-Feb-04 3:11 
GeneralRe: remoting/serialization problem Pin
Heath Stewart26-Feb-04 3:31
protectorHeath Stewart26-Feb-04 3:31 
GeneralRe: remoting/serialization problem Pin
occcy26-Feb-04 4:19
occcy26-Feb-04 4:19 
okay!
i register my object in source code.
here's an extract of the code to do this:

<br />
//client:<br />
<br />
public void ConnectToServer(Type ObjectType)<br />
{<br />
 TCPChannel Channel=new TcpClientChannel("ClientChannel",null);<br />
 ChannelServices.RegisterChannel(Channel);<br />
  <br />
 RemotingConfiguration.RegisterWellKnownClientType(ObjectType,"tcp://server:10000/server.rem");<br />
}<br />
<br />
//server:<br />
<br />
public void PublishObject()<br />
{<br />
 TCPChannel Channel=new TcpServerChannel("ServerChannel",10000);<br />
 ChannelServices.RegisterChannel(Channel);<br />
  <br />
 ServerObject Obj=new ServerObject();<br />
 RemotingServices.Marshal(Obj,"server.rem",typeof(ServerObject));<br />
}<br />
<br />

GeneralRe: remoting/serialization problem Pin
Heath Stewart26-Feb-04 4:34
protectorHeath Stewart26-Feb-04 4:34 
GeneralRe: remoting/serialization problem Pin
Tom Larsen26-Feb-04 5:07
Tom Larsen26-Feb-04 5:07 
GeneralRe: remoting/serialization problem Pin
occcy26-Feb-04 20:36
occcy26-Feb-04 20:36 
GeneralRe: remoting/serialization problem Pin
occcy26-Feb-04 4:31
occcy26-Feb-04 4:31 
Generalspider Pin
slah24-Feb-04 22:32
slah24-Feb-04 22:32 
GeneralHelp with event hiding in derived class Pin
gkrish524-Feb-04 20:40
gkrish524-Feb-04 20:40 
GeneralRe: Help with event hiding in derived class Pin
Heath Stewart25-Feb-04 4:50
protectorHeath Stewart25-Feb-04 4:50 
GeneralRe: Help with event hiding in derived class Pin
gkrish525-Feb-04 7:01
gkrish525-Feb-04 7:01 
GeneralRe: Help with event hiding in derived class Pin
Heath Stewart25-Feb-04 7:27
protectorHeath Stewart25-Feb-04 7:27 
GeneralRe: Help with event hiding in derived class Pin
gkrish525-Feb-04 8:55
gkrish525-Feb-04 8:55 
GeneralTroubles with the Parent property (I think) Pin
Andres Coder24-Feb-04 20:26
Andres Coder24-Feb-04 20:26 
GeneralRe: Troubles with the Parent property (I think) Pin
Heath Stewart25-Feb-04 4:46
protectorHeath Stewart25-Feb-04 4:46 
Generalauto checking of NumericUpDown control Pin
azusakt24-Feb-04 17:13
azusakt24-Feb-04 17:13 
GeneralRe: auto checking of NumericUpDown control Pin
Heath Stewart25-Feb-04 4:43
protectorHeath Stewart25-Feb-04 4:43 
GeneralRe: auto checking of NumericUpDown control Pin
azusakt25-Feb-04 15:23
azusakt25-Feb-04 15:23 
GeneralRe: auto checking of NumericUpDown control Pin
Heath Stewart26-Feb-04 2:56
protectorHeath Stewart26-Feb-04 2:56 
GeneralRe: auto checking of NumericUpDown control Pin
Huseyin Altindag25-Feb-04 10:35
Huseyin Altindag25-Feb-04 10:35 

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.