~ifolder-dev/simias/trunk-packaging

« back to all changes in this revision

Viewing changes to test/SimiasTestsCmd/.svn/text-base/SimiasTestsProxy.cs.svn-base

  • Committer: Jorge O. Castro
  • Date: 2007-12-03 06:56:46 UTC
  • Revision ID: jorge@ubuntu.com-20071203065646-mupcnjcwgm5mnhyt
* Remove a bunch of .svn directories we no longer need.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//------------------------------------------------------------------------------
2
 
// <autogenerated>
3
 
//     This code was generated by a tool.
4
 
//     Runtime Version: 1.1.4322.2032
5
 
//
6
 
//     Changes to this file may cause incorrect behavior and will be lost if 
7
 
//     the code is regenerated.
8
 
// </autogenerated>
9
 
//------------------------------------------------------------------------------
10
 
 
11
 
// 
12
 
// This source code was auto-generated by wsdl, Version=1.1.4322.2032.
13
 
// 
14
 
using System.Diagnostics;
15
 
using System.Xml.Serialization;
16
 
using System;
17
 
using System.Web.Services.Protocols;
18
 
using System.ComponentModel;
19
 
using System.Web.Services;
20
 
 
21
 
 
22
 
/// <remarks/>
23
 
[System.Diagnostics.DebuggerStepThroughAttribute()]
24
 
[System.ComponentModel.DesignerCategoryAttribute("code")]
25
 
[System.Web.Services.WebServiceBindingAttribute(Name="ActionsSoap", Namespace="http://novell.com/simiastests/actions/")]
26
 
public class Actions : System.Web.Services.Protocols.SoapHttpClientProtocol {
27
 
    
28
 
    /// <remarks/>
29
 
    public Actions() {
30
 
        this.Url = "http://127.0.0.1:1913/simias10/banderso/SimiasTests.asmx";
31
 
    }
32
 
    
33
 
    /// <remarks/>
34
 
    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://novell.com/simiastests/actions/Ping", RequestNamespace="http://novell.com/simiastests/actions/", ResponseNamespace="http://novell.com/simiastests/actions/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
35
 
    public int Ping(int sleepFor) {
36
 
        object[] results = this.Invoke("Ping", new object[] {
37
 
                    sleepFor});
38
 
        return ((int)(results[0]));
39
 
    }
40
 
    
41
 
    /// <remarks/>
42
 
    public System.IAsyncResult BeginPing(int sleepFor, System.AsyncCallback callback, object asyncState) {
43
 
        return this.BeginInvoke("Ping", new object[] {
44
 
                    sleepFor}, callback, asyncState);
45
 
    }
46
 
    
47
 
    /// <remarks/>
48
 
    public int EndPing(System.IAsyncResult asyncResult) {
49
 
        object[] results = this.EndInvoke(asyncResult);
50
 
        return ((int)(results[0]));
51
 
    }
52
 
    
53
 
    /// <remarks/>
54
 
    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://novell.com/simiastests/actions/RemoteAuthentication", RequestNamespace="http://novell.com/simiastests/actions/", ResponseNamespace="http://novell.com/simiastests/actions/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
55
 
    public int RemoteAuthentication(bool preAuthenticate, string host, string user, string password) {
56
 
        object[] results = this.Invoke("RemoteAuthentication", new object[] {
57
 
                    preAuthenticate,
58
 
                    host,
59
 
                    user,
60
 
                    password});
61
 
        return ((int)(results[0]));
62
 
    }
63
 
    
64
 
    /// <remarks/>
65
 
    public System.IAsyncResult BeginRemoteAuthentication(bool preAuthenticate, string host, string user, string password, System.AsyncCallback callback, object asyncState) {
66
 
        return this.BeginInvoke("RemoteAuthentication", new object[] {
67
 
                    preAuthenticate,
68
 
                    host,
69
 
                    user,
70
 
                    password}, callback, asyncState);
71
 
    }
72
 
    
73
 
    /// <remarks/>
74
 
    public int EndRemoteAuthentication(System.IAsyncResult asyncResult) {
75
 
        object[] results = this.EndInvoke(asyncResult);
76
 
        return ((int)(results[0]));
77
 
    }
78
 
    
79
 
    /// <remarks/>
80
 
    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://novell.com/simiastests/actions/GetArray", RequestNamespace="http://novell.com/simiastests/actions/", ResponseNamespace="http://novell.com/simiastests/actions/", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
81
 
    public char[] GetArray(int sizeToReturn, char charToReturn) {
82
 
        object[] results = this.Invoke("GetArray", new object[] {
83
 
                    sizeToReturn,
84
 
                    charToReturn});
85
 
        return ((char[])(results[0]));
86
 
    }
87
 
    
88
 
    /// <remarks/>
89
 
    public System.IAsyncResult BeginGetArray(int sizeToReturn, char charToReturn, System.AsyncCallback callback, object asyncState) {
90
 
        return this.BeginInvoke("GetArray", new object[] {
91
 
                    sizeToReturn,
92
 
                    charToReturn}, callback, asyncState);
93
 
    }
94
 
    
95
 
    /// <remarks/>
96
 
    public char[] EndGetArray(System.IAsyncResult asyncResult) {
97
 
        object[] results = this.EndInvoke(asyncResult);
98
 
        return ((char[])(results[0]));
99
 
    }
100
 
}