0

我有一个 wcf web 服务,当我从 android 访问 POST menthod 中的 web 服务时,服务中的值为 null。

cs文件如下:

[WebInvoke(Method = "POST", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, UriTemplate = "Login", BodyStyle = WebMessageBodyStyle.Bare)] string Login(Student Student); public class Student { [DataMember(Name = "image")] public string image { get; set; } }

配置文件如下

<system.web.extensions>
<scripting>
  <webServices>
    <jsonSerialization maxJsonLength="2147483647" />
  </webServices>
</scripting>
</system.web.extensions>
<system.net>
    <defaultProxy enabled="true" useDefaultCredentials="true">   </defaultProxy>   
</system.net>
<system.web>
    <compilation debug="true" targetFramework="4.0" />
<httpRuntime targetFramework="4.0" />

</system.web>

<system.serviceModel>
<services>

  <service name="ESIService.Service1" behaviorConfiguration="ServiceBehaviour">
    <endpoint address="" binding="webHttpBinding" contract="ESIService.IService1" behaviorConfiguration="web"/>

 </service>
</services>


<bindings>
  <basicHttpBinding>
    <binding name="BasicHttpBinding_IService1" closeTimeout="00:02:00" openTimeout="00:02:00" receiveTimeout="00:10:00" sendTimeout="00:10:00" allowCookies="false" bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard" maxBufferSize="2147483647" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" transferMode="Buffered" useDefaultWebProxy="true">

      <readerQuotas maxDepth="500" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
      <security mode="None">
        <transport clientCredentialType="None" proxyCredentialType="None" realm="" />
        <message clientCredentialType="UserName" algorithmSuite="Default" />
      </security>
    </binding>
  </basicHttpBinding>
  </bindings>

 <behaviors>
  <serviceBehaviors>
    <behavior  name="ServiceBehaviour">

      <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>

      <serviceDebug includeExceptionDetailInFaults="true" />
      <serviceThrottling maxConcurrentCalls="16" maxConcurrentInstances="41" maxConcurrentSessions="100"/>
    </behavior>
  </serviceBehaviors>
  <endpointBehaviors>
    <behavior name="web">
      <webHttp />
    </behavior>
  </endpointBehaviors>
</behaviors>

<protocolMapping>
  <add binding="basicHttpsBinding" scheme="https" />
</protocolMapping>

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

    <system.webServer>
<directoryBrowse enabled="true" />
<defaultDocument>
  <files>
    <add value="Service1.svc" />
  </files>
</defaultDocument>
    <validation validateIntegratedModeConfiguration="false" />
</system.webServer>
</configuration>`

下面给出了 svc 文件,当我运行时将 id 值设为空。

public string Login(Student Student) { String id = Student.image;}

安卓代码如下:

JSONStringer item = new JSONStringer()
                .object()
                .key("Student")
                .object()
                .key("image").value("abcd")
                .endObject()
                .endObject();

我点击的 URL 是 .../登录

4

1 回答 1

0

我不熟悉 android 开发,但是由于您有 BodyStyle = WebMessageBodyStyle.Bare,因此该服务在请求正文中需要以下 json 字符串:

{“图像”:“abcd”}

也许这会起作用:

JSONStringer item = new JSONStringer()
                .object()
                .key("image").value("abcd")
                .endObject();
于 2017-02-09T19:19:50.180 回答