GetIdentity wrong signature
Matthew Graham
mjg at cacr.caltech.edu
Thu Aug 10 17:15:39 PDT 2006
Hi,
In the RegistrySearch WSDL, GetIdentity is defined as:
<operation name="GetIdentity">
<input message="tns:empty"/>
<output message="tns:ResolveResp"/>
<fault name="GetIdentityError" message="tns:ErrorResp"/>
</operation>
I suspect that this is not what was meant: this is a notification
message exchange pattern whereas what I think you want is a normal
request-response with the GetIdentity element taking no arguments:
<operation name="GetIdentity">
<input message="tns:GetIdentityReq"/>
<output message="tns:ResolveResp"/>
<fault name="GetIdentityError" message="tns:ErrorResp"/>
</operation>
where
<message name="GetIdentityReq">
<part name="GetIdentity" element="tns:GetIdentity"/>
</message>
and
<xs:element name="GetIdentity"/>
Cheers,
Matthew
More information about the registry
mailing list