WCF webHttpBinding发布到apache服务

时间:2011-04-07 08:02:27

标签: wcf apache wcf-client webhttpbinding

我正在尝试与WCF客户端的Apache服务进行通信

我已经设置了这样的客户端:

<client>
    <endpoint name="ApacheService" 
              address="SomeUrl" 
              behaviorConfiguration="ApacheBehavior" 
              binding="webHttpBinding" 
              contract="ISomeContrect" />
</client>
<behaviors>
    <endpointBehaviors>
        <behavior name="ApacheBehavior">
            <webHttp />
        </behavior>
    </endpointBehaviors>
</behaviors>

我的合同似乎是

    [OperationContract]
    [WebInvoke(Method = WebRequestMethods.Http.Post, 
               RequestFormat = WebMessageFormat.Json, 
               BodyStyle = WebMessageBodyStyle.Bare,
               UriTemplate = "?user={username}&action=someaction")]
    void dosomeaction(string username, List<SomeJSONSerializableObject> data);

不知道接收端使用了什么框架,但用户和操作变量显示为get变量,根本看不到json有效负载。

debug started
post:
Array
(
)
get:
Array
(
    [user] => someusername
    [action] => someaction
)
json:

我使用WCF服务进行了一些本地测试,它运行正常。

任何想法都有什么不对?

1 个答案:

答案 0 :(得分:0)

没关系。这是Apache方面的一些错误