开发者

Orchard/MVC WCF Service Url with Area

开发者 https://www.devze.com 2023-03-01 08:59 出处:网络
Bertrand created a blog post to specify how to use IoC in WCF Modules for Orchard. In 1.1, you can create a SVC file using the new Orchard host factory:

Bertrand created a blog post to specify how to use IoC in WCF Modules for Orchard.

In 1.1, you can create a SVC file using the new Orchard host factory:

<%@ ServiceHost Language="C#" Debug="true" 
    Service="MyModule.IMyService, MyAssembly"
    Factory="Orchard.Wcf.OrchardServiceHostFactory, Orchard.Framework" %>
Then register your service normally as an IDependency but with service and operation contract attributes:

using System.ServiceModel;

namespace MyModule {
    [ServiceContract]
    public interface IMyService : IDependency {
        [OperationContract]
        string GetUserEmail(string username);
    }
}

My question is that all of Orchard's modules are really area's. So how can you build a route that hits the svc file created in the area/module?

Should you use the full physical path to get to the svc file (tried that and it caused a web.config issue since it was bridging a site and area).

http://localhost/modules/WebServices/MyService.svc

Or do you create a ServiceRoute with WebServiceHostFactory/OrchardServiceHostFactory?

new ServiceRoute("WebServices/MyService", new OrchardServiceHostFactory(), typeof(MyService))

Whatever I try I get a 404 when trying to hit the resource. I was able to get this working using a wcf Application project and setting WCF as a stand alone application, my issues started when trying to bring it into Orchard/MVC.

UPDATE

Thanks for the help Piotr,

This is the steps I took to implement the service.

Routes.cs

new RouteDescriptor {   Priority = 20,
                        Route = new ServiceRoute(
                                      "Services",
                                      new WebServiceHostFactory(),
                                      typeof(MyService)) }

If I use OrchardServiceHostFactory() instead of WebServiceHostFactory() I get the following error.

Operation is not valid due to the current state of the object.

Orchard Root Web.Config

  <system.serviceModel>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/>
    <standardEndpoints>
      <webHttpEndpoint>
        <!-- 
    开发者_如何转开发        Configure the WCF REST service base address via the global.asax.cs file and the default endpoint 
            via the attributes on the <standardEndpoint> element below
        -->
        <standardEndpoint name="" helpEnabled="true" automaticFormatSelectionEnabled="true"/>
      </webHttpEndpoint>
    </standardEndpoints>
  </system.serviceModel>

MyService

[ServiceContract]
public interface IMyService : IDependency
{
    [OperationContract]
    string GetTest();
}

[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
class MyService : IMyService
{
    public string GetTest()
    {
        return "test";
    }
}

I couldn't get the service working by just modifying the module's web.config. I get the following error

ASP.NET routing integration feature requires ASP.NET compatibility.

UPDATE 2

Orchard Root Web.Config

  <system.serviceModel>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
    <!-- ... -->
  </system.serviceModel>

Routes.cs

public IEnumerable<RouteDescriptor> GetRoutes() {
    return new[] {
                     new RouteDescriptor {   Priority = 20,
                                             Route = new ServiceRoute(
                                                 "Services",
                                                 new OrchardServiceHostFactory(),
                                                 typeof(IMyService))

                     }
                 };
}

This works, the key here is that you must call typeof on the object that is referencing IDependency, WorkContextModule.IsClosingTypeOf cant handle the object that consumes the dependancy, it must take the Interface that it is directly called by.


As you stated, Orchard modules are areas in ASP.NET MVC terms, so the URL you provided is incorrect and should be:

http://localhost/Your.Orchard.Module/WebServices/MyService.svc

Where localhost is the virtual directory under which your app runs and /WebServices is a folder in the root of your module.

You can also create a service route programatically without problem. This article tells how to add new routes in Orchard. You can just assign a ServiceRoute to the Route property of a RouteDescriptor instead of a default MVC route (as shown in docs). The question about adding ServiceRoute in area-enabled ASP.NET MVC app was asked before, check it out as it may help you out.

Btw - You may also check this SO question about prefixed service routes.

HTH

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号