About VASPQ

About VASPQ SearchSearch
Author Message
Anonymous
 
Posted on Thursday, January 27, 2005 - 06:53 am:   

i redirected every MMS the NowSMS received to my servlet. but NowSMS keeps resending the MMS. how can i stop this and remove the received MMS from the VASPQ folder?

thanks,
JT
Bryce Norwood - NowSMS Support
Board Administrator
Username: Bryce

Post Number: 3997
Registered: 10-2002
Posted on Thursday, February 03, 2005 - 08:13 pm:   

Hi JT,

Sorry for the delay getting back to you.

I assume that you are receiving the message via MM7?

Basically, we want to see an HTTP 200 OK response, and we want an MM7 SubmitRsp or DeliverRsp with a StatusCode of 1000.

Here's an example:

HTTP/1.0 200 OK
Content-Type: text/xml

<?xml version="1.0" ?>
<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
<env:Header>
<mm7:TransactionID xmlns:mm7=\"http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-5- MM7-1-2" env:mustUnderstand="1">
TransactionIDFromSubmitOrDeliver
</mm7:TransactionID>
</env:Header>
<env:Body>
<DeliverRsp xmlns="http://www.3gpp.org/ftp/Specs/archive/23_series/23.140/schema/REL-5-MM7-1 -2">
<MM7Version>
5.3.0
</MM7Version>
<Status>
<StatusCode>1000</StatusCode>
</Status>
</DeliverRsp>
</env:Body>
</env:Envelope>


If responding to a SubmitReq instead of a DeliverReq, change DeliverRsp to SubmitRsp ... and in that case you should also return a MessageID beneath the StatusCode section ... e.g., <MessageID>youridassigned</MessageID>


-bn
Bryce Norwood - NowSMS Support
Board Administrator
Username: Bryce

Post Number: 3998
Registered: 10-2002
Posted on Thursday, February 03, 2005 - 08:14 pm:   

Follow-up note ... there are a couple of stray white space characters in my schema references above. The discussion board software seems to add a space on long lines of text, so just remove that white space.
Anonymous
 
Posted on Tuesday, February 22, 2005 - 07:55 am:   

thanks alot Bryce!

-JT