|
Revision 1824, 1.1 kB
(checked in by nahi, 2 years ago)
|
- Copyright notice updated. add '2000-2007' uniformly.
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
author date id revision
|
| Line | |
|---|
| 1 |
# WSDL4R - WSDL SOAP body definition. |
|---|
| 2 |
# Copyright (C) 2000-2007 NAKAMURA, Hiroshi <nahi@ruby-lang.org>. |
|---|
| 3 |
|
|---|
| 4 |
# This program is copyrighted free software by NAKAMURA, Hiroshi. You can |
|---|
| 5 |
# redistribute it and/or modify it under the same terms of Ruby's license; |
|---|
| 6 |
# either the dual license version in 2003, or any later version. |
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
require 'wsdl/info' |
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
module WSDL |
|---|
| 13 |
module SOAP |
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
class HeaderFault < Info |
|---|
| 17 |
attr_reader :message # required |
|---|
| 18 |
attr_reader :part # required |
|---|
| 19 |
attr_reader :use # required |
|---|
| 20 |
attr_reader :encodingstyle |
|---|
| 21 |
attr_reader :namespace |
|---|
| 22 |
|
|---|
| 23 |
def initialize |
|---|
| 24 |
super |
|---|
| 25 |
@message = nil |
|---|
| 26 |
@part = nil |
|---|
| 27 |
@use = nil |
|---|
| 28 |
@encodingstyle = nil |
|---|
| 29 |
@namespace = nil |
|---|
| 30 |
end |
|---|
| 31 |
|
|---|
| 32 |
def parse_element(element) |
|---|
| 33 |
nil |
|---|
| 34 |
end |
|---|
| 35 |
|
|---|
| 36 |
def parse_attr(attr, value) |
|---|
| 37 |
case attr |
|---|
| 38 |
when MessageAttrName |
|---|
| 39 |
@message = value |
|---|
| 40 |
when PartAttrName |
|---|
| 41 |
@part = value.source |
|---|
| 42 |
when UseAttrName |
|---|
| 43 |
@use = value.source |
|---|
| 44 |
when EncodingStyleAttrName |
|---|
| 45 |
@encodingstyle = value.source |
|---|
| 46 |
when NamespaceAttrName |
|---|
| 47 |
@namespace = value.source |
|---|
| 48 |
else |
|---|
| 49 |
nil |
|---|
| 50 |
end |
|---|
| 51 |
end |
|---|
| 52 |
end |
|---|
| 53 |
|
|---|
| 54 |
|
|---|
| 55 |
end |
|---|
| 56 |
end |
|---|