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?

Similar Messages

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

  • 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)?

  • How do I make Firefox the one that I can send links through? Thunderbird now launches when I want to send a link.

    In the past, when I sent a web link on Firefox, my gmail address book would pop up. Thunderbird had an update today, but I'm thinking it may have been a virus. Now, when I try to send a link out of Firefox Mozilla, Thunderbird launches and I don't want that to be my default.

    Google search and other websites have a user preference that can be set to open a search result in a new tab or a new window, for users who are logged in to their website.
    Otherwise, when you don't have a 3-button mouse or a scroll pad with "middle-click" functionality, you can use '''{Ctrl + Click}''' to open a hyperlink in a new Tab.

  • I can send emails through Thunderbird but canNOT receive. I'll have get your answer through webmail.

    LOOK!! To test, I sent a short email to myself to see if Thunderbird would receive it. It didn't, but the Dodo webmail picked it up. I'm sorry, but I can't be more explicit t4han that.

    In order for us to better investigate this issue you need to add a little more non-personal information.
    Please add the troubleshooting information to your post
    To find the Troubleshooting information:
    * Open Help (or click on three-line-icon and select Help)
    * Choose Troubleshooting Information
    * Use the button Copy to clipboard to select all. Do not check box "Include account names"!
    * Paste this in your post.
    Please also add the result of these troubleshooting steps to your post
    *Does Thunderbird work in TB Safe mode (see [http://mzl.la/1k5DWjq Thunderbird Safe Mode])?
    *Do you use anti-virus and firewall software? What is the version?
    *Who is the email provider?
    *Who is the internet provider?
    *What is the exact error message?
    Please post back with this information and any other questions you might have.

  • Hi I have iPhone 4 with iOS 6 and a week ago I stop ressiv or send SMS. I tried everything but I still can't send.. I erase the version and all the data on the iPhone and now I can send SMS. But when I'm downloading my buck up the problem happened againI'

    Hi I have iPhone 4 with iOS 6 and a week ago I stop ressiv or send SMS. I tried everything but I still can't send.. I erase the version and all the data on the iPhone and now I can send SMS. But when I'm downloading my buck up the problem happened again
    Please help me cuse I don't know what to do and my cellular company don't have an answer
    Thank u

    I have to ad that its not an easy problem I did all the action in the book.
    It's something with my back up

  • I can send SMS texts to one contact, but not MMS.

    I have sent picture texts to one contact daily for months. Now all of a sudden I can send SMS easily, but the pictures are not delivere.  I have a Windows phone also, and I have no problem sending her pictures from that phone.
    i I have tried deleting the phone number and re entering it, and also deleting and recreating the contact.
    I Have also deleted all existing threads.

    Hi, Kristi.  
    Thank you for visiting Apple Support Communities.  
    I see you have tried some troubleshooting steps already.  There are a couple more steps that I would recommend trying in the article below. 
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Cheers,
    Jason H.

  • 8350i Nextel can send sms but will only recieve mms

    I have a Blackberry 8350i with OS 5.0.0.1051 installed.
    I can send and receive MMS messages with no problem.
    I can send SMS messages with no problem, but when I get the reply it comes as an MMS.
    I don't know what to do.
    Thanks in advance!

    Do you have many sms in your phone?if so DELETE your inbox and sent folders or back them up on ovi suite.
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Can send SMS but not receive after update...

    After updating my iPhone 4S to ios6 i have problems with receiving messages.I can send SMS but not receive. What to do?

    Although I don't believe in consequences, I think this might be one of them. My email was working fine until I installed my VPN. I use the Thunderbird email application, which I like a lot, for three Hotmail accounts and two Yahoo accounts. After installing the VPN I could receive mail but could not send it on any of my accounts. I contacted the VPN and they sent me some numeric IP Addresses to put in my account settings. One for the Hotmail accounts and one for the Yahoo accounts. I did as instructed and the email seemed to work okay. It was late in the evening and I went to bed. The next morning, I could send and receive emails on the Yahoo accounts, but could only send emails on all of the Hotmail accounts.
    I guess I'd like to know if anyone else is having this same problem. I'd hate to think it was just me. :-)
    I would like for Thunderbird to tell me if there is a way to change the outgoing server in the Account Settings, so I can enter the IP Address in there, or does the fact that I entered an IP Address in the Server Name box, cause it to override any other entries? Or should that even make a difference with me receiving mail?
    Also, at what time limit does Thunderbird send back a message that the connection to the server timed out? I continually get that message.
    I found a way to do a ping on the Hotmail server and the fastest response time for the last two days was 258.09 which seems very slow for a business computer. At least for a business that wants to stay in business. So is that time above the Thunderbird threshold of the connection time out message to be generated?
    Thanks for all your help and suggestions, Carole

  • I have uploaded photos through itunes but now want to delete,can somebody help?, i have uploaded photos through itunes but now want to delete,can somebody help?

    i have uploaded photos through itunes but now want to delete,can somebody help?, i have uploaded photos through itunes but now want to delete,can somebody help?

    Read here:
    http://support.apple.com/kb/HT4236

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

  • How to send SMS using java

    Dear All
    How we can send SMS(Short Message Service) to mobile phones using java.
    By Registering in some sites and using that user name and password we can send SMS.
    But after some limited SMS we have to pay for further use.
    I need some thing which we can use as free.
    Can any one help me
    Thanks in Advance

    The easiest way would be to send a regular email to a Email to SMS gateway.
    Check out the list of Email to SMS gateways at http://en.wikipedia.org/wiki/SMS_gateways

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

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

  • Not able to send mail through java

    Hi,
    I am sending an email through java but it gives me exception that Authentication failed exception but I have provided correct credentials
    I have given stack trace as below
    19 Mar 2013 16:32:58,579 614378 [[ACTIVE] ExecuteThread: '4' for queue: 'weblogic.kernel.Default (self-tuning)'] ERROR alfaaesar.portal.pages.common.bo.AfCmnCommonBO  – AfCmnCommonBo SendMail Exception:javax.mail.AuthenticationFailedException
         at javax.mail.Service.connect(Service.java:319)
         at alfaaesar.portal.pages.common.bo.AfCmnCommonBO.sendMail(AfCmnCommonBO.java:939)
         at alfaaesar.portal.pages.literature.action.AfLitetatureRequestAndViewAction.InsertLiteratureReqDtlsInAlfaLitHeaderTbl(AfLitetatureRequestAndViewAction.java:619)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(Unknown Source)
         at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
         at org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:46)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:102)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:92)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:361)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:96)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:96)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)
         at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:889)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:379)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:194)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         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:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at alfaaesar.portal.pages.filter.AnonymousSessionFilter.doFilter(AnonymousSessionFilter.java:47)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.portlet.client.adapter.adf.ADFPortletFilter.doFilter(ADFPortletFilter.java:32)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.framework.events.dispatcher.EventDispatcherFilter.doFilter(EventDispatcherFilter.java:44)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.wcps.client.PersonalizationFilter.doFilter(PersonalizationFilter.java:75)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.content.integration.servlets.ContentServletFilter.doFilter(ContentServletFilter.java:168)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.webcenter.lifecycle.filter.LifecycleLockFilter.doFilter(LifecycleLockFilter.java:151)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:179)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)Also given code below in java to send an email .
                    public  Boolean sendMail(String host,String port,String debugFlag,String authFlag, String userId,String password,String fromEmailAddress,String toEmailAddress,String subject,String eMailcontent ) throws MessagingException {
            Boolean sendMailFlag = false;
            Properties props = new Properties();
            props.put("mail.smtp.host", host);
            props.put("mail.smtp.port", port);
            props.put("mail.debug", debugFlag); //Set default to false
            props.put("mail.smtp.auth", authFlag); //Set default to true
            props.put("mail.transport.protocol", "smtp");
            props.put("mail.smtp.sendpartial","true");
           // props.put("mail.smtp.starttls.enable", "true");
            logger.info("Sending Email.......");
            //System.out.println("Sending Email.......");
            try {
                // Instantiatee a message
                final String mailUserId = userId;
                final String mailPassword = password;
               Session mailSession = Session.getDefaultInstance(props, new Authenticator() {
                protected PasswordAuthentication getPasswordAuthentication() {
                return new PasswordAuthentication(mailUserId, mailPassword);
               MimeMessage msg = new MimeMessage(mailSession);
                msg.setFrom(new InternetAddress(fromEmailAddress));
               String[] to = toEmailAddress.split(",");
               InternetAddress[] addressTo = new InternetAddress[to.length];
                     for (int i = 0; i < to.length; i++)
                         addressTo[i] = new InternetAddress(to);
    msg.setRecipients(Message.RecipientType.TO, addressTo);
    if(JSFUtils.getFromSession("ccEmailAddress")!=null){
    String ccEmailAddress =(String)JSFUtils.getFromSession("ccEmailAddress");
    JSFUtils.removeFromSession("ccEmailAddress");
    String[] cc = ccEmailAddress.split(",");
    InternetAddress[] addressCC = new InternetAddress[cc.length];
    for (int i = 0; i < cc.length; i++)
    addressCC[i] = new InternetAddress(cc[i]);
    msg.setRecipients(Message.RecipientType.CC, addressCC);
    msg.setSubject(subject,"utf-8");
    msg.setSentDate(new Date());
    //msg.setText(eMailcontent);
    msg.setContent(eMailcontent, "text/html; charset=\"utf-8\"");
    if (toEmailAddress.indexOf(',') > 0)
    msg.setRecipients(Message.RecipientType.TO,
    InternetAddress.parse(toEmailAddress));
    else
    msg.setRecipient(Message.RecipientType.TO,
    new InternetAddress(toEmailAddress));
    Transport transport = mailSession.getTransport();
    transport.connect(host,Integer.parseInt(port),userId.trim(),password.trim());
    transport.send(msg);
    transport.close();
    //Send the message
    // Transport.send(msg);
    sendMailFlag = true;
    // System.out.println("mail sent");
    } catch (MessagingException mex) {
    // Prints all nested (chained) exceptions as well
    //logger.info(mex.getMessage());
    logger.error("AfCmnCommonBo SendMail Exception:"+JSFUtils.getStackTrace(mex));
    //mex.printStackTrace();
    sendMailFlag = false;
    return sendMailFlag;
    Edited by: Wecenter Guru on Mar 19, 2013 5:02 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Hi All,
    My question got resolved.It is due to the userId and fromEmailAddress was not of same account holder.because of which it is giving relaying denied type exception

Maybe you are looking for

  • After installing non mac store application i get error

    hello there i have installed non apple application after i did i get this error ever min i uninstalled this application but i still get this error i want to know if there is a way i fix it with any way like terminal command i write could fix it here

  • Vendor history

    hi, which transaction code or table will give vendor history like how many Purchase order created, goods receipt done to that vendor , invoice receipt , payment done ,park document . overall want to know is that any transaction happened to that vendo

  • New Webi Document - First Folder is Always Expanded

    Hello. When ever we create a new Webi document, the first folder (class) on the Query panel is always expaned, the other folders are collapsed. How can we have all folders (classes) open collapsed rather than the first being expanded? Our system is B

  • Differ in Exch appears while clearing account 1212 where no forecurren used

    Hi All, Please help me on this issue, Difference in Exchange appears while clearing account 1212000 where no foreign currency is used. Problem description: as one of my activities is clearing of account 1212000. On this account loan interests and its

  • How do I update to Safari 6. I have Safari 4.0.3

    How do I update my OS to Safari 6.  Currently I have 4.0.3.