|
Revision 1921, 0.6 kB
(checked in by nahi, 1 year ago)
|
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
author date id revision
|
| Line | |
|---|
| 1 |
# WSDL4R - Base definitions. |
|---|
| 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 'xsd/qname' |
|---|
| 10 |
require 'soap/nestedexception' |
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
module WSDL |
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
Version = '0.0.2' |
|---|
| 17 |
|
|---|
| 18 |
Namespace = 'http://schemas.xmlsoap.org/wsdl/' |
|---|
| 19 |
SOAPBindingNamespace ='http://schemas.xmlsoap.org/wsdl/soap/' |
|---|
| 20 |
|
|---|
| 21 |
class Error < StandardError; include ::SOAP::NestedException; end |
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
end |
|---|