Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/iulianoroberto/soap_webservice_jax-ws
- Owner: iulianoroberto
- Created: 2024-01-16T13:02:37.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-01-16T13:16:04.000Z (12 months ago)
- Last Synced: 2024-01-30T01:49:23.264Z (11 months ago)
- Topics: cxf, cxf-service, java, jax, jax-ws, jax-ws-specifications, soap, soap-web-services, web, web-service, webservice
- Language: Java
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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).