JMS Server active connections keep incrementing when calling jms webservice

I was doing performance and resources consumption analysis of the CGBU Activation product and noticed that when interacting with jms transport web service the number of active connections (JMS Servers/Monitoring/Active Connections in Admin Console) keeps incrementing at the rate of invoking methods on the web service. The number of active connections, when disconnecting the client from the server, doesn't change.
I've stripped down the web service so it doesn't do anything at all and connect to it via a web service client. When, through admin console, I check the number of active connection in the jms server, it goes up by the number of calls to the jms web service.
Can anyone tell if this is a known issue in WebLogic jms transport implementation for web services?
my WSDL
<?xml version='1.0' encoding='UTF-8'?>
<s0:definitions name="MslvAsapWsDefinitions" targetNamespace="tns" xmlns="" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="tns" xmlns:s2="java:com.mslv.asap.ws.impl" xmlns:s3="http://schemas.xmlsoap.org/wsdl/soap/">
<s0:types>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="tns" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:import namespace="http://com.bea/wls92/com/bea/staxb/buildtime/internal/bts"/>
<xs:element name="suspendOrderByKey">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="suspendOrderByKeyResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="resumeOrderByKey">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="resumeOrderByKeyResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="createOrderByValue">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="createOrderByValueResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="getServiceTypes">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="getServiceTypesResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="removeOrderByKey">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="removeOrderByKeyResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="getOrderByKey">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="getOrderByKeyResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="jsrpGateway">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="jsrpGatewayResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="abortOrderByKey">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="abortOrderByKeyResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="getOrderTypes">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="getOrderTypesResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="queryOrders">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="queryOrdersResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="setOrderByValue">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="setOrderByValueResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="startOrderByKey">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="startOrderByKeyResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="java:com.mslv.asap.ws.impl" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="MslvAsapWsSessionException">
<xs:sequence>
<xs:element minOccurs="1" name="Arg0" nillable="true" type="xs:string"/>
</xs:sequence>
</xs:complexType>
<xs:element name="MslvAsapWsSessionException" type="java:MslvAsapWsSessionException" xmlns:java="java:com.mslv.asap.ws.impl"/>
</xs:schema>
</s0:types>
<s0:message name="suspendOrderByKey">
<s0:part element="s1:suspendOrderByKey" name="parameters"/>
</s0:message>
<s0:message name="suspendOrderByKeyResponse">
<s0:part element="s1:suspendOrderByKeyResponse" name="parameters"/>
</s0:message>
<s0:message name="MslvAsapWsSessionException">
<s0:part element="s2:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:message>
<s0:message name="resumeOrderByKey">
<s0:part element="s1:resumeOrderByKey" name="parameters"/>
</s0:message>
<s0:message name="resumeOrderByKeyResponse">
<s0:part element="s1:resumeOrderByKeyResponse" name="parameters"/>
</s0:message>
<s0:message name="createOrderByValue">
<s0:part element="s1:createOrderByValue" name="parameters"/>
</s0:message>
<s0:message name="createOrderByValueResponse">
<s0:part element="s1:createOrderByValueResponse" name="parameters"/>
</s0:message>
<s0:message name="getServiceTypes">
<s0:part element="s1:getServiceTypes" name="parameters"/>
</s0:message>
<s0:message name="getServiceTypesResponse">
<s0:part element="s1:getServiceTypesResponse" name="parameters"/>
</s0:message>
<s0:message name="removeOrderByKey">
<s0:part element="s1:removeOrderByKey" name="parameters"/>
</s0:message>
<s0:message name="removeOrderByKeyResponse">
<s0:part element="s1:removeOrderByKeyResponse" name="parameters"/>
</s0:message>
<s0:message name="getOrderByKey">
<s0:part element="s1:getOrderByKey" name="parameters"/>
</s0:message>
<s0:message name="getOrderByKeyResponse">
<s0:part element="s1:getOrderByKeyResponse" name="parameters"/>
</s0:message>
<s0:message name="jsrpGateway">
<s0:part element="s1:jsrpGateway" name="parameters"/>
</s0:message>
<s0:message name="jsrpGatewayResponse">
<s0:part element="s1:jsrpGatewayResponse" name="parameters"/>
</s0:message>
<s0:message name="abortOrderByKey">
<s0:part element="s1:abortOrderByKey" name="parameters"/>
</s0:message>
<s0:message name="abortOrderByKeyResponse">
<s0:part element="s1:abortOrderByKeyResponse" name="parameters"/>
</s0:message>
<s0:message name="getOrderTypes">
<s0:part element="s1:getOrderTypes" name="parameters"/>
</s0:message>
<s0:message name="getOrderTypesResponse">
<s0:part element="s1:getOrderTypesResponse" name="parameters"/>
</s0:message>
<s0:message name="queryOrders">
<s0:part element="s1:queryOrders" name="parameters"/>
</s0:message>
<s0:message name="queryOrdersResponse">
<s0:part element="s1:queryOrdersResponse" name="parameters"/>
</s0:message>
<s0:message name="setOrderByValue">
<s0:part element="s1:setOrderByValue" name="parameters"/>
</s0:message>
<s0:message name="setOrderByValueResponse">
<s0:part element="s1:setOrderByValueResponse" name="parameters"/>
</s0:message>
<s0:message name="startOrderByKey">
<s0:part element="s1:startOrderByKey" name="parameters"/>
</s0:message>
<s0:message name="startOrderByKeyResponse">
<s0:part element="s1:startOrderByKeyResponse" name="parameters"/>
</s0:message>
<s0:portType name="MslvAsapWsServiceImpl">
<s0:operation name="suspendOrderByKey" parameterOrder="parameters">
<s0:input message="s1:suspendOrderByKey"/>
<s0:output message="s1:suspendOrderByKeyResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
<s0:operation name="resumeOrderByKey" parameterOrder="parameters">
<s0:input message="s1:resumeOrderByKey"/>
<s0:output message="s1:resumeOrderByKeyResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
<s0:operation name="createOrderByValue" parameterOrder="parameters">
<s0:input message="s1:createOrderByValue"/>
<s0:output message="s1:createOrderByValueResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
<s0:operation name="getServiceTypes" parameterOrder="parameters">
<s0:input message="s1:getServiceTypes"/>
<s0:output message="s1:getServiceTypesResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
<s0:operation name="removeOrderByKey" parameterOrder="parameters">
<s0:input message="s1:removeOrderByKey"/>
<s0:output message="s1:removeOrderByKeyResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
<s0:operation name="getOrderByKey" parameterOrder="parameters">
<s0:input message="s1:getOrderByKey"/>
<s0:output message="s1:getOrderByKeyResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
<s0:operation name="jsrpGateway" parameterOrder="parameters">
<s0:input message="s1:jsrpGateway"/>
<s0:output message="s1:jsrpGatewayResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
<s0:operation name="abortOrderByKey" parameterOrder="parameters">
<s0:input message="s1:abortOrderByKey"/>
<s0:output message="s1:abortOrderByKeyResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
<s0:operation name="getOrderTypes" parameterOrder="parameters">
<s0:input message="s1:getOrderTypes"/>
<s0:output message="s1:getOrderTypesResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
<s0:operation name="queryOrders" parameterOrder="parameters">
<s0:input message="s1:queryOrders"/>
<s0:output message="s1:queryOrdersResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
<s0:operation name="setOrderByValue" parameterOrder="parameters">
<s0:input message="s1:setOrderByValue"/>
<s0:output message="s1:setOrderByValueResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
<s0:operation name="startOrderByKey" parameterOrder="parameters">
<s0:input message="s1:startOrderByKey"/>
<s0:output message="s1:startOrderByKeyResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
</s0:portType>
<s0:binding name="MslvAsapWsSoapBinding" type="s1:MslvAsapWsServiceImpl">
<s3:binding style="document" transport="http://www.openuri.org/2002/04/soap/jms/"/>
<s0:operation name="suspendOrderByKey">
<s3:operation soapAction="tns/suspendOrderByKey" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
<s0:operation name="resumeOrderByKey">
<s3:operation soapAction="tns/resumeOrderByKey" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
<s0:operation name="createOrderByValue">
<s3:operation soapAction="tns/createOrderByValue" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
<s0:operation name="getServiceTypes">
<s3:operation soapAction="tns/getServiceTypes" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
<s0:operation name="removeOrderByKey">
<s3:operation soapAction="tns/removeOrderByKey" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
<s0:operation name="getOrderByKey">
<s3:operation soapAction="tns/getOrderByKey" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
<s0:operation name="jsrpGateway">
<s3:operation soapAction="tns/jsrpGateway" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
<s0:operation name="abortOrderByKey">
<s3:operation soapAction="tns/abortOrderByKey" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
<s0:operation name="getOrderTypes">
<s3:operation soapAction="tns/getOrderTypes" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
<s0:operation name="queryOrders">
<s3:operation soapAction="tns/queryOrders" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
<s0:operation name="setOrderByValue">
<s3:operation soapAction="tns/setOrderByValue" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
<s0:operation name="startOrderByKey">
<s3:operation soapAction="tns/startOrderByKey" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
</s0:binding>
<s0:service name="MslvAsapWs">
<s0:port binding="s1:MslvAsapWsSoapBinding" name="JmsSessionPort">
<s3:address location="jms:///SAAS-1/Oracle/CGBU/Mslv/Asap/Ws?URI=SAAS-1.WebServiceQueue"/>
</s0:port>
</s0:service>
</s0:definitions>

I was doing performance and resources consumption analysis of the CGBU Activation product and noticed that when interacting with jms transport web service the number of active connections (JMS Servers/Monitoring/Active Connections in Admin Console) keeps incrementing at the rate of invoking methods on the web service. The number of active connections, when disconnecting the client from the server, doesn't change.
I've stripped down the web service so it doesn't do anything at all and connect to it via a web service client. When, through admin console, I check the number of active connection in the jms server, it goes up by the number of calls to the jms web service.
Can anyone tell if this is a known issue in WebLogic jms transport implementation for web services?
my WSDL
<?xml version='1.0' encoding='UTF-8'?>
<s0:definitions name="MslvAsapWsDefinitions" targetNamespace="tns" xmlns="" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="tns" xmlns:s2="java:com.mslv.asap.ws.impl" xmlns:s3="http://schemas.xmlsoap.org/wsdl/soap/">
<s0:types>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="tns" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:import namespace="http://com.bea/wls92/com/bea/staxb/buildtime/internal/bts"/>
<xs:element name="suspendOrderByKey">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="suspendOrderByKeyResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="resumeOrderByKey">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="resumeOrderByKeyResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="createOrderByValue">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="createOrderByValueResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="getServiceTypes">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="getServiceTypesResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="removeOrderByKey">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="removeOrderByKeyResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="getOrderByKey">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="getOrderByKeyResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="jsrpGateway">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="jsrpGatewayResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="abortOrderByKey">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="abortOrderByKeyResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="getOrderTypes">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="getOrderTypesResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="queryOrders">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="queryOrdersResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="setOrderByValue">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="setOrderByValueResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="startOrderByKey">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="startOrderByKeyResponse">
<xs:complexType>
<xs:sequence>
<xs:any/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" targetNamespace="java:com.mslv.asap.ws.impl" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="MslvAsapWsSessionException">
<xs:sequence>
<xs:element minOccurs="1" name="Arg0" nillable="true" type="xs:string"/>
</xs:sequence>
</xs:complexType>
<xs:element name="MslvAsapWsSessionException" type="java:MslvAsapWsSessionException" xmlns:java="java:com.mslv.asap.ws.impl"/>
</xs:schema>
</s0:types>
<s0:message name="suspendOrderByKey">
<s0:part element="s1:suspendOrderByKey" name="parameters"/>
</s0:message>
<s0:message name="suspendOrderByKeyResponse">
<s0:part element="s1:suspendOrderByKeyResponse" name="parameters"/>
</s0:message>
<s0:message name="MslvAsapWsSessionException">
<s0:part element="s2:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:message>
<s0:message name="resumeOrderByKey">
<s0:part element="s1:resumeOrderByKey" name="parameters"/>
</s0:message>
<s0:message name="resumeOrderByKeyResponse">
<s0:part element="s1:resumeOrderByKeyResponse" name="parameters"/>
</s0:message>
<s0:message name="createOrderByValue">
<s0:part element="s1:createOrderByValue" name="parameters"/>
</s0:message>
<s0:message name="createOrderByValueResponse">
<s0:part element="s1:createOrderByValueResponse" name="parameters"/>
</s0:message>
<s0:message name="getServiceTypes">
<s0:part element="s1:getServiceTypes" name="parameters"/>
</s0:message>
<s0:message name="getServiceTypesResponse">
<s0:part element="s1:getServiceTypesResponse" name="parameters"/>
</s0:message>
<s0:message name="removeOrderByKey">
<s0:part element="s1:removeOrderByKey" name="parameters"/>
</s0:message>
<s0:message name="removeOrderByKeyResponse">
<s0:part element="s1:removeOrderByKeyResponse" name="parameters"/>
</s0:message>
<s0:message name="getOrderByKey">
<s0:part element="s1:getOrderByKey" name="parameters"/>
</s0:message>
<s0:message name="getOrderByKeyResponse">
<s0:part element="s1:getOrderByKeyResponse" name="parameters"/>
</s0:message>
<s0:message name="jsrpGateway">
<s0:part element="s1:jsrpGateway" name="parameters"/>
</s0:message>
<s0:message name="jsrpGatewayResponse">
<s0:part element="s1:jsrpGatewayResponse" name="parameters"/>
</s0:message>
<s0:message name="abortOrderByKey">
<s0:part element="s1:abortOrderByKey" name="parameters"/>
</s0:message>
<s0:message name="abortOrderByKeyResponse">
<s0:part element="s1:abortOrderByKeyResponse" name="parameters"/>
</s0:message>
<s0:message name="getOrderTypes">
<s0:part element="s1:getOrderTypes" name="parameters"/>
</s0:message>
<s0:message name="getOrderTypesResponse">
<s0:part element="s1:getOrderTypesResponse" name="parameters"/>
</s0:message>
<s0:message name="queryOrders">
<s0:part element="s1:queryOrders" name="parameters"/>
</s0:message>
<s0:message name="queryOrdersResponse">
<s0:part element="s1:queryOrdersResponse" name="parameters"/>
</s0:message>
<s0:message name="setOrderByValue">
<s0:part element="s1:setOrderByValue" name="parameters"/>
</s0:message>
<s0:message name="setOrderByValueResponse">
<s0:part element="s1:setOrderByValueResponse" name="parameters"/>
</s0:message>
<s0:message name="startOrderByKey">
<s0:part element="s1:startOrderByKey" name="parameters"/>
</s0:message>
<s0:message name="startOrderByKeyResponse">
<s0:part element="s1:startOrderByKeyResponse" name="parameters"/>
</s0:message>
<s0:portType name="MslvAsapWsServiceImpl">
<s0:operation name="suspendOrderByKey" parameterOrder="parameters">
<s0:input message="s1:suspendOrderByKey"/>
<s0:output message="s1:suspendOrderByKeyResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
<s0:operation name="resumeOrderByKey" parameterOrder="parameters">
<s0:input message="s1:resumeOrderByKey"/>
<s0:output message="s1:resumeOrderByKeyResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
<s0:operation name="createOrderByValue" parameterOrder="parameters">
<s0:input message="s1:createOrderByValue"/>
<s0:output message="s1:createOrderByValueResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
<s0:operation name="getServiceTypes" parameterOrder="parameters">
<s0:input message="s1:getServiceTypes"/>
<s0:output message="s1:getServiceTypesResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
<s0:operation name="removeOrderByKey" parameterOrder="parameters">
<s0:input message="s1:removeOrderByKey"/>
<s0:output message="s1:removeOrderByKeyResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
<s0:operation name="getOrderByKey" parameterOrder="parameters">
<s0:input message="s1:getOrderByKey"/>
<s0:output message="s1:getOrderByKeyResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
<s0:operation name="jsrpGateway" parameterOrder="parameters">
<s0:input message="s1:jsrpGateway"/>
<s0:output message="s1:jsrpGatewayResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
<s0:operation name="abortOrderByKey" parameterOrder="parameters">
<s0:input message="s1:abortOrderByKey"/>
<s0:output message="s1:abortOrderByKeyResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
<s0:operation name="getOrderTypes" parameterOrder="parameters">
<s0:input message="s1:getOrderTypes"/>
<s0:output message="s1:getOrderTypesResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
<s0:operation name="queryOrders" parameterOrder="parameters">
<s0:input message="s1:queryOrders"/>
<s0:output message="s1:queryOrdersResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
<s0:operation name="setOrderByValue" parameterOrder="parameters">
<s0:input message="s1:setOrderByValue"/>
<s0:output message="s1:setOrderByValueResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
<s0:operation name="startOrderByKey" parameterOrder="parameters">
<s0:input message="s1:startOrderByKey"/>
<s0:output message="s1:startOrderByKeyResponse"/>
<s0:fault message="s1:MslvAsapWsSessionException" name="MslvAsapWsSessionException"/>
</s0:operation>
</s0:portType>
<s0:binding name="MslvAsapWsSoapBinding" type="s1:MslvAsapWsServiceImpl">
<s3:binding style="document" transport="http://www.openuri.org/2002/04/soap/jms/"/>
<s0:operation name="suspendOrderByKey">
<s3:operation soapAction="tns/suspendOrderByKey" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
<s0:operation name="resumeOrderByKey">
<s3:operation soapAction="tns/resumeOrderByKey" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
<s0:operation name="createOrderByValue">
<s3:operation soapAction="tns/createOrderByValue" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
<s0:operation name="getServiceTypes">
<s3:operation soapAction="tns/getServiceTypes" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
<s0:operation name="removeOrderByKey">
<s3:operation soapAction="tns/removeOrderByKey" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
<s0:operation name="getOrderByKey">
<s3:operation soapAction="tns/getOrderByKey" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
<s0:operation name="jsrpGateway">
<s3:operation soapAction="tns/jsrpGateway" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
<s0:operation name="abortOrderByKey">
<s3:operation soapAction="tns/abortOrderByKey" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
<s0:operation name="getOrderTypes">
<s3:operation soapAction="tns/getOrderTypes" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
<s0:operation name="queryOrders">
<s3:operation soapAction="tns/queryOrders" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
<s0:operation name="setOrderByValue">
<s3:operation soapAction="tns/setOrderByValue" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
<s0:operation name="startOrderByKey">
<s3:operation soapAction="tns/startOrderByKey" style="document"/>
<s0:input>
<s3:body parts="parameters" use="literal"/>
</s0:input>
<s0:output>
<s3:body parts="parameters" use="literal"/>
</s0:output>
<s0:fault name="MslvAsapWsSessionException">
<s3:fault name="MslvAsapWsSessionException" use="literal"/>
</s0:fault>
</s0:operation>
</s0:binding>
<s0:service name="MslvAsapWs">
<s0:port binding="s1:MslvAsapWsSoapBinding" name="JmsSessionPort">
<s3:address location="jms:///SAAS-1/Oracle/CGBU/Mslv/Asap/Ws?URI=SAAS-1.WebServiceQueue"/>
</s0:port>
</s0:service>
</s0:definitions>

Similar Messages

  • Error when calling a Webservice's public method in Forms10g

    Hi,
    I'm getting the following error when calling a webservice's public method, i'm using Forms10g 10.1.2.3
    java.rmi.RemoteException; nested exception is: HTTP transport error javax.xml.soap.SOAPException
    java.security.PrivilegedActionException javax.xml.soap.SOAPException
    Message send failed javax.net.ssl.SSLException SSL handshake failed X509CertChI have added the Jar containing the client proxy in both Classpaths(system variable and default.env), the jar has been made with jdk 1.4
    I also have tested the client proxy from jDeveloper and it's working there, but in Forms i'm getting this error.
    I guess my problem might be that i'm calling a webservice that is secured since the url starts with https
    what should i do to fix this ??
    Regards
    Carlos

    I understand, so i have a doubt, why the webservice works on jDeveloper ??Not just JDeveloper even soapUI and Neatbeans have a way of working without a client certificate installed.
    I do not know how they achieve it. I know that they work without a client DC.
    Cheers,
    PS: See this http://stackoverflow.com/questions/8887434/webservices-ssl-https, it offers a clue.
    The java programs run unhindered when one-way authentication is being used. These products ship with a digital certificate that is in the path of most popular CAs.
    Corollary, if the Web Server is configured for mutual authentication then you need to install and configure the client certificate in the tools.
    Edited by: Prabodh on Dec 5, 2012 8:36 PM

  • BROADBAND CONNECTION KEEPS DROPPING WHEN UPLOADING PHOTOS TO MS SKYDRIVE

    when i attempt to upload photos to MS skydrive in Firefox, my broadband connection keeps disconnecting and reconnecting all the time. However if I try and upload photos via IE8, i have no such issues.
    Any explanations for this bizarre behaviour?
    Thanks

    Morning
    Thanks all so much for the replies :
    If you are streaming content then I would recommend using an ethernet connection between your hub and PC as wireless is subject to to many forms of external interference"
    Ethernet cable?  I am not sure what one is, I think this is how I was connecting when I was with Talk Talk.  Is it where you connect to the BT phone socket with a little white box thingy?  Please let me know.  To be honest, I thought the whole point of the setup I have now was the newest technology which did away with that sort of connection.  Can you please let me know how I can try this.  With thanks again for YOUR reply.
    I think I have latest version of Adobe Flash Player  I removed my existing version last week and uploaded newest version.  Please tell me which one I should be using.  Please also let me know if I need anything other programme that would help.
    Keith - I haven't tried an ethernet cable as I've said above.
    Please please more help.  Would it be possible to speak to one of you guys on the phone OR a TECH person in the UK - I'm sure they could help me with the problem because they could guide me through what I have to do.  It must be a UK call centre (please) - I almost go into a nervous breakdown when I have to speak to your help centres in Asia.  With very many thanks.

  • My activity icon keeps running when I am reading my emails. It won't stop running.

    My activity icon keeps running, only during my emails. How do I stop it?

    I didn't think of this earlier, but if it makes any difference: the PC I'm running iTunes on and have had this iPhone connected to is running Windows 7 Ultimate.

  • BAPI_GET_PAYSLIP_HTML error when called as webservice

    Greetings
    I'm calling BAPI_GET_PAYSLIP_HTML as a webservice to make payslips available via web browser but it returns no output. I
    've tested the same bapi in se37 with the same parameters and we get the desired return.
    The problems isn't either with the calling procedure because I've made the same test (via webservice) to BAPI_GET_PAYSLIP we it had return.
    Could you help me with this?
    Thanks in advance
    Nuno

    hi!
    are you trying to hit this bapi when calling a BSP? Or are you trying to do this with ITS?
    also, check if adding the COMMIT statement right after the bapi will help.
    regards,
    manasa

  • Connection time out error when calling a webservice on ICF

    Hi
       We have a webservice exposed on ECC 5.0 on the ICF. However, when we invoke the webservice - after 10 seconds , we get a error message
    Error reading server response: The operation has timed-out
    I checked ICMAN parameters
    icm/conn_timeout - and set its new value to 50000 ms ( 50 secs ) - the connection still timed out when the webservice tooks more than 10 seconds to process.
    icm/keep_alive_timeout - I don't see an option to change the new value for this parameter
    What am i missing here - how can I set the connection not to time out uptil say 45 seconds - what parameter do I change here ?

    I partly agree with Kaustubh,
    if you test the service from within SICF the parameter SAPLOCALHOSTFULL (FQHN = Fully-Qualified Host Name) is taken to build the test URL. If this host name is not correct resp. cannot be resolved by the server, you will run into an error.
    icm/host_name_full is only taken if SAPLOCALHOSTFULL is not maintained.
    So first of all you shold check this parameter befor increasing timeout parameters at random.
    If the parameter does not solve the problem, you should have a look into the ICM trace file (dev_icm) and search for "ERROR".
    Regards,
    Stefan

  • Vision Builder 2010 Active time not working when calling Vision inspection from testand 2010

    I have an issue where I am timing a flashing light using the active time variable, when I run the inspection from the inspection view everything works, however when I run it from the configuration view or by calling it through teststand 2010 with the Vision Vi's the Active Time never changes from 0.00000.
    I do not need precides timings so I am NOT worried about the +/- 20ms from the windows system clock.

    Hi Ryan,
    Can you read any of the other variables using the Get Inspection statistics VI?  Is it only the Active Timer that doesn't change?
    Cole R.
    National Instruments
    Applications Engineer

  • Automation server can't create object when calling a jsp from a button

    Hello,
    I have created the following jsp that allow me to execute an external program that is located on the client side:
    <script language="JavaScript" type="text/javascript">
    <!--
    function execAppli(app)
    var wshShell = new ActiveXObject("WScript.Shell");
    wshShell.Run(app+".exe", 1, true);
    -->
    </script>
    If I call this jsp in a simple html page is works correctly when i call it from a button in apex (3.0) I got the error message Automation server can't create object.
    Any idea ?
    Thanks,
    Claude-Alain

    Hi Claude,
    Just be sure that you really (like really) trust your endusers, because I can see some huge opportunities for exploiting that JavaScript routine you've shown. If you're not taking steps to prevent cross site scripting (search this forum or Google for details on what that is), then it's not beyond the bounds of possibility for someone to do something 'nasty' which would do horrible things to your end users if your executing a program on their client machines without any warning or validation of what that program actually does.
    Sometimes it's best to work backwards from the point of view of....what if you walk into work one morning and find that 400 end users machines have had their hard-drives wiped because the script arbitrarily executes whatever command you pass to it? Then you can perhaps see that what sometimes looks like a good idea might not be such a good idea after all ;)

  • Skype keeps crashing when calling WIN10

    The client stops responding when i recieve a call or make a call.

    Please,  run the DirectX diagnostics tool. Go to Windows Start  and in the Run box type dxdiag.exe and press the OK button. This will start the DirectX diagnostics program. Run this diagnostics and save the results to a file. Please, attach this file to your post. Be aware that you will have to zip this file before attaching it here.

  • Invalid request when calling REST-webservice with UTL_HTTP.

    Hello,
    When i try to send some data to a REST-webservice i get as response "INVALID REQUEST"
    I Think it is about the request-body that seems to be no UTF-8.
    I tried to set the characterset with utl_http.set_body_charset(t_http_req, 'UTF-8').
    But when i read the characterset with utl_http.get_body_charset(t_charset);, is still get "ISO-8859-1"
    I am using: Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    Some help would realy be appreciated because i am out of options trying to get the code working..
    ======MY CODE==========
    create or replace procedure ipm40_send_bekendmaking(p_bdmg_id in number)
    as
    r_bekendmaking ipm40_bekendmakingen%rowtype;
    r_gemeente ipm40_gemeenten%rowtype;
    l_url httpuritype;
    t_http_req utl_http.req;
    t_http_resp utl_http.resp;
    t_request_body varchar2(32767);
    t_respond varchar2(32767);
    -- t_teller integer := 1;
    -- t_output varchar2(2000);
    t_start number := 1;
    t_body_lengte number;
    t_chunkdata varchar2(4000);
    t_tijd_1 varchar2(256);
    t_tijd_2 varchar2(256);
    t_timeout integer;
    t_length number;
    t_charset varchar2(256);
    begin
    select *
    into r_bekendmaking
    from ipm40_bekendmakingen
    where id = p_bdmg_id;
    select *
    into r_gemeente
    from ipm40_gemeenten
    where gmte_code = r_bekendmaking.gmte_code;
    l_url := httpuritype.createuri('http://zwolle.stadsbeheer.com:82/apex/ipm40bekendmaking?p_bdmg_id='||r_bekendmaking.id);
    t_request_body := l_url.getClob();
    /* request that exceptions are raised for error Status Codes */
    --Utl_Http.Set_Response_Error_Check ( enable => true );
    /* allow testing for exceptions like Utl_Http.Http_Server_Error */
    --Utl_Http.Set_Detailed_Excp_Support ( enable => true );
    utl_http.set_transfer_timeout(300);
    t_http_req:= utl_http.begin_request( r_gemeente.url_webservice_bekendmakingen
    , 'POST'
    , 'HTTP/1.1');
    utl_http.set_body_charset(t_http_req, 'UTF-8');
    utl_http.get_body_charset(t_charset);
    utl_http.set_authentication(t_http_req,r_gemeente.user_webservice_bekendmakingen,r_gemeente.pw_webservice_bekendmakingen);
    t_length := length(t_request_body);
    utl_http.set_header(t_http_req, 'Content-Type', 'application/xml charset=UTF-8');
    utl_http.set_header(t_http_req, 'Content-Length', t_length);
    utl_http.set_header(t_http_req, 'Transfer-Encoding', 'chunked' ); --
    t_body_lengte := dbms_lob.getlength(t_request_body);
    loop
    t_chunkdata := dbms_lob.substr(t_request_body, 2000, t_start);
    utl_http.write_text ( t_http_req, t_chunkdata );
    t_start := t_start + 2000;
    if t_start > t_body_lengte
    then
    exit;
    end if;
    end loop;
    t_http_resp:= utl_http.get_response(t_http_req);
    utl_http.read_text(t_http_resp, t_respond);
    utl_http.end_response(t_http_resp);
    if instr(t_respond,'Successfully document processed') != 0
    then
    update ipm40_bekendmakingen
    set ind_status = 'S'
    , datum_verzonden = sysdate
    , response = t_respond
    where id = r_bekendmaking.id;
    else
    update ipm40_bekendmakingen
    set ind_status = 'F'
    , datum_verzonden = null
    , response = t_respond
    where id = r_bekendmaking.id ;
    end if;
    commit;
    exception
    when others
    then
    t_tijd_2 := to_char(sysdate,'HH24:MI:SS');
    t_respond := substr(sqlerrm,1,2000);
    update ipm40_bekendmakingen
    set ind_status = 'F'
    , datum_verzonden = null
    , response = t_respond
    where id = r_bekendmaking.id ;
    commit;
    end;
    ===THE RESPOND=============
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <HTML><HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <TITLE>ERROR: The requested URL could not be retrieved</TITLE>
    <STYLE type="text/css"><!--BODY{background-color:#ffffff;font-family:verdana,sans-serif}PRE{font-family:sans-serif}--></STYLE>
    </HEAD><BODY>
    <H1>ERROR</H1>
    <H2>The requested URL could not be retrieved</H2>
    <HR noshade size="1px">
    <P>
    While trying to process the request:
    <PRE>
    POST /pushxml/pushxml-bm HTTP/1.0
    Authorization: Basic Ymtfc21hcnRob2xkaW5nOllyZXMzdlFR
    Content-Type: application/xml charset=UTF-8
    Content-Length: 2096
    Transfer-Encoding: chunked
    Connection: close
    </PRE>
    <P>
    The following error was encountered:
    <UL>
    <LI>
    <STRONG>
    Invalid Request
    </STRONG>
    </UL>
    <P>
    Some aspect of the HTTP Request is invalid. Possible problems:
    <UL>
    <LI>Missing or unknown request method
    <LI>Missing URL
    <LI>Missing HTTP Identifier (HTTP/1.0)
    <LI>Request is too large
    <LI>Content-Length missing for POST or PUT requests
    <LI>Illegal character in hostname; underscores are not allowed
    </UL>
    <P>Your cache administrator is [email protected].
    <BR clear="all">
    <HR noshade size="1px">
    <ADDRESS>
    Generated Fri, 12 Aug 2011 17:33:24 GMT by asd2cc001.asp4all.nl (squid)
    </ADDRESS>
    </BODY></HTML>

    Always check the access_log and error_log files of the Apache web server in such a case. This will identify whether the error comes from Apache itself, mod_plsql, the Apex run-time engine, or the Oracle database.
    I see that you're creating a HTTP/1.1 in PL/SQL - however, the web server response indicates a HTTP/1.0 call was received. Unusual. And could be part of the problem.

  • Error #2032 when calling a WebService operation

    I'm trying to make a soap operation call. The wsdl file is
    loaded fine, but when I go to make a call, I get this error:
    quote:
    HTTP request error
    (mx.messaging.messages::ErrorMessage)#0
    body = (Object)#1
    clientId = "DirectHTTPChannel0"
    correlationId = "C5EF8C74-6413-12CF-7737-7E8FE675B002"
    destination = ""
    extendedData = (null)
    faultCode = "Server.Error.Request"
    faultDetail = "Error: [IOErrorEvent type="ioError"
    bubbles=false cancelable=false eventPhase=2 text="Error #2032:
    Stream Error. URL: https://foo.com/soap"]. URL:
    https://foo.com/soap"
    faultString = "HTTP request error"
    headers = (Object)#2
    messageId = "55F24685-6626-C774-F58E-7E8FE6E39495"
    rootCause = (flash.events::IOErrorEvent)#3
    bubbles = false
    cancelable = false
    currentTarget = (flash.net::URLLoader)#4
    bytesLoaded = 0
    bytesTotal = 0
    data = (null)
    dataFormat = "text"
    eventPhase = 2
    target = (flash.net::URLLoader)#4
    text = "Error #2032: Stream Error. URL:
    https://foo.com/soap"
    type = "ioError"
    timestamp = 0
    timeToLive = 0
    Here's the code for the WebService:
    quote:
    <mx:WebService id="ws" wsdl="
    http://foo.com/bar.wsdl"
    showBusyCursor="true" >
    <mx:operation name="Baz">
    <mx:request>
    <Param>{this.keyId}</Param>
    </mx:request>
    </mx:operation>
    </mx:WebService>
    The swf is on the same domain (and subdomain) as the
    webservce, and when it isn't, I get a security error.
    I read that https and webservice can have some problems when
    not going through a proxy, but I can't see why, and I'd rather not
    use a proxy; I shouldn't need one.
    This happens with both Firefox and IE.

    You can only make an HTTPS connection if the SWF was also
    loaded via HTTPS.

  • Http error 400 - bad request when calling external webservice

    I have a problem connecting OSB to webservices exposed by Lotus Domino Server.
    When I test the services with XMLSpy, it works fine. I started a project in OSB, and imported WSDL files from the server url. So far it worked. I built the corresponding Business services. When I tried to test these business services, i got error 400 from the domino server.
    Does anyone have an idea to fix this problem?
    My response document:
    <?xml version="1.0" encoding="UTF-8"?>
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <soapenv:Body>
    <soapenv:Fault>
    <faultcode>soapenv:Server.generalException</faultcode>
    <faultstring>org.xml.sax.SAXParseException: Korai fájlvége.</faultstring>
    <detail/>
    </soapenv:Fault>
    </soapenv:Body>
    </soapenv:Envelope>HTTP/1.1 400 Bad Request
    Server: Lotus-Domino
    Date: Sat, 09 May 2009 19:57:19 GMT
    Connection: close
    Pragma: no-cache
    Cache-Control: no-cache
    Expires: Sat, 09 May 2009 19:57:19 GMT
    Content-Type: text/html
    Content-Length: 161
    <HTML><HEAD><TITLE>Unable to Process Request</TITLE></HEAD><BODY><P>Http Status Code: 400</P><P>Reason: Unknown or unsupported protocol version</P></BODY></HTML>

    Yes, the problem should be in the request, but in the test console the request document looked fine.
    I tried the following:
    I tested the service with XMLSpy. I took the soap envelope generated, and pasted it into the business service test console. Then the payload should be the same in both cases, but it does not work.

  • 401 Unauthorized error when calling a webservice

    Have ColdFusion 11 installed, I have created a hello web service and I am trying to call it.  Each time I try to call the web service I get an error 401 Unauthorized.  I am not sure if I need to configure something more on the ColdFusion server, IIS or something else.
    <cfcomponent displayname="Hello">
    <cffunction name="helloWorld" returntype="string" access="remote">
         <cfreturn "Hello World!">
        </cffunction>
    </cfcomponent>
    <cfinvoke
      webservice="http://MyServer/Hello.cfc?wsdl"
      method="helloWorld"
      returnvariable="ws" refreshwsdl="yes">
    </cfinvoke>
    <cfdump var="#ws#">

    It appears that you have inadvertently enforced HTTP authentication. If so, you will have to include the attributes, username="your_username" and password="your_password" in the cfinvoke tag.

  • Problem with array param when calling a webservice from a BPM Process

    Hi. I have a web service and uses an array as parameter.
    The array (named "atributos") as part of a business object is defined here:
    <xs:schema targetNamespace="http://xmlns.oracle.com/bpm/bpmobject/DataTypes/TrackPCPDOTrans" ...>
    <xs:complexType name="TrackPCPDOTransType">
    <xs:sequence>
    <xs:element name=... />
    <xs:element name="atributos" nillable="true" type="ns2:AtributosType" maxOccurs="unbounded"/>
    </xs:sequence>
    </xs:complexType>
    <xs:element name="TrackPCPDOTrans" type="TrackPCPDOTransType"/>
    </xs:schema>
    <xs:schema targetNamespace=... >
    <xs:complexType name="AtributosType">
    <xs:sequence>
    <xs:element name="key" nillable="true" type="xs:string"/>
    <xs:element name="value" nillable="true" type="xs:string"/>
    </xs:sequence>
    </xs:complexType>
    <xs:element name="Atributos" type="AtributosType"/>
    </xs:schema>
    In the service task activity, I pass the params to the web service:
    "descripcion" --> TrackPCPDOTrans.atributos[1].key
    DataObject.descripcion --> TrackPCPDOTrans.atributos[1].value
    "estado" --> TrackPCPDOTrans.atributos[2].key
    DataObject.estado --> TrackPCPDOTrans.atributos[2].value
    "justificacion" --> TrackPCPDOTrans.atributos[3].key
    DataObject.justificacion --> TrackPCPDOTrans.atributos[3].value
    But when I test the process, an error ocurrs:
    <auditQueryPayload auditId="8712004" ciKey="380019">
    <dataState>
    <dataObject name="FaultMessage" isBusinessIndicator="false">
    <value> oracle.bpm.bpmn.engine.model.runtime.microinstructions.TrappableException: faultName: {{http://schemas.xmlsoap.org/ws/2003/03/business-process/}selectionFailure} messageType: {{http://schemas.oracle.com/bpel/extension}RuntimeFaultMessage} cause: {faultName: {{http://schemas.xmlsoap.org/ws/2003/03/business-process/}selectionFailure} messageType: {{http://schemas.oracle.com/bpel/extension}RuntimeFaultMessage} parts: {{ summary=<summary>empty expression result. The expression bpmn:getDataInput('trackPCPDOTrans')/ns:atributos[2]/ns1:key is empty. An attempt to read or copy data referenced or computed by the XPath expression either had invalid data, according to the XML schema, or did not contain certain optional data. Ensure that the variable or expression result named in the error message is not empty. Enable XML schema validation of related data elements to ensure the run-time data is valid. </summary>} } </value>
    </dataObject>
    </dataState>
    </auditQueryPayload>
    What is wrong?
    Thanks for your help.

    I did the assignment in XPATH:
    oraext:parseXML(concat('<AtributosTracking xmlns="http://xmlns.oracle.com/bpm/bpmobject/DataTypes/AtributosTracking">
    <arrayAtributosTracking>
    <key xmlns="http://xmlns.oracle.com/bpm/bpmobject/DataTypes/Atributos">','descripcion','</key>
    <value xmlns="http://xmlns.oracle.com/bpm/bpmobject/DataTypes/Atributos">',bpmn:getDataObject('DataObjectDDSAO')/ns:descripcion,'</value>
    </arrayAtributosTracking>
    <arrayAtributosTracking>
    <key xmlns="http://xmlns.oracle.com/bpm/bpmobject/DataTypes/Atributos">','estado','</key>
    <value xmlns="http://xmlns.oracle.com/bpm/bpmobject/DataTypes/Atributos">',bpmn:getDataObject('DataObjectDDSAO')/ns:estado,'</value>
    </arrayAtributosTracking>
    </AtributosTracking>'))
    AtributosTracking.xsd:
    <?xml version="1.0" encoding="UTF-8"?>
    <?bpmo version="11.1.1.6.0.15.53" build="15.53" fullName="DataTypes.AtributosTracking" modifiers="268435456"?>
    <xs:schema targetNamespace="http://xmlns.oracle.com/bpm/bpmobject/DataTypes/AtributosTracking" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://xmlns.oracle.com/bpm/bpmobject/DataTypes/AtributosTracking" xmlns:ns1="http://xmlns.oracle.com/bpm/bpmobject/DataTypes/Atributos" xmlns:bpmo="http://xmlns.oracle.com/bpm/bpmobject/" >
    <xs:import namespace="http://xmlns.oracle.com/bpm/bpmobject/DataTypes/Atributos" schemaLocation="Atributos.xsd"/>
    <xs:complexType name="AtributosTrackingType">
    <xs:sequence>
    <xs:element name="arrayAtributosTracking" nillable="true" type="ns1:AtributosType" maxOccurs="unbounded"/>
    </xs:sequence>
    </xs:complexType>
    <xs:element name="AtributosTracking" type="AtributosTrackingType"/>
    Atributos.xsd:
    <?xml version="1.0" encoding="UTF-8"?>
    <?bpmo version="11.1.1.6.0.15.53" build="15.53" fullName="DataTypes.Atributos" modifiers="0"?>
    <xs:schema targetNamespace="http://xmlns.oracle.com/bpm/bpmobject/DataTypes/Atributos" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://xmlns.oracle.com/bpm/bpmobject/DataTypes/Atributos" xmlns:bpmo="http://xmlns.oracle.com/bpm/bpmobject/" >
    <xs:complexType name="AtributosType">
    <xs:sequence>
    <xs:element name="key" nillable="true" type="xs:string"/>
    <xs:element name="value" nillable="true" type="xs:string"/>
    </xs:sequence>
    </xs:complexType>
    <xs:element name="Atributos" type="AtributosType"/>
    </xs:schema>
    But a new error occurrs when I run the BPM process:
    <auditQueryPayload auditId="8724004" ciKey="380025">
    <dataState>
    <dataObject name="FaultMessage" isBusinessIndicator="false">
    <value> oracle.bpm.bpmn.engine.model.runtime.microinstructions.TrappableException:
    faultName: {{http://schemas.xmlsoap.org/ws/2003/03/business-process/}selectionFailure}
    messageType: {{http://schemas.oracle.com/bpel/extension}RuntimeFaultMessage}
    cause: {faultName: {{http://schemas.xmlsoap.org/ws/2003/03/business-process/}selectionFailure}
    messageType: {{http://schemas.oracle.com/bpel/extension}RuntimeFaultMessage}
    parts: {{ summary=<summary>XPath query string returns multiple nodes.
    The assign activity part and query bpmn:getDataObject('AtributosTracking')/ns:atributosTracking are returning multiple nodes.
    The assign activity part and query named in the error message returned multiple nodes. It should return single node.
    According to BPEL4WS specification 1.1 section 14.3, the assign activity part and query named in the error message should
    not return multiple nodes. Verify the part and xpath query named in the error message at line number -1 in the BPEL source. </summary>} } </value>
    </dataObject>
    </dataState>
    </auditQueryPayload>
    Any idea?
    Thanks
    Edited by: César on 10/01/2013 11:02 AM

  • Global rules not kicking off when calling CHECKIN_NEW webservice

    Hi All,
    We are trying to call CHECKIN_NEW/CHECKIN_UNIVERSAL web services with mandatory fields like doctype, securitygroup, title, primary file etc..
    It is working fine, but the global rules were not kicking off.
    Ex: Say, we have a rule that says Field_A is mandatory when SecurityGroup=Public.
    But when we are invoking the webservice with SecurityGroup=Public, content is getting checked-in even though we are not passing the Field_A value.
    We need the global rules to kick-off and give us error/warning that there is field missing...
    Can you please let us know if we are missing something here, or there is other way to get this requirement?
    Thanks in advance,
    Cheers,
    -V

    Hi,
    I now tested with RIDC code below, but still the global rule is not kicking off. I ahve a global rule, which says "xSwcDocumentSubType" should be mandatory. But if we see code below, i commented out that value, but still content is getting checked in.
    Can you please point me if i am missing anything here?
    IdcClientManager manager = new IdcClientManager();
    // build a client that will communicate using the HTTP protocol
    IdcClient idcClient = manager.createClient("http://xxx:xxx/cs/idcplg");
    // create an identity with a password
    IdcContext userPasswordContext = new IdcContext("xxx", "xxx");
    // create request
    DataBinder binder = idcClient.createBinder();
    binder.putLocal ("IdcService", "CHECKIN_NEW");
    // get the binder
    binder.putLocal ("dDocTitle", "RIDC File3");
    binder.putLocal ("dDocType", "Statement");
    //binder.putLocal ("xSwcDocumentSubType", "317");
    binder.putLocal ("dSecurityGroup", "Public");
    // add a file
    //binder.addFile ("primaryFile", new TransferFile ("test.doc"));
    binder.addFile ("primaryFile", new File ("D:\\RIDC.txt"));
    // check in the file
    ServiceResponse response = idcClient.sendRequest(userPasswordContext, binder);
    String responseString = response.getResponseAsString ();
    System.out.println(responseString);
    Edited by: 921097 on 18/03/2012 17:59

Maybe you are looking for

  • My Imac is very slow, in paticular Chrome browser. Can anyone help me identify cause? Thank you

    Problem description: I have a very slow imac. In particular chrome browser is slow. Programs such as microsoft office and itunes slow to open. Help please? EtreCheck version: 2.1.5 (108) Report generated 1 January 2015 16:15:39 GMT Click the [Support

  • Blue screen when trying to connect ipod

    When trying to connect my ipod to my computer it reboots it into a blue screen that looks something like this... STOP: 000000007F (0000000008, 0X80154000 etc, etc.) minidump something something. I looked in my minidump folder but there was nothing in

  • Mass maintainance of material master

    Dear Gurus, We want to maintain some missing field on the MRP views of the material masters for all materials(FERT, HALB AND ROH). Pls what T-CODE or how can we maintain this since the materials are up to 10,000 in all. Thanks

  • Spark textinput does not display unicode properly

    I need to type in some special charactors using unicode input method. (install microsoft pinyin, and use secondary inputs-> unicode input, and type "E826" into the textinput box) in spark textinput, the charactor is showing as a sqare; while mx texti

  • Standby Database (bis)

    Hi, I have just create a new standby database on unix machine, I had read the Oracle documentation, but I have a problem : From my client PC, it seems that oracle want to connect to my standby database when I want to connect to prod. I have an error