- 浏览: 199338 次
- 性别:
- 来自: 苏州
文章分类
最新评论
-
limingpeng:
写得非常实用
捉摸Python的WSGI -
shanewin:
使用Axis2生成wsdl文件 -
yaowenqiang:
锦书确实不错,我看的时候都是把字体开到最大。我现在都是把别人的 ...
为锦书去窃书 -
xi4nyu:
看PDF字体大么?
为锦书去窃书 -
peteryao:
唉。。。。python调试相当恶心
被偷无奈写个收菜外挂
由于是中途从CSDN博客跳到了这里,先介绍一下我参加的Stitp项目吧:
为了在市场上生存,运营商要求能够更快更方便地提供各种个性化业务。每个用户应能便捷地按其个性化要求订制所订购的业务,而不能要求用户必须具备某种特定的能力或技术。为了实现这个目标,这就需要研究用户订制个性化业务的方法。 加密 PushEmail 业务是移动公司向企业用户提供的一种新业务。为了支持业务的开通,移动公司制定了BOSS 和邮件代理网关的接口方式和一系列规范,这些规范还在不断完善之中。本课题拟研究一种 更为便捷地为用户激活个性化 加密 PushEmail 业务的方法。
个性化业务依赖于用户所持的移动终端能力以及嵌入在该终端中的软件。因此(1 )本课题研究个性化 PushEmail 业务所需要的信息:用户语境轮廓,该语境轮廓应能描述用户的喜好以及用户移动终端的资源;(2 )本课题拟研究个性化 业务的参数自动配置处理方法,定义BOSS 、自动配置服务器和 邮件代理网关之间实现 个性化 业务 的接口,从而能通过所定义的接口依据用户的个性化需求自动配置加密PushEmail 业务。
最近在看的主力资料是Apache Axis2的英文文档。首先想要了解下Axis2是干什么的:初步感觉是,Axis2是一个帮助网络服务在网络上进行SOAP通信的实现方式。接着便是要知道这头回接触的“服务”到底是怎末实现的。目前看到的部分主要在讲服务的发布和客户端的生成方式。
在看文档的同时,也动手实践了些东西,比如写了两个用SOAP封装的XML文件,分别描述了ACS端的方法和CPE端的方法。但还不知道有没有错误,只能边学边修改了……
ACS.xml :
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:cwmp="urn:dslforum-org:cwmp-1-0"> <soap:Body> <cwmp:GetRPCMethods></cwmp:GetRPCMethods> <cwmp:GetRPCMethodsResponse> <MethodList soap-enc:arrayType="xsd:string[3]"> <string>GetRPCMethods</string> <string>Inform</string> <string>TransferComplete</string> </MethodList> </cwmp:GetRPCMethodsResponse> <cwmp:SetParameterValues> <!--这里只是示例两个参数,现实可以更多--> <ParameterList soap-enc:arrayType="cwmp:ParameterValueStruct[2]"> <ParameterValueStruct> <name soap-enc:arrayType="xsd:string(256)"> Parameter1 </name> <!--这里的string类型是假设的,具体可以更改--> <value xsi:type="xsd:string">1234</value> </ParameterValueStruct> <ParameterValueStruct> <name soap-enc:arrayType="xsd:string(256)"> Parameter2 </name> <!--这里的string类型是假设的,具体可以更改--> <value xsi:type="xsd:string">5678</value> </ParameterValueStruct> </ParameterList> <ParameterKey soap-enc:arrayType="xsd:string(32)"> <string>somevalue</string> </ParameterKey> </cwmp:SetParameterValues> <GetParameterValues soap-enc:arrayType="xsd:string(256)[2]"><!--想要获得的参数的个数就是string数组的大小,举例两个--> <string> InternetGatewayDevice.DeviceInfo.SerialNumber </string> <string>InternetGatewayDevice.DeviceInfo.</string> </GetParameterValues> <GetParameterNames> <ParameterPath soap-enc:arrayType="xsd:string(256)"> InternetGatewayDevice.DeviceInfo.SerialNumber </ParameterPath> <NextLevel soap-enc:arrayType="xsd:boolean"> boolean </NextLevel> </GetParameterNames> <SetParameterAttributes> <ParameterList soap-enc:arrayType="cwmp:SetParameterAttributesStruct[2]"> <ParameterAttributeStruct> <Name soap-enc:arrayType="xsd:string(256)"> InternetGatewayDevice.DeviceInfo.SerialNumber </Name> <Notification soap-enc:arrayType="xsd:int[0:2]"> 0 <!--0:Notification off;1:Passive notification;2:Active notification--> </Notification> <AccessListChange xsi:type="xsd:boolean"> false<!--true:The value of AccessList replaces the current access list for this parameter or group of parameters;false:No change is made to the access list.--> </AccessListChange> <AccessList soap-enc:arrayType="xsd:string(64)[]"> <string>Subscriber</string> </AccessList> </ParameterAttributeStruct> </ParameterList> </SetParameterAttributes> <GetParameterAttributes> <!--假设是两个参数--> <ParameterNames soap-enc:arrayType="xsd:string(256)[]"> <string>11111</string> <string>11111</string> </ParameterNames> </GetParameterAttributes> <AddObject> <ObjectName xsi:type="string(256)"><!--The path name must end with a "." after the last node in the hierarchical name of the object--></ObjectName> <ParameterKey xsi:type="string(32)"></ParameterKey> </AddObject> <DeleteObject> <ObjectName xsi:type="xsd:string(256)"></ObjectName> <ParameterKey xsi:type="xsd:string(32)"></ParameterKey> </DeleteObject> <Download> <CommandKey xsi:type="xsd:string(32)"></CommandKey> <FileType xsi:type="xsd:string(64)"></FileType> <URL xsi:type="string(256)"></URL> <Username xsi:type="xsd:string(256)"></Username> <Password xsi:type="xsd:string(256)"></Password> <FileSize xsi:type="xsd:unsignedInt"></FileSize> <TargetFileName xsi:type="xsd:string(256)"></TargetFileName> <DelaySeconds xsi:type="xsd:unsignedInt"></DelaySeconds> <SuccessURL xsi:type="xsd:string(256)"></SuccessURL> <FailureURL xsi:type="xsd:string(256)"></FailureURL> </Download> <Reboot> <CommandKey xsi:type="xsd:string(32)"></CommandKey> </Reboot> <InformResponse> <MaxEnvelopes xsi:type="xsd:unsignedInt"></MaxEnvelopes> </InformResponse> <TransferCompleteResponse></TransferCompleteResponse> <AutonomousTransferCompleteResponse></AutonomousTransferCompleteResponse> </soap:Body> </soap:Envelope>
CPE.xml :
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soap-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:cwmp="urn:dslforum-org:cwmp-1-0"> <soap:Body> <cwmp:GetRPCMethods></cwmp:GetRPCMethods> <cwmp:GetRPCMethodsResponse> <MethodList soap-enc:arrayType="xsd:string[10]"> <string>GetRPCMethods</string> <string>SetParameterValues</string> <string>GetParameterValues</string> <string>GetParameterNames</string> <string>SetParameterAttributes</string> <string>GetParameterAttributes</string> <string>AddObject</string> <string>DeleteObject</string> <string>Reboot</string> <string>Download</string> </MethodList> </cwmp:GetRPCMethodsResponse> <SetParameterValuesResponse> <Status soap-enc:arrayType="xsd:int[0:1]">1</Status> </SetParameterValuesResponse> <GetParameterValuesResponse> <ParameterList soap-enc:arrayType="cwmp:ParameterValueStruct[2]"> <ParameterValueStruct> <name soap-enc:arrayType="xsd:string(256)"> Parameter1 </name> <!--这里的string类型是假设的,具体可以更改--> <value xsi:type="xsd:string">1234</value> </ParameterValueStruct> <ParameterValueStruct> <name soap-enc:arrayType="xsd:string(256)"> Parameter2 </name> <!--这里的string类型是假设的,具体可以更改--> <value xsi:type="xsd:string">5678</value> </ParameterValueStruct> </ParameterList> </GetParameterValuesResponse> <GetParameterNamesResponse> <ParameterList soap-enc:arrayType="cwmp:ParameterInfoStruct[]"> <ParameterInfoStruct> <name xsi:type="xsd:string(256)">Parameter1</name> <!--这里的string类型是假设的,具体可以更改--> <Writable xsi:type="xsd:boolean">boolean</Writable> </ParameterInfoStruct> <ParameterInfoStruct> <name xsi:type="xsd:string(256)">Parameter2</name> <!--这里的string类型是假设的,具体可以更改--> <Writable xsi:type="xsd:boolean">boolean</Writable> </ParameterInfoStruct> </ParameterList> </GetParameterNamesResponse> <SetParameterAttributesResponse> </SetParameterAttributesResponse> <GetParameterAttriutesResponse> <ParameterList soap-enc:arrayType="cwmp:ParameterAttributeStruct[]"> <ParameterAttributeStruct> <Name xsi:type="xsd:string(256)"> InternetGatewayDevice.DeviceInfo.SerialNumber <!--Must not be a partial path--> </Name> <Notification soap-enc:arrayType="xsd:int[0:2]"> 0 <!--0:Notification off;1:Passive notification;2:Active notification--> </Notification> <AccessList soap-enc:arrayType="xsd:string(64)[]"> <string>Subscriber</string> </AccessList> </ParameterAttributeStruct> </ParameterList> </GetParameterAttriutesResponse> <AddObjectResponse> <InstanceNumber soap-enc:arrayType="xsd:UnsignedInt[1:]"></InstanceNumber> <Status soap-enc:arrayType="xsd:int[0:1]"><!--0=The object has been created;1=The object creation has been validated and committed,but not yet applied--></Status> </AddObjectResponse> <DeleteObjectResponse> <Status soap-enc:arrayType="xsd:int[0:1]"><!--0=The object has been deleted;1=The object deletion has been validated and committed,but not yet applied--></Status> </DeleteObjectResponse> <DownloadResponse> <Status soap-enc:arrayType="xsd:int[0:1]"><!--0=Download has completed and been applied;1=Download has not yet been completed and applied--></Status> <StartTime xsi:type="xsd:dateTime"></StartTime> <CompleteTime xsi:type="xsd:dateTime"></CompleteTime> </DownloadResponse> <RebootResponse></RebootResponse> <Inform> <DeviceId xsi:type="cwmp:DeviceldStruct"> <DeviceldStruct> <Manufacturer xsi:type="xsd:string(64)"></Manufacturer> <OUI xsi:type="xsd:string(6)"></OUI> <ProductClass xsi:type="xsd:string(64)"></ProductClass> <SerialNumber xsi:type="xsd:string(64)"></SerialNumber> </DeviceldStruct> </DeviceId> <Event soap-enc:arrayType="cwmp:EventStruct[64]"> <!--须再添加,参见P34表7--> <EventStruct> <EventCode xsi:type="xsd:string(64)"> 0 BOOTSTRAP </EventCode> <CommandKey xsi:type="xsd:string(32)"></CommandKey> </EventStruct> </Event> <MaxEnvelopes xsi:type="unsignedInt"></MaxEnvelopes> <CurrentTime xsi:type="dateTime"></CurrentTime> <RetryCount xsi:type="unsignedInt"></RetryCount> <ParameterList soap-enc:arrayType="cwmp:ParameterValueStruct[]"> <!--可再添加--> <ParameterValueStruct> <name xsi:type="xsd:string(256)"></name> <value xsi:type=""></value> </ParameterValueStruct> </ParameterList> </Inform> <TransferComplete> <CommandKey xsi:type="xsd:string(32)"></CommandKey> <FaultStruct xsi:type="cwmp:FaultStruct"> <!--数组成员还可再添加--> <FaultStruct> <FaultCode xsi:type="xsd:unsignedInt"></FaultCode> <FaultString xsi:type="xsd:string(256)"></FaultString> </FaultStruct> </FaultStruct> <StartTime xsi:type="xsd:dateTime"></StartTime> <CompleteTime xsi:type="xsd:dateTime"></CompleteTime> </TransferComplete> <AutonomousTransferComplete> <AnnounceURL xsi:type="xsd:string(1024)"></AnnounceURL> <TransferURL xsi:type="xsd:string(1024)"></TransferURL> <IsDownload xsi:type="xsd:boolean"></IsDownload> <FileType xsi:type="xsd:string(64)"></FileType> <FileSize xsi:type="xsd:unsignedInt"></FileSize> <TargetFileName xsi:type="xsd:string(256)"></TargetFileName> <FaultStruct xsi:type="cwmp:FaultStruct"></FaultStruct> <StartTime xsi:type="xsd:dateTime"></StartTime> <CompleteTime xsi:type="xsd:dateTime"></CompleteTime> </AutonomousTransferComplete> </soap:Body> </soap:Envelope>
评论
应该是xsi:type="xsd:string" 吧。。。
应该是xsi:type="xsd:string" 吧。。。
发表评论
-
两天记
2011-01-10 22:24 934本记主要记录一下昨天 ... -
上手mercurial
2010-11-28 20:19 1245无论是在学校里 ... -
我的服务流程编排工具第一个发布版
2010-04-26 15:32 928话说上次有前辈推荐学习敏捷开发方法,于是我去 ... -
在学校项目中感受软件设计和设计模式
2010-03-29 22:11 797虽然专业是软件 ... -
一个不完满的中期检查
2010-03-09 22:51 838发现每次项目结 ... -
我的BPEL业务编排系统雏形
2010-02-25 23:13 1008虽然今天结束了连续的艳阳天,下了半天雨,又闷又热,但 ... -
写了两周的代码的感悟
2010-01-29 12:57 866好久没有更新博 ... -
(STITP)jotm-btp项目的Demo分析
2009-10-18 20:37 1405STITP的中期检查 ... -
体验Google Code
2008-11-27 21:11 1422我们的Stitp项 ... -
stitp项目笔记(二)
2008-11-14 19:56 1701昨天下午,我们小组所有成员一同去了趟本部(我们指 ... -
上机考试软件(二)
2008-11-03 21:05 970在这个实验性质的C/S模式机考软件项目中,我所负 ... -
上机考试软件开发(一)
2008-09-26 18:42 1080最近参与了一个开发上机考试软件的实验项目,我主要 ... -
完成CPE端java模拟实现初稿的一定心得
2008-08-01 18:35 2940之前看了些预备知识,最近在利用这些技巧来实现科协 ...
相关推荐
标题“STITP.rar_stitp”暗示我们正在讨论一个与大学生创新计划相关的项目,该项目可能涉及温度传感系统。"STITP"可能是“大学生创新技术实践计划”(Student Innovation and Technology Practice Program)的缩写,...
本资源是一个关于2006年南京邮电大学学生科技创新训练计划(STITP)立项项目汇总表,共计38个项目。以下是从该资源中提取的知识点: 1. 市场营销专业的就业前景调查:本项目旨在研究南京邮电大学市场营销专业的就业...
从管理员身份获得 SYSTEM 权限的四种方法 伪寄存器语法(Pseudo-Register Syntax) 利用 cards.dll 写自己的扑克程序 利用 Debug API 编写一个简单的脱壳机 手工构造一个超微型的 PE 文件 改造 MFC 编写的控件在 Win...
│ ├── stitp/ :项目所有代码 │ │ ├── stitp/src/main/java/cn.edu.njupt/configure/SystemVariables.java/ :系统的一些环境变量; │ │ └── src/main/webapp/js/index.js/ :web的请求路径 │ │ ├...
Welcome to 基于微信小程序的货物和食品的本地化配送平台系统:waving_hand:一款方便校园内食堂代排队、代取快递的微信小程序:house:安装微信开发者工具(v2.11.0及以上)使用微信客户端体验版:体验作者:bust_in_...