Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am getting a Bad Request (Invalid host) when trying to run my C# WCF service under mono. This service is part of an application, not being hosted using a web server.

I have configured my services with the following:

<system.serviceModel>
  <behaviors>
    <serviceBehaviors>
      <behavior name="DefaultServiceBehavior">
        <serviceMetadata httpGetEnabled="true" />
        <serviceDebug includeExceptionDetailInFaults="false" />
      </behavior>
    </serviceBehaviors>
  </behaviors>

  <services>
    <service behaviorConfiguration="DefaultServiceBehavior" name="MyServices.TaskService">
      <endpoint address="V1" binding="basicHttpBinding" contract="MyServices.ITaskServiceV1" />
      <host>
        <baseAddresses>
          <add baseAddress="http://localhost:8731/MyServices/Tasks" />
        </baseAddresses>
      </host>
    </service>
  </services>
</system.serviceModel>

When I try to visit http://localhost:8731/MyServices/Tasks or any of its endpoints (including ?wsdl), I get the 400 error.

I have deployed this successfully using the .net runtime, just can't figure out what's wrong for deploying with mono. Any help would be greatly appreciated.

EDIT Mono version: 2.10.1

share|improve this question
It's always useful to state the version of Mono you are using... Particularly with WCF, which has seen a lot of changes and improvements 2.4 > 2.6 > 2.8 > 2.10 – TheNextman Apr 13 '11 at 12:53
Does this happen even if you try to access the service on the same machine? – Tymek Sep 14 '11 at 1:43

1 Answer

This is not technically an answer. But StackOverflow won't let me comment on all posts yet.

I am simply wondering if you were able to solve this issue? Since the post if from April, I am hoping that you had some time to figure it out. I am facing the same type of issue as well. In fact I wrote a sample Silverlight app (which the WCF implementation in Mono is supposed to be based on) using the same exact C# code for connecting to the service as is in my Mono app. The Silverlight app had no problems (running from the same machine as the emulator).

I am currently running the latest version of Mono that is released as a demo. I can't seem to find the version. The Mono.Android DLL simply shows 0.0.0.0. If you have a solution, I would be pleased if you shared it. Thanks.

share|improve this answer
I still have not gotten an answer... Honestly, I gave up and generated a WSDL statically that I am deploying to clients. – jheddings Nov 21 '11 at 23:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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