perfectin / webservice
TYPO3 Flow package for creating webservices
Package info
github.com/benovie/PerfectIn.Webservice
Type:typo3-flow-framework
pkg:composer/perfectin/webservice
1.0.0
2016-02-10 20:40 UTC
Requires
- typo3/flow: *
This package is not auto-updated.
Last update: 2026-03-10 10:01:49 UTC
README
is a TYPO3.Flow package to create webservices for existing code
Create webservice configuration where you define the methods that needs to be delivered as webservices
- Supports REST and SOAP
Example webservice configurations
Find all TYPO3\Flow\Security\Role with REST
webservices.yaml:
-
name: Roles
operations:
-
name: findAll
bindings:
-
type: rest
options:
url: webservice/security/role
method: GET
implementation:
class: TYPO3\Flow\Security\Policy\RoleRepository
method: findAll
Find one TYPO3\Flow\Security\Roles with REST
Note that the variable {identifier} in the url is automatically mapped to the $identifier parameter in the
findByIdentifiermethod
webservices.yaml:
-
name: read
bindings:
-
type: rest
options:
url: webservice/security/role/{identifier}
method: GET
implementation:
class: TYPO3\Flow\Security\Policy\RoleRepository
method: findByIdentifier