Receiving null and [Receiving text] SMS

Hi,
Strange things on some SMS: I receive one correctly but a the end there is the text "[Receiving text]"
Then I receive a second SMS only containing null
Why is that ?
Thanks.

You coded:
if (line == null)
eof = true;
else
do something else;
// then, regardless of the above,
st1 = new StringTokenizer(line,","); // line is still null here
So there's the problem.

Similar Messages

  • I can't make a call but i can received calls and send text messages its say you cannot make a call check the phone settings!

    i can't make a call but i can received calls and send text messages its say you cannot make a call check the phone settings!

    It is not a cell phone.

  • Tables for Receiver Determination and Receiver agreement

    Hello Experts,
    Is anyone aware if there is a some table which gets updated whenever we create a receiver determination or receiver agreement in PI. If possible can you guys give me the table names.
    Thanks in advance,
    ~ Suraj

    hi Suraj,
    SAP XI is built having two stack the abap and the java stack. Its not all that correct that only cache info resides on the java stack and nothing on the abap stack.... Its like black box and the internal workings are hidden from end users ... only sap would be able to tell you. As someone in this thread has given his point of view that only cache info is stored on the java stack which may be correct but how much so is open to debate. I wonder whether you have played around with the table that you come across with the transaction sara.
    Suggestions are most welcome
    Regards
    joel

  • What's the difference between "Receive Port" and "Receive Location" ?

    Hi Everyone,
    I am just starting to learn BizTalk, confused with some concepts, please help me figure out following doubt.
    What is the difference between  “Receive Port – Receive Location” relation and “Send Port Group – Send Port” relation?
    Thanks.
    wang

    Receive Port:
    A receive port is a logical grouping of similar receive locations through which services interact with external partners by receiving data. You can create the following types of receive ports: One-way — used for applications that drop off a message and do
    not wait synchronously for a reply; Request-response — used with applications that require a response to a message
    Receive Location:
    A receive location is the combination of a specific address at which inbound messages arrive and a specific address of the messaging pipeline that processes the messages received at the first specific address. Receive locations are created in BizTalk Explorer
    as part of the process of creating a receive port. There are two types of receive locations: One-way- Used for applications that drop off a message and do not wait for a synchronous reply; Request-response- Used with applications that require a response to
    a message. We can say that they are the physical, design-time notion of a location (such as a URL) and an adapter type. A receive location in the Host node in the BizTalk Server Administration console, defines the receive functionality. 
    Send Port: A
    send port is the location to which Microsoft® BizTalk® Server sends messages or from which BizTalk Server receives messages. It also provides the technology that BizTalk Server uses to implement the communication action.
    Send Port Group:
    A send port group is a named collection of send ports that you can use to send the same message to multiple destinations in a single configuration. This is useful when you want to send a message to multiple destinations. 
    You can find this useful
    glossary for any biztalk concepts
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer

  • IPhone not receiving calls, and receiving double texts

    I have read through these forums, and searched this on google and haven't found a solution to this problem, or anybody with a similar issue.
    Over the last two to three weeks, I have had many people telling me they'll call, and it won't go to voicemail, but instead it'll state that # is not reciving calls at the moment, my phone will be turned on and will never ring. Also along with that I'll have an issue where I am receiving double text messages from time to time, it'll happen at least 5 times a day.
    I would take my phone to Apple, but as it'll be hard to produce these results at the genius bar I'm not sure they'll be able to do much, and my iP4 is out of warranty.
    So far I've tried these things:
    System Restore
    Reset All Settings
    Reset Network Settings
    None of these work, the Restore will work for a day or two, but the issue will come back everytime.
    Thanks for any help you all may be able to provide.

    Well another issue I've been having with the phone, which I forgot to mention that leads me to think it's a phone issue, is it'll keep locking up in apps, and the home button will become non-responsive. I'll have to use the standby button to put the phone to sleep, then wake it up and then the home button will start working again.
    The issues may be seperate, but it seemed to all start happening at the same time.

  • Send and receive mms and group text messages on Samsung Galaxy Core Prime

    I moved from a basic phone to a smartphone.  I used to be able to receive group text messages and MMS messages without having to use data or be connected via wifi.  Why is it I have to use data or be connected to a wifi sourceto receive those messages now?

    The antennae or radios in the Prime are configured differently than most flagship type smartphones and even different still from basic phones.  It comes down to difference of hardware.

  • My iphone4s cannot call or receive anyone and cannot send sms suddenly, who can help me:(

    help help help!!! please:(

    i have the same problem with my iPhone 4s.
    i already tried transferring my SIM in a different phone and it works. So this is an iPhone issue.
    last time, i did the reset and re-insert my SIM and it works but the problem keeps on persisting every now and then.
    help, anyone?

  • I can call and receive calls and receive texts but cannot send texts, it just comes up with a red exclamation mark next to the message and asks me to try again

    Basically what the title says. Tried all the troubleshooting options. Any ideas?

    Call your carrier. Your account my not be provisioned correctly.

  • Determine Sender and Receiver in adapter module?

    All,
    Non-XML messages from different senders are received via the same JMS queue.  In the text payload, the ID of the sender and receiver is contained.
    Would it be technically possible to develop a JMS adapter module that sets the Sender Party, Sender Service, Receiver Party and Receiver Service based on the content of the message payload?  Is it possible to influence sender and receiver in an adapter module?
    Kind regards, Guy Crets

    Hi Steven,
    It seems like you can not convince XI to pick up a new message. The code below works when you use "inputModuleData.setPrincipalData(msg);" but not with "inputModuleData.setPrincipalData(msgnew);".
    The error in the Runtime Workbench is: "Catching exception calling messaging system' found, cause: javax.transaction.InvalidTransactionException: Cannot invoke call from within a transactional context.".
    I tried to set the RefToMessageId on the new message, but this does not work either.
    Does anybody know why the InvalidTransactionException is thrown?
    Here is the example code:
    public ModuleData process(ModuleContext moduleContext, ModuleData inputModuleData) throws ModuleException
      try {
        Message msg = (Message) inputModuleData.getPrincipalData();
        Context ctx = new InitialContext();
        ConnectionFactory cf = (ConnectionFactory) ctx.lookup(
          com.sap.aii.af.ra.ms.api.ConnectionFactory.JNDI_NAME);
        MessageFactory  factory = cf.createMessageFactory("XI");
        Message  msgnew = factory.createMessage(
          msg.getFromParty(),msg.getToParty(),
          msg.getFromService(),msg.getToService(), msg.getAction());
        msgnew.setConversationId(msg.getConversationId());
        msgnew.setDocument(msg.getDocument());
        inputModuleData.setPrincipalData(msgnew);
      catch (Throwable t)
        ModuleException me = new ModuleException("MyException");
        throw me;
      return inputModuleData;
    Best regards,
    Simon

  • My S3 will not make/receive calls or send texts.

    Since a trip about 3 weeks my phone has had an issue with making/receiving calls and sending texts.  It is random, won't work at home or work one day but will the next however it is getting worse.  I do not have any issue with mobile data and I receive texts with no problem.  Also have an issue when the phone does make a call no one can hear me...I can hear them just fine.  My be a seperate issue however the microphone issue started the same time as the other issue.  Any suggestions?

        Rsmallfo, thanks for posting. Are you still having with your SIII? What software version are you running? Have you tried this: http://bit.ly/WJ6d0y and retested? Is there any physical or water damage to the phone? Please give more details. I would love to help.
    SammuelP_VZW
    VZW Support
    Follow us on Twitter @VZWSupport

  • Receiver Determination and Interface Determination Condition conflict in ICO

    Hi,
    I found a strange issue today while configuring two receivers using the Receiver and Interface Determination conditions.
    Sender - Proxy Service
    Receiver1 - ReceiverA
    Receiver2 - ReceiverB
    Receiver Determination Condition : When Field1 = 100, message should flow to ReceiverA and ReceiverB
    Interface Determination Condition (ReceiverA) : When Field1=100 and Field2=50 message should flow to a specific interface in ReceiverA
    There is no Interface Determination condition for ReceiverB, for all messages having Field1=100, it should go to ReceiverB.
    Test Scenarios:
    1) Field1=100, Field2=50 : Message flows successfully to ReceiverA and ReceiverB
    2) Field1=100, Field2=89 : Message fails to process from ECC itself throwing Interface Determination not found error. Ideally this is a positive scenario for ReceiverB and it should send the message to ReceiverB without any errors. But, this did not happen in this case
    I tried the same by configuring the conditions completely in Receiver Determination itself without using the Interface Determination, it worked perfectly fine. But, just wanted to understand that if this is an expected behavior.

    Hi Sherin,
    As there are two receivers Receiver A and Receiver B.You need to create two bussiness components and two communcication channels for two receivers and one Reciver Determination, two Interface Determination,two Receiver Agreement.In Receiver Determination you need to keep the below and condition.
    In the above screenshot the two receiver are Receiver B and Receiver C and Field 1 is Key_Value and Field2 is Emp_ID.
    If the Key_Value=100 and Emp_ID =22 then the message should go to both the receivers B & C by keeping the following AND condition
    If the Key_Value=100 and Emp_ID is not equal to 22 then the message should go only to Receiver B by keeping the following condition
    You need not keep any condition in Interface Determination just create 2 Interface determination for two receivers.
    Hope this helps you.
    Thanks,
    Durga.

  • ENHANCED INTERFACE AND RECEIVER DETERMINATION

    1)what is the use of enhanced interface determination and enhanced receiver determination and in scenarios we will use them and in what conditions ,and what differentiates it from standard interface/reciever determination?

    1. <b>Standard receiver determination</b> to specify the receivers of the message (and optionally routing conditions) manually.You can specify receiver parties and receiver services. To specify the receiver in more detail, you have the following options:
    &#9679;     Select the receiver from the Integration Directory
    &#9679;     Specify a constant value for the receiver
    1.2You also have the option of specifying the conditions to be applied when forwarding a message to the receiver(s) in a receiver determination.
    Generally, a condition relates to the contents of a message; if a specified condition is fulfilled for a particular payload element (the corresponding element has a certain value, for example), then the message is forwarded to the specified receiver(s).
    <b>Enhanced receiver determination</b> to have a mapping program determine the receivers of the message dynamically at runtimeInstead of creating the receivers in the receiver determination manually, you assign a mapping to the receiver determination and this returns a list of receivers at runtime.
    A typical usage case is if you do not yet know the names of the receivers at configuration time. In this case, you can define a mapping program, for example, which reads a list of receivers from a table or from the payload of the message at runtime.
    2.<b>Standard Interface Determination</b> :You can specify to which inbound interface at the receiver the message is to be sent at runtime. You also have the option of specifying a mapping and (when multiple inbound interfaces are defined) a condition for each inbound interface.
    2.1 n an enhanced interface determination, you do not enter the inbound interfaces manually, but first select a multi-mapping. You get the inbound interfaces from the target interfaces of the multi-mapping. The inbound interfaces are determined at runtime during the mapping step.
    You typically use an enhanced interface determination if the source message has an element with occurrence 0 ... unbounded (for multiple items of a data record) and you want multiple messages (for the individual items) to be generated at runtime.
    for receiver determination try this link also
    http://help.sap.com/saphelp_nw70/helpdata/en/43/a5f2066340332de10000000a11466f/frameset.htm
    Regards,
    Mandeep Virk
    *Reward if Helpful*

  • When I try to text my mom, she never receives my text, it always shows as an imessage and never an sms. How can I fix this so that it can be sms like before?

    When I try to text my mom, she never receives my text, it always shows as an imessage and never an sms. How can I fix this so that it can be sms like before?

    Does your mom have an Apple device?

  • Hi! Just got my new ihpone 4 yesterday, but i'm having issues in texting a specific contact. sending sms or iMessages works perfectly fine with all my contacts apart from 1,which is even using my same network, though i can call it and receive sms from it.

    Hi! Just got my new ihpone 4 yesterday, but i'm having issues in texting a specific contact. sending sms or iMessages works perfectly fine with all my contacts apart from 1,which is even using my same network, though i can call it and receive sms from it. What could the problem be?

    My Quad is as quiet with 10.4.5 as it was on arrival Jan 31, with 10.4.2
    Altivec Fractal Carbon gives the CPU too much chance to cool down. I've got other ways to drive the CPU to sustained 100% load. Yes, the fans speed up, but it's still pretty quiet. I've run it at 100% for hours.
    I like the idea of taking things gradually. If you can wait a few days before making big changes, it can make things much easier. 3-4 weeks is very conservative, but great if you have that much patience.
    My Quad has been up full-time since I got it. Works perfectly.
    Quad G5 2.5Ghz 4.5GB 2x250G, PB 15" 1.5Ghz,80G,1.5G   Mac OS X (10.4.5)  

  • Not receiving texts from iPhone contacts when I'm not connected to wifi or cell data. I can't send and receive regular SMS texts with non iMessage users but iMessage users message are not being converted to text when I don't have internet connect

    I can send and receive to any non iPhone user. I can send a message as a text to an iPhone user but if I'm not connected to cellular data or wifi I do not receive messages from iPhone contacts. From what I understand these message should automatically send to me as texts instead of iMessages but since the update it's not functioning properly. Please help. I've tried turning iMessage off and I still don't receive the messages until after I reconnect to wifi.

    I have the same problem! Before the upgrade, if I wasn't connected to the internet, any messages sent to me from an iphone would convert automatically to a text message. I have payg tarriff, so I turn cell data off, as it costs too much to use it. I have wifi at home and work, but if I'm out and about, I don't receive texts from iphone users until I'm on wifi. I get them ok from non iphone users. There was never any problem until ios7

Maybe you are looking for