WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
This repository was archived by the owner on Oct 7, 2024. It is now read-only.

Commit 044ecc4

Browse files
committed
Bump up version number
1 parent 49e55f5 commit 044ecc4

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,9 @@ Because soap-ws depends on a list of external dependencies that are not publishe
6363
;; clj-http not included, add it yourself
6464
(require '[clj-http.client :as client])
6565
(require '[paos.service :as service])
66+
(require '[paos.wsdl :as wsdl])
6667

67-
(let [soap-service (parse "http://www.thomas-bayer.com/axis2/services/BLZService?wsdl")
68+
(let [soap-service (wsdl/parse "http://www.thomas-bayer.com/axis2/services/BLZService?wsdl")
6869
srv (get-in soap-service ["BLZServiceSOAP11Binding" :operations "getBank"])
6970
soap-url (get-in soap-service ["BLZServiceSOAP11Binding" :url])
7071
soap-action (service/soap-action srv)

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>io.xapix</groupId>
55
<artifactId>paos</artifactId>
6-
<version>0.1.1-SNAPSHOT</version>
6+
<version>0.1.1</version>
77
<name>paos</name>
88
<dependencies>
99
<dependency>

src/paos/wsdl.clj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
(ns paos.wsdl
22
(:require [clojure.java.io :as io]
33
[clojure.string :as string]
4-
[paos.service :as service])
4+
[paos.service :as service]
5+
[paos.wsdl :as wsdl])
56
(:import [org.reficio.ws.builder.core SoapOperationImpl Wsdl]
67
[org.reficio.ws SoapBuilderException]
78
org.reficio.ws.SoapContext
@@ -99,8 +100,9 @@
99100

100101
(require '[clj-http.client :as client])
101102
(require '[paos.service :as service])
103+
(require '[paos.wsdl :as wsdl])
102104

103-
(let [soap-service (parse "http://www.thomas-bayer.com/axis2/services/BLZService?wsdl")
105+
(let [soap-service (wsdl/parse "http://www.thomas-bayer.com/axis2/services/BLZService?wsdl")
104106
srv (get-in soap-service ["BLZServiceSOAP11Binding" :operations "getBank"])
105107
soap-url (get-in soap-service ["BLZServiceSOAP11Binding" :url])
106108
soap-action (service/soap-action srv)

0 commit comments

Comments
 (0)