Bugzilla – Attachment 211151 Details for
Bug 384236
System.Web.Service call WebMethod not working
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
IDP Log In
|
Forgot Password
Autogenerated from Server.wsdl
Server.cs (text/x-csharp), 4.91 KB, created by
C S Vadiraj
on 2008-04-29 13:03:40 UTC
(
hide
)
Description:
Autogenerated from Server.wsdl
Filename:
MIME Type:
Creator:
C S Vadiraj
Created:
2008-04-29 13:03:40 UTC
Size:
4.91 KB
patch
obsolete
>// ------------------------------------------------------------------------------ >// <autogenerated> >// This code was generated by a tool. >// Mono Runtime Version: 1.1.4322.2032 >// >// Changes to this file may cause incorrect behavior and will be lost if >// the code is regenerated. >// </autogenerated> >// ------------------------------------------------------------------------------ > >// >// This source code was auto-generated by Mono Web Services Description Language Utility >// > > >/// <remarks/> >using System; >using System.Net; >[System.Web.Services.WebServiceBinding(Name="ServerSoap", Namespace="http://tempuri.org/")] >[System.Diagnostics.DebuggerStepThroughAttribute()] >[System.ComponentModel.DesignerCategoryAttribute("code")] >public class Server : System.Web.Services.Protocols.SoapHttpClientProtocol { > > public Server() { > this.Url = "http://localhost:2544/zmd/Server.asmx"; > } > > public void SetCredential(ICredentials credentials) > { > this.Credentials = credentials ; > } > > [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/Ping", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped, Use=System.Web.Services.Description.SoapBindingUse.Literal)] > public string Ping() { > object[] results = this.Invoke("Ping", new object[0]); > return ((string)(results[0])); > } > > public System.IAsyncResult BeginPing(System.AsyncCallback callback, object asyncState) { > return this.BeginInvoke("Ping", new object[0], callback, asyncState); > } > > public string EndPing(System.IAsyncResult asyncResult) { > object[] results = this.EndInvoke(asyncResult); > return ((string)(results[0])); > } > > [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/RefreshService", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped, Use=System.Web.Services.Description.SoapBindingUse.Literal)] > public void RefreshService(string id, string[] capabilities) { > this.Invoke("RefreshService", new object[] { > id, > capabilities}); > } > > public System.IAsyncResult BeginRefreshService(string id, string[] capabilities, System.AsyncCallback callback, object asyncState) { > return this.BeginInvoke("RefreshService", new object[] { > id, > capabilities}, callback, asyncState); > } > > public void EndRefreshService(System.IAsyncResult asyncResult) { > this.EndInvoke(asyncResult); > } > > [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/UnlockDevice", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped, Use=System.Web.Services.Description.SoapBindingUse.Literal)] > public void UnlockDevice() { > this.Invoke("UnlockDevice", new object[0]); > } > > public System.IAsyncResult BeginUnlockDevice(System.AsyncCallback callback, object asyncState) { > return this.BeginInvoke("UnlockDevice", new object[0], callback, asyncState); > } > > public void EndUnlockDevice(System.IAsyncResult asyncResult) { > this.EndInvoke(asyncResult); > } > > [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/DeviceShutdown", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped, Use=System.Web.Services.Description.SoapBindingUse.Literal)] > public void DeviceShutdown(bool force) { > this.Invoke("DeviceShutdown", new object[] { > force}); > } > > public System.IAsyncResult BeginDeviceShutdown(bool force, System.AsyncCallback callback, object asyncState) { > return this.BeginInvoke("DeviceShutdown", new object[] { > force}, callback, asyncState); > } > > public void EndDeviceShutdown(System.IAsyncResult asyncResult) { > this.EndInvoke(asyncResult); > } > > [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://tempuri.org/DeviceRestart", RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/", ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped, Use=System.Web.Services.Description.SoapBindingUse.Literal)] > public void DeviceRestart(bool force) { > this.Invoke("DeviceRestart", new object[] { > force}); > } > > public System.IAsyncResult BeginDeviceRestart(bool force, System.AsyncCallback callback, object asyncState) { > return this.BeginInvoke("DeviceRestart", new object[] { > force}, callback, asyncState); > } > > public void EndDeviceRestart(System.IAsyncResult asyncResult) { > this.EndInvoke(asyncResult); > } >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
Actions:
View
Attachments on
bug 384236
: 211151 |
211152
|
211170