Is it possible to send SMS through java

Hi all
I m a student and as a part of my project I need to create an SMS server(SMS gateway). Can we send SMS through Java and if yes then send me the code for the same . Also on which GSM Modem will it Work , I've heard about Nokia GSM Modem N32. Kindly Guide me regarding the Same.
Regards
MoComp

Hi all
I m a student and as a part of my project I need to
create an SMS server(SMS gateway). Can we send SMSSo YOU need to write it.
through Java and if yes then send me the code for theIt's possible, as there are several commercial offerings out there.
But as YOU need to write it it won't do for you to try and trick someone else into writing it so you can submit it as your own.
same . Also on which GSM Modem will it Work , I've
heard about Nokia GSM Modem N32. Kindly Guide me
regarding the Same.All depends on how you implement it.
A real server would have its own hardware and software to pipe directly into the network of a telco, and a contract with that telco to use their network to send messages.

Similar Messages

  • How to send sms through java program?

    hi,
    i am trying to send sms through java program.i am usining ubuntu 6.04.i am using modem MC35i.i use the jSMSEnjine.jar and rxtxcomm.jar.
    these are the following program.
    import org.jsmsengine.*;
    import java.util.*;
    class SendMessage
         public static void main(String[] args)
              int status;
              // Create jSMSEngine service.
         CService srv = new CService("Com2",9600);
              //CService srv = new CService("COM2",9600);
              System.out.println();
              System.out.println("SendMessage(): sample application.");
              System.out.println(" Using " + srv._name + " " + srv._version);
              System.out.println();
              try
                   //     Initialize service.     
                   srv.initialize();
                   Thread thread =Thread.currentThread();
                   thread.sleep(1000);
                   System.out.println(srv);
                   //     Set the cache directory.
                   srv.setCacheDir(".\\");
                   //     Set the phonebook.
                   //     srv.setPhoneBook("../misc/phonebook.xml");
                   //     Connect to GSM device.
                   status = srv.connect();
                   //     Did we connect ok?
                   int st=CService.ERR_OK;
                   System.out.println(st);
                   System.out.println(status);
                   if (status == CService.ERR_OK)
                        //     Set the operation mode to PDU - default is ASCII.
                        srv.setOperationMode(CService.MODE_PDU);
                        // Set the SMSC number (set to default).
                        srv.setSmscNumber("");
                        //     Print out GSM device info...
                        System.out.println("Mobile Device Information: ");
                        System.out.println("     Manufacturer : " + srv.getDeviceInfo().getManufacturer());
                        System.out.println("     Model : " + srv.getDeviceInfo().getModel());
                        System.out.println("     Serial No : " + srv.getDeviceInfo().getSerialNo());
                        System.out.println("     IMSI : " + srv.getDeviceInfo().getImsi());
                        System.out.println("     S/W Version : " + srv.getDeviceInfo().getSwVersion());
                        System.out.println("     Battery Level : " + srv.getDeviceInfo().getBatteryLevel() + "%");
                        System.out.println("     Signal Level : " + srv.getDeviceInfo().getSignalLevel() + "%");
                        //     Create a COutgoingMessage object and dispatch it.
                        //     *** Please update the phone number with one of your choice ***
    // String smsLengthTest="Hi"+"\nTesting is going on.Test for sending unlimited number of charecter.So you will get N number of SMS.Initially I trancate the whole string by 70 charecter.Later I will put it upto 90 charecter.Some chararecter should kept for header portion.I don't know the total number.It is just test.If you got the sms u should appreciate me...This is Ripon...I have written sms program";
    String smsLengthTest="Hi\n"+"This is Govindo";
    int mao=smsLengthTest.length();
    System.out.println("Length of sms :"+mao);
    String smsNo="9433314095";
    smsNo="+91"+smsNo;
    if(mao<70)
    COutgoingMessage msg = new COutgoingMessage(smsNo,smsLengthTest);
    //     Character set is 7bit by default - lets make it UNICODE :)
    //     We can do this, because we are in PDU mode (look at line 63). When in ASCII mode,
    //          this does not make ANY difference...
    msg.setMessageEncoding(CMessage.MESSAGE_ENCODING_UNICODE);
    if (srv.sendMessage(msg) == CService.ERR_OK) System.out.println("Message Sent!");
    else System.out.println("Message Failed!");
    else
    // COutgoingMessage msg = new COutgoingMessage(smsNo,smsLengthTest);
    // LinkedList messageList;
    // messageList = new LinkedList();
    // messageList.add(msg);
    // LinkedList maooo=new LinkedList();
    // maooo=srv.splitLargeMessages(messageList);
    int sizelength=0;
    int counter=0;
    sizelength=smsLengthTest.length();
    System.out.println("SMS length :"+sizelength);
    int smsCntr=sizelength/70;
    System.out.println("smsCntr :"+smsCntr);
    counter=smsCntr+1;
    int j=70;
    int k=0;
    try
    for(int i=0;i<smsCntr;i++)
    String test="";
    test=test+i;
    test=smsLengthTest.substring(k,j);
    System.out.println(test);
    System.out.println(test.length());
    COutgoingMessage msg = new COutgoingMessage(smsNo, test);
    System.out.println("hi this is suman" + smsNo);
    //     Character set is 7bit by default - lets make it UNICODE :)
    //     We can do this, because we are in PDU mode (look at line 63). When in ASCII mode,
    //          this does not make ANY difference...
    msg.setMessageEncoding(CMessage.MESSAGE_ENCODING_UNICODE);
    if (srv.sendMessage(msg) == CService.ERR_OK) System.out.println("Message Sent!");
    else System.out.println("Message Failed!");
    k=k+70;
    j=j+70;
    catch(Exception e)
    System.out.println("Error...1");
    e.printStackTrace();
    e.getMessage();
    String lastPortion=smsLengthTest.substring(k);
    System.out.println(lastPortion);
    COutgoingMessage msg = new COutgoingMessage(smsNo, lastPortion);
    //     Character set is 7bit by default - lets make it UNICODE :)
    //     We can do this, because we are in PDU mode (look at line 63). When in ASCII mode,
    //          this does not make ANY difference...
    msg.setMessageEncoding(CMessage.MESSAGE_ENCODING_UNICODE);
    if (srv.sendMessage(msg) == CService.ERR_OK) System.out.println("Message Sent!");
    else System.out.println("Message Failed!");
                        // Disconnect from GSM device.
                        srv.disconnect();
                   else System.out.println("Connection to mobile failed, error: " + status);
              catch (Exception e)
                   e.printStackTrace();
              System.exit(0);
    the error is:
    SendMessage(): sample application.
    Using jSMSEngine API 1.2.6 (B1)
    org.jsmsengine.CService@addbf1
    0
    -101
    Connection to mobile failed, error: -101
    please help me,its very urgent.

    come back in about 5 years, we may have time for you by then.
    In the meantime, how about contacting the people who wrote that library and asking them nicely for help (rather than trying to order people to drop whatever they're doing and jump through hoops to accommodate your every wish as you're doing here)?

  • I can send sms through java but now i need help for.......???

    hi i am working on a project where i have to read and send sms automaticaly.i succesfully build it also with the jsmsengine and nokia 3220 mobile phone and now i have to fix up some bugs.any interested candidate can contact with me so that we can fix those bug and i also want to know how can i send EMS through mobile.
    is ther any java api that can better that the jsmsengine api??
    thanx

    How did you move you rlibrary to the external drive?
    Did you follow these steps -> iTunes: Moving your iTunes Music folder
    or did you simply drag it over?
    Don't just drag it over.
    This morning, I attempted to download itunes to the new external drive so I could play and easily import my music from there, and itunes won't download to the external hard drive! The error message I'm getting says itunes will only download to the startup disk/
    Do you mean you are trying to download the iTunes program so you can install it?

  • Is it possible to send sms using java ?

    dear all ,
    I am doing one project . In which i want to send sms to mobile phone using java
    Any one knows please help me immediately ......
    I want this one to be immediately ...
    Thank you

    The answer's right here...
    http://www.java-answers.com/index.php?topic=12.0

  • Want to send sms using java

    I am developing a stand alone application in java that contains sending sms to certain numbers.
    I want to send sms using java and my phone connected to my pc by usb cable(Not through Bluetooth).
    I am using Linux operating system (Arch linux).
    I tried a few libraries that uses the the online sms portals,but for some reasons i dont want to pay those sites.(just want it to be done using my simcard cause its economical).
    Help appreciated

    880667 wrote:
    I am developing a stand alone application in java that contains sending sms to certain numbers.
    I want to send sms using java and my phone connected to my pc by usb cable(Not through Bluetooth).
    I am using Linux operating system (Arch linux).
    I tried a few libraries that uses the the online sms portals,but for some reasons i dont want to pay those sites.(just want it to be done using my simcard cause its economical).
    Help appreciatede First thing you need to check: are you able to access other services my connecting you mobile by USB to machine (Line GPRS, calling). Because it requires the calling or SMS port access. And you said it is economical by sending SMS using mobile it depends. But most of the times, it is better to use the SMS service provider getway. They provide the details either http or FTP, we just need to put or message in the accepitng form, rest of the things are done by the service provide.

  • What are the steps for sending SMS through IMS5.1

    I have IMS 5.1 solaris version and I want to send SMS through this Messaging server, Is there any need for the gateway/any other server/requirements for accomplishing this?

    iPlanet Messaging Server 5.2 supports one-way email to an SMS gateway.For SMS channel configuration please refer to
    http://docs.iplanet.com/docs/manuals/messaging/technotes/5.2sms.html

  • New line problem in sending sms through SAP

    Hi all,
    I need to send sms through sap. I have a code working fine.
    constants: c_tab type c value cl_abap_char_utilities=>NEWLINE.
    concatenate 'Sales INFO-' date3  into line1 separated by space.
      move 'Order Input' to line2.
      concatenate 'Day: Rs.' day_oamt   into line3 separated by space.
      concatenate 'MTH: Rs.' month_oamt into line4 separated by space.
      concatenate 'YTD: Rs.' yord       into line5 separated by space.
      move 'Billing' to line6.
      concatenate 'Day: Rs.' day_bamt   into line7 separated by space.
      concatenate 'MTH: Rs.' month_bamt into line8 separated by space.
      concatenate 'YTD: Rs.' ybill      into line9 separated by space.
    concatenate line1 line2 line3 line4 line5 line6 line7 line8 line9 into text separated by C_TAB
    concatenate '+91' m_no+len(10) into m_no.
    'http://************************************='
      M_NO
      '&msg='
       text
        '&************************************************=text'
       inTO WF_STRING.
    CALL METHOD cl_http_client=>create_by_url
        EXPORTING
          url                = wf_string
        IMPORTING
          client             = http_client
        EXCEPTIONS
          argument_not_found = 1
          plugin_not_active  = 2
          internal_error     = 3
          OTHERS             = 4.
      CALL METHOD http_client->send
        EXCEPTIONS
          http_communication_failure = 1
          http_invalid_state         = 2.
      CALL METHOD http_client->receive
        EXCEPTIONS
          http_communication_failure = 1
          http_invalid_state         = 2
          http_processing_failed     = 3.
      CLEAR result .
      result = http_client->response->get_cdata( ).
    I am able to send the message but it gets displayed in one line.
    SALES INFO- <dd.mm.yyyy> Order Input DAY: Rs.123 MTH: Rs.123 YTD: Rs.123 Billing DAY: Rs.123 MTH: Rs.123 YTD: Rs.123
    What I need to do is this.
    SALES INFO- <dd.mm.yyyy>
    Order Input
    DAY: Rs.123
    MTH: Rs.123
    YTD: Rs.123
    Billing
    DAY: Rs.123
    MTH: Rs.123
    YTD: Rs.123

    Have you tried with line feed?
    i.e.
    instead of:
    constants: c_tab type c value cl_abap_char_utilities=>NEWLINE.
    try:
    constants: c_tab type c value cl_abap_char_utilities=>CR_LF.

  • Send SMS through GSM modem

    Hello,
    We have a requirement of sending SMS after PGI . Could anybody please help me on how to use GSM Modem to send SMS through SAP?

    Hey, I can give you another tip. I am using a very reliable integration program. Its name is Ozeki NG SMS Gateway. I hope they dont cut my tip out, because this software is very useful and stable. You are also able to add this message sending function to different clients for example HP Openview or Sharepoint etc.
    Sorry again, I did not intend to advertise or something like that.
    http://www.sms-integration.com/
    Have a nice day
    Jozef

  • Is there any way to send sms through j2me

    hi all,
    is there any way to send sms through j2me or any way to communicate with real device through emulator or from emulator to another emulator
    any sugesstions appriciated
    abdul rafiq jani
    applitech solution limted

    what special API where i can get it any link or information about that APi
    regards
    abdul rafiq jani
    Applitech Solution Limited

  • How to send SMS from Java program?

    Hello,
    I want to know, how can I send SMS from Java program.I dont have any idea about SMS gateways. Can any one give me Sample code for sending the SMSs from Java Program.
    Thanks,
    -BR

    hi,
    refer javamail concepts
    http://www.google.co.in/search?q=javamail+simple+example&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a

  • Windows Phone - To be able to send sms through Nok...

    I would love to use a Lumia and to be able to send sms through Nokia Suite by connecting bthrough usb cable and also by bluetooth.
    I connect my Nokia Belle phones almost every day by bluetooth and send sms.
    The freedom to do that is long implemented i my daily life and the reason is plain simple;
    while surfing on the pc, checking business stuff, writing messages or whatever and not have to pick up the phone is such easy task, not to mention how easy it is too use the keyboard of the pc and the speed and accuracy of writing...people who like me have done this for years,
    surely will miss this feature or whatever you want to call it.
    Implement it, just do it. Please...
    Nokia 808 again (delight Belle), Nokia E7 and X7 ( again, all on Delight Belle...after some time on Nokia Lumia 925 (retired), 1020 (not that great)and Lumia 820 (Replaced my router at home, great for internet sharing).., N9 The best device ever (use it as much as Lumia 1020), Nokia 700 (Sport Phone/My Love :-) ) Nokia 701, Nokia E6 (Should have a follow-up from Nokia among with larger screen, NFC, Autofocus), Lumia 800 (Retired After 6 weeks), -Sports Tracker-Nokia Internet Radio-Handy Safe-Skype-Bambuser-Screenshot app pro-fMobi-ComingNext-Manual TaskSwitcher-jagiTimer-Easy StopWatch-Boldbeast-Equalizer-Financial Calculator-WiMP Music-YTasks-Davi-Thumbnail Folders-BizCalendar-Tiny7-Situations-nn reeder-Sport Timer-CameraLover-CameraPro-GrabRadio-LiveScore-Poddi-Gravity-SkyFilesPro

    Well, how shall I put it....
    I want to send sms when connected to nokia suite (bluetooth) just as I do now with Nokia Belle 700 or 701 using the keyboard of my laptop or pc.
    Read my contribution again....so underated "feature", once you get hooked, you are hooked....just to see the sms on the pc screen without take take up your phone and then quickly answer the sms and at the same time just to watch your pc screen and other activities on your pc screen/laptop...
    Nokia 808 again (delight Belle), Nokia E7 and X7 ( again, all on Delight Belle...after some time on Nokia Lumia 925 (retired), 1020 (not that great)and Lumia 820 (Replaced my router at home, great for internet sharing).., N9 The best device ever (use it as much as Lumia 1020), Nokia 700 (Sport Phone/My Love :-) ) Nokia 701, Nokia E6 (Should have a follow-up from Nokia among with larger screen, NFC, Autofocus), Lumia 800 (Retired After 6 weeks), -Sports Tracker-Nokia Internet Radio-Handy Safe-Skype-Bambuser-Screenshot app pro-fMobi-ComingNext-Manual TaskSwitcher-jagiTimer-Easy StopWatch-Boldbeast-Equalizer-Financial Calculator-WiMP Music-YTasks-Davi-Thumbnail Folders-BizCalendar-Tiny7-Situations-nn reeder-Sport Timer-CameraLover-CameraPro-GrabRadio-LiveScore-Poddi-Gravity-SkyFilesPro

  • Is it possible to send sms to groups from Messages in the new iOS8?

    Is it possible to send sms to groups from Messages in the new iOS8?

    Of course.  This feature has been part of iOS for a while now.
    http://lmgtfy.com/?q=send+group+sms+from+iPhone

  • Which Mobile Networks Operator could be used to send SMS through SKYPE in China?

    Which Mobile Networks Operator could be used to send SMS through SKYPE in China?

    I actually found a workable solution, based off of your suggestion.
    Sprint has partnered with Google to integrate native Google Voice onto the iPhone, using your existing Sprint phone number, for free. The only downside is, you loose visual voicemail. But, you can set Google Voice to transcribe my voicemails and send them via email, which I hear can be quite funny when it gets it wrong.
    But, not being a fan of Google's "all or nothing" approach, where they take over all your sms, voicemail, and calls, I opted to set up a free account and use Google Hangouts app to make outgoing calls. Using it this way, with out applying for a Google Voice number, or switching  my Sprint number over to Google, the caller ID just says "No Caller ID", which is ideal, since having an additional phone number pop up, might lead to confusion as to which one to use to contact me.
    So, thanks for pointing me  in  the right direction.  It's not perfect, as I imagine many friends will kick me over to voicemail when the see "no caller ID" pop up on  their phones, but it'll get the job done.
    Problem solved.

  • Issue with sending mail through java stored procedure in Oracle

    Hello
    I am using Oracle 9i DB. I created a java stored procedure to send mail using the code given below. The java class works fine standalone. When its run from Java, mail is sent as desired. But when the java stored procedure is called from pl/sql "Must issue a STARTTLS command first" error is thrown. Please let me know if am missing something. Tried the same code in 11.2.0.2 DB and got the same error
    Error:
    javax.mail.MessagingException: 530 5.7.0 Must issue a STARTTLS command first. va6sm31201010igc.6
    Code for creating java stored procedure: (T1 is the table created for debugging)
    ==================================================
    create or replace and compile java source named "MailUtil1" AS
    import java.util.Enumeration;
    import java.util.Properties;
    import javax.mail.Message;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeMessage;
    public class MailUtil1 {
    public static void sendMailwithSTARTTLS(String host, //smtp.projectp.com
    String from, //sender mail id
    String fromPwd,//sender mail pwd
    String port,//587
    String to,//recepient email ids
    String cc,
    String subject,
    String messageBody) {
    try{
    Properties props = System.getProperties();
    props.put("mail.smtp.starttls.enable", "True"); // added this line
    props.put("mail.smtp.host", host);
    props.put("mail.smtp.user", from);
    props.put("mail.smtp.password", fromPwd);
    props.put("mail.smtp.port", port);
    props.put("mail.smtp.auth", "true");
    #sql { insert into t1 (c1) values ('1'||:host)};
    Session session = Session.getDefaultInstance(props, null);
    MimeMessage message = new MimeMessage(session);
    message.setFrom(new InternetAddress(from));
    #sql { insert into t1 (c1) values ('2')};
    InternetAddress[] toAddress = new InternetAddress[1];
    // To get the array of addresses
    for( int i=0; i < toAddress.length; i++ ) { // changed from a while loop
    toAddress[i] = new InternetAddress(to);
    //System.out.println(Message.RecipientType.TO);
    for( int i=0; i < toAddress.length; i++) { // changed from a while loop
    message.addRecipient(Message.RecipientType.TO, toAddress);
    if (cc!=null) {
    InternetAddress [] ccAddress = new InternetAddress[1];
    for(int j=0;j<ccAddress.length;j++){
    ccAddress[j] = new InternetAddress(cc);
    for (int j=0;j<ccAddress.length;j++){
    message.addRecipient(Message.RecipientType.CC, ccAddress[j]);
    message.setSubject(subject);
    message.setText(messageBody);
    message.saveChanges();
    #sql { insert into t1 (c1) values ('3')};
    Enumeration en = message.getAllHeaderLines();
    String token;
    while(en.hasMoreElements()){
    token ="E:"+en.nextElement().toString();
    #sql { insert into t1 (c1) values (:token)};
    token ="ConTyp:"+message.getContentType();
    #sql { insert into t1 (c1) values (:token)};
    token = "Encod:"+message.getEncoding();
    #sql { insert into t1 (c1) values (:token)};
    token = "Con:"+message.getContent();
    #sql { insert into t1 (c1) values (:token)};
    Transport transport = session.getTransport("smtp");
    #sql { insert into t1 (c1) values ('3.1')};
    transport.connect(host, from, fromPwd);
    #sql { insert into t1 (c1) values ('3.2')};
    transport.sendMessage(message, message.getAllRecipients());
    #sql { insert into t1 (c1) values ('3.3')};
    transport.close();
    #sql { insert into t1 (c1) values ('4')};
    catch(Exception e){
    e.printStackTrace();
    String ex= e.toString();
    try{
    #sql { insert into t1 (c1) values (:ex)};
    catch(Exception e1)
    Edited by: user12050615 on Jan 16, 2012 12:18 AM

    Hello,
    Thanks for the reply. Actually I have seen that post before creating this thread. I thought that I could make use of java mail to work around this problem. I created a java class that succesfully sends mail to SSL host. I tried to call this java class from pl-sql through java stored procedure. That did not work
    So, is this not supported in Oracle ? Please note that I have tested this in both 9i and 11g , in both the versions I got the error. You can refer to the code in the above post.
    Thanks
    Srikanth
    Edited by: user12050615 on Jan 16, 2012 12:17 AM

  • Error in sending SMS through OCSG

    Hi All,
    I have a program which send SMS thru OCSG, but i am seeing following error after 30 to 45 minutes and after error again SMS broadcast successfully
    I see errors in following file
    C:\bea\user_projects\domains\ocsg-domain\servers\AdminServer\trace\default.log
    24 Apr 2009 12:27:33,312 [[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] ERROR com.bea.wlcp.wlng.plugin.sms.smpp.adapter.TransmitterProxyImpl - [Plugin_px21_short_messaging_smpp2#wlng_nt_sms_px21#4.1.0.0.1] exception-thrown SmsMessageStateSMPP com.bea.wlcp.wlng.plugin.sms.smpp.adapter.TransmitterProxyImpl.submitGsmSm(SmppShortMessage, int, int, SmsMessageStateSMPP)( [email protected]6d548,0,1739,SmsMessageState : messageID [null] serviceCorrelator [null] originatingAddress [321] notificationInfo [null] statusNotificationInfo [null] targetAddressStates [] segmentationId [0] nrOfMessageSegements [1] segmentIDs [] )
    com.bea.wlcp.wlng.plugin.sms.smpp.adapter.TransmitterProxyException: Failed to submit message : Submit request timed out.
         at com.bea.wlcp.wlng.plugin.sms.smpp.adapter.TransmitterProxyImpl.submitGsmSm(TransmitterProxyImpl.java:505)
         at com.bea.wlcp.wlng.plugin.sms.smpp.SMPPPluginInstanceImpl.internalSendSmsCore(SMPPPluginInstanceImpl.java:1199)
         at com.bea.wlcp.wlng.plugin.sms.smpp.SMPPPluginInstanceImpl.internalSendSmsPx(SMPPPluginInstanceImpl.java:1133)
         at com.bea.wlcp.wlng.plugin.sms.smpp.SMPPPluginInstanceImpl.sendSms(SMPPPluginInstanceImpl.java:328)
         at sun.reflect.GeneratedMethodAccessor1866.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.wlcp.wlng.interceptor.InvokePlugin.invokePlugin(InvokePlugin.java:177)
         at com.bea.wlcp.wlng.interceptor.InvokePlugin.invokeSingleOptional(InvokePlugin.java:65)
         at com.bea.wlcp.wlng.interceptor.InvokePlugin.invokePlugins(InvokePlugin.java:47)
         at com.bea.wlcp.wlng.interceptor.InvokePlugin.invoke(InvokePlugin.java:33)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.EnforceSubscriberBudget.invoke(EnforceSubscriberBudget.java:70)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.EnforceNodeBudget.invoke(EnforceNodeBudget.java:109)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.RetryPlugin.invoke(RetryPlugin.java:40)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.InjectXParametersFromRequestContext.invoke(InjectXParametersFromRequestContext.java:35)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.EvaluateILOGPolicy.invoke(EvaluateILOGPolicy.java:29)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.ResultFilter.invoke(ResultFilter.java:37)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.InjectValuesInRequestContextFromSLA.invoke(InjectValuesInRequestContextFromSLA.java:27)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.EnforceBlacklistedMethodFromSLA.invoke(EnforceBlacklistedMethodFromSLA.java:30)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.CheckMethodParametersFromSLA.invoke(CheckMethodParametersFromSLA.java:34)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.FindAndValidateSLAContract.invoke(FindAndValidateSLAContract.java:42)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.InvokeServiceCorrelation.invoke(InvokeServiceCorrelation.java:43)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.RoundRobinPluginList.invoke(RoundRobinPluginList.java:44)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.RemoveOptional.invoke(RemoveOptional.java:28)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.FilterPluginListUsingCustomMatch.invoke(FilterPluginListUsingCustomMatch.java:40)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.RemoveInvalidRoute.invoke(RemoveInvalidRoute.java:55)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.CreatePolicyData.invoke(CreatePolicyData.java:25)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.RemoveInactivePlugin.invoke(RemoveInactivePlugin.java:39)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.CreatePluginList.invoke(CreatePluginList.java:59)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.ValidateRequestUsingRequestFactory.invoke(ValidateRequestUsingRequestFactory.java:41)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.EnforceSpAppBudget.invoke(EnforceSpAppBudget.java:70)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.EnforceApplicationState.invoke(EnforceApplicationState.java:71)
         at com.bea.wlcp.wlng.plugin.PluginManagerImpl.invokeInterceptors(PluginManagerImpl.java:84)
         at com.bea.wlcp.wlng.plugin.PluginManagerImpl.processRequest(PluginManagerImpl.java:58)
         at com.bea.wlcp.wlng.util.EJBHelper.processRequest(EJBHelper.java:42)
         at com.bea.wlcp.wlng.px21.ejb.SendSmsEjbImpl.sendSms(SendSmsEjbImpl.java:79)
         at com.bea.wlcp.wlng.px21.ejb.SendSms_25ojqb_EOImpl.sendSms(SendSms_25ojqb_EOImpl.java:138)
         at com.bea.wlcp.wlng.px21.ejb.SendSms_25ojqb_EOImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:174)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:345)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
         at com.bea.wlcp.wlng.px21.ejb.SendSms_25ojqb_EOImpl_1030_WLStub.sendSms(Unknown Source)
         at com.bea.wlcp.wlng.px21.jws.SendSmsWsImpl.sendSms(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor659.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.wsee.component.pojo.JavaClassComponent.invoke(JavaClassComponent.java:112)
         at weblogic.wsee.ws.dispatch.server.ComponentHandler.handleRequest(ComponentHandler.java:84)
         at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:141)
         at weblogic.wsee.ws.dispatch.server.ServerDispatcher.dispatch(ServerDispatcher.java:114)
         at weblogic.wsee.ws.WsSkel.invoke(WsSkel.java:80)
         at weblogic.wsee.server.servlet.SoapProcessor.handlePost(SoapProcessor.java:66)
         at weblogic.wsee.server.servlet.SoapProcessor.process(SoapProcessor.java:44)
         at weblogic.wsee.server.servlet.BaseWSServlet$AuthorizedInvoke.run(BaseWSServlet.java:285)
         at weblogic.wsee.server.servlet.BaseWSServlet.service(BaseWSServlet.java:169)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3501)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2089)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    24 Apr 2009 12:27:33,312 [[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] ERROR com.bea.wlcp.wlng.plugin.sms.smpp.SMPPManagedPluginImpl - [Plugin_px21_short_messaging_smpp2#wlng_nt_sms_px21#4.1.0.0.1] Unable to send mobile terminated message.
    com.bea.wlcp.wlng.plugin.sms.smpp.adapter.TransmitterProxyException: Failed to submit message : Submit request timed out.
         at com.bea.wlcp.wlng.plugin.sms.smpp.adapter.TransmitterProxyImpl.submitGsmSm(TransmitterProxyImpl.java:505)
         at com.bea.wlcp.wlng.plugin.sms.smpp.SMPPPluginInstanceImpl.internalSendSmsCore(SMPPPluginInstanceImpl.java:1199)
         at com.bea.wlcp.wlng.plugin.sms.smpp.SMPPPluginInstanceImpl.internalSendSmsPx(SMPPPluginInstanceImpl.java:1133)
         at com.bea.wlcp.wlng.plugin.sms.smpp.SMPPPluginInstanceImpl.sendSms(SMPPPluginInstanceImpl.java:328)
         at sun.reflect.GeneratedMethodAccessor1866.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.wlcp.wlng.interceptor.InvokePlugin.invokePlugin(InvokePlugin.java:177)
         at com.bea.wlcp.wlng.interceptor.InvokePlugin.invokeSingleOptional(InvokePlugin.java:65)
         at com.bea.wlcp.wlng.interceptor.InvokePlugin.invokePlugins(InvokePlugin.java:47)
         at com.bea.wlcp.wlng.interceptor.InvokePlugin.invoke(InvokePlugin.java:33)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.EnforceSubscriberBudget.invoke(EnforceSubscriberBudget.java:70)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.EnforceNodeBudget.invoke(EnforceNodeBudget.java:109)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.RetryPlugin.invoke(RetryPlugin.java:40)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.InjectXParametersFromRequestContext.invoke(InjectXParametersFromRequestContext.java:35)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.EvaluateILOGPolicy.invoke(EvaluateILOGPolicy.java:29)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.ResultFilter.invoke(ResultFilter.java:37)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.InjectValuesInRequestContextFromSLA.invoke(InjectValuesInRequestContextFromSLA.java:27)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.EnforceBlacklistedMethodFromSLA.invoke(EnforceBlacklistedMethodFromSLA.java:30)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.CheckMethodParametersFromSLA.invoke(CheckMethodParametersFromSLA.java:34)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.FindAndValidateSLAContract.invoke(FindAndValidateSLAContract.java:42)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.InvokeServiceCorrelation.invoke(InvokeServiceCorrelation.java:43)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.RoundRobinPluginList.invoke(RoundRobinPluginList.java:44)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.RemoveOptional.invoke(RemoveOptional.java:28)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.FilterPluginListUsingCustomMatch.invoke(FilterPluginListUsingCustomMatch.java:40)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.RemoveInvalidRoute.invoke(RemoveInvalidRoute.java:55)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.CreatePolicyData.invoke(CreatePolicyData.java:25)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.RemoveInactivePlugin.invoke(RemoveInactivePlugin.java:39)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.CreatePluginList.invoke(CreatePluginList.java:59)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.ValidateRequestUsingRequestFactory.invoke(ValidateRequestUsingRequestFactory.java:41)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.EnforceSpAppBudget.invoke(EnforceSpAppBudget.java:70)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.EnforceApplicationState.invoke(EnforceApplicationState.java:71)
         at com.bea.wlcp.wlng.plugin.PluginManagerImpl.invokeInterceptors(PluginManagerImpl.java:84)
         at com.bea.wlcp.wlng.plugin.PluginManagerImpl.processRequest(PluginManagerImpl.java:58)
         at com.bea.wlcp.wlng.util.EJBHelper.processRequest(EJBHelper.java:42)
         at com.bea.wlcp.wlng.px21.ejb.SendSmsEjbImpl.sendSms(SendSmsEjbImpl.java:79)
         at com.bea.wlcp.wlng.px21.ejb.SendSms_25ojqb_EOImpl.sendSms(SendSms_25ojqb_EOImpl.java:138)
         at com.bea.wlcp.wlng.px21.ejb.SendSms_25ojqb_EOImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:174)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:345)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
         at com.bea.wlcp.wlng.px21.ejb.SendSms_25ojqb_EOImpl_1030_WLStub.sendSms(Unknown Source)
         at com.bea.wlcp.wlng.px21.jws.SendSmsWsImpl.sendSms(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor659.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.wsee.component.pojo.JavaClassComponent.invoke(JavaClassComponent.java:112)
         at weblogic.wsee.ws.dispatch.server.ComponentHandler.handleRequest(ComponentHandler.java:84)
         at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:141)
         at weblogic.wsee.ws.dispatch.server.ServerDispatcher.dispatch(ServerDispatcher.java:114)
         at weblogic.wsee.ws.WsSkel.invoke(WsSkel.java:80)
         at weblogic.wsee.server.servlet.SoapProcessor.handlePost(SoapProcessor.java:66)
         at weblogic.wsee.server.servlet.SoapProcessor.process(SoapProcessor.java:44)
         at weblogic.wsee.server.servlet.BaseWSServlet$AuthorizedInvoke.run(BaseWSServlet.java:285)
         at weblogic.wsee.server.servlet.BaseWSServlet.service(BaseWSServlet.java:169)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3501)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2089)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    24 Apr 2009 12:27:33,312 [[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] ERROR com.bea.wlcp.wlng.plugin.sms.smpp.SMPPPluginInstanceImpl - [Plugin_px21_short_messaging_smpp2#wlng_nt_sms_px21#4.1.0.0.1] exception-thrown SmsMessageStateSMPP[] com.bea.wlcp.wlng.plugin.sms.smpp.SMPPPluginInstanceImpl.internalSendSmsCore(StatusNotificationInfo, String, String, String, RequestContext, SmppShortMessage)( null,null,cc_app_user,321,com.bea.wlcp.wlng.plugin.context.RequestContextImpl@156ddb9,[email protected]6d548 )
    org.csapi.schema.parlayx.common.v2_1.ServiceException
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at com.bea.wlcp.wlng.px21.common.ExceptionCatalogImpl$ExceptionInfoImpl.newInstance(ExceptionCatalogImpl.java:456)
         at com.bea.wlcp.wlng.px21.common.PxExceptionHelper.exception(PxExceptionHelper.java:83)
         at com.bea.wlcp.wlng.px21.common.PxExceptionHelper.serviceException(PxExceptionHelper.java:177)
         at com.bea.wlcp.wlng.px21.common.PxExceptionHelper.throwServiceException(PxExceptionHelper.java:33)
         at com.bea.wlcp.wlng.px21.common.PxExceptionHelper.throwServiceException(PxExceptionHelper.java:18)
         at com.bea.wlcp.wlng.plugin.sms.smpp.SMPPPluginInstanceImpl.internalSendSmsCore(SMPPPluginInstanceImpl.java:1216)
         at com.bea.wlcp.wlng.plugin.sms.smpp.SMPPPluginInstanceImpl.internalSendSmsPx(SMPPPluginInstanceImpl.java:1133)
         at com.bea.wlcp.wlng.plugin.sms.smpp.SMPPPluginInstanceImpl.sendSms(SMPPPluginInstanceImpl.java:328)
         at sun.reflect.GeneratedMethodAccessor1866.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.wlcp.wlng.interceptor.InvokePlugin.invokePlugin(InvokePlugin.java:177)
         at com.bea.wlcp.wlng.interceptor.InvokePlugin.invokeSingleOptional(InvokePlugin.java:65)
         at com.bea.wlcp.wlng.interceptor.InvokePlugin.invokePlugins(InvokePlugin.java:47)
         at com.bea.wlcp.wlng.interceptor.InvokePlugin.invoke(InvokePlugin.java:33)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.EnforceSubscriberBudget.invoke(EnforceSubscriberBudget.java:70)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.EnforceNodeBudget.invoke(EnforceNodeBudget.java:109)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.RetryPlugin.invoke(RetryPlugin.java:40)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.InjectXParametersFromRequestContext.invoke(InjectXParametersFromRequestContext.java:35)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.EvaluateILOGPolicy.invoke(EvaluateILOGPolicy.java:29)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.ResultFilter.invoke(ResultFilter.java:37)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.InjectValuesInRequestContextFromSLA.invoke(InjectValuesInRequestContextFromSLA.java:27)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.EnforceBlacklistedMethodFromSLA.invoke(EnforceBlacklistedMethodFromSLA.java:30)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.CheckMethodParametersFromSLA.invoke(CheckMethodParametersFromSLA.java:34)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.FindAndValidateSLAContract.invoke(FindAndValidateSLAContract.java:42)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.InvokeServiceCorrelation.invoke(InvokeServiceCorrelation.java:43)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.RoundRobinPluginList.invoke(RoundRobinPluginList.java:44)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.RemoveOptional.invoke(RemoveOptional.java:28)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.FilterPluginListUsingCustomMatch.invoke(FilterPluginListUsingCustomMatch.java:40)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.RemoveInvalidRoute.invoke(RemoveInvalidRoute.java:55)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.CreatePolicyData.invoke(CreatePolicyData.java:25)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.RemoveInactivePlugin.invoke(RemoveInactivePlugin.java:39)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.CreatePluginList.invoke(CreatePluginList.java:59)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.ValidateRequestUsingRequestFactory.invoke(ValidateRequestUsingRequestFactory.java:41)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.EnforceSpAppBudget.invoke(EnforceSpAppBudget.java:70)
         at com.bea.wlcp.wlng.interceptor.ContextImpl.invokeNext(ContextImpl.java:87)
         at com.bea.wlcp.wlng.interceptor.EnforceApplicationState.invoke(EnforceApplicationState.java:71)
         at com.bea.wlcp.wlng.plugin.PluginManagerImpl.invokeInterceptors(PluginManagerImpl.java:84)
         at com.bea.wlcp.wlng.plugin.PluginManagerImpl.processRequest(PluginManagerImpl.java:58)
         at com.bea.wlcp.wlng.util.EJBHelper.processRequest(EJBHelper.java:42)
         at com.bea.wlcp.wlng.px21.ejb.SendSmsEjbImpl.sendSms(SendSmsEjbImpl.java:79)
         at com.bea.wlcp.wlng.px21.ejb.SendSms_25ojqb_EOImpl.sendSms(SendSms_25ojqb_EOImpl.java:138)
         at com.bea.wlcp.wlng.px21.ejb.SendSms_25ojqb_EOImpl_WLSkel.invoke(Unknown Source)
         at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:174)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:345)
         at weblogic.rmi.cluster.ClusterableRemoteRef.invoke(ClusterableRemoteRef.java:259)
         at com.bea.wlcp.wlng.px21.ejb.SendSms_25ojqb_EOImpl_1030_WLStub.sendSms(Unknown Source)
         at com.bea.wlcp.wlng.px21.jws.SendSmsWsImpl.sendSms(Unknown Source)
         at sun.reflect.GeneratedMethodAccessor659.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.wsee.component.pojo.JavaClassComponent.invoke(JavaClassComponent.java:112)
         at weblogic.wsee.ws.dispatch.server.ComponentHandler.handleRequest(ComponentHandler.java:84)
         at weblogic.wsee.handler.HandlerIterator.handleRequest(HandlerIterator.java:141)
         at weblogic.wsee.ws.dispatch.server.ServerDispatcher.dispatch(ServerDispatcher.java:114)
         at weblogic.wsee.ws.WsSkel.invoke(WsSkel.java:80)
         at weblogic.wsee.server.servlet.SoapProcessor.handlePost(SoapProcessor.java:66)
         at weblogic.wsee.server.servlet.SoapProcessor.process(SoapProcessor.java:44)
         at weblogic.wsee.server.servlet.BaseWSServlet$AuthorizedInvoke.run(BaseWSServlet.java:285)
         at weblogic.wsee.server.servlet.BaseWSServlet.service(BaseWSServlet.java:169)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3501)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2089)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    24 Apr 2009 12:27:33,312 [[ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] ERROR com.bea.wlcp.wlng.plugin.sms.smpp.SMPPPluginInstanceImpl - [Plugin_px21_short_messaging_smpp2#wlng_nt_sms_px21#4.1.0.0.1] exception-thrown String com.bea.wlcp.wlng.plugin.sms.smpp.SMPPPluginInstanceImpl.internalSendSmsPx(URI[], String, ChargingInformation, String, int, SmsFormat, SimpleReference)( [Ljava.net.URI;@1f6d2b6,tel:321,null,helo message,-1,null,null )
    org.csapi.schema.parlayx.common.v2_1.ServiceException
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at com.bea.wlcp.wlng.px21.common.ExceptionCatalogImpl$ExceptionInfoImpl.newInstance(ExceptionCatalogImpl.java:456)
         at com.bea.wlcp.wlng.px21.common.PxExceptionHelper.exception(PxExceptionHelper.java:83)
         at com.bea.wlcp.wlng.px21.common.PxExceptionHelper.serviceException(PxExceptionHelper.java:177)
         at com.bea.wlcp.wlng.px21.common.PxExceptionHelper.throwServiceException(PxExceptionHelper.java:33)
         at com.bea.wlcp.wlng.px21.common.PxExceptionHelper.throwServiceException(PxExceptionHelper.java:18)
         at com.bea.wlcp.wlng.plugin.sms.smpp.SMPPPluginInstanceImpl.internalSendSmsCore(SMPPPluginInstanceImpl.java:1216)
         at com.bea.wlcp.wlng.plugin.sms.smpp.SMPPPluginInstanceImpl.internalSendSmsPx(SMPPPluginInstanceImpl.java:1133)
         at com.bea.wlcp.wlng.plugin.sms.smpp.SMPPPluginInstanceImpl.sendSms(SMPPPluginInstanceImpl.java:328)
         at sun.reflect.GeneratedMethodAccessor1866.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    Regards,                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  

    Not sure , If you are still looking for info.
    At the minimum, You need to execute following operations on mbeans.
    <mbean type="com.bea.wlcp.wlng.account.management.ApplicationGroupMBean">
    <invoke operation="addServiceProviderGroup">
    <value name="group">default_sp_group</value>
    </invoke>
    <invoke operation="addApplicationGroup">
    <value name="group">default_app_group</value>
    </invoke>
    </mbean>
    <mbean type="com.bea.wlcp.wlng.account.management.ServiceLevelAgreementMBean">
    <invoke operation="loadServiceProviderGroupSla">
    <value name="group">default_sp_group</value>
    <value name="sla" file="d:/pm/ocsgsetup/default_sp_group.xml"/>
    </invoke>
    <invoke operation="loadApplicationGroupSla">
    <value name="group">default_app_group</value>
    <value name="sla" file="d:/pm/ocsgsetup/default_app_group.xml"/>
    </invoke>
    </mbean>
    <mbean type="com.bea.wlcp.wlng.account.management.ApplicationAccountMBean">
    <invoke operation="addServiceProviderAccount">
    <value name="serviceProvider">default_provider</value>
    <value name="group">default_sp_group</value>
    <value name="reference">default_provider</value>
    </invoke>
    <invoke operation="addApplicationAccount">
    <value name="application">app_domain1</value>
    <value name="serviceProvider">default_provider</value>
    <value name="group">default_app_group</value>
    <value name="reference">default_app_group</value>
    </invoke>
    </mbean>
    <mbean type="com.bea.wlcp.wlng.account.management.ApplicationInstanceMBean">
    <invoke operation="addApplicationInstance">
    <value name="applicationInstanceName">domain_user</value>
    <value name="password">domain_user</value>
    <value name="application">app_domain1</value>
    <value name="serviceProvider">default_provider</value>
    <value name="reference">domain_user</value>
    </invoke>
    </mbean>
    <mbean type="com.bea.wlcp.wlng.plugin.PluginManagerMBean">
    <invoke operation="createPluginInstance">
    <value name="PluginServiceId">Plugin_px21_short_messaging_smpp</value>
    <value name="PluginInstanceId">Plugin_px21_short_messaging_smpp</value>
    </invoke>
    <invoke operation="addRoute">
    <value name="id">Plugin_px21_short_messaging_smpp</value>
    <value name="addressExpression">^.*$</value>
    </invoke>
    </mbean>
    + you've to add atleast blank SLAs.
    Then start the simulators in PTE and connnect the client.

Maybe you are looking for

  • Create a new folder in sap r/3 main menu

    HI, i want to create a new folder into Material Management Module, this folder contain several transactions. What i need to do in order to sucess with this task? Thanks. Reward Points

  • Step by Step on Upgrade to OS X

    I have 2 computers: - iMac DV running 9.1 (320MB and no OS X) - iBook running 9.2.2 (385 MB and it has OS 10.0) I need to upgrade both to OS X. I have searched all over Apple's website and cannot find a simple step by step process to updgrade these c

  • Can't open nautilus from applications menu

    I find that I can't open nautilus from applications menu any more. In the terminal, it won't open nautilus when running 'nautilus' without specifying a location or --new-window option. I've checked and tried to modify /usr/share/applications/org.gnom

  • Only play on first load?

    Hello! I'm embedding a .swf file into my home page, very small and simple. However, I only want this movie to play the first time someone visits that page - after that, I'd like to swap out for a static image - or just not have the movie play. Anyway

  • Hello i can't find com.apple.mail.plist and "mail" is not working well, thank you

    Hello, My mail.app is not working well. I read a lot messages forum an dlot of solutions for mail.app is delete "com.apple.mail.plist" but I can't find it in library/preferences, can you help me please. Thank you, Syl