I am currently maintaining and developing a website which uses a lot of webservices in an ajax way.
Registering of the services is done in the aspx like this:
<asp:ScriptManagerProxy id="ScriptManager1" runat="server">
<services>
<asp:ServiceReference Path="WebServices/WSAdministrator.asmx"></asp:ServiceReference>
</services>
</asp:ScriptManagerProxy>
and consuming the services in the javascript is done like this
WSAdministrator.GetConsumerClubInfo(ConsumerClubId,
OnSucceededToGetConsumerClubInfo,
OnFailedToGetConsumerClubInfo);
I want to know if I can reference a self-hosted WCF service(on the same machine) this easily.
any suggestions?
EDIT: The WCF service is running on a windows service, it exposes both webHttpBinding and basicHttpBinding endpoints.
After Reading ASP.Net WCF Service with no App_Code , I realized that I should just create an svc file which will act as a reference to the service.
I created this svc file:
<%@ ServiceHost Language="C#" Service="MyService.Namespace.Contract" %>
and in the web.config file I added these lines:
<services>
<service name="MyService.Namespace.Contract">
<endpoint address="setAddress" binding="basicHttpBinding" contract="MyService.Namespace.ContractInterface"/>
</service>
</services>
The address is working, but when I try to access the reference from the svc, I get the following error:
The type '', provided as the Service attribute value in the ServiceHost directive could not be found.
What am I missing here?
Note: There have been some nice answers, but all to things I already know, my question is about how to reference my Self Hosted WCF service using asp.net so that I can use it from javascript, that's all, and for that I still have no answers...
I saw some replies to similar questions telling there should be an IIS hosted service acting as a "pipe" to the actual service, and then the ScriptManager should reference it, Maybe that's the only answer...