我有一个web服务,在我的项目中通过webreference引用。
以下是wsdl文件中枚举的说明:
<xs:simpleType name="photoIdType">
<xs:restriction base="xs:string">
<xs:enumeration value="DRV"/>
<!-- drivers license -->
<xs:enumeration value="PAS"/>
<!-- passport -->
<xs:enumeration value="STA"/>
<!-- state ID -->
<xs:enumeration value="GOV"/>
<!-- government id -->
<xs:enumeration value="ALN"/>
<!-- alien id -->
</xs:restriction>
</xs:simpleType>
当我必须给出这个变量的值时,这是我的方式:
switch (xRootNode.Element(TagsXML.MG_T_SENDER_PHOTO_ID_TYPE).Value)
{
case "ALN":
sendRequest.senderPhotoIdType = photoIdType.ALN;
break;
case "DRV":
sendRequest.senderPhotoIdType = photoIdType.DRV;
break;
case "GOV":
sendRequest.senderPhotoIdType = photoIdType.GOV;
break;
case "PAS":
sendRequest.senderPhotoIdType = photoIdType.PAS;
break;
case "STA":
sendRequest.senderPhotoIdType = photoIdType.STA;
break;
}
在我调用webservice的方法之前,我检查了枚举的值。价值在这里很好。
但是当我用Fiddler(http数据包分析器)检查Soap请求发送到webservice时,photoIdType节点不在!
您知道Visual Studio是否存在已知问题? 你知道为什么没有发送枚举值吗?
如果需要,我可以提供更多信息。
答案 0 :(得分:9)
我刚遇到同样的问题,最后找到了答案。如果您要查看生成的sendRequest
定义,您会发现senderPhotoIdType
Specified
是一个bool。为senderPhotoIdType
设置值时,您需要将senderPhotoIdTypeSpecified
设置为true
以获取要序列化并传递的值。
(在这个古老的帖子中跟踪了答案http://social.msdn.microsoft.com/forums/en-US/netfxremoting/thread/616f67f8-bf11-46e3-b705-41940dcafab6)