First Commit - Source Code from Reply

This commit is contained in:
vincenzofariello
2024-05-13 12:54:14 +02:00
parent 73e32a5020
commit a15aee1f08
11184 changed files with 1065913 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- edited with XMLSpy v2009 sp1 (http://www.altova.com) by VTSvil (ValueTeam) -->
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://new.webservice.namespace" targetNamespace="http://new.webservice.namespace">
<wsdl:import location="NotificaDbc.xsd"/>
<wsdl:types>
<xs:schema targetNamespace="http://new.webservice.namespace" elementFormDefault="qualified"/>
</wsdl:types>
<wsdl:message name="NotificaRequest">
<wsdl:part name="parameter" element="NotificaFromDbc"/>
</wsdl:message>
<wsdl:message name="NewMessageResponse">
<wsdl:part name="parameter" type="xs:string"/>
</wsdl:message>
<wsdl:portType name="ServizioNotificaDbc">
<wsdl:operation name="NotificaDbc">
<wsdl:input message="tns:NotificaRequest"/>
<wsdl:output message="tns:NewMessageResponse"/>
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="NotificaDbcBinding" type="tns:ServizioNotificaDbc">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<wsdl:operation name="NotificaDbc">
<soap:operation soapAction="urn:#NotificaDbc"/>
<wsdl:input>
<soap:body use="literal"/>
</wsdl:input>
<wsdl:output>
<soap:body use="literal"/>
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="NotificaDbc">
<wsdl:port name="NotificaDbcPort" binding="tns:NotificaDbcBinding">
<soap:address location="https://localhost:7002"/>
</wsdl:port>
</wsdl:service>
</wsdl:definitions>

View File

@@ -0,0 +1,54 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:annotation>
<xs:documentation>Notifica cambio operatore DBC->DBCFX</xs:documentation>
</xs:annotation>
<xs:element name="NotificaFromDbc">
<xs:complexType>
<xs:sequence>
<xs:element name="ID_RICHIESTA" type="string23TYPE"/>
<xs:element name="DATA_NOTIFICA" type="string19TYPE"/>
<xs:element name="PROCESSO" type="processoDBCTYPE"/>
<xs:element name="MSISDN" type="string15TYPE"/>
<xs:element name="DCO" type="string10TYPE"/>
<xs:element name="COD_RECIPIENT" type="string4TYPE" />
<xs:element name="RGN_RECIPIENT" type="string3TYPE"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:simpleType name="processoDBCTYPE">
<xs:restriction base="xs:string">
<xs:pattern value="D|H|R|O|P|K|C"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string23TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="23"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string19TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="19"/>
</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="15"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string4TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="4"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="string3TYPE">
<xs:restriction base="xs:string">
<xs:maxLength value="3"/>
</xs:restriction>
</xs:simpleType>
</xs:schema>