This repository was archived by the owner on Oct 7, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff 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)
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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
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)
You can’t perform that action at this time.
0 commit comments