Help for this page

Select Code to Download


  1. 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;
    
  2. 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;
    
  3. or download this
    ---
    # myapp.yml
    ...
       args:
         service: http://soap.example.org/srvc.wsdl
         et: cetera
    
  4. or download this
    package MyApp::Controller::SomeClass;
    use Moose;
    ...
    __PACKAGE__->meta->make_immutable;
    
    1;