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)!

Similar Messages

  • 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.

  • How do I get rid of a few Internet sites, namely: Firefox is not supported? How to Make Firefox supported for these sites?

    Firefox does not support some web sites?
    How to Make Firefox supports these sites?

    Firefox does not support some web sites?
    How to Make Firefox supports these sites?
    This URL
    # http://e-imamu.edu.sa/emam/login/admin/CheckUserRegistrationAction.do
    # http://www.moi.gov.sa/wps/portal/!ut/p/c1/pY_RCoIwFIafKHY2t-mtztSlOSFW5o3sImKQGhE9f1oQFLiCzrn8_v9wPtSgcXtzs0dztUNvTqhGDW-ZqIQM1h5OK-0DSXy6EjwPgOGR73lbKqITKjEO-BID4RmNiq2ENPZ-ab-4KrMYJORxVChFaMr_aQP70t5NrvMJ6j25y23iMDMhfNx__y8X1Mkf9i4--bk4YajMhu6ANuaCzp3WNVhp5SK8A3BThH0!/dl2/d1/L0lDU0NTSUpKSkNncFJBISEvb0VvUUFBSVFKQUFNWXhpbElNNExnbWNBL1lCSkp3NDU0NTAtNGtzbHl0dyEhLzdfNUNQQ0k4TTMxT0Q0NTBJMFVGUkRVTDEwSDcvamF2YXguc2VydmxldC5pbmNsdWRlLnBhdGhfaW5mby8lMFRyYWZmaWNWaW9sYXRpb25zVmlldy5qc3A!

  • 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

  • How to make English and Chinese pdf files searchable?

    I have scanned many A4 English and Chinese print-outs into pdf format.  How to make these files searchable ? People mention about the OCR issue. Will the installation of Adobe make life easy and manageable?

    I know Acrobat does Japanese OCR very well; I can only assume that it works for Chinese as well.
    P.S. I just checked: Chinese (Simplified) and Chinese (Traditional) are both language selection options for OCR.

  • How to make iTunes support more than just one harddrive

    The title of this topic says it all: How do I make iTunes support more than just one harddrive? I cannot afford to buy a really huge drive just because iTunes doesn't support more than one.
    There must be a way around this! Anyone?

    I sure hope so. I run iTunes on an iBook G4 with limited space. I've got about 15gigs of music on an external harddrive. I only use the harddrive at home so I like to keep a handful of albums with me on the lappy. There should be some way to designate a primary folder on the laptop for imports, and a secondary (external or whatever) for the bulk of the library. Maybe some nifty way to do quick transfers between them within iTunes. Like a relocate function.
    Say I want the new death cab for cutie album on the laptop this week, but next week I want to swap it out with something new that comes out. It would be nice to highlight an album and select "transfer to secondary" so that iTunes can move the files for you, keep them organized, and keep track of them.
    That doesn't sound so difficult...

  • How to make JEditorPane support applet?

    hi hi,
    i would like to know how to make the JEditorPane support applet coming from internet source. i will be using JEditorPane to view web page but if it contains applet, how can i make JEditor support it? what should i need to do so. pls give me some guide lines. thanks

    That's an interesting question. The short answer is, you can't. For one, the APPLET tag is ignored by the Swing HTML parser. Then, I'm not sure, what happens if you embedd heavy-weight components like applets into an editor pane.
    However, you can use  JEditorPane e = new JEditorPane();
      e.setText("Hallo, Welt");
      e.setCaret(5);
      e.insertComponent(new JButton("Click me"));to add swing components to your text. So you might be able to create a working solution based on this foundation.
    I can imagine two approaches. You could either create your own applet-like JEditorPanelets which would be basically JPanels with some glue code to allow the the panelet to access its editorPane.
    Or you could explore the approach to add a heavy weight applet and write a compatiblily stub. Here's an outline  class AppletAwareEditorPane extends JEditorPane {
        List applets;
        MyAppletStub stub;
        public void insertApplet(Applet a) {
          applets.add(a);
          a.setStub(stub);
          a.init();
        public void startApplets() {
          Iterator i = applets.iterator();
          while(i.hasNext()) ((Applet)i.next()).start();
        }However, each applet would require to run in its own tread and I'm pretty sure this would break swing as it is not thread save.
    bye

  • How to make a connection between two wireless sensor networks of different groups through gateway?did any external device or coding is needed?

    my objective is to make a connection between two wireless sensor networks....i am using two nodes and one gateway for each wireless sensor network.....what is the procedure for connecting these two wireless sensor networks of different groups

    my objective is to make a connection between two wireless sensor networks....i am using two nodes and one gateway for each wireless sensor network.....what is the procedure for connecting these two wireless sensor networks of different groups

  • Nokia lumia 800: how to make a backup of sms to pc

    I would like to know how I can make a backup of my sms-messages on my Nokia lumia 800 to my pc (windows vista). I tried Zune, but that programm only gives the possibility to backup pictures and music. Installing Nokia PC Suite didn't work out. I could'nt connect my Nokia lumia 800 to my pc (no possible via usb and bluetooth).
    Thanks for any help!

    You cannot back up SMS from WP7 handsets. The only available workaround is to copy the contents of the messages in a text file and save that to PC.

  • How can my n85 support chinese characters?

    Hi , i bought my n85 through Optus a week ago
    the default language is english , and everytime i recieve a chinese msg
    i can read nothing but the blocks.
    Does Nokia have a chinese supported language pack or some sort of stuff like that
    so that i can read chinese.
    Message Edited by shameers on 28-Feb-2009 09:53 AM

    Hi there,
    Check this post out:
    /discussions/board/message?board.id=swupdate&thread.id=29982
    While it is not you situation exactly, it may help.
    If you found this post helpful, please click on the green "Kudos!" star. Cheers!

  • D-Link DBT-122 USB Bluetooth Adapter - how to make it support 2 devices?

    For Macs not originally equipped with Bluetooth hardware Apple used to recommend purchasing D-Link's DBT-120 (rev. B or later). If I understand correctly, after pluggin-in the device it was necessary to run Apple's Bluetooth Firmware update 1.3.3 to get it working.
    The DBT-120 device may still be available for purchase in some parts of the world but in Europe D-Link is now selling the replacement DBT-122 (no revision is indicated). The device is advertised as being 'Mac-compatible (check, for instance, http://www.dlink.co.uk/?go=gNTyP9CgrdFOIC4AStFCF834mptYKO9ZTdvhLPG3yV3oVIF+h6ltb NlwaaFp6DQoHDrqyyRF/okIB9vv ).
    My problem is after having plugged-in my brand new DBT-122 onto an USB port of my 'old' G4 eMac, I can get my Bluetooth Mighty Mouse working, or my Bluetooth Apple Keyboard working, BUT NOT BOTH AT THE SAME TIME. When I have them both connected, disconnections occur all the time (either the mouse or the keyboard, apparently at random).
    Tried to run Bluetooth Updater 1.3.3 but the thing tells me that there is no Bluetooth device to update. I suppose it is loooking for a DBT-120 and I have a DBT-122.
    Anyone with a suggestion on anything I should try to have both my mouse and keyboard working via my new bluetooth adpater?
    (No use to contact D-Link support, they don't know anything about Macs and the only thing they have been instructed to respond is 'its an Apple problem'. And they charge you for that - the hotline is expensive!)
    Cheers

    Hi,
    i'm having the same problem. The Apple Store recommends purchasing the D-Link DBT-120, but doesn't actually sell it since it has been superceded by the DBT-122 in Europe. Apple should know this. While D-Link market the DBT-122 as the replacement for the DBT-120 that is also compatible with Macs, from what i have been able to find out the 120 and the 122 use different chipsets and OSX cannot recognize all the features of the DBT-122's firmware. That is also why OSX's firmware updater software doesn't work with the DBT-122.
    Like you, i can get the DBT-122 to work with either the keyboard or mouse but not both at the same time.
    In any case even if you got both the keyboard and mouse working wirelessly there would be no way of waking the computer from sleep since the 'allow bluetooth device to wake computer from sleep' option is greyed out - this is only available if the firmware is supported. Presumably Apple will have to release software to support the DBT-122, if the earlier model is no longer in production. I think both Apple and D-Link are at fault here.

  • How to make SSL supporting configuration

    Dear Friends,
    I got the following exception once when my connection routes through SSL, ie., https
    Kindly convey do i need any specific configuration needed to support SSL.
    java.lang.ExceptionInInitializerError
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at java.net.URL.getURLStreamHandler(Unknown Source)
         at java.net.URL.<init>(Unknown Source)
         at java.net.URL.<init>(Unknown Source)
         at java.net.URL.<init>(Unknown Source)
         at com.adventnet.nms.util.NmsClientUtil.constructURL(NmsClientUtil.java:4004)
         at com.adventnet.nms.util.NmsClientUtil.getTimeToLiveToken(NmsClientUtil.java:3914)
         at com.adventnet.nms.startclient.WebNMSClient.doconnect(WebNMSClient.java:649)
         at com.adventnet.nms.startclient.WebNMSClient.run(WebNMSClient.java:2132)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.security.AccessControlException: access denied (java.security.SecurityPermission putProviderProperty.SUN)
         at java.security.AccessControlContext.checkPermission(Unknown Source)
         at java.security.AccessController.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkPermission(Unknown Source)
         at java.lang.SecurityManager.checkSecurityAccess(Unknown Source)
         at java.security.Provider.check(Unknown Source)
         at java.security.Provider.put(Unknown Source)
         at com.sun.javaws.WinBrowserSupport.getSecureRandomImpl(Unknown Source)
         at com.sun.javaws.BrowserSupport.getSecureRandom(Unknown Source)
         at com.sun.javaws.net.protocol.https.Handler.<clinit>(Unknown Source)
         ... 11 more

    What version of Java Web Start and J2SE are you using ?
    /Dietz

  • How to make cost element field appear when create network activity service

    Hi All,
    Please help. We create a project ,wbs and network activity using external service. How can we make appear the cost element when the service master appear. The system require cost element but we cannot see the cost element field.
    Steps :
    *. CJ20n.
    *. Create WBS and network header
    *. Then network activity for external service.
    *. Then it appears service specifications : ext specs Task List Maintain
    *. I Put Service no, and the error message appears :
    Please enter a cost element
    Message no. SE121
    *. But we can find where the cost element is. It seems the field disappear.
    PLease help.
    Thank you.
    Nies

    Hi,
    Yes. It is already blank. But the cost element field still not appears when we create activity service. It shows :
    Please specify a valid account assignment
    Message no. SE181
    Diagnosis
    You have entered an account assignment category in the document item for which an account assignment is mandatory.
    All account assignment lines in the service specifications either have been deleted or are inactive (e.g. account assignment lines of a contingency item).
    Procedure
    Please enter an account assignment for the services or value limits.
    The entry of an account assignment is unnecessary if you choose "unknown account assignment" in the document item.

  • How to make two NT cluster in a same network?

    We are having 2NT m/c one clusteer and 2NT M/c in other cluster.Both clusters having same application installed and same configuration.The problem we are facing is some of the requested for a perticular cluster(say firest cluster) is going to other(Second).
    How can we dissable communication between these clusters?
    Thaks
    Siva Prasad

    Hi,
    The iPlanet Application server has two Multicast addresses over which it broadcast registry information for Load-Balancing and Clustering. By default both of the Multicast addresses are same but the port is different. The application server keeps on updating it's host database by detecting all the application servers that has same Multicast address in the same subnet.
    Open the iPlanet registry editor and go to <i>Application Server/6.0/GMS/KAS</i> and <i>Application Server/6.0/GMS/KES</i>, you will find an entry called MCastHost in both of these locations. These are the two virtual Multicast address used by the the application server. If your m/c IP address is like <i>abc.def.ghi.xxx</i> then the Multicast address will be like <i>ghi.8.18.71</i>.
    In a cluster the Multicast address mentioned under <i>.../KES</i> should be same for each member Application server, and this is the place you need to change your Multicast address to disable the communication between the two cluster in same subnet. Just change the Multicast address in the registry of each Application server of second cluster (for example from <i>ghi.8.18.71</i> to <i>ghi.8.18.75</i> or something. It is better if you change both Multicast address for second cluster.
    The approach suggested by Vasanth will work till you restart any of the server, if you restart both of the servers whose IP address entry you have deleted in each other's registry, it will update it again after startup.
    Please feel free to ask further questions.
    Sanjeev.

  • Support chinese language in N82?

    Hi all,
    I got an European version N82. How can I make it support Chinese language? Can it be done by updating firmware? is it safe?
    thanks.

    No, it cannot be done that way.
    You need to visit a nokia care point and ask them to add it for you.
    They may even be able to supply a replacement piece for under the keys that shows chinese and english characters.
    Care points:
    UK
    http://www.nokia.co.uk/A4228006
    Europe:
    http://europe.nokia.com/A4388379
    Elsewhere:
    http://www.nokia.com and select your country.

Maybe you are looking for