Fiscality maschera funziona fino all apertura del xmlx
This commit is contained in:
@@ -0,0 +1,153 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<wsdl:definitions
|
||||
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
|
||||
xmlns:sch="http://www.sanmarcoinformatica.it/quality/discovery-xc/webservice/xc-notifiche"
|
||||
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
|
||||
xmlns:tns="http://www.sanmarcoinformatica.it/quality/discovery-xc/webservice/xc-notifiche"
|
||||
targetNamespace="http://www.sanmarcoinformatica.it/quality/discovery-xc/webservice/xc-notifiche">
|
||||
<wsdl:types>
|
||||
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
||||
xmlns:wsi="http://ws-i.org/profiles/basic/1.1/xsd"
|
||||
targetNamespace="http://www.sanmarcoinformatica.it/quality/discovery-xc/webservice/xc-notifiche"
|
||||
version="1.0">
|
||||
|
||||
<!-- REQUEST -->
|
||||
<xsd:element name="getNotificheRequest">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>
|
||||
getNotificheRequest = richiesta delle notifiche di
|
||||
fiscality
|
||||
lastId = id per ricerca notifiche
|
||||
</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="IdFiscale" type="xsd:string"/>
|
||||
<xsd:element name="lastId" type="xsd:long"
|
||||
minOccurs="0" maxOccurs="1" />
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
|
||||
<!-- RESPONSE -->
|
||||
<xsd:element name="getNotificheResponse">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>
|
||||
notifiche = lista delle notifiche per fiscality
|
||||
Errore = ErrorCode dell'errore, se riscontrato
|
||||
</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="notifiche"
|
||||
type="tns:NotificaFiscality" minOccurs="0" maxOccurs="unbounded" />
|
||||
<xsd:element name="Errore" type="tns:ErrorCode"
|
||||
minOccurs="1" maxOccurs="1" />
|
||||
<xsd:element name="DescrizioneErrore"
|
||||
type="xsd:string" minOccurs="0" maxOccurs="1" />
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
|
||||
<xsd:complexType name="NotificaFiscality">
|
||||
<xsd:sequence>
|
||||
<xsd:element name="Id" type="xsd:long" />
|
||||
<xsd:element name="Messaggio" type="xsd:string" />
|
||||
<xsd:element name="Tipo" type="xsd:string" />
|
||||
</xsd:sequence>
|
||||
</xsd:complexType>
|
||||
|
||||
<xsd:simpleType name="ErrorCode">
|
||||
<xsd:restriction base="xsd:string">
|
||||
<xsd:enumeration value="E000">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>
|
||||
E000 = NESSUN ERRORE
|
||||
</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:enumeration>
|
||||
|
||||
<xsd:enumeration value="E010">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>
|
||||
E010 = AUTENTICAZIONE MANCANTE
|
||||
</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:enumeration>
|
||||
|
||||
<xsd:enumeration value="E011">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>
|
||||
E011 = AUTENTICAZIONE ERRATA
|
||||
</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:enumeration>
|
||||
|
||||
<xsd:enumeration value="E012">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>
|
||||
E012 = AZIENDA NON REGISTRATA
|
||||
</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:enumeration>
|
||||
|
||||
<xsd:enumeration value="E028">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>
|
||||
E028 = LISTA VUOTA
|
||||
</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:enumeration>
|
||||
|
||||
<xsd:enumeration value="E099">
|
||||
<xsd:annotation>
|
||||
<xsd:documentation>
|
||||
E099 = XC IN ERRORE
|
||||
</xsd:documentation>
|
||||
</xsd:annotation>
|
||||
</xsd:enumeration>
|
||||
</xsd:restriction>
|
||||
</xsd:simpleType>
|
||||
</xsd:schema>
|
||||
</wsdl:types>
|
||||
<wsdl:message name="getNotificheResponse">
|
||||
<wsdl:part element="tns:getNotificheResponse"
|
||||
name="getNotificheResponse">
|
||||
</wsdl:part>
|
||||
</wsdl:message>
|
||||
<wsdl:message name="getNotificheRequest">
|
||||
<wsdl:part element="tns:getNotificheRequest"
|
||||
name="getNotificheRequest">
|
||||
</wsdl:part>
|
||||
</wsdl:message>
|
||||
<wsdl:portType name="Notifiche">
|
||||
<wsdl:operation name="getNotifiche">
|
||||
<wsdl:input message="tns:getNotificheRequest"
|
||||
name="getNotificheRequest">
|
||||
</wsdl:input>
|
||||
<wsdl:output message="tns:getNotificheResponse"
|
||||
name="getNotificheResponse">
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
</wsdl:portType>
|
||||
<wsdl:binding name="NotificheSoap11" type="tns:Notifiche">
|
||||
<soap:binding style="document"
|
||||
transport="http://schemas.xmlsoap.org/soap/http" />
|
||||
<wsdl:operation name="getNotifiche">
|
||||
<soap:operation soapAction="" />
|
||||
<wsdl:input name="getNotificheRequest">
|
||||
<soap:body use="literal" />
|
||||
</wsdl:input>
|
||||
<wsdl:output name="getNotificheResponse">
|
||||
<soap:body use="literal" />
|
||||
</wsdl:output>
|
||||
</wsdl:operation>
|
||||
</wsdl:binding>
|
||||
<wsdl:service name="NotificheService">
|
||||
<wsdl:port binding="tns:NotificheSoap11"
|
||||
name="NotificheSoap11">
|
||||
<soap:address
|
||||
location="https://www.discoveryxc.it/xc-web/notifichews/1.1/" />
|
||||
</wsdl:port>
|
||||
</wsdl:service>
|
||||
</wsdl:definitions>
|
||||
Reference in New Issue
Block a user