实例介绍
【实例简介】使用 python 开发 Web Service安装包ZSI
文件清单
└── ZSI-2.0
├── CHANGES
├── doc
│ ├── app-dispatch-dict.tex
│ ├── app-dispatch.tex
│ ├── app-lowlevel.tex
│ ├── app-pickler.tex
│ ├── app-wsdl2dispatch.tex
│ ├── app-wsdl2py.tex
│ ├── bibliography.tex
│ ├── blank.png
│ ├── c01-intro.tex
│ ├── c02a-coverage.tex
│ ├── c02-samples.tex
│ ├── c03-except.tex
│ ├── c04-utils.tex
│ ├── c05-parse.tex
│ ├── c06-tc.tex
│ ├── c07-writer.tex
│ ├── c08-fault.tex
│ ├── c09-resolve.tex
│ ├── c10-dispatch.tex
│ ├── client-hello-struct.tex
│ ├── contents.png
│ ├── dispatch-rpc-hello-array.tex
│ ├── dispatch-rpc-hello-struct.tex
│ ├── examples
│ │ ├── client
│ │ │ ├── receive_response
│ │ │ │ ├── complex
│ │ │ │ │ ├── binding.wsdl
│ │ │ │ │ ├── interface.wsdl
│ │ │ │ │ ├── manual
│ │ │ │ │ │ ├── client.py
│ │ │ │ │ │ └── ComplexTypes.py
│ │ │ │ │ ├── server
│ │ │ │ │ │ └── server.py
│ │ │ │ │ ├── types.xsd
│ │ │ │ │ └── wsdl2py
│ │ │ │ │ └── client.py
│ │ │ │ └── simple
│ │ │ │ ├── binding.wsdl
│ │ │ │ ├── interface.wsdl
│ │ │ │ ├── server
│ │ │ │ │ └── server.py
│ │ │ │ ├── ServiceProxy
│ │ │ │ │ └── client.py
│ │ │ │ └── wsdl2py
│ │ │ │ ├── client.py
│ │ │ │ └── README
│ │ │ └── send_request
│ │ │ ├── complex
│ │ │ │ ├── binding.wsdl
│ │ │ │ ├── interface.wsdl
│ │ │ │ ├── manual
│ │ │ │ │ ├── client.py
│ │ │ │ │ └── ComplexTypes.py
│ │ │ │ ├── server
│ │ │ │ │ ├── ComplexTypes.py
│ │ │ │ │ └── server.py
│ │ │ │ ├── types.xsd
│ │ │ │ └── wsdl2py
│ │ │ │ └── client.py
│ │ │ └── simple
│ │ │ ├── Binding
│ │ │ │ └── client.py
│ │ │ ├── binding.wsdl
│ │ │ ├── interface.wsdl
│ │ │ ├── README
│ │ │ ├── server
│ │ │ │ └── server.py
│ │ │ ├── ServiceProxy
│ │ │ │ └── client.py
│ │ │ └── wsdl2py
│ │ │ ├── client.py
│ │ │ └── README
│ │ └── server
│ │ ├── receive_request
│ │ │ ├── complex
│ │ │ │ ├── binding.wsdl
│ │ │ │ ├── client
│ │ │ │ │ ├── client.py
│ │ │ │ │ └── ComplexTypes.py
│ │ │ │ ├── interface.wsdl
│ │ │ │ ├── manual
│ │ │ │ │ ├── ComplexTypes.py
│ │ │ │ │ └── server.py
│ │ │ │ ├── types.xsd
│ │ │ │ └── wsdl2py
│ │ │ │ └── server.py
│ │ │ └── simple
│ │ │ ├── binding.wsdl
│ │ │ ├── CGI
│ │ │ │ ├── cgi.py
│ │ │ │ └── README
│ │ │ ├── client
│ │ │ │ └── client.py
│ │ │ ├── interface.wsdl
│ │ │ ├── mod_python
│ │ │ │ ├── mod_python.py
│ │ │ │ ├── MyHandler.py
│ │ │ │ └── README
│ │ │ └── standalone
│ │ │ ├── README
│ │ │ └── standalone.py
│ │ └── send_response
│ │ ├── complex
│ │ │ ├── binding.wsdl
│ │ │ ├── client
│ │ │ │ └── client.py
│ │ │ ├── interface.wsdl
│ │ │ ├── manual
│ │ │ │ ├── ComplexTypes.py
│ │ │ │ └── server.py
│ │ │ ├── types.xsd
│ │ │ └── wsdl2py
│ │ │ └── server.py
│ │ └── simple
│ │ ├── binding.wsdl
│ │ ├── interface.wsdl
│ │ ├── no_typecode
│ │ │ ├── client.py
│ │ │ └── server.py
│ │ └── wsdl2py
│ │ ├── client.py
│ │ ├── README
│ │ └── server.py
│ ├── guide01-intro.tex
│ ├── guide02-wsdl2py.tex
│ ├── guide03-wsdl2dispatch.tex
│ ├── guide.css
│ ├── guide.html
│ ├── guide.pdf
│ ├── guide.ps
│ ├── guide.tex
│ ├── index.png
│ ├── Makefile
│ ├── modules.png
│ ├── next.png
│ ├── previous.png
│ ├── pyfav.png
│ ├── up.png
│ ├── version.tex
│ ├── zsi.css
│ ├── zsi.html
│ ├── zsi.pdf
│ ├── zsi.ps
│ ├── zsi.tex
│ └── zsi.xsd
├── interop
│ ├── client.py
│ ├── cpackets.py
│ ├── echoHeaderBindings.wsdl
│ ├── InteropTestB.wsdl
│ ├── InteropTest.wsdl
│ ├── README
│ ├── sclasses.py
│ └── server.py
├── MANIFEST.in
├── PKG-INFO
├── README
├── samples
│ ├── Echo
│ │ ├── buildms.bat
│ │ ├── EchoClient.py
│ │ ├── echo.cs
│ │ ├── EchoServer.py
│ │ ├── Echo.wsdl
│ │ └── README
│ ├── poly.py
│ └── README
├── scripts
│ ├── wsdl2dispatch
│ └── wsdl2py
├── setup.cfg
├── setup.py
├── test
│ ├── cgicli.py
│ ├── README
│ ├── test_list.py
│ ├── test_rfc2617.py
│ ├── tests_bad.py
│ ├── tests_good.py
│ ├── test_t1.py
│ ├── test_t2.py
│ ├── test_t3.py
│ ├── test_t4.py
│ ├── test_t5.py
│ ├── test_t6.py
│ ├── test_t7.py
│ ├── test_t8.py
│ ├── test_t9.py
│ ├── test_TCtimes.py
│ ├── test_union.py
│ ├── test_URI.py
│ ├── test_zsi_net.py
│ ├── test_zsi.py
│ └── wsdl2py
│ ├── BasicComm.wsdl
│ ├── config.txt
│ ├── DateService.wsdl
│ ├── EchoWSAddr200403.wsdl
│ ├── FinancialService.wsdl
│ ├── Racing.wsdl
│ ├── README
│ ├── runTests.py
│ ├── servers
│ │ ├── BasicServer.py
│ │ ├── DateService.py
│ │ ├── EchoServer.py
│ │ ├── EchoWSAddr200403Server.py
│ │ ├── FinancialService.py
│ │ ├── SquareService.py
│ │ ├── WhiteMesa.py
│ │ └── WolframSearchService.py
│ ├── ServiceTest.py
│ ├── SquareService.wsdl
│ ├── test_AmazonS3.py
│ ├── test_Attributes.py
│ ├── test_Attributes.xsd
│ ├── test_AWSECommerceService.py
│ ├── test_BasicComm.py
│ ├── test_Choice.py
│ ├── test_Choice.xsd
│ ├── test_DateService.py
│ ├── test_DerivedTypes.py
│ ├── test_DerivedTypes.xsd
│ ├── test_Echo.py
│ ├── test_EchoWSAddr200403.py
│ ├── test_FinancialService.py
│ ├── test_InfoBil.py
│ ├── test_MapPoint.py
│ ├── test_OpcDaGateway.py
│ ├── test_Racing.py
│ ├── test_Sabre.py
│ ├── test_SquareService.py
│ ├── test_TerraService.py
│ ├── test_ThreatService.py
│ ├── test_WhiteMesa.py
│ ├── test_WolframSearch.py
│ ├── test_XMethodsQuery.py
│ └── test_ZipCodeResolver.py
├── ZSI
│ ├── address.py
│ ├── auth.py
│ ├── client.py
│ ├── digest_auth.py
│ ├── dispatch.py
│ ├── fault.py
│ ├── generate
│ │ ├── commands.py
│ │ ├── containers.py
│ │ ├── __init__.py
│ │ ├── pyclass.py
│ │ ├── utility.py
│ │ ├── wsdl2dispatch.py
│ │ └── wsdl2python.py
│ ├── __init__.py
│ ├── parse.py
│ ├── resolvers.py
│ ├── schema.py
│ ├── ServiceContainer.py
│ ├── ServiceProxy.py
│ ├── TCapache.py
│ ├── TCcompound.py
│ ├── TCnumbers.py
│ ├── TC.py
│ ├── TCtimes.py
│ ├── twisted
│ │ ├── client.py
│ │ ├── __init__.py
│ │ ├── WSresource.py
│ │ └── WSsecurity.py
│ ├── typeinterpreter.py
│ ├── version.py
│ ├── writer.py
│ └── wstools
│ ├── c14n.py
│ ├── __init__.py
│ ├── logging.py
│ ├── Namespaces.py
│ ├── test
│ │ ├── __init__.py
│ │ ├── test_t1.py
│ │ ├── test_wsdl.py
│ │ ├── test_wstools_net.py
│ │ └── test_wstools.py
│ ├── TimeoutSocket.py
│ ├── UserTuple.py
│ ├── Utility.py
│ ├── WSDLTools.py
│ ├── XMLname.py
│ └── XMLSchema.py
└── ZSI.egg-info
├── dependency_links.txt
├── entry_points.txt
├── PKG-INFO
├── requires.txt
├── SOURCES.txt
└── top_level.txt
55 directories, 245 files
【实例截图】
文件清单
└── ZSI-2.0
├── CHANGES
├── doc
│ ├── app-dispatch-dict.tex
│ ├── app-dispatch.tex
│ ├── app-lowlevel.tex
│ ├── app-pickler.tex
│ ├── app-wsdl2dispatch.tex
│ ├── app-wsdl2py.tex
│ ├── bibliography.tex
│ ├── blank.png
│ ├── c01-intro.tex
│ ├── c02a-coverage.tex
│ ├── c02-samples.tex
│ ├── c03-except.tex
│ ├── c04-utils.tex
│ ├── c05-parse.tex
│ ├── c06-tc.tex
│ ├── c07-writer.tex
│ ├── c08-fault.tex
│ ├── c09-resolve.tex
│ ├── c10-dispatch.tex
│ ├── client-hello-struct.tex
│ ├── contents.png
│ ├── dispatch-rpc-hello-array.tex
│ ├── dispatch-rpc-hello-struct.tex
│ ├── examples
│ │ ├── client
│ │ │ ├── receive_response
│ │ │ │ ├── complex
│ │ │ │ │ ├── binding.wsdl
│ │ │ │ │ ├── interface.wsdl
│ │ │ │ │ ├── manual
│ │ │ │ │ │ ├── client.py
│ │ │ │ │ │ └── ComplexTypes.py
│ │ │ │ │ ├── server
│ │ │ │ │ │ └── server.py
│ │ │ │ │ ├── types.xsd
│ │ │ │ │ └── wsdl2py
│ │ │ │ │ └── client.py
│ │ │ │ └── simple
│ │ │ │ ├── binding.wsdl
│ │ │ │ ├── interface.wsdl
│ │ │ │ ├── server
│ │ │ │ │ └── server.py
│ │ │ │ ├── ServiceProxy
│ │ │ │ │ └── client.py
│ │ │ │ └── wsdl2py
│ │ │ │ ├── client.py
│ │ │ │ └── README
│ │ │ └── send_request
│ │ │ ├── complex
│ │ │ │ ├── binding.wsdl
│ │ │ │ ├── interface.wsdl
│ │ │ │ ├── manual
│ │ │ │ │ ├── client.py
│ │ │ │ │ └── ComplexTypes.py
│ │ │ │ ├── server
│ │ │ │ │ ├── ComplexTypes.py
│ │ │ │ │ └── server.py
│ │ │ │ ├── types.xsd
│ │ │ │ └── wsdl2py
│ │ │ │ └── client.py
│ │ │ └── simple
│ │ │ ├── Binding
│ │ │ │ └── client.py
│ │ │ ├── binding.wsdl
│ │ │ ├── interface.wsdl
│ │ │ ├── README
│ │ │ ├── server
│ │ │ │ └── server.py
│ │ │ ├── ServiceProxy
│ │ │ │ └── client.py
│ │ │ └── wsdl2py
│ │ │ ├── client.py
│ │ │ └── README
│ │ └── server
│ │ ├── receive_request
│ │ │ ├── complex
│ │ │ │ ├── binding.wsdl
│ │ │ │ ├── client
│ │ │ │ │ ├── client.py
│ │ │ │ │ └── ComplexTypes.py
│ │ │ │ ├── interface.wsdl
│ │ │ │ ├── manual
│ │ │ │ │ ├── ComplexTypes.py
│ │ │ │ │ └── server.py
│ │ │ │ ├── types.xsd
│ │ │ │ └── wsdl2py
│ │ │ │ └── server.py
│ │ │ └── simple
│ │ │ ├── binding.wsdl
│ │ │ ├── CGI
│ │ │ │ ├── cgi.py
│ │ │ │ └── README
│ │ │ ├── client
│ │ │ │ └── client.py
│ │ │ ├── interface.wsdl
│ │ │ ├── mod_python
│ │ │ │ ├── mod_python.py
│ │ │ │ ├── MyHandler.py
│ │ │ │ └── README
│ │ │ └── standalone
│ │ │ ├── README
│ │ │ └── standalone.py
│ │ └── send_response
│ │ ├── complex
│ │ │ ├── binding.wsdl
│ │ │ ├── client
│ │ │ │ └── client.py
│ │ │ ├── interface.wsdl
│ │ │ ├── manual
│ │ │ │ ├── ComplexTypes.py
│ │ │ │ └── server.py
│ │ │ ├── types.xsd
│ │ │ └── wsdl2py
│ │ │ └── server.py
│ │ └── simple
│ │ ├── binding.wsdl
│ │ ├── interface.wsdl
│ │ ├── no_typecode
│ │ │ ├── client.py
│ │ │ └── server.py
│ │ └── wsdl2py
│ │ ├── client.py
│ │ ├── README
│ │ └── server.py
│ ├── guide01-intro.tex
│ ├── guide02-wsdl2py.tex
│ ├── guide03-wsdl2dispatch.tex
│ ├── guide.css
│ ├── guide.html
│ ├── guide.pdf
│ ├── guide.ps
│ ├── guide.tex
│ ├── index.png
│ ├── Makefile
│ ├── modules.png
│ ├── next.png
│ ├── previous.png
│ ├── pyfav.png
│ ├── up.png
│ ├── version.tex
│ ├── zsi.css
│ ├── zsi.html
│ ├── zsi.pdf
│ ├── zsi.ps
│ ├── zsi.tex
│ └── zsi.xsd
├── interop
│ ├── client.py
│ ├── cpackets.py
│ ├── echoHeaderBindings.wsdl
│ ├── InteropTestB.wsdl
│ ├── InteropTest.wsdl
│ ├── README
│ ├── sclasses.py
│ └── server.py
├── MANIFEST.in
├── PKG-INFO
├── README
├── samples
│ ├── Echo
│ │ ├── buildms.bat
│ │ ├── EchoClient.py
│ │ ├── echo.cs
│ │ ├── EchoServer.py
│ │ ├── Echo.wsdl
│ │ └── README
│ ├── poly.py
│ └── README
├── scripts
│ ├── wsdl2dispatch
│ └── wsdl2py
├── setup.cfg
├── setup.py
├── test
│ ├── cgicli.py
│ ├── README
│ ├── test_list.py
│ ├── test_rfc2617.py
│ ├── tests_bad.py
│ ├── tests_good.py
│ ├── test_t1.py
│ ├── test_t2.py
│ ├── test_t3.py
│ ├── test_t4.py
│ ├── test_t5.py
│ ├── test_t6.py
│ ├── test_t7.py
│ ├── test_t8.py
│ ├── test_t9.py
│ ├── test_TCtimes.py
│ ├── test_union.py
│ ├── test_URI.py
│ ├── test_zsi_net.py
│ ├── test_zsi.py
│ └── wsdl2py
│ ├── BasicComm.wsdl
│ ├── config.txt
│ ├── DateService.wsdl
│ ├── EchoWSAddr200403.wsdl
│ ├── FinancialService.wsdl
│ ├── Racing.wsdl
│ ├── README
│ ├── runTests.py
│ ├── servers
│ │ ├── BasicServer.py
│ │ ├── DateService.py
│ │ ├── EchoServer.py
│ │ ├── EchoWSAddr200403Server.py
│ │ ├── FinancialService.py
│ │ ├── SquareService.py
│ │ ├── WhiteMesa.py
│ │ └── WolframSearchService.py
│ ├── ServiceTest.py
│ ├── SquareService.wsdl
│ ├── test_AmazonS3.py
│ ├── test_Attributes.py
│ ├── test_Attributes.xsd
│ ├── test_AWSECommerceService.py
│ ├── test_BasicComm.py
│ ├── test_Choice.py
│ ├── test_Choice.xsd
│ ├── test_DateService.py
│ ├── test_DerivedTypes.py
│ ├── test_DerivedTypes.xsd
│ ├── test_Echo.py
│ ├── test_EchoWSAddr200403.py
│ ├── test_FinancialService.py
│ ├── test_InfoBil.py
│ ├── test_MapPoint.py
│ ├── test_OpcDaGateway.py
│ ├── test_Racing.py
│ ├── test_Sabre.py
│ ├── test_SquareService.py
│ ├── test_TerraService.py
│ ├── test_ThreatService.py
│ ├── test_WhiteMesa.py
│ ├── test_WolframSearch.py
│ ├── test_XMethodsQuery.py
│ └── test_ZipCodeResolver.py
├── ZSI
│ ├── address.py
│ ├── auth.py
│ ├── client.py
│ ├── digest_auth.py
│ ├── dispatch.py
│ ├── fault.py
│ ├── generate
│ │ ├── commands.py
│ │ ├── containers.py
│ │ ├── __init__.py
│ │ ├── pyclass.py
│ │ ├── utility.py
│ │ ├── wsdl2dispatch.py
│ │ └── wsdl2python.py
│ ├── __init__.py
│ ├── parse.py
│ ├── resolvers.py
│ ├── schema.py
│ ├── ServiceContainer.py
│ ├── ServiceProxy.py
│ ├── TCapache.py
│ ├── TCcompound.py
│ ├── TCnumbers.py
│ ├── TC.py
│ ├── TCtimes.py
│ ├── twisted
│ │ ├── client.py
│ │ ├── __init__.py
│ │ ├── WSresource.py
│ │ └── WSsecurity.py
│ ├── typeinterpreter.py
│ ├── version.py
│ ├── writer.py
│ └── wstools
│ ├── c14n.py
│ ├── __init__.py
│ ├── logging.py
│ ├── Namespaces.py
│ ├── test
│ │ ├── __init__.py
│ │ ├── test_t1.py
│ │ ├── test_wsdl.py
│ │ ├── test_wstools_net.py
│ │ └── test_wstools.py
│ ├── TimeoutSocket.py
│ ├── UserTuple.py
│ ├── Utility.py
│ ├── WSDLTools.py
│ ├── XMLname.py
│ └── XMLSchema.py
└── ZSI.egg-info
├── dependency_links.txt
├── entry_points.txt
├── PKG-INFO
├── requires.txt
├── SOURCES.txt
└── top_level.txt
55 directories, 245 files
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论