Vishal Shah
Vishal Shah

Reputation: 4124

Add reference to service within same project

I'm wondering if it is okay to add a reference to a web service within the same project (web application), i.e. I'm adding a reference in the same project where the service is defined.

The reason for doing so is because

Also, I'm not sure if this is the way to go about it. I have seen a lot of people suggest using WCF instead of a web service, but I don't see how I could accomplish the same thing with WCF.

There is already a question regarding this on SO - Add Service Reference to WCF Service within Same Project, but i don't think it is valid for my situation.

Upvotes: 0

Views: 1047

Answers (1)

John Mc
John Mc

Reputation: 2933

If the service is already in your project, you can use it directly without requiring a web service proxy.

After all, Web services are for exposing your application functionality to the outside world and not to other parts of your system.

Upvotes: 1

Related Questions