我试图在SOAPUI中运行以下信封。这是一个SOAP Webservice调用。我正在使用的SOAP UI软件是一个OPEN源。这是一条错误消息
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:web="http://siebel.com/WebService">
<soapenv:Header/>
<soapenv:Body>
<web:CreateSR_Input>
<web:UserPriority>?</web:UserPriority>
<web:SubArea2>?</web:SubArea2>
<web:UNINOnBehalfEmailAddr>?</web:UNINOnBehalfEmailAddr>
<web:AssetType>?</web:AssetType>
<web:PointofContact>?</web:PointofContact>
<web:TargetResolutionDate>?</web:TargetResolutionDate>
<web:ReportedByMissionID>?</web:ReportedByMissionID>
<web:SRTemplate>?</web:SRTemplate>
<web:AlternateContactName>?</web:AlternateContactName>
<web:AlternateServiceLocation>?</web:AlternateServiceLocation>
<web:OnBehalfOfBadge>?</web:OnBehalfOfBadge>
<web:ReportedByIndex>?</web:ReportedByIndex>
<web:SRAssignedToGroup>?</web:SRAssignedToGroup>
<web:SRType>?</web:SRType>
<web:SubmitEmail>?</web:SubmitEmail>
<web:SubArea3>?</web:SubArea3>
<web:Serial>?</web:Serial>
<web:Urgency>?</web:Urgency>
<web:Barcode>?</web:Barcode>
<web:Title>?</web:Title>
<web:ActualStartDate>?</web:ActualStartDate>
<web:SRAssignedToID>?</web:SRAssignedToID>
<web:AlternatePhone>?</web:AlternatePhone>
<web:AssetAdditionalComments>?</web:AssetAdditionalComments>
<web:Impact>?</web:Impact>
<web:OnBehalfOfIndex>?</web:OnBehalfOfIndex>
<web:SubArea>?</web:SubArea>
<web:Area>?</web:Area>
<web:UNINRequestorEmailAddr>?</web:UNINRequestorEmailAddr>
<!--Optional:-->
<web:RFOrgName>?</web:RFOrgName>
<web:AssetModel>?</web:AssetModel>
<web:FileAttachments>
<!--Zero or more repetitions:-->
<web:FileAttachment>
<web:FileName>?</web:FileName>
<web:FileExt>?</web:FileExt>
<web:FileBase64>?</web:FileBase64>
</web:FileAttachment>
</web:FileAttachments>
<web:ReportedByBadge>?</web:ReportedByBadge>
<web:RequestedItem>?</web:RequestedItem>
<web:AssetMake>?</web:AssetMake>
<web:ReferenceNum>?</web:ReferenceNum>
<web:Source>?</web:Source>
<web:SubArea1>?</web:SubArea1>
<web:AlternateEmailAddress>?</web:AlternateEmailAddress>
<web:Description>?</web:Description>
<web:OnBehalfOfMissionID>?</web:OnBehalfOfMissionID>
<web:ServiceLocation>?</web:ServiceLocation>
<web:Severity>?</web:Severity>
<!--Optional:-->
<web:Region>?</web:Region>
<web:AssetNum>?</web:AssetNum>
</web:CreateSR_Input>
</soapenv:Body>
</soapenv:Envelope>
我收到以下错误回复。我发送任何参数错了吗?你能不能让我知道我还需要添加什么。提前致谢
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<SOAP-ENV:Body>
<SOAP-ENV:Fault>
<faultcode>SOAP-ENV:Client</faultcode>
<faultstring>Error Code: 10944642 Error Message: Error: Inbound SOAP Message - Session Token is missing or invalid or has expired</faultstring>
<detail>
<siebelf:errorstack xmlns:siebelf="http://www.siebel.com/ws/fault">
<siebelf:error>
<siebelf:errorsymbol/>
<siebelf:errormsg>Error: Inbound SOAP Message - Session Token is missing or invalid or has expired</siebelf:errormsg>
</siebelf:error>
</siebelf:errorstack>
</detail>
</SOAP-ENV:Fault>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>