sirius-client-web 2013.4.1.0 → 2013.4.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +31 -1
- data/lib/sirius/web.rb +9 -6
- data/lib/sirius/web/classes/form.rb +3 -4
- data/lib/sirius/web/classes/frame.rb +10 -11
- data/lib/sirius/web/classes/page.rb +17 -18
- data/lib/sirius/web/classes/web_button.rb +7 -10
- data/lib/sirius/web/classes/web_checkbox.rb +4 -5
- data/lib/sirius/web/classes/web_control.rb +20 -21
- data/lib/sirius/web/classes/web_edit.rb +8 -9
- data/lib/sirius/web/classes/web_popup_list.rb +34 -35
- data/lib/sirius/web/classes/web_radio_button.rb +7 -8
- data/lib/sirius/web/core.rb +20 -11
- data/lib/sirius/web/core/WebCoreService.rb +75 -41
- data/lib/sirius/web/core/WebCoreServiceClient.rb +1 -1
- data/lib/sirius/web/core/WebCoreServiceDriver.rb +61 -59
- data/lib/sirius/web/core/WebCoreServiceMappingRegistry.rb +2 -1
- data/lib/sirius/web/core/select/WebSelectService.rb +188 -120
- data/lib/sirius/web/core/select/WebSelectServiceClient.rb +4 -4
- data/lib/sirius/web/core/select/WebSelectServiceDriver.rb +94 -95
- data/lib/sirius/web/core/select/WebSelectServiceMappingRegistry.rb +582 -585
- metadata +2 -2
data/lib/sirius/web/core.rb
CHANGED
@@ -1,29 +1,38 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
require 'sirius/web/core/WebCoreServiceDriver.rb'
|
3
|
+
require 'sirius/web/core/select/WebSelectServiceDriver.rb'
|
4
|
+
|
1
5
|
module Sirius
|
2
6
|
module Client
|
3
|
-
module Web
|
7
|
+
module Web
|
4
8
|
module Core
|
5
9
|
class Core
|
6
10
|
attr_accessor :core_client
|
7
11
|
attr_accessor :select_client
|
8
|
-
|
9
|
-
def initialize(host=
|
12
|
+
|
13
|
+
def initialize(host = 'localhost', port = '21212')
|
10
14
|
@core_client = WebCore.new("http://#{host}:#{port}")
|
11
|
-
@select_client =
|
15
|
+
@select_client =
|
16
|
+
Sirius::
|
17
|
+
Client::
|
18
|
+
Web::
|
19
|
+
Core::
|
20
|
+
Select::
|
21
|
+
WebSelect.new("http://#{host}:#{port}")
|
12
22
|
end
|
13
|
-
|
14
|
-
def method_missing?(name
|
23
|
+
|
24
|
+
def method_missing?(name, *args)
|
15
25
|
if @core_client.method_defined? name
|
16
26
|
return @core_client.method(name).call(args)
|
17
|
-
end
|
27
|
+
end
|
18
28
|
if @select_client.method_defined? name
|
19
29
|
return @select_client.method(name).call(args)
|
20
30
|
end
|
21
|
-
|
31
|
+
|
22
32
|
raise "No method #{name} defined for Core class"
|
23
33
|
end
|
24
34
|
end
|
25
35
|
end
|
26
|
-
end
|
36
|
+
end
|
27
37
|
end
|
28
|
-
end
|
29
|
-
|
38
|
+
end
|
@@ -1,3 +1,4 @@
|
|
1
|
+
# encoding: UTF-8
|
1
2
|
require 'xsd/qname'
|
2
3
|
|
3
4
|
module Sirius; module Client; module Web; module Core
|
@@ -10,8 +11,9 @@ class SelectWindow
|
|
10
11
|
attr_accessor :arg0
|
11
12
|
attr_accessor :arg1
|
12
13
|
|
13
|
-
def initialize(arg0 = nil, arg1 = nil)
|
14
|
-
|
14
|
+
def initialize(arg0 = nil, arg1 = nil)
|
15
|
+
@arg0 = arg0
|
16
|
+
@arg1 = arg1
|
15
17
|
end
|
16
18
|
end
|
17
19
|
# {http:web.server.sirius.org/}selectWindowResponse
|
@@ -28,7 +30,8 @@ class IsSelected
|
|
28
30
|
attr_accessor :arg1
|
29
31
|
attr_accessor :arg2
|
30
32
|
|
31
|
-
def initialize(arg0 = nil, arg1 = nil, arg2 = nil)
|
33
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil)
|
34
|
+
@arg0 = arg0
|
32
35
|
@arg1 = arg1
|
33
36
|
@arg2 = arg2
|
34
37
|
end
|
@@ -40,10 +43,12 @@ class IsSelectedResponse
|
|
40
43
|
@v_return
|
41
44
|
end
|
42
45
|
|
43
|
-
def m_return=(value)
|
46
|
+
def m_return=(value)
|
47
|
+
@v_return = value
|
44
48
|
end
|
45
49
|
|
46
|
-
def initialize(v_return = nil)
|
50
|
+
def initialize(v_return = nil)
|
51
|
+
@v_return = v_return
|
47
52
|
end
|
48
53
|
end
|
49
54
|
# {http:web.server.sirius.org/}start
|
@@ -316,7 +321,8 @@ class GetSize
|
|
316
321
|
attr_accessor :arg1
|
317
322
|
attr_accessor :arg2
|
318
323
|
|
319
|
-
def initialize(arg0 = nil, arg1 = nil, arg2 = nil)
|
324
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil)
|
325
|
+
@arg0 = arg0
|
320
326
|
@arg1 = arg1
|
321
327
|
@arg2 = arg2
|
322
328
|
end
|
@@ -341,7 +347,8 @@ class Dimension
|
|
341
347
|
attr_accessor :width
|
342
348
|
attr_accessor :height
|
343
349
|
|
344
|
-
def initialize(width = nil, height = nil)
|
350
|
+
def initialize(width = nil, height = nil)
|
351
|
+
@width = width
|
345
352
|
@height = height
|
346
353
|
end
|
347
354
|
end
|
@@ -367,21 +374,25 @@ class GetTagName
|
|
367
374
|
attr_accessor :arg1
|
368
375
|
attr_accessor :arg2
|
369
376
|
|
370
|
-
def initialize(
|
371
|
-
|
372
|
-
|
377
|
+
def initialize(token = nil, start_from = nil, locator = nil)
|
378
|
+
@arg0 = token
|
379
|
+
@arg1 = start_from
|
380
|
+
@arg2 = locator
|
373
381
|
end
|
374
382
|
end
|
375
383
|
# {http:web.server.sirius.org/}getTagNameResponse
|
376
384
|
# m_return - SOAP::SOAPString
|
377
385
|
class GetTagNameResponse
|
378
|
-
def m_return
|
386
|
+
def m_return
|
387
|
+
@v_return
|
379
388
|
end
|
380
389
|
|
381
|
-
def m_return=(value)
|
390
|
+
def m_return=(value)
|
391
|
+
@v_return = value
|
382
392
|
end
|
383
393
|
|
384
|
-
def initialize(v_return = nil)
|
394
|
+
def initialize(v_return = nil)
|
395
|
+
@v_return = v_return
|
385
396
|
end
|
386
397
|
end
|
387
398
|
# {http:web.server.sirius.org/}getTitle
|
@@ -389,16 +400,19 @@ end
|
|
389
400
|
class GetTitle
|
390
401
|
attr_accessor :arg0
|
391
402
|
|
392
|
-
def initialize(arg0 = nil)
|
403
|
+
def initialize(arg0 = nil)
|
404
|
+
@arg0 = arg0
|
393
405
|
end
|
394
406
|
end
|
395
407
|
# {http:web.server.sirius.org/}getTitleResponse
|
396
408
|
# m_return - SOAP::SOAPString
|
397
409
|
class GetTitleResponse
|
398
|
-
def m_return
|
410
|
+
def m_return
|
411
|
+
@v_return
|
399
412
|
end
|
400
413
|
|
401
|
-
def m_return=(value)
|
414
|
+
def m_return=(value)
|
415
|
+
@v_return = value
|
402
416
|
end
|
403
417
|
|
404
418
|
def initialize(v_return = nil) @v_return = v_return
|
@@ -413,7 +427,8 @@ class IsDisplayed
|
|
413
427
|
attr_accessor :arg1
|
414
428
|
attr_accessor :arg2
|
415
429
|
|
416
|
-
def initialize(arg0 = nil, arg1 = nil, arg2 = nil)
|
430
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil)
|
431
|
+
@arg0 = arg0
|
417
432
|
@arg1 = arg1
|
418
433
|
@arg2 = arg2
|
419
434
|
end
|
@@ -421,13 +436,16 @@ end
|
|
421
436
|
# {http:web.server.sirius.org/}isDisplayedResponse
|
422
437
|
# m_return - SOAP::SOAPBoolean
|
423
438
|
class IsDisplayedResponse
|
424
|
-
def m_return
|
439
|
+
def m_return
|
440
|
+
@v_return
|
425
441
|
end
|
426
442
|
|
427
|
-
def m_return=(value)
|
443
|
+
def m_return=(value)
|
444
|
+
@v_return = value
|
428
445
|
end
|
429
446
|
|
430
|
-
def initialize(v_return = nil)
|
447
|
+
def initialize(v_return = nil)
|
448
|
+
@v_return = v_return
|
431
449
|
end
|
432
450
|
end
|
433
451
|
# {http:web.server.sirius.org/}selectDefaultContent
|
@@ -448,19 +466,23 @@ end
|
|
448
466
|
class GetWindowHandle
|
449
467
|
attr_accessor :arg0
|
450
468
|
|
451
|
-
def initialize(arg0 = nil)
|
469
|
+
def initialize(arg0 = nil)
|
470
|
+
@arg0 = arg0
|
452
471
|
end
|
453
472
|
end
|
454
473
|
# {http:web.server.sirius.org/}getWindowHandleResponse
|
455
474
|
# m_return - SOAP::SOAPString
|
456
475
|
class GetWindowHandleResponse
|
457
|
-
def m_return
|
476
|
+
def m_return
|
477
|
+
@v_return
|
458
478
|
end
|
459
479
|
|
460
|
-
def m_return=(value)
|
480
|
+
def m_return=(value)
|
481
|
+
@v_return = value
|
461
482
|
end
|
462
483
|
|
463
|
-
def initialize(v_return = nil)
|
484
|
+
def initialize(v_return = nil)
|
485
|
+
@v_return = v_return
|
464
486
|
end
|
465
487
|
end
|
466
488
|
# {http:web.server.sirius.org/}stop
|
@@ -468,7 +490,8 @@ end
|
|
468
490
|
class Stop
|
469
491
|
attr_accessor :arg0
|
470
492
|
|
471
|
-
def initialize(arg0 = nil)
|
493
|
+
def initialize(arg0 = nil)
|
494
|
+
@arg0 = arg0
|
472
495
|
end
|
473
496
|
end
|
474
497
|
# {http:web.server.sirius.org/}stopResponse
|
@@ -503,16 +526,19 @@ end
|
|
503
526
|
class GetPageSource
|
504
527
|
attr_accessor :arg0
|
505
528
|
|
506
|
-
def initialize(arg0 = nil)
|
529
|
+
def initialize(arg0 = nil)
|
530
|
+
@arg0 = arg0
|
507
531
|
end
|
508
532
|
end
|
509
533
|
# {http:web.server.sirius.org/}getPageSourceResponse
|
510
534
|
# m_return - SOAP::SOAPString
|
511
535
|
class GetPageSourceResponse
|
512
|
-
def m_return
|
536
|
+
def m_return
|
537
|
+
@v_return
|
513
538
|
end
|
514
539
|
|
515
|
-
def m_return=(value)
|
540
|
+
def m_return=(value)
|
541
|
+
@v_return = value
|
516
542
|
end
|
517
543
|
|
518
544
|
def initialize(v_return = nil) @v_return = v_return
|
@@ -529,22 +555,25 @@ class GetAttribute
|
|
529
555
|
attr_accessor :arg2
|
530
556
|
attr_accessor :arg3
|
531
557
|
|
532
|
-
def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil)
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
558
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil)
|
559
|
+
@arg0 = arg0
|
560
|
+
@arg1 = arg1
|
561
|
+
@arg2 = arg2
|
562
|
+
@arg3 = arg3
|
537
563
|
end
|
538
564
|
end
|
539
565
|
# {http:web.server.sirius.org/}getAttributeResponse
|
540
566
|
# m_return - SOAP::SOAPString
|
541
567
|
class GetAttributeResponse
|
542
|
-
def m_return
|
568
|
+
def m_return
|
569
|
+
@v_return
|
543
570
|
end
|
544
571
|
|
545
|
-
def m_return=(value)
|
572
|
+
def m_return=(value)
|
573
|
+
@v_return = value
|
546
574
|
end
|
547
575
|
|
548
|
-
def initialize(v_return = nil)
|
576
|
+
def initialize(v_return = nil)
|
577
|
+
@v_return = v_return
|
549
578
|
end
|
550
579
|
end
|
551
580
|
# {http:web.server.sirius.org/}click
|
@@ -556,7 +585,8 @@ class Click
|
|
556
585
|
attr_accessor :arg1
|
557
586
|
attr_accessor :arg2
|
558
587
|
|
559
|
-
def initialize(arg0 = nil, arg1 = nil, arg2 = nil)
|
588
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil)
|
589
|
+
@arg0 = arg0
|
560
590
|
@arg1 = arg1
|
561
591
|
@arg2 = arg2
|
562
592
|
end
|
@@ -577,7 +607,8 @@ class GetCssValue
|
|
577
607
|
attr_accessor :arg2
|
578
608
|
attr_accessor :arg3
|
579
609
|
|
580
|
-
def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil)
|
610
|
+
def initialize(arg0 = nil, arg1 = nil, arg2 = nil, arg3 = nil)
|
611
|
+
@arg0 = arg0
|
581
612
|
@arg1 = arg1
|
582
613
|
@arg2 = arg2
|
583
614
|
@arg3 = arg3
|
@@ -586,13 +617,16 @@ end
|
|
586
617
|
# {http:web.server.sirius.org/}getCssValueResponse
|
587
618
|
# m_return - SOAP::SOAPString
|
588
619
|
class GetCssValueResponse
|
589
|
-
def m_return
|
620
|
+
def m_return
|
621
|
+
@v_return
|
590
622
|
end
|
591
623
|
|
592
|
-
def m_return=(value)
|
624
|
+
def m_return=(value)
|
625
|
+
@v_return = value
|
593
626
|
end
|
594
627
|
|
595
|
-
def initialize(v_return = nil)
|
628
|
+
def initialize(v_return = nil)
|
629
|
+
@v_return = v_return
|
596
630
|
end
|
597
631
|
end
|
598
632
|
|
@@ -1,232 +1,234 @@
|
|
1
|
-
|
2
|
-
require '
|
1
|
+
# encoding: UTF-8
|
2
|
+
require 'sirius/web/core/WebCoreService.rb'
|
3
|
+
require 'sirius/web/core/WebCoreServiceMappingRegistry.rb'
|
3
4
|
require 'soap/rpc/driver'
|
4
5
|
|
5
6
|
module Sirius::Client::Web::Core
|
6
7
|
|
7
8
|
|
8
|
-
class WebCore < ::SOAP::RPC::Driver
|
9
|
+
class WebCore < ::SOAP::RPC::Driver
|
10
|
+
DefaultEndpointUrl = "http://localhost:21212/web/core"
|
9
11
|
Methods = [
|
10
12
|
[ "",
|
11
13
|
"getWindowHandle",
|
12
|
-
[ [
|
13
|
-
[
|
14
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "getWindowHandle"]],
|
15
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "getWindowHandleResponse"]] ],
|
14
16
|
{ :request_style => :document, :request_use => :literal,
|
15
17
|
:response_style => :document, :response_use => :literal,
|
16
18
|
:faults => {} }
|
17
19
|
],
|
18
20
|
[ "",
|
19
21
|
"selectFrameByName",
|
20
|
-
[ [
|
21
|
-
[
|
22
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "selectFrameByName"]],
|
23
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "selectFrameByNameResponse"]] ],
|
22
24
|
{ :request_style => :document, :request_use => :literal,
|
23
25
|
:response_style => :document, :response_use => :literal,
|
24
26
|
:faults => {} }
|
25
27
|
],
|
26
28
|
[ "",
|
27
29
|
"selectDefaultContent",
|
28
|
-
[ [
|
29
|
-
[
|
30
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "selectDefaultContent"]],
|
31
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "selectDefaultContentResponse"]] ],
|
30
32
|
{ :request_style => :document, :request_use => :literal,
|
31
33
|
:response_style => :document, :response_use => :literal,
|
32
34
|
:faults => {} }
|
33
35
|
],
|
34
36
|
[ "",
|
35
37
|
"getPageSource",
|
36
|
-
[ [
|
37
|
-
[
|
38
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "getPageSource"]],
|
39
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "getPageSourceResponse"]] ],
|
38
40
|
{ :request_style => :document, :request_use => :literal,
|
39
41
|
:response_style => :document, :response_use => :literal,
|
40
42
|
:faults => {} }
|
41
43
|
],
|
42
44
|
[ "",
|
43
45
|
"selectFrameByIndex",
|
44
|
-
[ [
|
45
|
-
[
|
46
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "selectFrameByIndex"]],
|
47
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "selectFrameByIndexResponse"]] ],
|
46
48
|
{ :request_style => :document, :request_use => :literal,
|
47
49
|
:response_style => :document, :response_use => :literal,
|
48
50
|
:faults => {} }
|
49
51
|
],
|
50
52
|
[ "",
|
51
53
|
"back",
|
52
|
-
[ [
|
53
|
-
[
|
54
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "back"]],
|
55
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "backResponse"]] ],
|
54
56
|
{ :request_style => :document, :request_use => :literal,
|
55
57
|
:response_style => :document, :response_use => :literal,
|
56
58
|
:faults => {} }
|
57
59
|
],
|
58
60
|
[ "",
|
59
61
|
"isDisplayed",
|
60
|
-
[ [
|
61
|
-
[
|
62
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "isDisplayed"]],
|
63
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "isDisplayedResponse"]] ],
|
62
64
|
{ :request_style => :document, :request_use => :literal,
|
63
65
|
:response_style => :document, :response_use => :literal,
|
64
66
|
:faults => {} }
|
65
67
|
],
|
66
68
|
[ "",
|
67
69
|
"getCssValue",
|
68
|
-
[ [
|
69
|
-
[
|
70
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "getCssValue"]],
|
71
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "getCssValueResponse"]] ],
|
70
72
|
{ :request_style => :document, :request_use => :literal,
|
71
73
|
:response_style => :document, :response_use => :literal,
|
72
74
|
:faults => {} }
|
73
75
|
],
|
74
76
|
[ "",
|
75
77
|
"sendKeys",
|
76
|
-
[ [
|
77
|
-
[
|
78
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "sendKeys"]],
|
79
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "sendKeysResponse"]] ],
|
78
80
|
{ :request_style => :document, :request_use => :literal,
|
79
81
|
:response_style => :document, :response_use => :literal,
|
80
82
|
:faults => {} }
|
81
83
|
],
|
82
84
|
[ "",
|
83
85
|
"forward",
|
84
|
-
[ [
|
85
|
-
[
|
86
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "forward"]],
|
87
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "forwardResponse"]] ],
|
86
88
|
{ :request_style => :document, :request_use => :literal,
|
87
89
|
:response_style => :document, :response_use => :literal,
|
88
90
|
:faults => {} }
|
89
91
|
],
|
90
92
|
[ "",
|
91
93
|
"selectWindow",
|
92
|
-
[ [
|
93
|
-
[
|
94
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "selectWindow"]],
|
95
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "selectWindowResponse"]] ],
|
94
96
|
{ :request_style => :document, :request_use => :literal,
|
95
97
|
:response_style => :document, :response_use => :literal,
|
96
98
|
:faults => {} }
|
97
99
|
],
|
98
100
|
[ "",
|
99
101
|
"selectAlert",
|
100
|
-
[ [
|
101
|
-
[
|
102
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "selectAlert"]],
|
103
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "selectAlertResponse"]] ],
|
102
104
|
{ :request_style => :document, :request_use => :literal,
|
103
105
|
:response_style => :document, :response_use => :literal,
|
104
106
|
:faults => {} }
|
105
107
|
],
|
106
108
|
[ "",
|
107
109
|
"getLocation",
|
108
|
-
[ [
|
109
|
-
[
|
110
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "getLocation"]],
|
111
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "getLocationResponse"]] ],
|
110
112
|
{ :request_style => :document, :request_use => :literal,
|
111
113
|
:response_style => :document, :response_use => :literal,
|
112
114
|
:faults => {} }
|
113
115
|
],
|
114
116
|
[ "",
|
115
117
|
"getURL",
|
116
|
-
[ [
|
117
|
-
[
|
118
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "getURL"]],
|
119
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "getURLResponse"]] ],
|
118
120
|
{ :request_style => :document, :request_use => :literal,
|
119
121
|
:response_style => :document, :response_use => :literal,
|
120
122
|
:faults => {} }
|
121
123
|
],
|
122
124
|
[ "",
|
123
125
|
"clear",
|
124
|
-
[ [
|
125
|
-
[
|
126
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "clear"]],
|
127
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "clearResponse"]] ],
|
126
128
|
{ :request_style => :document, :request_use => :literal,
|
127
129
|
:response_style => :document, :response_use => :literal,
|
128
130
|
:faults => {} }
|
129
131
|
],
|
130
132
|
[ "",
|
131
133
|
"start",
|
132
|
-
[ [
|
133
|
-
[
|
134
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "start"]],
|
135
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "startResponse"]] ],
|
134
136
|
{ :request_style => :document, :request_use => :literal,
|
135
137
|
:response_style => :document, :response_use => :literal,
|
136
138
|
:faults => {} }
|
137
139
|
],
|
138
140
|
[ "",
|
139
141
|
"stop",
|
140
|
-
[ [
|
141
|
-
[
|
142
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "stop"]],
|
143
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "stopResponse"]] ],
|
142
144
|
{ :request_style => :document, :request_use => :literal,
|
143
145
|
:response_style => :document, :response_use => :literal,
|
144
146
|
:faults => {} }
|
145
147
|
],
|
146
148
|
[ "",
|
147
149
|
"getSize",
|
148
|
-
[ [
|
149
|
-
[
|
150
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "getSize"]],
|
151
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "getSizeResponse"]] ],
|
150
152
|
{ :request_style => :document, :request_use => :literal,
|
151
153
|
:response_style => :document, :response_use => :literal,
|
152
154
|
:faults => {} }
|
153
155
|
],
|
154
156
|
[ "",
|
155
157
|
"open",
|
156
|
-
[ [
|
157
|
-
[
|
158
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "open"]],
|
159
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "openResponse"]] ],
|
158
160
|
{ :request_style => :document, :request_use => :literal,
|
159
161
|
:response_style => :document, :response_use => :literal,
|
160
162
|
:faults => {} }
|
161
163
|
],
|
162
164
|
[ "",
|
163
165
|
"refresh",
|
164
|
-
[ [
|
165
|
-
[
|
166
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "refresh"]],
|
167
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "refreshResponse"]] ],
|
166
168
|
{ :request_style => :document, :request_use => :literal,
|
167
169
|
:response_style => :document, :response_use => :literal,
|
168
170
|
:faults => {} }
|
169
171
|
],
|
170
172
|
[ "",
|
171
173
|
"getTitle",
|
172
|
-
[ [
|
173
|
-
[
|
174
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "getTitle"]],
|
175
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "getTitleResponse"]] ],
|
174
176
|
{ :request_style => :document, :request_use => :literal,
|
175
177
|
:response_style => :document, :response_use => :literal,
|
176
178
|
:faults => {} }
|
177
179
|
],
|
178
180
|
[ "",
|
179
181
|
"isEnabled",
|
180
|
-
[ [
|
181
|
-
[
|
182
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "isEnabled"]],
|
183
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "isEnabledResponse"]] ],
|
182
184
|
{ :request_style => :document, :request_use => :literal,
|
183
185
|
:response_style => :document, :response_use => :literal,
|
184
186
|
:faults => {} }
|
185
187
|
],
|
186
188
|
[ "",
|
187
189
|
"getText",
|
188
|
-
[ [
|
189
|
-
[
|
190
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "getText"]],
|
191
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "getTextResponse"]] ],
|
190
192
|
{ :request_style => :document, :request_use => :literal,
|
191
193
|
:response_style => :document, :response_use => :literal,
|
192
194
|
:faults => {} }
|
193
195
|
],
|
194
196
|
[ "",
|
195
197
|
"submit",
|
196
|
-
[ [
|
197
|
-
[
|
198
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "submit"]],
|
199
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "submitResponse"]] ],
|
198
200
|
{ :request_style => :document, :request_use => :literal,
|
199
201
|
:response_style => :document, :response_use => :literal,
|
200
202
|
:faults => {} }
|
201
203
|
],
|
202
204
|
[ "",
|
203
205
|
"click",
|
204
|
-
[ [
|
205
|
-
[
|
206
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "click"]],
|
207
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "clickResponse"]] ],
|
206
208
|
{ :request_style => :document, :request_use => :literal,
|
207
209
|
:response_style => :document, :response_use => :literal,
|
208
210
|
:faults => {} }
|
209
211
|
],
|
210
212
|
[ "",
|
211
213
|
"isSelected",
|
212
|
-
[ [
|
213
|
-
[
|
214
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "isSelected"]],
|
215
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "isSelectedResponse"]] ],
|
214
216
|
{ :request_style => :document, :request_use => :literal,
|
215
217
|
:response_style => :document, :response_use => :literal,
|
216
218
|
:faults => {} }
|
217
219
|
],
|
218
220
|
[ "",
|
219
221
|
"getAttribute",
|
220
|
-
[ [
|
221
|
-
[
|
222
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "getAttribute"]],
|
223
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "getAttributeResponse"]] ],
|
222
224
|
{ :request_style => :document, :request_use => :literal,
|
223
225
|
:response_style => :document, :response_use => :literal,
|
224
226
|
:faults => {} }
|
225
227
|
],
|
226
228
|
[ "",
|
227
229
|
"getTagName",
|
228
|
-
[ [
|
229
|
-
[
|
230
|
+
[ [SOAP::RPC::SOAPMethod::IN, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "getTagName"]],
|
231
|
+
[SOAP::RPC::SOAPMethod::OUT, "parameters", ["::SOAP::SOAPElement", "http://web.server.sirius.org/", "getTagNameResponse"]] ],
|
230
232
|
{ :request_style => :document, :request_use => :literal,
|
231
233
|
:response_style => :document, :response_use => :literal,
|
232
234
|
:faults => {} }
|