[cl-soap-cvs] CVS update: cl-soap/src/package.lisp

Sven Van Caekenberghe scaekenberghe at common-lisp.net
Thu Sep 15 13:31:12 UTC 2005


Update of /project/cl-soap/cvsroot/cl-soap/src
In directory common-lisp.net:/tmp/cvs-serv23561/src

Modified Files:
	package.lisp 
Log Message:
added exports to define the public API

Date: Thu Sep 15 15:31:11 2005
Author: scaekenberghe

Index: cl-soap/src/package.lisp
diff -u cl-soap/src/package.lisp:1.1 cl-soap/src/package.lisp:1.2
--- cl-soap/src/package.lisp:1.1	Mon Sep  5 10:35:55 2005
+++ cl-soap/src/package.lisp	Thu Sep 15 15:31:11 2005
@@ -1,6 +1,6 @@
 ;;;; -*- mode: lisp -*-
 ;;;;
-;;;; $Id: package.lisp,v 1.1 2005/09/05 08:35:55 scaekenberghe Exp $
+;;;; $Id: package.lisp,v 1.2 2005/09/15 13:31:11 scaekenberghe Exp $
 ;;;;
 ;;;; Definition of the CL-SOAP package
 ;;;;
@@ -15,7 +15,21 @@
 
 (defpackage :cl-soap
   (:use :common-lisp)
-  (:export)
+  (:export 
+   ;; standard soap
+   #:make-soap-end-point #:soap-call 
+   standard-soap-fault #:fault-code #:fault-string #:fault-actor #:fault-detail
+   #:*debug-stream* *last-soap-call-xml* *last-soap-result-xml*
+   +soap-enc-ns-uri+
+   ;; wsdl
+   #:parse-wsdl #:parse-wsdl-file #:parse-wsdl-url #:describe-wsdl-soap
+   #:wsdl-soal-call
+   ;; xsd
+   #:parse-xsd #:parse-xsd-file #:parse-xsd-url
+   ;; lxml
+   #:lxml-get-tag #:lxml-get-attributes #:lxml-find-tag
+   ;; html-client
+   #:do-http-request #:make-http-client-state #:close-all-connections)
   (:documentation "The Common Lisp SOAP package"))
 
 ;;;; eof




More information about the Cl-soap-cvs mailing list