Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/iulianoroberto/soap_webservice_jax-ws

Java implementation of a SOAP WebService for online payment by JAX-WS.
https://github.com/iulianoroberto/soap_webservice_jax-ws

cxf cxf-service java jax jax-ws jax-ws-specifications soap soap-web-services web web-service webservice

Last synced: about 1 month ago
JSON representation

Java implementation of a SOAP WebService for online payment by JAX-WS.

Awesome Lists containing this project

README

        

# SOAP_WebService_JAX-WS
Java implementation of a SOAP WebService for online payment by JAX-WS.

Implementatio (bottom-up approach*) of a Web service for on-line payment. The service has:
- An operation that returns the supported credit cards;
- An operation that returns the registered organizations (which can receive payments);
- An operation to pay.

The Java interface is the following:
- List getSupportedCreditCards();
- List getRegisteredOrganizations();
- void pay(String cctype, String ccnumber, String code, Double amount, int destination).

\* Bottom-up approach (the WSDL description is created starting from the Java interface).