Home
last modified time | relevance | path

Searched refs:srpc (Results 1 – 25 of 41) sorted by relevance

12

/dports/www/py-spyne/spyne-2.13.16/spyne/test/interop/server/
H A D_service.py190 @srpc(Date, _returns=Date)
198 @srpc(Time, _returns=Time)
206 @srpc(Float, _returns=Float)
310 @srpc()
314 @srpc()
324 @srpc(
341 @srpc(_returns=Integer)
345 @srpc(_returns=String)
349 @srpc()
370 @srpc(_returns=Integer)
[all …]
/dports/www/py-spyne/spyne-2.13.16/spyne/test/protocol/
H A D_test_dictdoc.py50 from spyne.decorator import srpc, rpc
203 @srpc(CCM, _returns=CCM)
362 @srpc(_returns=String)
638 @srpc(_returns=Date)
1131 @srpc(Uuid)
1162 @srpc(Integer8)
1177 @srpc(Integer8)
1224 @srpc(C)
1281 @srpc(C, _returns=C)
1339 @srpc(SomeComplexModel)
[all …]
H A Dtest_http.py38 from spyne.decorator import srpc
51 @srpc(String, _returns=String)
168 @srpc(C, _body_style='bare')
197 @srpc(C)
220 @srpc(Array(C))
282 @srpc(Array(C))
314 @srpc(Uuid)
327 @srpc(Integer(ge=0, le=5))
340 @srpc(Integer8)
353 @srpc(Integer8)
[all …]
H A Dtest_html_table.py28 from spyne.decorator import srpc
59 @srpc(CCM, _returns=Array(CCM))
107 @srpc(String(max_occurs='unbounded'), _returns=Array(String))
137 @srpc(_returns=Array(C))
160 @srpc(_returns=Array(C))
227 @srpc(_returns=SearchTable)
262 @srpc(_returns=C)
285 @srpc(_returns=C)
303 @srpc(CCM, _returns=CCM)
370 @srpc(String(max_occurs='unbounded'), _returns=Array(String))
[all …]
H A Dtest_html_microformat.py28 from spyne.decorator import srpc
44 @srpc(String, _returns=String)
73 @srpc(_returns=[Integer, String])
110 @srpc(CCM, _returns=CCM)
175 @srpc(String(max_occurs='unbounded'), _returns=String)
219 @srpc(CCM, _returns=Array(CCM))
250 @srpc(CCM, _returns=Array(CCM))
H A Dtest_json.py29 from spyne import rpc,srpc
56 @srpc(Integer, _returns=Integer)
108 @srpc()
154 @srpc(_returns=Integer)
158 @srpc(_returns=SomeComplexModel)
192 @srpc(_returns=Array(Permission))
H A Dtest_yaml.py27 from spyne.decorator import srpc
41 @srpc()
H A Dtest_xml.py43 from spyne.decorator import srpc
72 @srpc(C, _returns=C)
130 @srpc(Decimal(120,4), _returns=Decimal)
272 @srpc(M(Unicode), _returns=Unicode)
305 @srpc(Unicode(pattern=u'x'), _returns=Unicode)
339 @srpc(C.customize(min_occurs=1), _returns=Unicode)
372 @srpc(C.customize(min_occurs=1), _returns=Unicode)
H A Dtest_msgpack.py33 from spyne.decorator import srpc
72 @srpc()
H A Dtest_soap12.py14 from spyne.decorator import srpc, rpc
116 @srpc()
/dports/devel/pecl-swoole/swoole-4.8.5/tests/swoole_http2_server/
H A Dtrailer.phpt27 'content-type' => 'application/srpc',
28 'trailer' => 'srpc-status, srpc-message',
31 'srpc-status' => '0',
32 'srpc-message' => '',
61 $response->header('content-type', 'application/srpc');
62 $response->header('trailer', 'srpc-status, srpc-message');
64 "srpc-status" => '0',
65 "srpc-message" => ''
/dports/devel/pecl-swoole/swoole-4.8.5/tests/swoole_http2_client_coro/
H A Dpipeline.phpt34 'content-type' => 'application/srpc',
35 'trailer' => 'srpc-status, srpc-message',
38 'srpc-status' => '0',
39 'srpc-message' => '',
71 $response->header('content-type', 'application/srpc');
72 $response->header('trailer', 'srpc-status, srpc-message');
74 "srpc-status" => '0',
75 "srpc-message" => ''
/dports/devel/plan9port/plan9port-1f098efb7370a0b28306d10681e21883fb1c1507/src/cmd/auth/factotum/
H A Dtest.c55 runtest(AuthRpc *srpc, Test *t) in runtest() argument
71 if((*t->server)(t, srpc, p[1]) < 0){ in runtest()
97 AuthRpc *srpc; in main() local
108 srpc = auth_allocrpc(afd); in main()
109 if(srpc == nil) in main()
114 runtest(srpc, &test[i]); in main()
119 runtest(srpc, &test[j]); in main()
/dports/www/py-spyne/spyne-2.13.16/spyne/test/
H A Dtest_service.py38 from spyne.decorator import rpc, srpc
57 @srpc(String)
63 @srpc(String)
149 @srpc(String)
156 @srpc(String)
169 @srpc(String, _in_message_name='{tns}inMessageName')
179 @srpc(String, _returns=String)
186 @srpc(String, _returns=String)
212 @srpc(String, _returns=String)
219 @srpc(String, _returns=String)
[all …]
H A Dtest_null_server.py33 from spyne.decorator import srpc
42 @srpc(String)
58 @srpc(String, String)
83 @srpc(String, String, _returns=Array(String))
109 @srpc(_returns=Boolean)
H A Dtest_soft_validation.py27 from spyne.decorator import srpc
96 @srpc(String(pattern='a'))
99 @srpc(String(pattern='a', max_occurs=2))
150 @srpc(String(pattern='a'))
/dports/www/py-spyne/spyne-2.13.16/examples/
H A Dexisting_api.py35 from spyne import Application, srpc, Service, Integer, UnsignedInteger, \
45 randint = srpc(M(Integer), M(Integer), _returns=Integer,
50 randbits = srpc(M(UnsignedInteger), _returns=UnsignedInteger,
/dports/www/py-spyne/spyne-2.13.16/spyne/test/interface/wsdl/
H A Dtest_default_wsdl.py40 from spyne.decorator import srpc
176 @srpc(String, _returns=String, _body_style='bare')
207 @srpc(Array(String), _returns=Array(String))
211 @srpc(Array(String), _returns=Array(String), _body_style='bare')
H A Dtest_op_req_suffix.py24 from spyne.decorator import srpc
93 @srpc(Unicode, Integer, **srpc_kparams)
/dports/www/py-spyne/spyne-2.13.16/spyne/test/interop/
H A Dtest_pyramid.py30 from spyne.decorator import srpc
39 @srpc(Unicode, Integer, _returns=Iterable(Unicode))
/dports/www/chromium-legacy/chromium-88.0.4324.182/native_client/docs/
H A Dplugin_dom_object.md23 These methods and properties are hooked up in [plugin/srpc/plugin.cc]
24 …google.com/p/nativeclient/source/browse/trunk/src/native_client/src/trusted/plugin/srpc/plugin.cc).
/dports/www/py-spyne/spyne-2.13.16/spyne/util/
H A Dxml.py31 from spyne import ServiceBase, Application, srpc
159 @srpc(cls)
194 @srpc(cls)
/dports/www/py-spyne/spyne-2.13.16/examples/multiple_protocols/
H A Dserver.py67 from spyne import Application, rpc, srpc, DateTime, String, Service
83 @srpc(_returns=DateTime)
/dports/www/py-spyne/spyne-2.13.16/doc/source/manual/
H A D04_usermanager.rst72 ``@srpc`` decorator.
79 the user method. The ``@srpc`` decorator is more for functions that you want
154 @srpc(Integer, _returns=Integer)
158 Note that the place of the decorator matters. Putting it before ``@srpc`` will
H A D02_helloworld.rst24 The ``@srpc`` decorator exposes methods as remote procedure calls and declares
30 from spyne.decorator import srpc
56 The ``@srpc`` decorator flags each method as a remote procedure call and
61 @srpc(String, UnsignedInteger, _returns=Iterable(String))

12