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

C#

 
GeneralRe: Avoid stuck while reading a large textfile Pin
Seraphin21-Sep-05 0:48
Seraphin21-Sep-05 0:48 
GeneralRe: Avoid stuck while reading a large textfile Pin
Guffa21-Sep-05 1:24
Guffa21-Sep-05 1:24 
GeneralRe: Avoid stuck while reading a large textfile Pin
Seraphin21-Sep-05 1:49
Seraphin21-Sep-05 1:49 
GeneralRe: Avoid stuck while reading a large textfile Pin
Dan Neely21-Sep-05 1:53
Dan Neely21-Sep-05 1:53 
GeneralRe: Avoid stuck while reading a large textfile Pin
Guffa21-Sep-05 3:37
Guffa21-Sep-05 3:37 
Question.net remoting Pin
Geert van Horrik21-Sep-05 0:04
Geert van Horrik21-Sep-05 0:04 
AnswerRe: .net remoting Pin
S. Senthil Kumar21-Sep-05 4:28
S. Senthil Kumar21-Sep-05 4:28 
GeneralRe: .net remoting Pin
Geert van Horrik21-Sep-05 4:40
Geert van Horrik21-Sep-05 4:40 
Thanks for you answer. This is my code now:

<br />
// Create channels<br />
tcpServerChannel = new TcpChannel(8080);<br />
<br />
// Register channels<br />
ChannelServices.RegisterChannel(tcpServerChannel);<br />
<br />
// Register interface<br />
RemotingConfiguration.RegisterWellKnownServiceType(<br />
	typeof(IMyClass),<br />
	"MyClass",<br />
	WellKnownObjectMode.Singleton);<br />
<br />
// Create object<br />
myobject = new MyClass();<br />
<br />
// Set delegate<br />
myobject.UpdateServerData += new UpdateServerDataHandler(UpdateData);<br />
<br />
// Register our object<br />
RemotingServices.Marshal(myobject, "tcp://localhost:8080/MyObject", typeof(IMyObject));<br />


As you see, I want to be triggered when the server data changes. However, the UpdateServerData of the server object is <undefined> when I use a breakpoint at the point it should throw the event.

Any ideas?

Geert

Want to spread the newest version of your software automatically for free? Use Updater!
Visit my website: www.gvhsoftware.org
Questionenconding style ERROR Pin
Campaniço20-Sep-05 23:44
Campaniço20-Sep-05 23:44 
Questionwindows service Pin
Mridang Agarwalla20-Sep-05 21:54
Mridang Agarwalla20-Sep-05 21:54 
Questionhow to make it work?? Pin
shanzy20-Sep-05 21:52
shanzy20-Sep-05 21:52 
AnswerRe: how to make it work?? Pin
Guffa20-Sep-05 21:55
Guffa20-Sep-05 21:55 
AnswerRe: how to make it work?? Pin
mav.northwind20-Sep-05 22:01
mav.northwind20-Sep-05 22:01 
GeneralRe: how to make it work?? Pin
shanzy20-Sep-05 22:05
shanzy20-Sep-05 22:05 
AnswerRe: how to make it work?? Pin
Luis Alonso Ramos21-Sep-05 5:47
Luis Alonso Ramos21-Sep-05 5:47 
QuestionAbout Remoting Pin
baskar.G20-Sep-05 19:13
baskar.G20-Sep-05 19:13 
AnswerRe: About Remoting Pin
akshayswaroop21-Sep-05 3:22
akshayswaroop21-Sep-05 3:22 
QuestionReading Emails from Exchange Server;MSXML 2.6, XMLHTTP Problem Pin
Member 185593520-Sep-05 18:28
Member 185593520-Sep-05 18:28 
QuestionCan you tell me how to custom a arrow with GDI+ Pin
dreamwinter20-Sep-05 17:25
dreamwinter20-Sep-05 17:25 
AnswerRe: Can you tell me how to custom a arrow with GDI+ Pin
Andy Moore20-Sep-05 18:05
Andy Moore20-Sep-05 18:05 
GeneralRe: Can you tell me how to custom a arrow with GDI+ Pin
Andy Moore20-Sep-05 18:06
Andy Moore20-Sep-05 18:06 
AnswerRe: Can you tell me how to custom a arrow with GDI+ Pin
mav.northwind20-Sep-05 20:51
mav.northwind20-Sep-05 20:51 
GeneralRe: Can you tell me how to custom a arrow with GDI+ Pin
dreamwinter22-Sep-05 19:07
dreamwinter22-Sep-05 19:07 
QuestionListBox selection removal Pin
Pyro Joe20-Sep-05 16:42
Pyro Joe20-Sep-05 16:42 
AnswerRe: ListBox selection removal Pin
Luis Alonso Ramos20-Sep-05 18:40
Luis Alonso Ramos20-Sep-05 18:40 

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.