Catalyst-Plugin-Server
view release on metacpan or search on metacpan
484950515253545556575859606162636465666768
"$c->req->xmlrpc"
.
Directly
after
, it will find out the Path of the Action to dispatch to,
by splitting methodName by
"."
:
methodName: hello.world
path : /hello/world
From this point, it will dispatch to
'/hello/world'
when
it
exists
, like
Catalyst Urls would
do
. What means: you will be able to set Regexes,
Paths etc on subroutines to define the endpoint.
We discuss these custom XMLRPC attributes below.
When the request is dispatched, we will
return
$c
->stash->{xmlrpc} to
the xmlrpc client, or,
when
it is not available, it will
return
$c
->stash to the client. There is also a way of defining
$c
->stash
keys
to be
send
back to the client.
ATTRIBUTES
You can mark any method in your Catalyst application as being available
lib/Catalyst/Plugin/Server/XMLRPC.pm view on Meta::CPAN
5859606162636465666768697071727374757677an OBJECT containing XMLRPC specific parameters in C<<
$c
->req->xmlrpc >>.
Directly
after
, it will find out the Path of the Action to dispatch to, by
splitting methodName by C<.>:
methodName: hello.world
path : /hello/world
From this point, it will dispatch to
'/hello/world'
when
it
exists
,
like Catalyst Urls would
do
. What means: you will be able to set Regexes,
Paths etc on subroutines to define the endpoint.
We discuss these custom XMLRPC attributes below.
When the request is dispatched, we will
return
$c
->stash->{xmlrpc} to the
xmlrpc client, or,
when
it is not available, it will
return
$c
->stash to
the client. There is also a way of defining
$c
->stash
keys
to be
send
back
to the client.
=head1 ATTRIBUTES
( run in 0.366 second using v1.01-cache-2.11-cpan-26ccb49234f )