VendorWebService
The following operations are supported. For a formal definition, please review the Service Description.
-
GetCertification
实名认证 -
GetOceanArea
获取大洋专区首页数据 -
GetOceanDelete
删除转让贴 -
GetOceanDetails
根据转让贴ID获取详情 -
GetOceanEdit
发布或修改转让贴 -
GetOceanPost
获取更多大洋转让贴 -
GetOceanPostId
根据用户ID获取大洋转让贴 -
GetPaymentPawss
设置支付密码 -
GetProductListShow
获取更多大洋兑换 -
GetShoppingCartByCount
根据用户名获取当前用户购物车数量 -
GetUserCenter
个人中心 -
GetUserInfoOcean
获取可用,锁定大洋 -
GetUserInfoOceanAttorn
转让大洋 -
GetUserInfoOceanDetailsList
获取大洋明细 -
VerificationCode
验证验证码是否正确 -
VerificationUpGradeShopCode
验证验证码是否正确 -
VerifyingImmediateExchange
验证立即兑换
This web service is using http://tempuri.org/ as its default namespace.
Recommendation: Change the default namespace before the XML Web service is made public.
Each XML Web service needs a unique namespace in order for client applications to distinguish it from other services on the Web. http://tempuri.org/ is available for XML Web services that are under development, but published XML Web services should use a more permanent namespace.
Your XML Web service should be identified by a namespace that you control. For example, you can use your company's Internet domain name as part of the namespace. Although many XML Web service namespaces look like URLs, they need not point to actual resources on the Web. (XML Web service namespaces are URIs.)
For XML Web services creating using ASP.NET, the default namespace can be changed using the WebService attribute's Namespace property. The WebService attribute is an attribute applied to the class that contains the XML Web service methods. Below is a code example that sets the namespace to "http://microsoft.com/webservices/":
C#
[WebService(Namespace="http://microsoft.com/webservices/")]
public class MyWebService {
// implementation
}
Visual Basic
<WebService(Namespace:="http://microsoft.com/webservices/")> Public Class MyWebService
' implementation
End Class
C++
[WebService(Namespace="http://microsoft.com/webservices/")]
public ref class MyWebService {
// implementation
};
For more details on XML namespaces, see the W3C recommendation on Namespaces in XML.
For more details on WSDL, see the WSDL Specification.
For more details on URIs, see RFC 2396.