1
Answer

.Net remoting problem

keenweng2001

keenweng2001

20y
2k
1
Hello, i am currently created an application that related to the remoting control. I have created 3 file, can anyone tell me what i am wrong : 1) The remote object (RemoteDesktopDLL.dll) 2) The server implement in window services, this server is together with a web configuration file(RemotingServerWebService.exe.config) 3) the client My problem is after i start the server windows services, the client still not able to connect to the remote object. Below is part of my code: Client ChannelServices.RegisterChannel(new TcpChannel()); RemotingConfiguration.RegisterWellKnownClientType(typeof(CaptureScreen), "tcp://" + machineName + ":8081/RemotingServerWebService/CaptureScreen"); RemoteObj = new CaptureScreen(); Server protected override void OnStart(string[] args) {Thread listenerThread = new Thread(new ThreadStart(this.Listen)); listenerThread.Start();} private void Listen() {try {string fileName = AppDomain.CurrentDomain.BaseDirectory+"RemotingServerWebService.exe.config"; RemotingConfiguration.Configure(fileName); CaptureScreen m=new CaptureScreen(); RemotingServices.Marshal((m),"CaptureScreen"); } RemotingServerWebService.exe.config
Answers (1)
1
Sunny  Sharma

Sunny Sharma

NA 18.4k 1m 11y
Not a problem. You first define all your Entities, their attributes and we can help you with that.

Also, Here are some good links to get yourself started with Database Normalization:

http://holowczak.com/database-normalization/

http://www.phlonx.com/resources/nf3/

http://databases.about.com/od/specificproducts/a/normalization.htm

Suggest you to go through the links above and you should be fine.

Cheers !!
Accepted
0
alrodean fransmab

alrodean fransmab

NA 36 8.2k 11y
Thanks i will go through them now
0
alrodean fransmab

alrodean fransmab

NA 36 8.2k 11y
hi Thanks for the reply.. im not so good with databases so you lost me by normalization
0
Sunny  Sharma

Sunny Sharma

NA 18.4k 1m 11y

Try to detail the every required entity in full, do a normalization and you'll be fine. Can't help you right away as you don't have a defined What To Do. Hope you got the point :)
Next Recommended Forum