Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gautric/reportincidentapp
https://github.com/gautric/reportincidentapp
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/gautric/reportincidentapp
- Owner: gautric
- Created: 2014-12-23T12:08:40.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-24T13:24:36.000Z (almost 10 years ago)
- Last Synced: 2024-10-20T08:58:23.134Z (18 days ago)
- Language: Java
- Size: 219 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Report Incident Proxy
============================from CXF WebService Proxy example Camel
You will need to compile this example first:
```bash
mvn compile
```Execute JBoss cli script
```bash
jboss-cli.sh --file src/main/jboss/configure-jms.cli
```
To run the example type:
```bash
mvn jboss:deploy
```
The proxied webservice is located at
```
http:///report-incident/proxy/incident
```
The real webservice is located at
```
http:///report-incident/soap/incident
```
The webservice WSDL is exposed at:
```
http:///report-incident/soap/incident?wsdl
```To make a SOAP call open soapUI or another SOAP query tool and create a new
project w/WSDL of http:///report-incident/soap/incident?wsdl.
Then make SOAP requests of this format:
```xml
122
2010-01-01
Low
Jean
Hello
World
[email protected]
```
This example comes from
```
http://camel.apache.org/cxf-proxy-example.html
```
Raise a Issue ticket on github if needed