- or download this
package MyApp::ForeignSource::SOAP;
# Some object system… Moose/Mouse/Class::Accessor
...
# and returning the data in nice perl structures or with iterators
# and helpers like Data::Page.
1;
- or download this
package MyApp::FSS;
use parent "Catalyst::Model::Adaptor";
...
# If the arguments to MyApp::ForeignSource::SOAP
# are a hash ref, you’re probably done.
1;
- or download this
---
# myapp.yml
...
args:
service: http://soap.example.org/srvc.wsdl
et: cetera
- or download this
package MyApp::Controller::SomeClass;
use Moose;
...
__PACKAGE__->meta->make_immutable;
1;