Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Body ¶
type Body struct {
XMLName xml.Name `xml:"http://schemas.xmlsoap.org/soap/envelope/ Body"`
Fault *Fault `xml:",omitempty"`
Content interface{} `xml:",omitempty"`
}
Body implements soap body.
func (*Body) UnmarshalXML ¶
UnmarshalXML implements xml.Unmarshaler interface.
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client implements soap client.
type Envelope ¶
type Envelope struct {
XMLName xml.Name `xml:"http://schemas.xmlsoap.org/soap/envelope/ Envelope"`
Header *Header
Body Body
}
Envelope implements soap envelope.
type Fault ¶
type Fault struct {
XMLName xml.Name `xml:"http://schemas.xmlsoap.org/soap/envelope/ Fault"`
Code trimSpace `xml:"faultcode,omitempty"`
Text trimSpace `xml:"faultstring,omitempty"`
Actor trimSpace `xml:"faultactor,omitempty"`
Detail trimSpace `xml:"detail,omitempty"`
HTTPStatus int `xml:"-"`
}
Fault implements soap fault.
Click to show internal directories.
Click to hide internal directories.