Click here to Skip to main content
15,914,452 members
Home / Discussions / C#
   

C#

 
GeneralRe: HttpWebRequest authentication Pin
Heath Stewart25-Feb-04 5:20
protectorHeath Stewart25-Feb-04 5:20 
GeneralRe: HttpWebRequest authentication Pin
godzooky25-Feb-04 5:36
godzooky25-Feb-04 5:36 
GeneralRe: HttpWebRequest authentication Pin
Heath Stewart25-Feb-04 6:23
protectorHeath Stewart25-Feb-04 6:23 
GeneralSome questions about webservice Pin
Forrest Feather25-Feb-04 4:16
Forrest Feather25-Feb-04 4:16 
GeneralRe: Some questions about webservice Pin
Heath Stewart25-Feb-04 5:05
protectorHeath Stewart25-Feb-04 5:05 
GeneralRe: Some questions about webservice Pin
Forrest Feather25-Feb-04 14:10
Forrest Feather25-Feb-04 14:10 
QuestionThreads? Pin
johnstacey25-Feb-04 0:00
johnstacey25-Feb-04 0:00 
AnswerRe: Threads? Pin
Verdant12325-Feb-04 2:36
Verdant12325-Feb-04 2:36 
AnswerRe: Threads? Pin
scadaguy25-Feb-04 2:58
scadaguy25-Feb-04 2:58 
GeneralRe: Threads? Pin
johnstacey25-Feb-04 11:16
johnstacey25-Feb-04 11:16 
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 

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.