Link to home
Start Free TrialLog in
Avatar of AWestEng
AWestEngFlag for Sweden

asked on

WCF beginner

Hi!

I'm new to WCF, I have worked with .Net Remoting alot, but would like to checkout the WCF.

I like to do a SErver client app like remoting with WCF.

Some startup pointer would be great.
ASKER CERTIFIED SOLUTION
Avatar of CuteBug
CuteBug
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of AWestEng

ASKER

can you do the same stuff with WCF that you can do with .Net Remoting
 
 
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I remoting  I can register several classes or hole dll files
 
how can i do the same in WCF?

         using (ServiceHost host = new ServiceHost(typeof(MyService), new Uri("http://localhost:8000/")))
            {
                host.Open();
                Console.WriteLine("Server Started");
                Console.ReadLine();
                host.Close();
            }

Open in new window