Skip to content
This repository has been archived by the owner on Jun 29, 2021. It is now read-only.

Commit

Permalink
SOAP の説明追記。
Browse files Browse the repository at this point in the history
  • Loading branch information
hosomi committed Oct 7, 2016
1 parent f46fbc7 commit 66500af
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,27 @@ http://www.webjars.org/
| webapp-runner | 8.5.5.0 | ランチャーアプリケーション Heroku で war を起動させるために利用 |
| com.h2database:h2 | ※1 | H2 Database ランタイム |
| org.springframework.boot:spring-boot-starter-test | ※1 | SpringBoot test |
| org.springframework.security:spring-security-test | ※1 | SpringBootSecurity |
| org.springframework.security:spring-security-test | ※1 | SpringBoot Security |
| org.dbunit:dbunit | 2.5.3 | DB Test |

## SOAP:
| 対象 | バージョン | 内容または URL |
| --------------------------------- | --------- |:------------------------------------------- |
| org.springframework.boot:spring-boot-starter-web-services | ※1 | SpringBoot SOAP |
| wsdl4j | 1.6.3 | WSDL |

### SOAP client (Curl example):

```shell
curl --header "content-type: text/xml" -d @src/test/resources/ws/requestUser.xml http://localhost:8080/ws/user
```

or (Heroku)

```shell
curl --header "content-type: text/xml" -d @src/test/resources/ws/requestUser.xml http://springboottemplate.herokuapp.com/ws/user
```

## CDN

http://www.jsdelivr.com
Expand Down

0 comments on commit 66500af

Please sign in to comment.