Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var WSDLUndefinedError = errors.New("Server was unable to process request. --> Object reference not set to an instance of an object.")
Functions ¶
Types ¶
type GetInfoResponse ¶
type MNBArfolyamServiceType ¶
type MNBArfolyamServiceType interface {
GetInfoSoap(request *GetInfo) (*GetInfoResponse, error)
GetInfoSoapContext(ctx context.Context, request *GetInfo) (*GetInfoResponse, error)
}
func NewMNBArfolyamServiceType ¶
func NewMNBArfolyamServiceType(client *soap.Client) MNBArfolyamServiceType
type ResponseStatus ¶
type SOAPBodyRequest ¶
type SOAPBodyRequest struct {
XMLName xml.Name `xml:"http://schemas.xmlsoap.org/soap/envelope/ Body"`
GetInfo *GetInfo `xml:,omitempty`
}
func (*SOAPBodyRequest) GetInfoFunc ¶
func (service *SOAPBodyRequest) GetInfoFunc(request *GetInfo) (*GetInfoResponse, error)
type SOAPBodyResponse ¶
type SOAPBodyResponse struct {
XMLName xml.Name `xml:"soap:Body"`
Fault *Fault `xml:",omitempty"`
GetInfo *GetInfoResponse `xml:",omitempty"`
}
type SOAPEnvelopeRequest ¶
type SOAPEnvelopeRequest struct {
XMLName xml.Name `xml:"http://schemas.xmlsoap.org/soap/envelope/ Envelope"`
Body SOAPBodyRequest
}
type SOAPEnvelopeResponse ¶
type SOAPEnvelopeResponse struct {
XMLName xml.Name `xml:"soap:Envelope"`
PrefixSoap string `xml:"xmlns:soap,attr"`
PrefixXsi string `xml:"xmlns:xsi,attr"`
PrefixXsd string `xml:"xmlns:xsd,attr"`
Body SOAPBodyResponse
}
func NewSOAPEnvelopResponse ¶
func NewSOAPEnvelopResponse() *SOAPEnvelopeResponse
Click to show internal directories.
Click to hide internal directories.