Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
damjack committed Aug 9, 2018
1 parent 701773e commit 95c5014
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at davidlibrera@gmail.com. All
reported by contacting the project team at giacomello.damiano@gmail.com. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Expand Down
36 changes: 30 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,37 @@ base.build
After this, the system generate new class in according with WSDL definitions
with namespace PagoPa

For pagoPA you can specify host, endpoint and other setting in a configuration block
```ruby
PagoPa::NodoChiediStatoRpt
PagoPa::NodoChiediListaPendentiRpt
PagoPa::NodoInviaRpt
PagoPa::NodoInviaCarrelloRpt
PagoPa::NodoChiediCopiaRt
PagoPa::NodoChiediInformativaPsp
PagoPa::NodoPaChiediInformativaPa
PagoPa::NodoChiediElencoQuadraturePa
PagoPa::NodoChiediQuadraturaPa
PagoPa::NodoChiediElencoFlussiRendicontazione
PagoPa::NodoChiediFlussoRendicontazione
PagoPa::NodoInviaRichiestaStorno
PagoPa::NodoInviaRispostaRevoca
PagoPa::NodoChiediSceltaWisp
PagoPa::NodoInviaAvvisoDigitale
```

For pagoPA you can specify WSDL, endpoint and namespace in a configuration block

# config/initializers/pagopa_soap.rb
# This is your pagoPA Wrapper setting.
PagopaSoap::Configurable.configure do |config|
config.endpoint = "https://host-nodo-spc/webservices/"
end
```ruby
# config/initializers/pagopa_soap.rb
# This is your pagoPA Wrapper setting.
PagopaSoap::Configurable.configure do |config|
config.namespace = "PagoPa"
config.wsdl_base = "WSDL with webservice specification"
config.wsdl_notify = "WSDL with webservice for PUSH notification"
config.endpoint_base = "https://host-nodo-spc/webservices/"
config.endpoint_notify = "https://host-nodo-spc-push/webservices/"
end
```

## License

Expand Down

0 comments on commit 95c5014

Please sign in to comment.