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,52 @@
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions targetNamespace="http://dbcfx/SOA/CRMWirelineVOIPMgmt"
xmlns:nsSchema="http://dbcfx/SOA/CRMWirelineVOIPMgmt/2023-03-23"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:head="http://telecomitalia.it/SOA/SOAP/SOAPHeader"
xmlns:tns="http://dbcfx/SOA/CRMWirelineVOIPMgmt"
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<wsdl:types>
<xsd:schema targetNamespace="http://dbcfx/SOA/CRMWirelineVOIPMgmt">
<xsd:import namespace="http://dbcfx/SOA/CRMWirelineVOIPMgmt/2023-03-23" schemaLocation="VOIP35_CRM_TO_DBCFX.xsd"/>
<xsd:import namespace="http://telecomitalia.it/SOA/SOAP/SOAPHeader" schemaLocation="SOAPHeader_v1.1.xsd"/>
</xsd:schema>
</wsdl:types>
<wsdl:message name = "NotificaVOIPFromCRM">
<wsdl:part element = "head:Header" name = "Header"/>
<wsdl:part element = "nsSchema:NotificaVOIPFromCRM" name = "body"/>
</wsdl:message>
<wsdl:message name="AckToCRM">
<wsdl:part element="head:Header" name="Header" />
<wsdl:part element="nsSchema:AckToCRM" name="body" />
</wsdl:message>
<wsdl:portType name = "CRMWirelineVOIPMgmtPortType">
<wsdl:operation name = "richiestaAttivazioneVOIP">
<wsdl:input message = "tns:NotificaVOIPFromCRM"/>
<wsdl:output message="tns:AckToCRM" />
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name = "CRMWirelineVOIPMgmtBinding" type = "tns:CRMWirelineVOIPMgmtPortType">
<soap:binding style = "document" transport = "http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name = "richiestaAttivazioneVOIP">
<soap:operation soapAction = "richiestaAttivazioneVOIP" style = "document"/>
<wsdl:input>
<soap:body parts = "body" use = "literal"/>
<soap:header message = "tns:NotificaVOIPFromCRM" part = "Header" use = "literal"/>
</wsdl:input>
<wsdl:output>
<soap:body parts="body" use="literal" />
<soap:header message="tns:AckToCRM" part="Header" use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name = "CRMWirelineVOIPMgmt-1.0">
<wsdl:port binding = "tns:CRMWirelineVOIPMgmtBinding" name = "CRMWirelineVOIPMgmt">
<soap:address location = "https://localhost:7502/wscrmb/CRMWirelineVOIPMgmt"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>

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,158 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:sm="http://dbcfx/SOA/CRMWirelineVOIPMgmt/2023-03-23"
targetNamespace="http://dbcfx/SOA/CRMWirelineVOIPMgmt/2023-03-23"
elementFormDefault="qualified"
version="1.1">
<xs:annotation>
<xs:documentation>Notifica online CRM-DBC RIENTRI VOIP</xs:documentation>
</xs:annotation>
<xs:element name="NotificaVOIPFromCRM">
<xs:complexType>
<xs:all>
<xs:element name="ID_ESIGENZA" type="sm:string15TYPE"/>
<xs:element name="TIPO_CHIAMATA" type="sm:tipoChiamataTYPE"/>
<xs:element name="TIPO_EVENTO" type="sm:tipoEventoTYPE"/>
<xs:element name="PIATTAFORMA_PROVENIENZA" type="sm:piattaformaProvTYPE"/>
<xs:element name="LISTA_DN" type="sm:listaDNTYPE"/>
<xs:element name="COW" type="sm:string3TYPE"/>
<xs:element name="NOMINATIVO_CLIENTE" type="sm:string100TYPE"/>
<xs:element name="CODICE_FISCALE_PARTIVA_IVA" type="sm:string16TYPE"/>
<xs:element name="RECAPITO_ALTERNATIVO" type="sm:recapitoAlternTYPE"/>
<xs:element name="DAC" type="sm:string10TYPE"/>
<xs:element name="RNB" type="sm:string18TYPE" minOccurs="0"/>
<xs:element name="DATA_OPERAZIONE" type="sm:string19TYPE"/>
<xs:element name="COD_MARCAGGIO_CLIENTE" type="sm:string2TYPE" minOccurs="0"/>
<xs:element name="COD_CANALE_VENDITA" type="sm:string5TYPE" minOccurs="0"/>
<xs:element name="ID_OL_FITTIZIO" type="sm:string15TYPE"/>
<xs:element name="FLAG_CONSIP" type="sm:flagYNTYPE"/>
<xs:element name="CODICE_PROGETTO" type="sm:string18TYPE" minOccurs="0"/>
<xs:element name="MODULO_CC" type="sm:string30TYPE" minOccurs="0"/>
<xs:element name="MODULO_PARTNER" type="sm:string30TYPE" minOccurs="0"/>
<xs:element name="PROTOCOLLO_DMS" type="sm:string300TYPE" minOccurs="0"/>
<xs:element name="DATA_CREAZIONE_SR" type="sm:string19TYPE" minOccurs="0"/>
<xs:element name="ID_PADRE" type="sm:string15TYPE" minOccurs="0"/>
<xs:element name="CAUSALE_KO_PDC" type="sm:string200TYPE" minOccurs="0"/>
<xs:element name="DATA_CHIUSURA_SR" type="sm:string19TYPE" minOccurs="0"/>
<xs:element name="RN" type="sm:string15TYPE" minOccurs="0"/>
<xs:element name="FLAG_VERTICALIZZATO" type="sm:flagYNTYPE" minOccurs="0"/>
</xs:all>
</xs:complexType>
</xs:element>
<xs:complexType name="listaDNTYPE">
<xs:sequence>
<xs:element name="DN" maxOccurs="100">
<xs:complexType>
<xs:attribute name="NUM_TEL" type="sm:string12TYPE" use="required"/>
<xs:attribute name="CLASSIFICAZIONE" type="sm:classificazioneTYPE" use="required"/>
<xs:attribute name="DONOR" type="sm:string3TYPE" />
<xs:attribute name="PRIMARIO" type="sm:string12TYPE" />
<xs:attribute name="RADICALE" type="sm:string12TYPE" />
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:element name="AckToCRM">
<xs:complexType>
<xs:all>
<xs:element name="COD_RISPOSTA" type="sm:string3TYPE" />
<xs:element name="DESC_RISPOSTA" type="sm:string200TYPE" />
</xs:all>
</xs:complexType>
</xs:element>
<xs:simpleType name="classificazioneTYPE">
<xs:restriction base="xs:string">
<xs:pattern value="XA|XB|XC|XD|XE|XF"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="tipoChiamataTYPE">
<xs:restriction base="xs:string">
<xs:pattern value="VOIP35|VOIP103"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="tipoEventoTYPE">
<xs:restriction base="xs:string">
<xs:pattern value="RIENTRO|CHIUSURA|CLONATOXTOOL|RIMODULAZIONE_DAC"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="piattaformaProvTYPE">
<xs:restriction base="xs:string">
<xs:pattern value="B"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string15TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="15"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string10TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="10"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string100TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="100"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string16TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="16"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string2TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="2"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string19TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="19"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string12TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="12"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string3TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="3"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string5TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="5"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="recapitoAlternTYPE">
<xs:restriction base="xs:string">
<xs:pattern value="\d{1,20}"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string18TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="18"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="flagYNTYPE">
<xs:restriction base="xs:string">
<xs:pattern value="Y|N"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string30TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="30"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string200TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="200"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string300TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="300"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>