2005年07月04日 星期一 09:58
zhangcl,你好 呵呵!应该没有,发短信是要经过移动、连通、小灵通的网关的。每发一条短信是要收钱的。 网关开放了移动怎么收钱? Qutr , qutianrang at gmail.com 2005-7-4 ----- 收到以下来信内容 ----- 发件人: zhangcl 收件人: python-chinese 时 间: 2005-07-04, 09:37:58 主 题: RE:RE: [python-chinese] CMPP开发问题 好奇的问,有开放的短信网关可以让我们用程序来发短信么? ----- Original Message ----- From: 倪正刚<ni at twinisa.com> To: kuoxin at tjub.com.cn, python-chinese at lists.python.cn Sent: 2005-07-04 07:25:50 Subject: RE: [python-chinese] CMPP开发问题 谢谢你的回应,能否帮助我解决几个困惑。(我是新人来的) 1、我通过socket连接到短信网关模拟器,sim 1.3。当我刚刚完成socket连接后,我发 现我无法发送任何命令? 2、即便如此,从短信网关模拟器来的下发短信,我却可以接收到。 3、能否赐教一些例程供学习? 我的socket连接程序: host = '172.18.2.125' port = 7890 spsocket = socket.socket(socket.AF_INET,socket.SOCK_STREAM) spsocket.connect((host,port)) while 1: data = spsocket.recv(512) data = data[2:] smbody = data[string.find(data,'Q')+1:] nums = data[:string.find(data,'Q')] requesternum = nums[string.find(nums,'1234567890')+10:] print '%s_%s' % (requesternum,smbody) spsocket.close() 收到的下行短信看起来是这样的: ? 88880123456789013302324343Q短信主体 请指教 -----Original Message----- From: kuoxin at tjub.com.cn [mailto:kuoxin at tjub.com.cn] Sent: 2005年7月4日 18:51 To: ni at twinisa.com; python-chinese at lists.python.cn Subject: Re: [python-chinese] CMPP开发问题 倪正刚 wrote: >请问有人用python做过短信SP的程序吗? >如何获得合适Python使用的API呢? > >根据CMPP3.0协议手册,里面似乎用的都是现成的API, >如果用Python写的话,是不是要自己写底层的API,有没有 >现成的可用呢? > >新人报道,请各位不吝赐教。 > >_______________________________________________ >python-chinese list >python-chinese at lists.python.cn >http://python.cn/mailman/listinfo/python-chinese > > > 我们用过python开发短信平台 _______________________________________________ python-chinese list python-chinese at lists.python.cn http://python.cn/mailman/listinfo/python-chinese _______________________________________________ python-chinese list python-chinese at lists.python.cn http://python.cn/mailman/listinfo/python-chinese -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050704/8c6ca57e/attachment.html
2005年07月04日 星期一 10:26
Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: Neo Chan.vcf Type: text/x-vcard Size: 1081 bytes Desc: not available Url : http://lists.exoweb.net/pipermail/python-chinese/attachments/20050704/ef71254e/NeoChan-0001.vcf
2005年07月04日 星期一 10:36
注册个新浪的短信服务 可以通过web接口来发送 除了有普通的http cgi外还有xml-rpc还是soap的方法,具体可以看看office里面的那个东西 在05-7-4,Neo Chan (netkiller) <neo.chen at achievo.com> 写道: > > 搞个GSM or CDMA Modem 你可以用串口直接AT命令发:) > > Neo Chan (netkiller) > Best Regards, 73! de BG7NYT > Amateur Radio Callsign: BG7NYT > > ------------------------------ > *From:* python-chinese-bounces at lists.python.cn [mailto: > python-chinese-bounces at lists.python.cn] *On Behalf Of *Qutr > *Sent:* Monday, July 04, 2005 9:58 AM > *To:* python-chinese > *Subject:* Re: RE:RE: [python-chinese] CMPP开发问题 > > zhangcl,你好 > 呵呵!应该没有,发短信是要经过移动、连通、小灵通的网关的。每发一条短信是要收钱的。 > 网关开放了移动怎么收钱? > Qutr, qutianrang at gmail.com > 2005-7-4 > > ----- 收到以下来信内容 ----- > *发件人:* zhangcl <zhangcl at smmail.cn> > *收件人:* python-chinese <python-chinese at lists.python.cn> > *时 间:* 2005-07-04, 09:37:58 > *主 题:* RE:RE: [python-chinese] CMPP开发问题 > > 好奇的问,有开放的短信网关可以让我们用程序来发短信么? > > ----- Original Message ----- > From: 倪正刚<ni at twinisa.com <+ni at twinisa.com>> > To: kuoxin at tjub.com.cn <+kuoxin at tjub.com.cn>, > python-chinese at lists.python.cn <+python-chinese at lists.python.cn> > Sent: 2005-07-04 07:25:50 > Subject: RE: [python-chinese] CMPP开发问题 > > 谢谢你的回应,能否帮助我解决几个困惑。(我是新人来的) > > 1、我通过socket连接到短信网关模拟器,sim 1.3。当我刚刚完成socket连接后,我发 > 现我无法发送任何命令? > 2、即便如此,从短信网关模拟器来的下发短信,我却可以接收到。 > 3、能否赐教一些例程供学习? > > 我的socket连接程序: > > host = > '172.18.2.125 <http://172.18.2.125>' > port = 7890 > spsocket = > socket.socket(socket.AF_INET,socket.SOCK_STREAM) > spsocket.connect((host,port)) > while 1: > data = > spsocket.recv(512) > data = data[2:] > smbody = > data[string.find(data,'Q')+1:] > nums = > data[:string.find(data,'Q')] > requesternum = > nums[string.find(nums,'1234567890')+10:] > > print '%s_%s' % (requesternum,smbody) > > spsocket.close() > > 收到的下行短信看起来是这样的: > > ? 88880123456789013302324343Q短信主体 > 请指教 > > > > > > > -----Original Message----- > From: kuoxin at tjub.com.cn <+kuoxin at tjub.com.cn> [mailto:kuoxin at tjub.com.cn<+kuoxin at tjub.com.cn> > ] > Sent: 2005年7月4日 18:51 > To: ni at twinisa.com <+ni at twinisa.com>; python-chinese at lists.python.cn<+python-chinese at lists.python.cn> > Subject: Re: [python-chinese] CMPP开发问题 > > > 倪正刚 wrote: > > >请问有人用python做过短信SP的程序吗? > >如何获得合适Python使用的API呢? > > > >根据CMPP3.0协议手册,里面似乎用的都是现成的API, > >如果用Python写的话,是不是要自己写底层的API,有没有 > >现成的可用呢? > > > >新人报道,请各位不吝赐教。 > > > >_______________________________________________ > >python-chinese list > >python-chinese at lists.python.cn <+python-chinese at lists.python.cn> > >http://python.cn/mailman/listinfo/python-chinese > > > > > > > 我们用过python开发短信平台 > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn <+python-chinese at lists.python.cn> > http://python.cn/mailman/listinfo/python-chinese > > > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn <+python-chinese at lists.python.cn> > http://python.cn/mailman/listinfo/python-chinese > > > _______________________________________________ > python-chinese list > python-chinese at lists.python.cn > http://python.cn/mailman/listinfo/python-chinese > > > > -- I'm the one, powered by nEO -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050704/cb1fa384/attachment-0001.html
2005年07月04日 星期一 17:25
Mail这样也可以,不过就不能获得短信特服号。但是也可以用来做一个企业的小规模应 用。而且那个和CMPP没有什么关系。 -----Original Message----- From: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn]On Behalf Of Neo Chan (netkiller) Sent: 2005年7月4日 10:27 To: qutianrang at gmail.com; python-chinese at lists.python.cn Subject: RE: RE:RE: [python-chinese] CMPP开发问题 搞个GSM or CDMA Modem 你可以用串口直接AT命令发:) Neo Chan (netkiller) Best Regards, 73! de BG7NYT Amateur Radio Callsign: BG7NYT ---------------------------------------------------------------------------- -- From: python-chinese-bounces at lists.python.cn [mailto:python-chinese-bounces at lists.python.cn] On Behalf Of Qutr Sent: Monday, July 04, 2005 9:58 AM To: python-chinese Subject: Re: RE:RE: [python-chinese] CMPP开发问题 zhangcl,你好 呵呵!应该没有,发短信是要经过移动、连通、小灵通的网关的。每发一条短信是要 收钱的。 网关开放了移动怎么收钱? Qutr, qutianrang at gmail.com 2005-7-4 ----- 收到以下来信内容 ----- 发件人: zhangcl 收件人: python-chinese 时 间: 2005-07-04, 09:37:58 主 题: RE:RE: [python-chinese] CMPP开发问题 好奇的问,有开放的短信网关可以让我们用程序来发短信么? ----- Original Message ----- From: 倪正刚<ni at twinisa.com> To: kuoxin at tjub.com.cn, python-chinese at lists.python.cn Sent: 2005-07-04 07:25:50 Subject: RE: [python-chinese] CMPP开发问题 谢谢你的回应,能否帮助我解决几个困惑。(我是新人来的) 1、我通过socket连接到短信网关模拟器,sim 1.3。当我刚刚完成socket连接后, 我发 现我无法发送任何命令? 2、即便如此,从短信网关模拟器来的下发短信,我却可以接收到。 3、能否赐教一些例程供学习? 我的socket连接程序: host = '172.18.2.125' port = 7890 spsocket = socket.socket(socket.AF_INET,socket.SOCK_STREAM) spsocket.connect((host,port)) while 1: data = spsocket.recv(512) data = data[2:] smbody = data[string.find(data,'Q')+1:] nums = data[:string.find(data,'Q')] requesternum = nums[string.find(nums,'1234567890')+10:] print '%s_%s' % (requesternum,smbody) spsocket.close() 收到的下行短信看起来是这样的: ? 88880123456789013302324343Q短信主体 请指教 -----Original Message----- From: kuoxin at tjub.com.cn [mailto:kuoxin at tjub.com.cn] Sent: 2005年7月4日 18:51 To: ni at twinisa.com; python-chinese at lists.python.cn Subject: Re: [python-chinese] CMPP开发问题 倪正刚 wrote: >请问有人用python做过短信SP的程序吗? >如何获得合适Python使用的API呢? > >根据CMPP3.0协议手册,里面似乎用的都是现成的API, >如果用Python写的话,是不是要自己写底层的API,有没有 >现成的可用呢? > >新人报道,请各位不吝赐教。 > >_______________________________________________ >python-chinese list >python-chinese at lists.python.cn >http://python.cn/mailman/listinfo/python-chinese > > > 我们用过python开发短信平台 _______________________________________________ python-chinese list python-chinese at lists.python.cn http://python.cn/mailman/listinfo/python-chinese _______________________________________________ python-chinese list python-chinese at lists.python.cn http://python.cn/mailman/listinfo/python-chinese -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.exoweb.net/pipermail/python-chinese/attachments/20050704/62fdc71f/attachment.html
Zeuux © 2025
京ICP备05028076号