Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 3.15.195.46
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby18 /
lib64 /
ruby /
1.8 /
wsdl /
Delete
Unzip
Name
Size
Permission
Date
Action
soap
[ DIR ]
drwxr-xr-x
2024-03-03 22:48
xmlSchema
[ DIR ]
drwxr-xr-x
2024-03-03 22:48
binding.rb
1.21
KB
-rw-r--r--
2007-02-12 23:01
data.rb
2.3
KB
-rw-r--r--
2007-02-12 23:01
definitions.rb
5.21
KB
-rw-r--r--
2007-02-12 23:01
documentation.rb
577
B
-rw-r--r--
2007-02-12 23:01
import.rb
1.67
KB
-rw-r--r--
2007-02-12 23:01
importer.rb
825
B
-rw-r--r--
2007-02-12 23:01
info.rb
816
B
-rw-r--r--
2007-02-12 23:01
message.rb
936
B
-rw-r--r--
2007-02-12 23:01
operation.rb
2.55
KB
-rw-r--r--
2007-02-12 23:01
operationBinding.rb
1.95
KB
-rw-r--r--
2007-02-12 23:01
param.rb
1.65
KB
-rw-r--r--
2007-02-12 23:01
parser.rb
3.89
KB
-rw-r--r--
2007-02-12 23:01
part.rb
924
B
-rw-r--r--
2007-02-12 23:01
port.rb
1.6
KB
-rw-r--r--
2007-02-12 23:01
portType.rb
1.39
KB
-rw-r--r--
2007-02-12 23:01
service.rb
1.09
KB
-rw-r--r--
2007-02-12 23:01
types.rb
728
B
-rw-r--r--
2007-02-12 23:01
wsdl.rb
525
B
-rw-r--r--
2007-02-12 23:01
Save
Rename
# WSDL4R - WSDL import definition. # Copyright (C) 2002, 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>. # This program is copyrighted free software by NAKAMURA, Hiroshi. You can # redistribute it and/or modify it under the same terms of Ruby's license; # either the dual license version in 2003, or any later version. require 'wsdl/info' require 'wsdl/importer' module WSDL class Import < Info attr_reader :namespace attr_reader :location attr_reader :content def initialize super @namespace = nil @location = nil @content = nil @web_client = nil end def parse_element(element) case element when DocumentationName o = Documentation.new o else nil end end def parse_attr(attr, value) case attr when NamespaceAttrName @namespace = value.source if @content @content.targetnamespace = @namespace end @namespace when LocationAttrName @location = URI.parse(value.source) if @location.relative? and !parent.location.nil? and !parent.location.relative? @location = parent.location + @location end if root.importedschema.key?(@location) @content = root.importedschema[@location] else root.importedschema[@location] = nil # placeholder @content = import(@location) if @content.is_a?(Definitions) @content.root = root if @namespace @content.targetnamespace = @namespace end end root.importedschema[@location] = @content end @location else nil end end private def import(location) Importer.import(location, root) end end end