First Commit from Source Code Reply

This commit is contained in:
vincenzofariello
2024-05-09 17:40:24 +02:00
parent 11e3b57c5b
commit 107a016cb9
35225 changed files with 1111346 additions and 1 deletions

View File

@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:sm="http://DBSS-COM/CustomerOrderMgmt/2015-05-11"
xmlns:cst="http://DBSS-COM/CustomerOrderMgmtCustomTypes/2015-05-11"
targetNamespace="http://DBSS-COM/CustomerOrderMgmt/2015-05-11"
elementFormDefault="qualified"
attributeFormDefault="unqualified">
<xs:import namespace="http://DBSS-COM/CustomerOrderMgmtCustomTypes/2015-05-11" schemaLocation="CustomerOrderMgmtEntities.xsd"/>
<xs:include schemaLocation="ProcessData_v1.0.xsd"/>
<xs:element name="createRequest">
<xs:complexType>
<xs:sequence>
<xs:element name="CustomerOrder" type="cst:CustomerOrderType"/>
<xs:element name="ProcessData" type="sm:ProcessData" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="changeTOCRequest">
<xs:complexType>
<xs:sequence>
<xs:element name="CustomerOrder" type="cst:CustomerOrderType"/>
<xs:element name="ProcessData" type="sm:ProcessData" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="unlockRequest">
<xs:complexType>
<xs:sequence>
<xs:element name="CustomerOrder" type="cst:UnlockCustomerOrderType"/>
<xs:element name="ProcessData" type="sm:ProcessData" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="cancelRequest">
<xs:complexType>
<xs:sequence>
<xs:element name="CustomerOrder" type="cst:CancelCustomerOrderType"/>
<xs:element name="ProcessData" type="sm:ProcessData" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="inFlightCancelRequest">
<xs:complexType>
<xs:sequence>
<xs:element name="CustomerOrder" type="cst:inFlightCancelCustomerOrderType"/>
<xs:element name="ProcessData" type="sm:ProcessData" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="inFlightCancelResponse">
<xs:complexType>
<xs:sequence>
<xs:element name="Result" type="cst:inFlightCancelResultType"/>
<xs:element name="ProcessData" type="sm:ProcessData" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions xmlns:ns2="http://telecomitalia.it/SOA/SOAP/SOAPHeader" xmlns:ns="http://DBSS-COM/CustomerOrderMgmt/2015-05-11" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://DBSS-COM/CustomerOrderMgmt" xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="http://DBSS-COM/CustomerOrderMgmt">
<wsdl:import location="../../../XSDSchemas/SOAPHeader_v1.1.xsd" namespace="http://telecomitalia.it/SOA/SOAP/SOAPHeader"/>
<wsdl:import location="../XSD/CustomerOrderMgmt.xsd" namespace="http://DBSS-COM/CustomerOrderMgmt/2015-05-11"/>
<wsdl:types>
<xsd:schema targetNamespace="http://DBSS-COM/CustomerOrderMgmt">
<xsd:import namespace="http://DBSS-COM/CustomerOrderMgmt/2015-05-11" schemaLocation="../XSD/CustomerOrderMgmt.xsd"/>
<xsd:import namespace="http://telecomitalia.it/SOA/SOAP/SOAPHeader" schemaLocation="../../../XSDSchemas/SOAPHeader_v1.1.xsd"/>
</xsd:schema>
</wsdl:types>
<wsdl:message name="CreateIn">
<wsdl:part element="ns2:Header" name="header"/>
<wsdl:part element="ns:createRequest" name="body"/>
</wsdl:message>
<wsdl:message name="ChangeTOCIn">
<wsdl:part element="ns2:Header" name="header"/>
<wsdl:part element="ns:changeTOCRequest" name="body"/>
</wsdl:message>
<wsdl:message name="cancelIn">
<wsdl:part element="ns2:Header" name="header"/>
<wsdl:part element="ns:cancelRequest" name="body"/>
</wsdl:message>
<wsdl:message name="unlockIn">
<wsdl:part element="ns2:Header" name="header"/>
<wsdl:part element="ns:unlockRequest" name="body"/>
</wsdl:message>
<wsdl:message name="inFlightCancelIn">
<wsdl:part element="ns2:Header" name="header"/>
<wsdl:part element="ns:inFlightCancelRequest" name="body"/>
</wsdl:message>
<wsdl:message name="inFlightCancelOut">
<wsdl:part element="ns2:Header" name="header"/>
<wsdl:part element="ns:inFlightCancelResponse" name="body"/>
</wsdl:message>
<wsdl:portType name="CustomerOrderMgmtPortType">
<wsdl:operation name="Create">
<wsdl:input message="tns:CreateIn"/>
</wsdl:operation>
<wsdl:operation name="ChangeTOC">
<wsdl:input message="tns:ChangeTOCIn"/>
</wsdl:operation>
<wsdl:operation name="Cancel">
<wsdl:input message="tns:cancelIn"/>
</wsdl:operation>
<wsdl:operation name="Unlock">
<wsdl:input message="tns:unlockIn"/>
</wsdl:operation>
<wsdl:operation name="InFlightCancel">
<wsdl:input message="tns:inFlightCancelIn"/>
<wsdl:output message="tns:inFlightCancelOut"/>
</wsdl:operation>
</wsdl:portType>
</wsdl:definitions>

View File

@@ -0,0 +1,97 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--Created by TIBCO WSDL-->
<wsdl:definitions xmlns:tns="http://DBSS-COM/CustomerOrderMgmt/service-b" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:ns0="http://DBSS-COM/CustomerOrderMgmt" xmlns:soap1="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" name="Untitled" targetNamespace="http://DBSS-COM/CustomerOrderMgmt/service-b">
<wsdl:import namespace="http://DBSS-COM/CustomerOrderMgmt" location="../../Interfaces/CustomerOrderMgmt_Abstract.wsdl"/>
<wsdl:service name="service">
<wsdl:port name="CustomerOrderMgmtHttpsEndpoint" binding="tns:CustomerOrderMgmtHttpsEndpointBinding">
<soap:address location="https://localhost:8546/Business/ESBE/Services/CustomerOrderMgmt-v1/service"/>
</wsdl:port>
<wsdl:port name="CustomerOrderMgmtHttpEndpoint" binding="tns:CustomerOrderMgmtHttpEndpointBinding">
<soap:address location="http://localhost:1410/Business/ESBE/Services/CustomerOrderMgmt-v1/service"/>
</wsdl:port>
</wsdl:service>
<wsdl:binding name="CustomerOrderMgmtHttpsEndpointBinding" type="ns0:CustomerOrderMgmtPortType">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="ChangeTOC">
<soap:operation style="document" soapAction="ChangeTOC"/>
<wsdl:input>
<soap:body use="literal" parts="body"/>
<soap:header use="literal" message="ns0:ChangeTOCIn" part="header"/>
</wsdl:input>
</wsdl:operation>
<wsdl:operation name="Cancel">
<soap:operation style="document" soapAction="cancel"/>
<wsdl:input>
<soap:body use="literal" parts="body"/>
<soap:header use="literal" message="ns0:cancelIn" part="header"/>
</wsdl:input>
</wsdl:operation>
<wsdl:operation name="Create">
<soap:operation style="document" soapAction="Create"/>
<wsdl:input>
<soap:body use="literal" parts="body"/>
<soap:header use="literal" message="ns0:CreateIn" part="header"/>
</wsdl:input>
</wsdl:operation>
<wsdl:operation name="InFlightCancel">
<soap:operation style="document" soapAction="InFlightCancel"/>
<wsdl:input>
<soap:body use="literal" parts="body"/>
<soap:header use="literal" message="ns0:inFlightCancelIn" part="header"/>
</wsdl:input>
<wsdl:output>
<soap:body use="literal" parts="body"/>
<soap:header use="literal" message="ns0:inFlightCancelOut" part="header"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="Unlock">
<soap:operation style="document" soapAction="unlock"/>
<wsdl:input>
<soap:body use="literal" parts="body"/>
<soap:header use="literal" message="ns0:unlockIn" part="header"/>
</wsdl:input>
</wsdl:operation>
</wsdl:binding>
<wsdl:binding name="CustomerOrderMgmtHttpEndpointBinding" type="ns0:CustomerOrderMgmtPortType">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="ChangeTOC">
<soap:operation style="document" soapAction="ChangeTOC"/>
<wsdl:input>
<soap:body use="literal" parts="body"/>
<soap:header use="literal" message="ns0:ChangeTOCIn" part="header"/>
</wsdl:input>
</wsdl:operation>
<wsdl:operation name="Cancel">
<soap:operation style="document" soapAction="cancel"/>
<wsdl:input>
<soap:body use="literal" parts="body"/>
<soap:header use="literal" message="ns0:cancelIn" part="header"/>
</wsdl:input>
</wsdl:operation>
<wsdl:operation name="Create">
<soap:operation style="document" soapAction="Create"/>
<wsdl:input>
<soap:body use="literal" parts="body"/>
<soap:header use="literal" message="ns0:CreateIn" part="header"/>
</wsdl:input>
</wsdl:operation>
<wsdl:operation name="InFlightCancel">
<soap:operation style="document" soapAction="InFlightCancel"/>
<wsdl:input>
<soap:body use="literal" parts="body"/>
<soap:header use="literal" message="ns0:inFlightCancelIn" part="header"/>
</wsdl:input>
<wsdl:output>
<soap:body use="literal" parts="body"/>
<soap:header use="literal" message="ns0:inFlightCancelOut" part="header"/>
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="Unlock">
<soap:operation style="document" soapAction="unlock"/>
<wsdl:input>
<soap:body use="literal" parts="body"/>
<soap:header use="literal" message="ns0:unlockIn" part="header"/>
</wsdl:input>
</wsdl:operation>
</wsdl:binding>
</wsdl:definitions>

View File

@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSpy v2008 sp1 (http://www.altova.com) by telecomitalia (telecomitalia) -->
<!--
//-FILE-ID
// Name: ProcessData.xsd
// Version: 1.0
// Type: XSD file
// Kit Version: 2016_01
// Created: 2015-05-07
// Last Modified: 2015-05-07
// Developed by: GdL Reply - Ing.MW
-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="1.1">
<xs:simpleType name="noCommonConstraintsType" final="#all">
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="Parameter">
<xs:sequence>
<xs:element name="name" type="noCommonConstraintsType"/>
<xs:element name="value" type="noCommonConstraintsType"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Parameters">
<xs:sequence>
<xs:element name="Parameter" type="Parameter" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="ProcessData">
<xs:sequence>
<xs:element name="returnCode" type="noCommonConstraintsType" minOccurs="0"/>
<xs:element name="returnDescription" type="noCommonConstraintsType" minOccurs="0"/>
<xs:element name="Parameters" type="Parameters" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:element name="ProcessData" type="ProcessData"/>
</xs:schema>

View File

@@ -0,0 +1,93 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
// FILE-ID
// Name: SOAPHeader_v1.1.xsd
// Version: 1.1
// Type: XSD file
// Analysis Version:
// Kit Version:
// Created: 05/03/2009
// Modified 16/03/2010
// Developed by: Simone Avossa
-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:h="http://telecomitalia.it/SOA/SOAP/SOAPHeader" targetNamespace="http://telecomitalia.it/SOA/SOAP/SOAPHeader" elementFormDefault="qualified" version="1.1">
<!-- Start Types Definition -->
<xs:complexType name="HeaderType">
<xs:annotation>
<xs:documentation>Informazioni di contesto dell'invocazione del servizio</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="sourceSystem" type="h:sourceSystemType" minOccurs="0">
<xs:annotation>
<xs:documentation>Sistema da cui proviene la richiesta</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="interactionDate" type="h:interactionDateType" minOccurs="0">
<xs:annotation>
<xs:documentation>Data e Ora di invocazione del servizio</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="businessID" type="h:businessIDType" minOccurs="0">
<xs:annotation>
<xs:documentation>Identifica univocamente il processo di business</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="messageID" type="h:messageIDType" minOccurs="0">
<xs:annotation>
<xs:documentation>Identifica il messaggio in maniera univoca</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="transactionID" type="h:transactionIDType" minOccurs="0">
<xs:annotation>
<xs:documentation>Identifica la transazione per gestire i ritorni sincroni</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:simpleType name="dateType">
<xs:restriction base="xs:string">
<xs:pattern value="\d{4}-\d{2}-\d{2}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="timeType">
<xs:restriction base="xs:string">
<xs:pattern value="\d{2}:\d{2}:\d{2}((Z)|(\.\d{1,}Z?)|((\+|-)\d{2}:\d{2}))?"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="businessIDType">
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="messageIDType">
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="sourceSystemType">
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="transactionIDType">
<xs:restriction base="xs:string">
<xs:minLength value="1"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="interactionDateType">
<xs:sequence>
<xs:element name="Date" type="h:dateType">
<xs:annotation>
<xs:documentation>Per compatibilità con i diversi prodotti o librerie software (es. Axis2 e BW) si è scelto di utilizzare il tipo string. La restizione applicata accetta il formato: CCYY-MM-DD. Non sono presenti restrizioni sul range dei valori.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Time" type="h:timeType">
<xs:annotation>
<xs:documentation>Per compatibilità con i diversi prodotti o librerie software (es. Axis2 e BW) si è scelto di utilizzare il tipo string. La restizione applicata accetta il formato: hh:mm:ss.sss. Non sono presenti restrizioni sul range dei valori. Per gli ulteriori dettagli sul formato fare riferimento alla definizione di Time Data Type W3C, presente al link: http://www.w3schools.com/Schema/schema_dtypes_date.asp</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<!-- End Types Definition -->
<xs:element name="Header" type="h:HeaderType"/>
</xs:schema>

View File

@@ -0,0 +1,9 @@
<weblogic-wsee-clientHandlerChain
xmlns="http://www.bea.com/ns/weblogic/90"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:j2ee="http://java.sun.com/xml/ns/j2ee">
<handler>
<j2ee:handler-name>CustomerOrderMgmtSOAPHandler</j2ee:handler-name>
<j2ee:handler-class>it.valueteam.gnp.ws.dbss.client.CustomerOrderMgmtSoapHandler</j2ee:handler-class>
</handler>
</weblogic-wsee-clientHandlerChain>