Allow HttpPost to web service

Top  Previous  Next

The TMCore EPiServer Module contains an AJAX component that executes in the editors' web browser. These AJAX components communicate with a web service built-in to the TMCore EPiServer Module at the following path: NetworkedPlanet/EPiServerModule/Service/TMCoreEPiDataService.asmx. The communication is implemented using HTTP Post invocations. In order for these to work when the browser client is not on the same machine as the web service you must confgure the application to accept remove HTTP Post request to web services. Add the following to web.config.

<location path="NetworkedPlanet/EPiServerModule/Service/TMCoreEPiDataService.asmx">

  <system.web>

    <webServices>

      <protocols>

        <add name="HttpPost" />

      </protocols>

    </webServices>

  </system.web>

</location>