Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 171381
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T12:58:40+00:00 2026-05-11T12:58:40+00:00

I need to generate and send SyncML OTA SMS. I have sms provider that

  • 0

I need to generate and send SyncML OTA SMS. I have sms provider that can send binary sms. But I’m kind of stuck in OTA spec and will be really happy if you point me to any of these:

  1. An open source tool that can generate OTA sms out of some properties provided.
  2. A good overview or tutorial on how to make OTA SMS (OTA spec seems not readable at all)

Thanks in advance!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T12:58:41+00:00Added an answer on May 11, 2026 at 12:58 pm

    You need to Produce following OMA-DP XML document and submit it to your Service Provider Gateway. You must strictly follow the Format for the message to be identified as configuration message by the Phone. Also contact your Service provider and ask them if they can convert an XML submission to SMS on the fly. They will need to encode the XML into WBXML and then forward the message in PDU mode.

    <?xml version="1.0" encoding="utf-8"?> <wap-provisioningdoc>   <characteristic type="BOOTSTRAP">     <parm name="NAME" value="SYNCSETTINGS" />   </characteristic>   <characteristic type="APPLICATION">     <parm name="APPID" value="w5" />     <parm name="TO-NAPID" value="INTERNET" />     <parm name="NAME" value="SYNCSETTINGS" />     <parm name="ADDR" value="http://syncserver/sync" />     <characteristic type="RESOURCE">       <parm name="URI" value="pb" />       <parm name="NAME" value="Contacts DB" />       <parm name="AACCEPT" value="text/x-vcard" />     </characteristic>     <characteristic type="RESOURCE">       <parm name="URI" value="cal" />       <parm name="NAME" value="Calendar DB" />       <parm name="AACCEPT" value="text/x-vcalendar" />     </characteristic>     <characteristic type="RESOURCE">       <parm name="URI" value="notes" />       <parm name="NAME" value="Notes DB" />       <parm name="AACCEPT" value="text/plain" />     </characteristic>     <characteristic type="APPAUTH">       <parm name="AAUTHNAME" value="username" />       <parm name="AAUTHSECRET" value="password" />     </characteristic>   </characteristic> </wap-provisioningdoc> 

    Here’s the Function in C# to produce above mentioned XML Document.

    public string CreateOTAXmlFile(string Username, string Password)     {         var ota = new XDocument(                     new XElement("wap-provisioningdoc",                         new XElement("characteristic", new XAttribute("type", "BOOTSTRAP"),                             new XElement("parm", new XAttribute("name", "NAME"), new XAttribute("value", "SYNCSETTINGS"))                                     ),                         new XElement("characteristic", new XAttribute("type", "APPLICATION"),                             new XElement("parm", new XAttribute("name", "APPID"), new XAttribute("value", "w5")),                             new XElement("parm", new XAttribute("name", "TO-NAPID"), new XAttribute("value", "INTERNET")),                             new XElement("parm", new XAttribute("name", "NAME"), new XAttribute("value", "SYNCSETTINGS")),                             new XElement("parm", new XAttribute("name", "ADDR"), new XAttribute("value", "http://syncserver/sync")),                             new XElement("characteristic", new XAttribute("type", "RESOURCE"),                                 new XElement("parm", new XAttribute("name", "URI"), new XAttribute("value", "pb")),                                 new XElement("parm", new XAttribute("name", "NAME"), new XAttribute("value", "Contacts DB")),                                 new XElement("parm", new XAttribute("name", "AACCEPT"), new XAttribute("value", "text/x-vcard"))                                         ),                             new XElement("characteristic", new XAttribute("type", "RESOURCE"),                                 new XElement("parm", new XAttribute("name", "URI"), new XAttribute("value", "cal")),                                 new XElement("parm", new XAttribute("name", "NAME"), new XAttribute("value", "Calendar DB")),                                 new XElement("parm", new XAttribute("name", "AACCEPT"), new XAttribute("value", "text/x-vcalendar"))                                         ),                             new XElement("characteristic", new XAttribute("type", "RESOURCE"),                                 new XElement("parm", new XAttribute("name", "URI"), new XAttribute("value", "notes")),                                 new XElement("parm", new XAttribute("name", "NAME"), new XAttribute("value", "Notes DB")),                                 new XElement("parm", new XAttribute("name", "AACCEPT"), new XAttribute("value", "text/plain"))                                         ),                             new XElement("characteristic", new XAttribute("type", "APPAUTH"),                                 new XElement("parm", new XAttribute("name", "AAUTHNAME"), new XAttribute("value", Username)),                                 new XElement("parm", new XAttribute("name", "AAUTHSECRET"), new XAttribute("value", Password))                                         )                                     )                                 )                             );                  ota.Save(Server.MapPath("~/OTA/") + Username + ".xml");         return (ota.ToString());      } 

    [PS: Believe me, this can be done via even a GSM modem also!]

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need that Nhibernate only generate pure SQL, which I will send to my
I need my app to send a mail that becomes an SMS, in order
I need generate action links outside controllers. I can use Html.Action in Views, Url.Action
We've setup some different load tests and need to generate/send the result pr. e-mail,
When a user registers I need to generate a file and immediately send it
I need to know if there is some kind of known algorithm to generate
I need to have a process that compiles daily data into an PDF that
Hello I have a jQuery function that will send to a php file some
Simply said: Can I generate in C++ some kind of text information - user
in a grails application I need to generate a PDF417 image and send it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.