1. Add a folder named SOAPSupport to the Root-Folder of Zope

2. Add a PythonScript named soaptest to the folder SOAPSupport.
   Use the parameter a,b,c and the following code snippet:

--8<--
# Example code

return a+b*c
--8<--

3. Call cl_soaptest.py via command line:

   python cl_soaptest.py

   You should return a result of 7.

   You can test the XML-RPC function with cl_xmlrpctest.py via command line:

   python cl_xmlrpctest.py

   You should return a result of 7.

4. You can enable debugging in cl_soaptest.py. See the Config!

5. You can import SOAPSupport.zexp, with complete objects :)

6. An other examples can be cl_soapdict.py / soapdict:

	a. Add a PythonScript named soapdict to the folder SOAPSupport.
	   Use the parameter a,b,c,d and the following code snippet:

		--8<--
		# Examples code

		return { str(a): b, str(c) : d }
		--8<--

	b. Call cl_soapdict.py via command line:

		python cl_soapdict.py

		You should return a result of {'1': 2, '3', 4}

# vi:ts=4
