| POST | /HolePortalZertifikatEigenschaften | A synchronous service to get the properties of a specified portal certificate. |
|---|
Imports System
Imports System.IO
Imports System.Collections
Imports System.Collections.Generic
Imports System.Runtime.Serialization
Imports ServiceStack
Imports ServiceStack.DataAnnotations
Imports PwC.xEric.Core.Services.Contracts.Requests
Imports PwC.xEric.Core.Domain.Concretes.Certificates
Imports PwC.DigitalHub.Utilities.Domain.IO.Contracts
Imports PwC.xEric.Core.Services.Contracts.Responses
Imports PwC.xEric.Core.Domain.Contracts.Enums
Imports PwC.xEric.Core.Domain.Concretes.Models
Namespace Global
Namespace PwC.DigitalHub.Utilities.Domain.IO.Contracts
'''<Summary>
'''Represents a base class for a file with raw data.
'''</Summary>
<Api(Description:="Represents a base class for a file with raw data.")>
Public Partial Class FileBase
'''<Summary>
'''The raw data content of the file in bytes.
'''</Summary>
<ApiMember(Description:="The raw data content of the file in bytes.", Name:="Content")>
Public Overridable Property Content As Byte()
End Class
End Namespace
Namespace PwC.xEric.Core.Domain.Concretes.Certificates
'''<Summary>
'''Represents a portal certificate that is protected by a password.
'''</Summary>
<Api(Description:="Represents a portal certificate that is protected by a password.")>
Public Partial Class PortalCertificate
Inherits FileBase
Implements ISecuredCertificate
'''<Summary>
'''The file name of the certificate.
'''</Summary>
<ApiMember(Description:="The file name of the certificate.")>
<StringLength(128)>
Public Overridable Property Name As String
'''<Summary>
'''The password to protect the certificate from unauthorized access.
'''</Summary>
<StringLength(255)>
<ApiMember(Description:="The password to protect the certificate from unauthorized access.")>
Public Overridable Property Pin As String Implements ISecuredCertificate.Pin
'''<Summary>
'''The description of the certificate.
'''</Summary>
<StringLength(Integer.MaxValue)>
<ApiMember(Description:="The description of the certificate.")>
Public Overridable Property Description As String
'''<Summary>
'''Tags that can be used to label or identify the certificate.
'''</Summary>
<ApiMember(Description:="Tags that can be used to label or identify the certificate.")>
Public Overridable Property Tags As List(Of String) = New List(Of String)
End Class
End Namespace
Namespace PwC.xEric.Core.Domain.Concretes.Models
'''<Summary>
'''Represents a list of properties for a specified certificate.
'''</Summary>
<Api(Description:="Represents a list of properties for a specified certificate.")>
Public Partial Class EricHoleZertifikatEigenschaften
'''<Summary>
'''The properties of the certificate used for signing. These are not available for client-side certificates.
'''</Summary>
<ApiMember(Description:="The properties of the certificate used for signing. These are not available for client-side certificates.")>
Public Overridable Property Signaturzertifikateigenschaften As Zertifikateigenschaften
'''<Summary>
'''The properties of certificates used for encryption.
'''</Summary>
<ApiMember(Description:="The properties of certificates used for encryption.")>
Public Overridable Property Verschluesselungszertifikateigenschaften As Zertifikateigenschaften
End Class
'''<Summary>
'''Represents a type of Identification characteristic. Identification marker that was specified when the certificate was generated. For portal certificates usually tax number or identification number.
'''</Summary>
Public Enum Identifikationsmerkmaltyp
Unbekannt
Steuernummer
Identifikationsnummer
BZStNummer
Bearbeiternummer
Clienterzeugt
End Enum
'''<Summary>
'''Represent issuer details of a certificate.
'''</Summary>
<Api(Description:="Represent issuer details of a certificate.")>
Public Partial Class Info
'''<Summary>
'''The name of the issuer detail.
'''</Summary>
<ApiMember(Description:="The name of the issuer detail.")>
Public Overridable Property Name As String
'''<Summary>
'''The value of the issuer detail.
'''</Summary>
<ApiMember(Description:="The value of the issuer detail.")>
Public Overridable Property Wert As String
End Class
'''<Summary>
'''Represents an issuer of certificates.
'''</Summary>
<Api(Description:="Represents an issuer of certificates.")>
Public Partial Class Issuer
'''<Summary>
'''Details about the issuer of certificates.
'''</Summary>
<ApiMember(Description:="Details about the issuer of certificates.")>
Public Overridable Property Infos As List(Of Info) = New List(Of Info)
End Class
'''<Summary>
'''Represents a type of registrar. Contains informatiom on the type of person or organization, for which a certificate is issued. Often 'Person' or 'Organisation'.
'''</Summary>
Public Enum Registrierertyp
Unbekannt
Person
Organisation
Rechteverwalter
BZStInland
BZStAusland
BZStKevizz
End Enum
'''<Summary>
'''Represents the subject of the certificate.
'''</Summary>
<Api(Description:="Represents the subject of the certificate.")>
Public Partial Class Subjekt
'''<Summary>
'''Details about the subject of the certificate.
'''</Summary>
<ApiMember(Description:="Details about the subject of the certificate.")>
Public Overridable Property Infos As List(Of Info) = New List(Of Info)
End Class
'''<Summary>
'''Represents a type of token.Contains information about the type of token used to create a certificate.
'''</Summary>
Public Enum TokenTyp
Unbekannt
Software
Stick
Karte
Ausweis
End Enum
'''<Summary>
'''Represents a type of verification. Contains information on the verification of a person or organisation by an issuer of certificates.
'''</Summary>
Public Enum VerifikationsartTyp
Unbekannt
Postweg
Neuerpersonalausweis
End Enum
'''<Summary>
'''Represents the characteristics of a certificate.
'''</Summary>
<Api(Description:="Represents the characteristics of a certificate.")>
Public Partial Class Zertifikateigenschaften
'''<Summary>
'''The start validity date of the certificate.
'''</Summary>
<ApiMember(Description:="The start validity date of the certificate.")>
Public Overridable Property AusgestelltAm As Date?
'''<Summary>
'''The expiry date of the certificate.
'''</Summary>
<ApiMember(Description:="The expiry date of the certificate.")>
Public Overridable Property GueltigBis As Date?
'''<Summary>
'''The signing algorithm and Object Identifier (for more information on OIDs, please see 'http://www.oid-info.com/')
'''</Summary>
<ApiMember(Description:="The signing algorithm and Object Identifier (for more information on OIDs, please see 'http://www.oid-info.com/')")>
Public Overridable Property Signaturalgorithmus As String
'''<Summary>
'''The MD5-hash of the public key.
'''</Summary>
<ApiMember(Description:="The MD5-hash of the public key.")>
Public Overridable Property PublicKeyMD5 As String
'''<Summary>
'''The SHA1-hash of the public key.
'''</Summary>
<ApiMember(Description:="The SHA1-hash of the public key.")>
Public Overridable Property PublicKeySHA1 As String
'''<Summary>
'''The key length of the public key in units of bits. For example '2048 bits'
'''</Summary>
<ApiMember(Description:="The key length of the public key in units of bits. For example '2048 bits'")>
Public Overridable Property PublicKeyBitLength As Integer
'''<Summary>
'''The issuer of the certificate.
'''</Summary>
<ApiMember(Description:="The issuer of the certificate.")>
Public Overridable Property Issuer As Issuer
'''<Summary>
'''The subject of the certificate.
'''</Summary>
<ApiMember(Description:="The subject of the certificate.")>
Public Overridable Property Subjekt As Subjekt
'''<Summary>
'''The identification characteristics of the certificate.
'''</Summary>
<ApiMember(Description:="The identification characteristics of the certificate.")>
Public Overridable Property Identifikationsmerkmaltyp As Identifikationsmerkmaltyp
'''<Summary>
'''The type of registrar, to which the key is issued.
'''</Summary>
<ApiMember(Description:="The type of registrar, to which the key is issued.")>
Public Overridable Property Registrierertyp As Registrierertyp?
'''<Summary>
'''The type of verification conducted for the person or organisation, to which the certificate is issued.
'''</Summary>
<ApiMember(Description:="The type of verification conducted for the person or organisation, to which the certificate is issued.")>
Public Overridable Property Verifikationsart As VerifikationsartTyp?
'''<Summary>
'''The type of token used to create the certificate.
'''</Summary>
<ApiMember(Description:="The type of token used to create the certificate.")>
Public Overridable Property TokenTyp As TokenTyp
'''<Summary>
'''Is the certificate is a test certificate? True if it is a test certificate; otherwise false.
'''</Summary>
<ApiMember(Description:="Is the certificate is a test certificate? True if it is a test certificate; otherwise false.")>
Public Overridable Property Testzertifikat As Boolean?
End Class
End Namespace
Namespace PwC.xEric.Core.Domain.Contracts.Enums
'''<Summary>
'''Enumeration of ERiC API error codes.
'''</Summary>
Public Enum EricFehlerCode
ERIC_OK = 0
ERIC_GLOBAL_UNKNOWN = 610001001
ERIC_GLOBAL_PRUEF_FEHLER = 610001002
ERIC_GLOBAL_HINWEISE = 610001003
ERIC_GLOBAL_FEHLERMELDUNG_NICHT_VORHANDEN = 610001007
ERIC_GLOBAL_KEINE_DATEN_VORHANDEN = 610001008
ERIC_GLOBAL_NICHT_GENUEGEND_ARBEITSSPEICHER = 610001013
ERIC_GLOBAL_DATEI_NICHT_GEFUNDEN = 610001014
ERIC_GLOBAL_HERSTELLER_ID_NICHT_ERLAUBT = 610001016
ERIC_GLOBAL_ILLEGAL_STATE = 610001017
ERIC_GLOBAL_FUNKTION_NICHT_ERLAUBT = 610001018
ERIC_GLOBAL_ECHTFALL_NICHT_ERLAUBT = 610001019
ERIC_GLOBAL_NO_VERSAND_IN_BETA_VERSION = 610001020
ERIC_GLOBAL_TESTMERKER_UNGUELTIG = 610001025
ERIC_GLOBAL_DATENSATZ_ZU_GROSS = 610001026
ERIC_GLOBAL_VERSCHLUESSELUNGS_PARAMETER_NICHT_ERLAUBT = 610001027
ERIC_GLOBAL_NUR_PORTALZERTIFIKAT_ERLAUBT = 610001028
ERIC_GLOBAL_ERROR_XML_CREATE = 610001030
ERIC_GLOBAL_TEXTPUFFERGROESSE_FIX = 610001031
ERIC_GLOBAL_INTERNER_FEHLER = 610001032
ERIC_GLOBAL_ARITHMETIKFEHLER = 610001033
ERIC_GLOBAL_STEUERNUMMER_UNGUELTIG = 610001034
ERIC_GLOBAL_STEUERNUMMER_FALSCHE_LAENGE = 610001035
ERIC_GLOBAL_STEUERNUMMER_NICHT_NUMERISCH = 610001036
ERIC_GLOBAL_LANDESNUMMER_UNBEKANNT = 610001037
ERIC_GLOBAL_BUFANR_UNBEKANNT = 610001038
ERIC_GLOBAL_LANDESNUMMER_BUFANR = 610001039
ERIC_GLOBAL_PUFFER_ZUGRIFFSKONFLIKT = 610001040
ERIC_GLOBAL_PUFFER_UEBERLAUF = 610001041
ERIC_GLOBAL_DATENARTVERSION_UNBEKANNT = 610001042
ERIC_GLOBAL_DATENARTVERSION_XML_INKONSISTENT = 610001044
ERIC_GLOBAL_COMMONDATA_NICHT_VERFUEGBAR = 610001045
ERIC_GLOBAL_LOG_EXCEPTION = 610001046
ERIC_GLOBAL_TRANSPORTSCHLUESSEL_NICHT_ERLAUBT = 610001047
ERIC_GLOBAL_OEFFENTLICHER_SCHLUESSEL_UNGUELTIG = 610001048
ERIC_GLOBAL_TRANSPORTSCHLUESSEL_TYP_FALSCH = 610001049
ERIC_GLOBAL_PUFFER_UNGLEICHER_INSTANZ = 610001050
ERIC_GLOBAL_VORSATZ_UNGUELTIG = 610001051
ERIC_GLOBAL_DATEIZUGRIFF_VERWEIGERT = 610001053
ERIC_GLOBAL_UNGUELTIGE_INSTANZ = 610001080
ERIC_GLOBAL_NICHT_INITIALISIERT = 610001081
ERIC_GLOBAL_MEHRFACHE_INITIALISIERUNG = 610001082
ERIC_GLOBAL_FEHLER_INITIALISIERUNG = 610001083
ERIC_GLOBAL_UNKNOWN_PARAMETER_ERROR = 610001102
ERIC_GLOBAL_CHECK_CORRUPTED_NDS = 610001108
ERIC_GLOBAL_VERSCHLUESSELUNGS_PARAMETER_NICHT_ANGEGEBEN = 610001206
ERIC_GLOBAL_SEND_FLAG_MEHR_ALS_EINES = 610001209
ERIC_GLOBAL_UNGUELTIGE_FLAG_KOMBINATION = 610001218
ERIC_GLOBAL_UNGUELTIGER_PARAMETER = 610001222
ERIC_GLOBAL_DRUCK_FUER_VERFAHREN_NICHT_ERLAUBT = 610001224
ERIC_GLOBAL_VERSAND_ART_NICHT_UNTERSTUETZT = 610001225
ERIC_GLOBAL_UNGUELTIGE_PARAMETER_VERSION = 610001226
ERIC_GLOBAL_TRANSFERHANDLE = 610001227
ERIC_GLOBAL_PLUGININITIALISIERUNG = 610001228
ERIC_GLOBAL_INKOMPATIBLE_VERSIONEN = 610001229
ERIC_GLOBAL_VERSCHLUESSELUNGSVERFAHREN_NICHT_UNTERSTUETZT = 610001230
ERIC_GLOBAL_MEHRFACHAUFRUFE_NICHT_UNTERSTUETZT = 610001231
ERIC_GLOBAL_UTI_COUNTRY_NOT_SUPPORTED = 610001404
ERIC_GLOBAL_IBAN_FORMALER_FEHLER = 610001501
ERIC_GLOBAL_IBAN_LAENDERCODE_FEHLER = 610001502
ERIC_GLOBAL_IBAN_LANDESFORMAT_FEHLER = 610001503
ERIC_GLOBAL_IBAN_PRUEFZIFFER_FEHLER = 610001504
ERIC_GLOBAL_BIC_FORMALER_FEHLER = 610001510
ERIC_GLOBAL_BIC_LAENDERCODE_FEHLER = 610001511
ERIC_GLOBAL_ZULASSUNGSNUMMER_ZU_LANG = 610001519
ERIC_GLOBAL_IDNUMMER_UNGUELTIG = 610001525
ERIC_GLOBAL_NULL_PARAMETER = 610001526
ERIC_GLOBAL_EWAZ_UNGUELTIG = 610001527
ERIC_GLOBAL_EWAZ_LANDESKUERZEL_UNBEKANNT = 610001528
ERIC_GLOBAL_UPDATE_NECESSARY = 610001851
ERIC_GLOBAL_EINSTELLUNG_NAME_UNGUELTIG = 610001860
ERIC_GLOBAL_EINSTELLUNG_WERT_UNGUELTIG = 610001861
ERIC_GLOBAL_ERR_DEKODIEREN = 610001862
ERIC_GLOBAL_FUNKTION_NICHT_UNTERSTUETZT = 610001863
ERIC_GLOBAL_NUTZDATENTICKETS_NICHT_EINDEUTIG = 610001865
ERIC_GLOBAL_NUTZDATENHEADERVERSIONEN_UNEINHEITLICH = 610001866
ERIC_GLOBAL_BUNDESLAENDER_UNEINHEITLICH = 610001867
ERIC_GLOBAL_ZEITRAEUME_UNEINHEITLICH = 610001868
ERIC_GLOBAL_NUTZDATENHEADER_EMPFAENGER_NICHT_KORREKT = 610001869
ERIC_TRANSFER_COM_ERROR = 610101200
ERIC_TRANSFER_VORGANG_NICHT_UNTERSTUETZT = 610101201
ERIC_TRANSFER_ERR_XML_THEADER = 610101210
ERIC_TRANSFER_ERR_PARAM = 610101251
ERIC_TRANSFER_ERR_DATENTEILENDNOTFOUND = 610101253
ERIC_TRANSFER_ERR_BEGINDATENLIEFERANT = 610101255
ERIC_TRANSFER_ERR_ENDDATENLIEFERANT = 610101256
ERIC_TRANSFER_ERR_BEGINTRANSPORTSCHLUESSEL = 610101257
ERIC_TRANSFER_ERR_ENDTRANSPORTSCHLUESSEL = 610101258
ERIC_TRANSFER_ERR_BEGINDATENGROESSE = 610101259
ERIC_TRANSFER_ERR_ENDDATENGROESSE = 610101260
ERIC_TRANSFER_ERR_SEND = 610101271
ERIC_TRANSFER_ERR_NOTENCRYPTED = 610101274
ERIC_TRANSFER_ERR_PROXYCONNECT = 610101276
ERIC_TRANSFER_ERR_CONNECTSERVER = 610101278
ERIC_TRANSFER_ERR_NORESPONSE = 610101279
ERIC_TRANSFER_ERR_PROXYAUTH = 610101280
ERIC_TRANSFER_ERR_SEND_INIT = 610101282
ERIC_TRANSFER_ERR_TIMEOUT = 610101283
ERIC_TRANSFER_ERR_PROXYPORT_INVALID = 610101284
ERIC_TRANSFER_ERR_OTHER = 610101291
ERIC_TRANSFER_ERR_XML_NHEADER = 610101292
ERIC_TRANSFER_ERR_XML_ENCODING = 610101293
ERIC_TRANSFER_ERR_ENDSIGUSER = 610101294
ERIC_TRANSFER_ERR_XMLTAG_NICHT_GEFUNDEN = 610101295
ERIC_TRANSFER_ERR_DATENTEILFEHLER = 610101297
ERIC_TRANSFER_EID_ZERTIFIKATFEHLER = 610101500
ERIC_TRANSFER_EID_KEINKONTO = 610101510
ERIC_TRANSFER_EID_IDNRNICHTEINDEUTIG = 610101511
ERIC_TRANSFER_EID_SERVERFEHLER = 610101512
ERIC_TRANSFER_EID_KEINCLIENT = 610101520
ERIC_TRANSFER_EID_CLIENTFEHLER = 610101521
ERIC_TRANSFER_EID_FEHLENDEFELDER = 610101522
ERIC_TRANSFER_EID_IDENTIFIKATIONABGEBROCHEN = 610101523
ERIC_TRANSFER_EID_NPABLOCKIERT = 610101524
ERIC_CRYPT_ERROR_CREATE_KEY = 610201016
ERIC_CRYPT_E_INVALID_HANDLE = 610201101
ERIC_CRYPT_E_MAX_SESSION = 610201102
ERIC_CRYPT_E_BUSY = 610201103
ERIC_CRYPT_E_OUT_OF_MEM = 610201104
ERIC_CRYPT_E_PSE_PATH = 610201105
ERIC_CRYPT_E_PIN_WRONG = 610201106
ERIC_CRYPT_E_PIN_LOCKED = 610201107
ERIC_CRYPT_E_P7_READ = 610201108
ERIC_CRYPT_E_P7_DECODE = 610201109
ERIC_CRYPT_E_P7_RECIPIENT = 610201110
ERIC_CRYPT_E_P12_READ = 610201111
ERIC_CRYPT_E_P12_DECODE = 610201112
ERIC_CRYPT_E_P12_SIG_KEY = 610201113
ERIC_CRYPT_E_P12_ENC_KEY = 610201114
ERIC_CRYPT_E_P11_SIG_KEY = 610201115
ERIC_CRYPT_E_P11_ENC_KEY = 610201116
ERIC_CRYPT_E_XML_PARSE = 610201117
ERIC_CRYPT_E_XML_SIG_ADD = 610201118
ERIC_CRYPT_E_XML_SIG_TAG = 610201119
ERIC_CRYPT_E_XML_SIG_SIGN = 610201120
ERIC_CRYPT_E_ENCODE_UNKNOWN = 610201121
ERIC_CRYPT_E_ENCODE_ERROR = 610201122
ERIC_CRYPT_E_XML_INIT = 610201123
ERIC_CRYPT_E_ENCRYPT = 610201124
ERIC_CRYPT_E_DECRYPT = 610201125
ERIC_CRYPT_E_P11_SLOT_EMPTY = 610201126
ERIC_CRYPT_E_NO_SIG_ENC_KEY = 610201127
ERIC_CRYPT_E_LOAD_DLL = 610201128
ERIC_CRYPT_E_NO_SERVICE = 610201129
ERIC_CRYPT_E_ESICL_EXCEPTION = 610201130
ERIC_CRYPT_E_ESIGNER_NICHT_GELADEN = 610201140
ERIC_CRYPT_E_INKOMPATIBLE_ESIGNER_VERSION = 610201141
ERIC_CRYPT_E_VERALTETE_ESIGNER_VERSION = 610201142
ERIC_CRYPT_E_TOKEN_TYPE_MISMATCH = 610201144
ERIC_CRYPT_E_P12_CREATE = 610201146
ERIC_CRYPT_E_VERIFY_CERT_CHAIN = 610201147
ERIC_CRYPT_E_P11_ENGINE_LOADED = 610201148
ERIC_CRYPT_E_USER_CANCEL = 610201149
ERIC_CRYPT_ZERTIFIKAT = 610201200
ERIC_CRYPT_SIGNATUR = 610201201
ERIC_CRYPT_NICHT_UNTERSTUETZTES_PSE_FORMAT = 610201203
ERIC_CRYPT_PIN_BENOETIGT = 610201205
ERIC_CRYPT_PIN_STAERKE_NICHT_AUSREICHEND = 610201206
ERIC_CRYPT_E_INTERN = 610201208
ERIC_CRYPT_ZERTIFIKATSPFAD_KEIN_VERZEICHNIS = 610201209
ERIC_CRYPT_ZERTIFIKATSDATEI_EXISTIERT_BEREITS = 610201210
ERIC_CRYPT_PIN_ENTHAELT_UNGUELTIGE_ZEICHEN = 610201211
ERIC_CRYPT_CORRUPTED = 610201213
ERIC_CRYPT_EIDKARTE_NICHT_UNTERSTUETZT = 610201214
ERIC_CRYPT_E_SC_SLOT_EMPTY = 610201215
ERIC_CRYPT_E_SC_NO_APPLET = 610201216
ERIC_CRYPT_E_SC_SESSION = 610201217
ERIC_CRYPT_E_P11_NO_SIG_CERT = 610201218
ERIC_CRYPT_E_P11_INIT_FAILED = 610201219
ERIC_CRYPT_E_P11_NO_ENC_CERT = 610201220
ERIC_CRYPT_E_P12_NO_SIG_CERT = 610201221
ERIC_CRYPT_E_P12_NO_ENC_CERT = 610201222
ERIC_CRYPT_E_SC_ENC_KEY = 610201223
ERIC_CRYPT_E_SC_NO_SIG_CERT = 610201224
ERIC_CRYPT_E_SC_NO_ENC_CERT = 610201225
ERIC_CRYPT_E_SC_INIT_FAILED = 610201226
ERIC_CRYPT_E_SC_SIG_KEY = 610201227
ERIC_CRYPT_E_DATA_NOT_INITIALIZED = 610201228
ERIC_CRYPT_E_ASN1_READ_BUFFER_TOO_SMALL = 610201229
ERIC_CRYPT_E_ASN1_READ_DATA_INCOMPLETE = 610201230
ERIC_CRYPT_E_ASN1_NO_ENVELOPED_DATA = 610201231
ERIC_CRYPT_E_ASN1_NO_CONTENT_DATA = 610201232
ERIC_IO_FEHLER = 610301001
ERIC_IO_DATEI_INKORREKT = 610301005
ERIC_IO_PARSE_FEHLER = 610301006
ERIC_IO_NDS_GENERIERUNG_FEHLGESCHLAGEN = 610301007
ERIC_IO_MASTERDATENSERVICE_NICHT_VERFUEGBAR = 610301010
ERIC_IO_STEUERZEICHEN_IM_NDS = 610301014
ERIC_IO_VERSIONSINFORMATIONEN_NICHT_GEFUNDEN = 610301031
ERIC_IO_FALSCHES_VERFAHREN = 610301104
ERIC_IO_READER_MEHRFACHE_STEUERFAELLE = 610301105
ERIC_IO_READER_UNERWARTETE_ELEMENTE = 610301106
ERIC_IO_READER_FORMALE_FEHLER = 610301107
ERIC_IO_READER_FALSCHES_ENCODING = 610301108
ERIC_IO_READER_MEHRFACHE_NUTZDATEN_ELEMENTE = 610301109
ERIC_IO_READER_MEHRFACHE_NUTZDATENBLOCK_ELEMENTE = 610301110
ERIC_IO_UNBEKANNTE_DATENART = 610301111
ERIC_IO_READER_UNTERSACHBEREICH_UNGUELTIG = 610301114
ERIC_IO_READER_ZU_VIELE_NUTZDATENBLOCK_ELEMENTE = 610301115
ERIC_IO_READER_STEUERZEICHEN_IM_TRANSFERHEADER = 610301150
ERIC_IO_READER_STEUERZEICHEN_IM_NUTZDATENHEADER = 610301151
ERIC_IO_READER_STEUERZEICHEN_IN_DEN_NUTZDATEN = 610301152
ERIC_IO_READER_RABE_FEHLER = 610301170
ERIC_IO_READER_KEINE_RABEID = 610301171
ERIC_IO_READER_RABEID_UNGUELTIG = 610301172
ERIC_IO_READER_RABE_VERIFIKATIONSID_UNGUELTIG = 610301173
ERIC_IO_READER_RABE_REFERENZID_UNGUELTIG = 610301174
ERIC_IO_READER_RABE_REFERENZID_NICHT_ERLAUBT = 610301175
ERIC_IO_READER_RABE_REFERENZIDS_NICHT_EINDEUTIG = 610301176
ERIC_IO_READER_ZU_VIELE_ANHAENGE = 610301190
ERIC_IO_READER_ANHANG_ZU_GROSS = 610301191
ERIC_IO_READER_ANHAENGE_ZU_GROSS = 610301192
ERIC_IO_READER_ANHANG_ZU_KLEIN = 610301193
ERIC_IO_READER_SCHEMA_VALIDIERUNGSFEHLER = 610301200
ERIC_IO_READER_UNBEKANNTE_XML_ENTITY = 610301201
ERIC_IO_TESTHERSTELLERID_GESPERRT = 610301202
ERIC_IO_DATENTEILNOTFOUND = 610301252
ERIC_IO_DATENTEILENDNOTFOUND = 610301253
ERIC_IO_UEBERGABEPARAMETER_FEHLERHAFT = 610301300
ERIC_IO_UNGUELTIGE_UTF8_SEQUENZ = 610301400
ERIC_IO_UNGUELTIGE_ZEICHEN_IN_PARAMETER = 610301401
ERIC_PRINT_INTERNER_FEHLER = 610501001
ERIC_PRINT_DRUCKVORLAGE_NICHT_GEFUNDEN = 610501002
ERIC_PRINT_UNGUELTIGER_DATEI_PFAD = 610501004
ERIC_PRINT_INITIALISIERUNG_FEHLERHAFT = 610501007
ERIC_PRINT_AUSGABEZIEL_UNBEKANNT = 610501008
ERIC_PRINT_ABBRUCH_DRUCKVORBEREITUNG = 610501009
ERIC_PRINT_ABBRUCH_GENERIERUNG = 610501010
ERIC_PRINT_STEUERFALL_NICHT_UNTERSTUETZT = 610501011
ERIC_PRINT_FUSSTEXT_ZU_LANG = 610501012
ERIC_PRINT_PDFCALLBACK = 610501015
End Enum
End Namespace
Namespace PwC.xEric.Core.Services.Contracts.Requests
'''<Summary>
'''A synchronous service to get the properties of a specified portal certificate.
'''</Summary>
<Api(Description:="A synchronous service to get the properties of a specified portal certificate.")>
Public Partial Class HolePortalZertifikatEigenschaften
Inherits HolePortalZertifikatEigenschaftenBase
End Class
'''<Summary>
'''A base service to get the properties of a specified portal certificate.
'''</Summary>
<Api(Description:="A base service to get the properties of a specified portal certificate.")>
Public Partial Class HolePortalZertifikatEigenschaftenBase
Implements IPost
'''<Summary>
'''The portal certificate.
'''</Summary>
<ApiMember(Description:="The portal certificate.", Name:="Zertifikat")>
Public Overridable Property Zertifikat As PortalCertificate
End Class
End Namespace
Namespace PwC.xEric.Core.Services.Contracts.Responses
'''<Summary>
'''Represent a base response that encapsulate any ERiC API function return value.
'''</Summary>
<Api(Description:="Represent a base response that encapsulate any ERiC API function return value.")>
Public Partial Class EricFehlerCodeResponse
Inherits ServiceReponseBase
'''<Summary>
'''The status code that the ERiC API function returns.
'''</Summary>
<ApiMember(Description:="The status code that the ERiC API function returns.")>
Public Overridable Property StatusCode As EricFehlerCode
'''<Summary>
'''The status message that the ERiC API function returns.
'''</Summary>
<ApiMember(Description:="The status message that the ERiC API function returns.")>
Public Overridable Property StatusText As String
End Class
'''<Summary>
'''Represents a type that encapsulates the return values of the ERiC API function, which retrieves the details of a certificate.
'''</Summary>
<Api(Description:="Represents a type that encapsulates the return values of the ERiC API function, which retrieves the details of a certificate.")>
Public Partial Class HoleZertifikatEigenschaftenResponse
Inherits EricFehlerCodeResponse
'''<Summary>
'''The list of test fiscal authoririties.
'''</Summary>
<ApiMember(Description:="The list of test fiscal authoririties.")>
Public Overridable Property Rueckgabe As EricHoleZertifikatEigenschaften
End Class
'''<Summary>
'''Specifies a service response from an ERiC service operation.
'''</Summary>
<Api(Description:="Specifies a service response from an ERiC service operation.")>
Public Partial Class ServiceReponseBase
Implements IHasIndex
'''<Summary>
'''The unique identifier of the response.
'''</Summary>
<ApiMember(Description:="The unique identifier of the response.")>
Public Overridable Property Id As String
'''<Summary>
'''The position of the response element in an indexed collection.
'''</Summary>
<ApiMember(Description:="The position of the response element in an indexed collection.")>
Public Overridable Property Index As Integer Implements IHasIndex.Index
'''<Summary>
'''Metadata that contains structured error information on the service response.
'''</Summary>
<ApiMember(Description:="Metadata that contains structured error information on the service response.")>
Public Overridable Property ResponseStatus As ResponseStatus
End Class
End Namespace
End Namespace
VB.NET HolePortalZertifikatEigenschaften DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /HolePortalZertifikatEigenschaften HTTP/1.1
Host: taxfiling.staging.pwc.de
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length
{
zertifikat:
{
name: String,
pin: String,
description: String,
tags:
[
String
],
content: AA==
}
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length
{
rueckgabe:
{
signaturzertifikateigenschaften:
{
ausgestelltAm: 0001-01-01,
gueltigBis: 0001-01-01,
signaturalgorithmus: String,
publicKeyMD5: String,
publicKeySHA1: String,
publicKeyBitLength: 0,
issuer:
{
infos:
[
{
name: String,
wert: String
}
]
},
subjekt:
{
infos:
[
{
name: String,
wert: String
}
]
},
identifikationsmerkmaltyp: Unbekannt,
registrierertyp: Unbekannt,
verifikationsart: Unbekannt,
tokenTyp: Unbekannt,
testzertifikat: False
},
verschluesselungszertifikateigenschaften:
{
ausgestelltAm: 0001-01-01,
gueltigBis: 0001-01-01,
signaturalgorithmus: String,
publicKeyMD5: String,
publicKeySHA1: String,
publicKeyBitLength: 0,
issuer:
{
infos:
[
{
name: String,
wert: String
}
]
},
subjekt:
{
infos:
[
{
name: String,
wert: String
}
]
},
identifikationsmerkmaltyp: Unbekannt,
registrierertyp: Unbekannt,
verifikationsart: Unbekannt,
tokenTyp: Unbekannt,
testzertifikat: False
}
},
statusCode: ERIC_OK,
statusText: String,
id: String,
index: 0,
responseStatus:
{
errorCode: String,
message: String,
stackTrace: String,
errors:
[
{
errorCode: String,
fieldName: String,
message: String,
meta:
{
String: String
}
}
],
meta:
{
String: String
}
}
}