vote up 1 vote down star

Im creating a simple web service in a console app. (PersonService) this is my Program.cs below

im trying to add a service reference to a different console app (PersonClient) how can i do this? i tried adding it by right clicking, add service reference, pointing to the refernce etc... but it wont work.

        [DataContract]
        public class Person
        {
            [DataMember]
            public string FirstName { get; set; }

            [DataMember]
            public string LastName { get; set; }

        }

        [ServiceContract]
        public interface IPersonLookup
        {
            [OperationContract]
            Person GetPerson(int identifier);
        }

        public class PersonService : IPersonLookup
        {
            public PersonService()
            {
            }
            public Person GetPerson(int identifier)
            {
                Person p = new Person();
                p.FirstName="Jane";
                p.LastName="Doe";
                return p;
            }



        }


        class Program
        {
            static void Main(string[] args)
            {
                using (ServiceHost host = new ServiceHost(typeof(PersonService)))
                {
                    WSHttpBinding binding = new WSHttpBinding();
                    host.AddServiceEndpoint(typeof(IPersonLookup), binding, "http://localhost:9090/PersonService");
                    host.Open();
                    Console.WriteLine("Listening....");
                    Console.ReadLine();
                }


            }
        }
flag

57% accept rate

3 Answers

vote up 0 vote down check

You need to read about WCF MEX Endpoints. Here's a blog post that may help.

link|flag
thanks that helped – raklos May 20 at 14:45
Glad I could help. – RichardOD May 20 at 15:20
vote up 0 vote down

When you added the webservice reference, you defined the namespace and 'class name' for the service. You must either add the namespace reference ("using FooNameSpace;") or use the fully qualified class name of the service ("FooNameSpace.BarClass ws = new FooNameSapce.BarClass()");

link|flag
vote up 0 vote down

You have two console exes, one which runs a ServiceHost - is that correct? Run the server console without debugging; then in the IDE add the WCF reference to the url. It should work, but it needs the server (your second console exe) to be running when you query the mex.

link|flag
Hi Marc, I did what you said and i pointed address to: localhost:9090/PersonService and it gives this error: There was an error downloading 'localhost:9090/PersonService'. The request failed with HTTP status 400: Bad Request. Metadata contains a reference that cannot be resolved: 'localhost:9090/PersonService'. Metadata contains a reference that cannot be resolved: 'localhost:9090/PersonService'. If the service is defined in the current solution, try building the solution and adding the service reference again. – raklos May 20 at 14:00
When it is running, try browsing to the service uri in your web-browser. It may give you the service page that tells you how to set up mex; I can't remember off the top of my head, though. – Marc Gravell May 20 at 14:01
when i point to localhost:9090/PersonService whilst the service is running it gives a page not found. – raklos May 20 at 14:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.