function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
rvattamrvattam 

'' is not valid for type xsd:boolean, should be '0', '1', 'true' or 'false

Hi All,
I'm trying to host a service and that need to be consumed by tibco...
so in my xml request.
 
 

      <inc:AllowFieldTruncationHeader>
         <inc:allowFieldTruncation></inc:allowFieldTruncation>
      </inc:AllowFieldTruncationHeader>
      <inc:DebuggingHeader>
         <!--Zero or more repetitions:-->
         <inc:categories>
            <inc:category></inc:category>
            <inc:level></inc:level>
         </inc:categories>
         <inc:debugLevel></inc:debugLevel>
      </inc:DebuggingHeader>
      <inc:CallOptions>
         <inc:client></inc:client>
      </inc:CallOptions>
     
 
im able to get the response when i remove this part from soapUi
Does it going to be a problem when tibco consume this?
if they want to pass a session id how can they pass?
 
Request:
   <soapenv:Header>
      <inc:AllowFieldTruncationHeader>
         <inc:allowFieldTruncation></inc:allowFieldTruncation>
      </inc:AllowFieldTruncationHeader>
      <inc:DebuggingHeader>
         <!--Zero or more repetitions:-->
         <inc:categories>
            <inc:category></inc:category>
            <inc:level></inc:level>
         </inc:categories>
         <inc:debugLevel></inc:debugLevel>
      </inc:DebuggingHeader>
      <inc:CallOptions>
         <inc:client></inc:client>
      </inc:CallOptions>
      <inc:SessionHeader>
         <inc:sessionId></inc:sessionId>
      </inc:SessionHeader>
   </soapenv:Header>
   <soapenv:Body>
      <inc:getIncidentInfo>
         <inc:IncidentNo>xxxxx</inc:IncidentNo>
      </inc:getIncidentInfo>
   </soapenv:Body>

</soapenv:Envelope>



Response:



<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
   <soapenv:Body>
      <soapenv:Fault>
         <faultcode>soapenv:Client</faultcode>
         <faultstring>'' is not valid for type xsd:boolean, should be '0', '1', 'true' or 'false'</faultstring>
      </soapenv:Fault>
   </soapenv:Body>

</soapenv:Envelope>