CDMA Chinese SMS problem

My tour has the new 5.0 system, I have the simplified Chinese interface and I can send Chinese SMS no problem, however, if somebody else sends me a Chinese SMS, everything is ???
Is there anyway to fix this? I actually have never had this kind of problem with other phones that have Chinese interface...

Hi,
You should contact Sony Ericssons developer site for assistance with this.
thanks,
Mark

Similar Messages

  • Chinese SMS Problems

    Hello,
    I've just installed new Blackberry Device Software from Reliance (East Asian, Platform 4.1.0.65, App 4.7.1.53) . Everything works fine until I found out the problem in SMS - the chinese text I typed turned into ????
    Could someone help me about this problem and if this is a leaked, could someone give me explanation when this problem is solved?
    Thanks,
    Best regard, andy

    http://forums.wireless.att.com/t5/Messaging/Unable-to-send-and-receive-Chinese-t ext-messages/m-p/1330583/page/2
    Looks like AT&T does not support unicode sms messages. Still.

  • How to make 8830 support chinese sms in cdma network?

    Hello,i have been using 8830 for many years,in cdma network,it cannot show or send chinese sms,how to solve this problem?

    Hi mike_jeson,
    Welcome to BlackBerry Support Community Forums.
    Language support availability is determined by your wireless provider and is available for installation in your BlackBerry Device Software. You can download the most recent version of BlackBerry Device Software from your provider's download site in the following list. http://bbry.lv/ad7CII This article should help you install available language packs. http://bbry.lv/9IpPf9
    -FS
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click Solution? for posts that have solved your issue(s)!

  • How to send chinese sms on CDMA phones (Curve 8330)?

     How to send chinese sms on CDMA phones (Curve 8330)?
    req upgrade next new OS <4.6?!>

    You may want to try Skype.

  • NOKIA 5610 SMS PROBLEM

    My phone cant type chinese when sms !!
    HOW TO SOLVE IT??

    I am too facing the same problem.. its been 4 months only since i bought the phone... i faced the same problm 2 months ago.. & i had to format / software update the phone.. & they said its due to virus& then it became fine...
    again recently i faced the problem... & i did the software update just today ! .. but the sms problem still remains...
    gets stuck in the outbox.. saying RESEND (in 3 mins gap)
    Sometimes when i type the message from conversation's reply.. it works.. but i cant send forwards
    Its really annoying as i love to sms...

  • How can i send the chinese sms using java J2EE(web application)

    hi,
    i have the difficulty on sending chinese sms using J2EE application.i try to input the chinese word to jsp and send the plain text sms. i received the sms with plenty of question mark "?????". i think it is regarding to the conversion of String to some kind of format that supported by mobile phone. below are some code the send the sms to recipient. i need someone help in order to have the solution.
    thanks a lot
    <%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
    <%@ page import="se.sapio.rta.service.MPMService"%>
    <%@ page import="java.util.Locale"%>
    <%
         Locale.setDefault(Locale.UK);
         Context ctx;
         MPMService mpmservice;
         ctx = new InitialContext();
         mpmservice = (MPMService) ctx.lookup("BC/Service/RTAMPM");
         LSUser user = null;
         boolean ok = true;
         try {
         if (ok) {
              String sender = request.getParameter("sender");
              String phonenr = request.getParameter("phonenr");
              String sendmsg = request.getParameter("sendmsg");
              if(bError) {
                   byte[] bytes = message.getBytes("UTF-8");
                   message = mobileclientservice.ByteEncode(bytes);          
                   response.sendRedirect("send_sms.jsp?s="+request.getParameter("s")+"&msg="+message+"&phonenr="+request.getParameter("phonenr").replaceAll("\\+","%2B")+"&sender="+request.getParameter("sender")+"&sendmsg="+request.getParameter("sendmsg").replaceAll("\\+","%2B"));
              String resp = "";
              if(mpmservice.sendPlainTextSMS(sender, phonenr, sendmsg)) {
                   resp=mpmservice.getLang(user.getLang(), "sms_sent");
              } else {
                   resp=mpmservice.getLang(user.getLang(), "sms_not_sent");
              } %>
              <jsp:include page="/top.jsp" />
              <p class="headline"><%=mpmservice.getLang(user.getLang(), "send_sms_title")%></p>
              <form name="operatordetails" id="operatordetails" method="post" action="send_sms.jsp">
              <INPUT TYPE=hidden NAME=s VALUE="<%=request.getParameter("s")%>">
              <INPUT TYPE=hidden NAME=phonenr VALUE="<%=request.getParameter("phonenr")%>">
              <table class="infotable" id="report">
                   <tr>
                        <td class="left" colspan="2"><%=resp%></td>
                        <td class="right"></td>
                   </tr>
                   <tr>
                        <td class="left" colspan="2">
                             <input class="halfmiddle" name="Back" type="submit" id="Back" value="<%=mpmservice.getLang(user.getLang(), "back")%>" />
                        </td>     
                        <td class="right"> </td>
                   </tr>
              </table>
              </form>
              <jsp:include page="/bottom.jsp" />
         <% } %>
       public boolean sendPlainTextSMS(String sender, String recipient, String sendmsg){
             if(recipient.charAt(0) == '+')
                   recipient = recipient.substring(1);
             String senderIdType = "Alpha";
              if( (sender.charAt(0) >= '0' && sender.charAt(0) <= '9') || sender.charAt(0) == '+')
                   senderIdType = "Numeric";
                   if(sender.charAt(0) == '+')
                        sender = sender.substring(1);
                   for(int i=0; i < sender.length(); i++)
                        if(!(sender.charAt(i) >= '0' && sender.charAt(i) <= '9'))
                             senderIdType = "Alpha";
             log.warn("sending sms to: "+recipient + " sendtype: " + senderIdType + " msg: "+ sendmsg);
             log.warn("Encoded sms:"+Encode(sendmsg));
             try{
             String postData = "XMLDATA=" + URLEncoder.encode("<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\r\n" +
                        "<NotificationRequest Version=\"3.4\">\r\n" +
                        "     <NotificationHeader>\r\n" +
                        "          <PartnerName>" + SMS_PARTNER_NAME + "</PartnerName>\r\n" +
                        "          <PartnerPassword>" + SMS_PARTNER_PASSWORD + "</PartnerPassword>\r\n" +
                        "          <SubscriptionName>XML</SubscriptionName>\r\n" +
                        "     </NotificationHeader>\r\n" +
                        "     <NotificationList BatchID=\"1\">\r\n" +
                        "          <Notification SequenceNumber=\"0\" MessageType=\"SMS\">\r\n" +
                        "          <Message>" + Encode(sendmsg) + "</Message>\r\n" +
                        "          <Profile>" + SMS_PARTNER_PROFILE + "</Profile>\r\n" +
                        "          <SenderID Type=\"" + senderIdType + "\">" + sender + "</SenderID>\r\n" +
                        "          <Subscriber>\r\n" +
                        "               <SubscriberNumber>" + recipient + "</SubscriberNumber>\r\n" +
                        "          </Subscriber>\r\n" +
                        "      </Notification>\r\n" +
                        " </NotificationList>\r\n" +
                        "</NotificationRequest>","ISO-8859-1");
      appreciate for anyone provide the solution.
    thanks a lot

    Hi,
    I want to send sms from web application to mobile phones at the time of registration. Its verymuch greatful to me, if you let me know, how to send from jsp to mobile. because from your post, i got, you already know about sending sms from jsp to mobile.
    please let me know, how to send sms
    [email protected]
    Thanks in advance for your kind help

  • Sms problem help!!!!!

    hellow evre body .
    When I want to write SMS in English it works
    But when the move to Russian or Hebrew, I do not accept keyboard
     it is only sending SMS problem
    mail it properly and in whatsapp to no problem

    How did you Back-up ? Is it thru' OVI Suite ? If so again follow the SAME path and now you will see an option to RESTORE.. If you have Synced them with OVI then you will be able to see all the messages within the OVI Suite.. Select the one you want back on the phone select the tab in the OVI Suite Messaging that says 'Arrange Messages as per date' and you will see UP and DOWN arrows in front of all the messages.  Drag and Drop the ones with UP arrow to sent folder and the ones with DOWN to Inbox next to the phone Icon in the lower window when the phone is connected to PC..

  • What's time Chinese users can use 8330 to send Chinese SMS?

    Is there any plans to support Chinese text messages on 8330?
    what's time Chinese users can use 8330 to send Chinese SMS?
    Look forward to attach importance to Chinese users, thank you!
    Best Regards!

    That would be a function of the carrier you are on.
    The 8330 does allow sending and receving of MMS, any blocking or disabling of the function comes from the mobile provider. For example, for a long time, MMS on the BlackBerry were disabled by Sprint in the US, but in the past year has been enabled.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Too many contacts = sms problems

    Hi, i bought and 16GB iPhone last week and i'm having some problems with SMS.
    When I click on the SMS, it takes about 40 seconds to open (when it opens, because normally just returns to the home screen), everything is really slow (opening conversations, writing/reading messages..). The problem only occur when my big list of contacts its in the phone (+- 4000 names).
    My sister bought and 16GB in the same day, everything is equal, but she only have 100 contacts and her iPhone work perfectly. I already tried restoring my iPhone and reseting, but after syncing my contacts, the SMSs just stop working right. When i sync MY contacts in HERs iPhone, the SMSs of hers phone also starts having problems.
    I feel like if it wasnt prepared for that ammount of data. What should i do? Does the iPhone has limitations regarding the number of contacts?
    Thanks in advance.

    My life would be a lot easier if the iPhone had a spotlight, but in the time been, my fingers are getting stronger from all the scrolling...
    I cant delete contacts because most of them are business relations/ hotels/ restaurants/ tennis partners... My contacts are my office on the road. But thanks for trying to help...
    Anyone have a solution for my SMS problem?

  • Why I cannot send Chinese SMS to China using IPHONE?

    Hi, can anyone tell me why I cannot send Chinese SMS to my friend in China? I can type Chinese character in Iphone after upgrading to Ver 2.0, and send it. But my friend in China said he doesn't even receive it. Any ways to solve? Thanks in advance.

    still not solved can anybody help me?
    I've seen reports somewhere that the SMS network used by ATT does not support Chinese and various other languages yet.

  • Sms problem

    I have 9530 and vodafone Subscriber.I can send few text to few people but I CAN'T SEND to others. It does not have D beside the check. My OS is v5.0.0.328.if that is an OS. Please help. I ask vodafone and they said its the system phone problem. I tried internet forum solving it but I can't find SMS Setting onMy options. Only SMS TEXT. HELP please. Ty

    Seems no one knows.. 
    I tried to get expert help but when i try to register it asks me for SRP and Aunthenticate blabla.. i don't know what is it..
    I would be glad if someoen help me..
    Thanks

  • Strange SMS problem - stumped the Genius bar

    My wife and I both have 3GS phones on a family plan. We are able to send and receive text messages freely from each other and anyone else.
    I can send SMS (pics and video) to her and anyone else, and she can receive.
    She can send SMS to everyone EXCEPT me. At&T said it was an Apple issue after doing some manipulating at their end with no success. The Geniuses has never heard of this problem before, and I was told to reboot and restore. No change.
    I upgraded to iOS4, and lo and behold, I can receive pictures and text from my wife.
    I then upgraded her phone, and we are back to where we started.
    There is no failure of delivery notice; it seems to send okay, but then.. nothing.
    Does this scenario sound familiar to anyone?

    i have the same problem, i text in arabic to overseas, but when i receive the message it shows symbols and weird letters, i have not had this problem before the ios 4, just started after the ios 4.
    i went to apple store and the genius people were confused about this problem, they couldn't address it, or solve it. they end up replacing my iphone 3gs with new one, and i still have the same problem.
    i believe apple engineers are not aware of this issue, i hope i can contact them so they can fix this hidden issue. any suggestions ?
    thank you

  • Hi, I am from Maldives can anyone pls help me this sms problem.. I restored many times but sms not delivered.. pls help me????

    about one month this problem but I can't solve...

    Are you using a supported carrier? SMS is a carrier feature. Talk to them about it.

  • 6500 slide sms problem

    I got this phone today, all looks good except it wont let me send texts or some other features. I can call without problem.
    The error in the notes of the messages which can't be sent is:
    Message sending failed No network support for messages.
    It's really annoying me I have tried changing the settings. Any ideas how I can fix this? Have contacted tmobile but don't want to have to said 5 days for a responce!

    if at all possible try to go on tmobile support site and either have the mms, sms settings resend to your phone or look them up. this might just be your issue. try that first
    You know what I love about you the most, the fact that you are not me ! In love with technology and all that it can offer. Join me in discovery....

  • SMS Problem on Nokia e61

    Hello everybody.
    I was wondering if anyone has the same problem as I do. All of the sudden, my Nokia E61 doesn't receive any SMS?
    It works for a while after reboot, but then again I cannot receive SMS after few hours. I find this very annoying, but everything else works big time on this phone.

    I know because people call me to see why don't i responed to their messages.
    I thought that full SIM card could be the problem, but it is not. Simply, it stops at one point od the day, and after restart all messages are being received.
    It is very odd, but again, I have such a bad luck with smartphones, sometimes I would like to get back to 3310 and forget all about troubles .
    Thanks for trying, anyway.

Maybe you are looking for