SOAPServer-class(SSOAP)
SOAPServer-class()所属R语言包:SSOAP
Classes for SOAP Server object
SOAP服务器对象的类
译者:生物统计家园网 机器人LoveR
描述----------Description----------
These classes provide a way to describe the location of a SOAP server. This is separate from the servers actions. Rather, we use this to represent the identity of the server in terms of its Web address, i.e. the machine name or IP address, port number and URI or path within the server. The different classes represent the communication protocol, typically HTTP or HTTPS, i.e. HTTP over SSL, the secure communication protocol.
这些类提供了一种方式来描述SOAP服务器的位置。这是独立于服务器的行动。相反,我们用这个来代表服务器的身份,在其网站地址,即机器名或IP地址,端口号和服务器内的URI或路径。不同阶层代表的通信协议,通常是HTTP或HTTPS,即HTTP,通过SSL安全通信协议。
A DynamicSOAPServer might be better termed a “compiled” server. It contains information about the methods and data types accessible via the server. This information is converted into R classes and functions that can be used to invoke the server's methods.
一个DynamicSOAPServer可能会更好地称为“编译”服务器。它包含有关通过服务器访问的方法和数据类型的信息。此信息被转换成R类和功能,可用于调用服务器的方法。
DynamicSOAPServer does not extend SOAPServer currently. Rather, it contains a SOAPServer. This is because we need to be able to determine the protocol and so have different types of SOAPServer objects associated with the interface methods. This class hierarchy may change in the future.
DynamicSOAPServer不延长SOAPServer目前。相反,它包含一个SOAPServer。这是因为我们需要能够确定协议等接口方法SOAPServer对象的不同类型。这个类层次结构,在未来可能会改变。
类的对象----------Objects from the Class----------
The function SOAPServer is used as the general constructor. Alternatively, one can use the new syntax, new("HTTPServer", host = "www.omegahat.org", url = "theServer")
用作一般构造的功能SOAPServer。另外,可以使用new语法,new("HTTPServer", host = "www.omegahat.org", url = "theServer")
插槽----------Slots----------
host: Object of class "character". The machine name or IP address of the server.
host类"character"的对象。服务器的机器名或IP地址。
port: Object of class "integer". The port number, if other than the default HTTP port 80.
port类"integer"的对象。端口号,如果不是默认的HTTP端口80。
url: Object of class "character". The document within the server that is the location of the server.
url类"character"的对象。文件内的服务器是服务器的位置。
方法----------Methods----------
\$ signature(x = "SOAPServer", name = "character"): returns a function that will invoke the server's method whose name is given by name. This is merely syntactic sugar to allow the expression server\$foo(1, 2, 3) to invoke the method foo in the
\ $signature(x = "SOAPServer", name = "character"):返回一个函数,将调用服务器的方法,其名称由name。这仅仅是语法糖来表达server\$foo(1, 2, 3)在调用方法foo
\$ signature(x = "DynamicSOAPServer", name = "character"): returns a function that will invoke the server's method whose name is given by name. This is merely syntactic sugar to allow the expression server\$foo(1, 2, 3) to invoke the method foo in the
\ $signature(x = "DynamicSOAPServer", name = "character"):返回一个函数,将调用服务器的方法,其名称由name。这仅仅是语法糖来表达server\$foo(1, 2, 3)在调用方法foo
names signature(x = "DynamicSOAPServer")
名称signature(x = "DynamicSOAPServer")
returns the names of the server's available methods.
返回服务器的可用方法的名称。
作者(S)----------Author(s)----------
Duncan Temple Lang <duncan@wald.ucdavis.edu>
参考文献----------References----------
http://www.omegahat.org/SSOAP, http://www.omegahat.org/bugs.
参见----------See Also----------
SOAPServer
SOAPServer
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|