Subscriber does not receive data from MDB

The mapMessage.getString() is allways null in the following run method of a Thread. The same in the MDB direct outputs data.
public void run() {
     while (true) {
          try{
               System.out.println("run...");
               Message msg = getSubscriber().receive(0);
               MapMessage mapMessage = (MapMessage) msg;
               String rssfeed = mapMessage.getString("rssfeed");
               this.applet.rssfeed = rssfeed;
               System.out.println("feed: " + rssfeed);
          }catch(Exception e){
               e.printStackTrace();
          applet.repaint();
}There is a Warning-message if JBoss4 starts:
16:13:00,379 WARN [JMSContainerInvoker] Could not find the topic destination-jndi-name=topic/RssTopic
The JBoss Console entries are like:
jndiName=local/RssMessageBean@12974590,plugin=pool,service=EJB
jndiName=local/RssMessageBean@12974590,service=EJB
Don't know if the MDB is registered correct?
EJB
<message-driven>
      <ejb-name>RssMessageBean</ejb-name>
      <ejb-class>ejb.RssMessageBean</ejb-class>
      <transaction-type>Container</transaction-type>
      <acknowledge-mode>Auto-acknowledge</acknowledge-mode>
      <message-driven-destination>
        <destination-type>javax.jms.Topic</destination-type>
        <subscription-durability>NonDurable</subscription-durability>
      </message-driven-destination>        
</message-driven>JBoss XML
<message-driven>
      <ejb-name>RssMessageBean</ejb-name>
      <configuration-name>Standard Message Driven Bean</configuration-name>
      <destination-jndi-name>topic/RssTopic</destination-jndi-name>
</message-driven>

Hi,
I believe you have a service request open about this issue as well.  I just wanted to let you know I am currently working on the issue and will report back anything additional information.
Regards,
Greg H.
Applications Engineer
National Instruments

Similar Messages

  • TS4002 Hello, icloud receive messages from gilly hicks, but does not receive messages from another personal account... this is happening me since one week and i dont know how to solve this.... error in the mail delivery system says not valid IPv4 SMTP err

    Hello, icloud receive messages from gilly hicks, but does not receive messages from another personal account... this is happening me since one week and i dont know how to solve this.... error in the mail delivery system says not valid IPv4
    SMTP error from remote mail server after RCPT TO:<[email protected]>:
       host mx6.me.com.akadns.net [17.158.8.114]: 550 5.7.0 Blocked - see https://support.proofpoint.com/dnsbl-lookup.cgi?ip=184.173.9.56:
       [email protected]
    i do alse receive from gmail....
    please help... what is happening!!!!

    Just to recap, this is a collection of ports I have collected over time for people who needed this information when setting up the HP ePrint app so that they could view their email from within the app.  I am certain other applications also need this information.  Although lengthy, I could not find a more comprehensive place to retrieve this information.  Feel free to post additional information, faulty information, or other related topics below as this is simply a collection of data and it would be practically impossible to test all of them. Thank you!
    Don't forgot to say thanks by giving "Kudos" if I helped solve your problem.
    When a solution is found please mark the post that solves your issue.
    Every problem has a solution!

  • My iphone 4 does not receive signals from my carrier

    my iphone 4 does not receive signals from carrier

    Tap Settings App>General>Reset>Reset Network Settings. If this not help may be Carrier problem, contact them. If still problem could be faulty iPhone.

  • PLD Report does not show data from Query

    Hello,
    SAP b1 9.0 PL08 on MSSQL 2008 and I get data on the query, but when the PLD prints, it shows nothing. Is there a way to filter the data that the PLD shows? Does PLD have its own SQL script it uses b/c its not showing data from the query.
    Thanks,
    Nick

    Hi Nicholas,
    Please check below links.
    query based print layout design
    Print Layout Designer \Custom Reports
    How to Make a Print Layout (PLD) Report from a SBO Query | SBOnotes.com
    http://www.tegrous.com/wp-content/uploads/2011/07/HowTo_QPrintLs_88.pdf
    Hope this help
    Regards::::
    Atul Chakraborty

  • End Routine Issue - It does not move data from E_T_RESULT to RESULT_PACKAGE

    Hi,
    I am facing an issue with end routine. I have gone through previous posts on, how to write end routine and all.I wrote the end routine accordingly.
    Here is my scenario,
    I have 0CUST_SALES master data , which has all the Sales Org, Distribution Channel and Division, Sold to Party, Sales Grp and Sales Dist.
    I am getting , Sold to party and Distribution channel at the field routine.
    I am using, Sold to Party and Dist Channel and Division = '01'- whatever i populated using a field routine  and trying to get the Sales Org, Sales Grp and Sales Dist at the end routine.
    It looks like, all the code that i wrote seems correct but it does not populate any values into RESULT_PACKAGE.
    Here is the code I wote at the end routine. I am not sure, whats wrong in it. I used, this link to write this routine :
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/203eb778-461d-2c10-60b3-8a94ee91cbfc&overridelayout=true
    Global Declaration----
      DATA : BEGIN OF IT_CUST_SALES,
        DIV TYPE /bi0/pcust_sales-DIVISION,
        DIST_CH TYPE /bi0/pcust_sales-DISTR_CHAN,
        SALES_ORG TYPE /bi0/pcust_sales-SALESORG,
        CUST_SAL TYPE /bi0/pcust_sales-CUST_SALES,
        SALESDIST TYPE /bi0/pcust_sales-SALES_DIST,
        SALESGRP TYPE /bi0/pcust_sales-SALES_GRP,
        END OF IT_CUST_SALES.
    DATA: T_CUST_SALES LIKE TABLE OF IT_CUST_SALES.
    Start of End Routine
       SELECT DIVISION DISTR_CHAN SALESORG CUST_SALES SALES_DIST SALES_GRP
        from
        /bi0/pcust_sales INTO TABLE T_CUST_SALES for all entries in
        RESULT_PACKAGE
        where CUST_SALES = RESULT_PACKAGE-SOLD_TO
         AND DISTR_CHAN = RESULT_PACKAGE-DISTR_CHAN
         AND DIVISION = '01'.
        LOOP AT RESULT_PACKAGE INTO e_s_result.
          READ TABLE T_CUST_SALES INTO IT_CUST_SALES
              WITH KEY CUST_SAL = e_s_result-SOLD_TO
                 DIST_CH = e_s_result-DISTR_CHAN
                 DIV = '01'.
          IF SY-SUBRC EQ 0 .
            MOVE IT_CUST_SALES-SALES_ORG TO E_S_RESULT-SALESORG.
            MOVE IT_CUST_SALES-SALESDIST TO E_S_RESULT-SALES_DIST.
            MOVE IT_CUST_SALES-SALESGRP TO E_S_RESULT-SALES_GRP.
            APPEND E_S_RESULT  TO  E_T_RESULT .
          ENDIF.
        ENDLOOP.
        REFRESH RESULT_PACKAGE.
        MOVE E_T_RESULT[] TO RESULT_PACKAGE[] .
    End End Routine
    Data comes into E_T_RESULT but it does not move to RESULT_PACKAGE. Any inputs will be helpful.
    Regards,
    Kumar

    Hi Hegde,
    Declaration is same , its like this.
       datA: e_s_result type tys_TG_1.
        data: e_t_result type tyt_TG_1.
    I don't know, when i inserted this code in this post, initially it was OK but once i post i also saw , its not that read friendly.
    FYI, i am trying to put the code again, lets see if it works.
      SELECT DIVISION DISTR_CHAN SALESORG CUST_SALES SALES_DIST SALES_GRP
        from    /bi0/pcust_sales INTO TABLE T_CUST_SALES for all entries in
        RESULT_PACKAGE   where CUST_SALES = RESULT_PACKAGE-SOLD_TO
         AND DISTR_CHAN = RESULT_PACKAGE-DISTR_CHAN
         AND DIVISION = '01'.
        LOOP AT RESULT_PACKAGE INTO e_s_result.
          READ TABLE T_CUST_SALES INTO IT_CUST_SALES
              WITH KEY CUST_SAL = e_s_result-SOLD_TO
                 DIST_CH = e_s_result-DISTR_CHAN
                 DIV = '01'.
          IF SY-SUBRC EQ 0 .
            MOVE IT_CUST_SALES-SALES_ORG TO E_S_RESULT-SALESORG.
            MOVE IT_CUST_SALES-SALESDIST TO E_S_RESULT-SALES_DIST.
            MOVE IT_CUST_SALES-SALESGRP TO E_S_RESULT-SALES_GRP.
            APPEND E_S_RESULT  TO  E_T_RESULT .
          ENDIF.
        ENDLOOP.
        REFRESH RESULT_PACKAGE.
        MOVE E_T_RESULT[] TO RESULT_PACKAGE[] .
    Regards,
    Kumar

  • Ichat does not receive chats from other people

    For some reason when i send a message through chat to one of my buddies, it goes through but does not verify that it has gone through on the chat box. I am also unable to receive chats from buddies. This has been going on for a few weeks now and i have tried everything from restarting ichat to restarting my computer. I also have the 15" macbook pro that is about 3-4 years old

    Hi,
    Just so I am clear.
    You normally use a Name regstered with AIM in iChat.
    You have recently created an @mac.com name in addition but that will not show your end of Messages sent nor Incoming Messages.
    In iChat > Preferences > Accounts > Server Setting what is the port both Accounts/Screen Names use to Log in ?
    The Default is port 5190 with SSL On.
    Log out (Account Info Tab and deseslect "Use this Account")
    Try Without SSL (Untick SSL and then Log in again.)
    If that does not work Log out and try port 443.
    If you still have an issue delete the Screen Name (Click the Minus button beneath the List and conform.
    Re-Add account.
    It may also pay to delete com.apple.iChat.AIM.plist from your Home Folder/Library/Preferences (Drag it to the Trash)
    Restart iChat afterwards.
    7:38 PM      Thursday; June 23, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.7)
     Mac OS X (10.6.7),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Report Does Not Display Data from Non-BCS Cube

    Hi,
    I have the following scenario.
    I have a MultiProvider with two real-time cubes. Cube A is used to store Actual data and Cube B is used to store Budget data.
    Cube A is used by BCS, so the real-time load behavior is set to "Real-Time Data Target Can Be Planned; Data Loading Not Alllowed".
    Cube B is not used by BCS, so data is being loaded using BW InfoPackages, with real-time behavior set to "Re-Time Data Target Can Be Loaded With Data; Planning Not Allowed"
    My BCS has two Consolidation Group hierarchy. One is for Legal reporting and another one is for Business Segment reporting. So, if I have a Consolidation Unit, COMPANY1, it would belong both hierarchies, e.g. LEGAL1 and BSEG1.
    In my query, I have no problem displaying Actual data when I specified Reporting Mode (0BCS_REPMOD) = Standard. (S). However, Budget data does not get displayed. FYI, I have uploaded data twice for each record i.e. LEGAL1 and BSEG1 in the Cons Group (0SEM_CGCOMP) characteristic.
    Any idea on how can I get the budget data displayed?
    Thanks.

    Hi,
    Have you Identified Characteristics and Selected Key Figures:
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/cf/bc734190ba137de10000000a155106/frameset.htm
    Without proper construction of multiprovider you'll not be able to see both cubes.

  • Mac does not transfer data from external hard drive when first set up and isn't listed on migration assistant

    I've just had a new hard drive in my MacBook, luckily I had backed up everything on my external hard drive.
    I've just got home and my MacBook set up as a new one and asked me if I wanted to transfer my old data from an external device. I clicked this option, and a box appeared with me to choose my device so I plugged it in and nothing. It was not listed so I couldn't continue. I clicked go back to continue without transferring any data and tried to use migration assistant. I plugged in my external HD again and it was recognised on the desktop with me being able to open it and see my old document, folders and iTunes etc.
    I went on to migration assistant and that came up with much the same choice as the first time so I chose the option again to transfer information from my "other device" again there was an empty box so I cannot choose my device.
    I then thought maybe I would need to install snow leopard again as when I got the computer back it was only running leopard and when I previously backed up my mac it was running snow leopard.
    So I've now got in my snow leopard disk and put in my password to install leopard and it's not installing!
    I'm very frustrated and now it's too late to call apple!
    Any help would be appreciated. I don't want to go back to the store again as its 30 miles away!
    Thankyou
    Vicki

    Thanks for the quick reply, Kappy.  I did use Carbon Copy Cloner.  When I returned the cloned data to the new hard drive I tried starting the computer and I got the logo and the spinning gear.  It did not go any further.  I also tried starting in safe mode and it would not go to safe mode.  I have other bootable volumes on the external drive that I cloned the data to.  When I tried migration assistant it would not list the volume that I cloned from the failed hard drive.  I can see the users desk top, documents, pictures from the cloned drive.

  • Smtp; 551 5.7.1 relaying denied - new secondary domain does not receive email from internet

    Exchange 2007 smpt error "smtp; 551 5.7.1 relaying denied" Inbound email sender gets this error when trying to send to secondary domain. This is a single server exchange setup.
    Here is what we have done:
    #1 We have added a new policy for the new domain and also added the new domain to my default policy. ( Result are the same whether it is in the default policy or not)
    #2 I also set the new domain as Accepted domain and as Authoritative.
    #3 The mailbox I am sending to has the new domain email address and the address follows the selected conventions in the policy. 
    #4 I have the mx record in dns and verified that using the online MXToolbox.
    #5 I can telnet to the new domain mx record on port 25 and the smtp banner comes up as expected. The result and banner are the same when telneting to the primary domain.
    If I send from my primary exchange domain to the new domain the mail goes through. When I reply back it also works.
    What setting am i missing here? I need to get Exchange 2007 to accept inbound email from the internet.
    Thx
    Scot

    Hi Scot,
    In addition to Rich's suggestion, I would like to clarify the following thing:
    If you have a relay, please ensure that you add the secondary domain to mail relay server.
    What's more, here is a thread for your reference.
    external senders 550 5.7.1 relaying denied
    http://social.technet.microsoft.com/Forums/exchange/en-US/416ed3e3-a346-4794-ba2a-c53086f704b0/external-senders-550-571-relaying-denied-exchange-2010?forum=exchangesvrsecuremessaginglegacy
    Hope it helps.
    If there are any problems, please feel free to let me know.
    Best regards,
    Amy
    Amy Wang
    TechNet Community Support

  • ICal on MacBook Pro will not receive dates from iPhone, but iPhone will receive dates from iCal on MacBook

    I recently got a MacBook Pro after having an iPhone and iPad since last year.  I have iCloud set up on all devices to share calendar dates.  However, when I input an event on iCal on the MacBook everything is fine and the event shows up on my iPhone and iPad calendars, but when I input an appointment on my iPhone, it will not update to the iCal on MacBook.
    Help please?

    First check that all your settings are correct, that calendar syncing is checked on all devices (system preferences > iCloud on a mac and settings > iCloud on a iPhone, iPad or iPod).
    Make sure the calendars you are using are in your 'iCloud' account and not an 'On My Mac', 'On My Phone' or other non iCloud account (you can do this by clicking/tapping the calendar button in the top left corner of the application ), non iCloud calendars will not sync.
    If you are sure that everything is set up correctly and your calendars are in the iCloud account, you might try unchecking calendar syncing in the iCloud settings, restarting your device and then re-enabling calendar syncing settings.

  • Server Socket does not read data input stream

    Hi all,
    I am very newbie to Java Network programming with sockets and multi-threading.
    But I am obliged to develop a chat system written in Applets which can be placed on the website and used by visitors who come to my website.
    In order to understand this, I have tested a basic web chat program I downloaded from the Internet which use sockets and multi-threadings. The program work fine, no bugs at all at both compilation and run time. I noticed that all three streams for Client side (i.e. first one is input stream used receiving data from User; the second one is socket input stream used for receiving data from Server socket, and the third is socket output stream used for writing data to server socket) were established. And the same, two socket streams (input & output) for Server side were also connected when running program giving right port number and IP address of the server.
    The problem is both server and client sockets do not read data using the following stream classes:
    1. DataStreamInput: I use input.readUTF() method
    2. or BufferedReader: I use input.readLine() method
    The example of the codes are below:
    private BufferedReader input = null;
    private PrintWriter output = null;
    private Socket socket = null;
    public void open() throws IOException
    {  input = new BufferedReader(new
    InputStreamReader(socket.getInputStream()));
    System.out.println("Server socket input stream was created, and");
    output = new PrintWriter(socket.getOutputStream());
    System.out.println("Server socket output stream was created");
    public void run()
    {  System.out.println("Server Thread " + clientPort + " running.");
    while (true)
    {  try
    System.out.println("Server is reading data from Client, wait...");
    String fromClient = input.readLine();
    System.out.println("Server received a message on " + clientPort + ".");
    catch(IOException ioe)
    {  System.out.println(clientPort + " ERROR reading: " + ioe.getMessage());
    server.remove(clientPort);
    stop();
    The problem is at the line: String fromClient = input.readLine(); in the run() method? What is wrong with the codes above?
    Note: I also try to use original codes which use readUTF() method in DataStreamInput class instead using readLine() in BufferedReader. Both methods dont read data from inputstream socket?
    I very appreciate any help/advice from experienced developers.
    Best regards

    Hi,
    Yes. The readLine() method hangs! After the test, the execuation of the program is stopped at the line of readLine() method; it does not pass it?
    There is no problem with writing to Server socket. After the test, the program pass through flush() method. Here is the code for writing to sever socket within ChatClient (client side socket) class:
    private BufferedReader input = null;
    private PrintWriter           output = null;
    public ChatClient(String serverName, int serverPort)
    {  System.out.println("Establishing connection. Please wait ...");
    try
    {  socket = new Socket(serverName, serverPort);
    System.out.println("Connected: " + socket);
    start();
    catch(UnknownHostException uhe)
    {  System.out.println("Host unknown: " + uhe.getMessage()); }
    catch(IOException ioe)
    {  System.out.println("Unexpected exception: " + ioe.getMessage()); }
    public void start() throws IOException
    {  input   = new BufferedReader (new
                             InputStreamReader(System.in));
    System.out.println("Client User input stream was created,");
    output = new PrintWriter(socket.getOutputStream());
    System.out.println("Client Socket output stream was established, and");
    if (thread == null)
    {  client = new ChatClientThread(this, socket);
    thread = new Thread(this);
    thread.start();
    public void run()
         while (thread != null) {
         String fromUser;
              try{
                   while((fromUser = input.readLine())!= null)
                   System.out.println("Client wasreading a data from User, and");
    output.println(fromUser);
         output.flush();
         System.out.println("Client has written a data to Server");
    catch(IOException ioe)
    {  System.out.println("Sending to server error: " + ioe.getMessage());
    stop();
    etc.
    Here is a piece of codes for reading data from the Client Socket in the ChatServer Class (Server Side socket):
    public void run()
    {  System.out.println("Server Thread " + clientPort + " running.");
    while (true)
    {  try
    {  //server.handle(clientPort, input.readLine());
    System.out.println("Server is reading data from Client, wait...");
    String fromUser = input.readLine();
    //while((fromUser = input.readLine()) != null)
         System.out.println("Server received a message on " + clientPort + ".");
    catch(IOException ioe)
    {  System.out.println(clientPort + " ERROR reading: " + ioe.getMessage());
    server.remove(clientPort);
    stop();
    etc. Please advice why the readLine() method hangs; does not read data from the input stream received from the CLIENT?

  • Windows live does not receive emails

    Windows Live works fine on my family computer.
    Windows Live does not receive emails from my btinternet account on my laptop any more (it sends ok I think)
    This happened in March. After talking to someone in India the other day who suggested that my laptop did not have enough RAM (not so), I eventually managed to uninstall WLive, reinstalled, then used the automatic set up on BT and called the account a new name. IT WORKED...all my emails turned up on Windows Live. Then it STOPPED WORKING again.
    I honestly cannot fathom this. Any ideas????
    (I have just tried using the automatic set up again, using the same account name, but it just says that the account already exists).
    Errors are in essence:
    0x800CCC90
    ERR inactivity timeout
    WLive error 0x800420CD
    WLive mail error 0x800CCC0F
    I got the automatic tester to test email account, but no fault found.
    All suggestions gratefully received. I had no luck last time I tried on this Forum, but giving it another go.

    yjm wrote:
    Windows Live works fine on my family computer.
    Windows Live does not receive emails from my btinternet account on my laptop any more (it sends ok I think)
    This happened in March. After talking to someone in India the other day who suggested that my laptop did not have enough RAM (not so), I eventually managed to uninstall WLive, reinstalled, then used the automatic set up on BT and called the account a new name. IT WORKED...all my emails turned up on Windows Live. Then it STOPPED WORKING again.
    I honestly cannot fathom this. Any ideas????
    (I have just tried using the automatic set up again, using the same account name, but it just says that the account already exists).
    Errors are in essence:
    0x800CCC90
    ERR inactivity timeout
    WLive error 0x800420CD
    WLive mail error 0x800CCC0F
    I got the automatic tester to test email account, but no fault found.
    All suggestions gratefully received. I had no luck last time I tried on this Forum, but giving it another go.
    Hi.
    I personally never let the "system" set up email automatically, it doesn't always get the servers or ports correct.
    However, what you could try is to login to webmail in case there is a stuck/corrupt email in the Inbox. You can move them to a temporary online folder and retry Windows Mail. If that works, you can try moving one email at a time into the webmail Inbox.
    Do you keep all the emails on the server by the way ?
    http://www.andyweb.co.uk/shortcuts
    http://www.andyweb.co.uk/pictures

  • 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

  • Viewset does not have data passed from GenIL

    Hi All,
    We have a custom component in which data is not getting passed from a ViewSet to the Overview page. The details of the issue are given below:
    There is a detail view zsoEF and a table view zsoChild. These 2 views are housed in a viewset zsoVS. This view set has an event Eh_OnBack which requires the data from views zsoEF and zsoChild to be passed to overview view zsoOV.
    We recently upgraded to CRM 7.0. After the upgrade, the values entered on the views zsoEF and zsoChild are processed in the ZGenIL. The context nodes and the custom controllers are filled correctly with the screen values and some auto added data based on validations..
    When we click on the Back button, then Eh_OnBack does not have data in the Custom Controller. I am not able to pin point the reason for this missing data in the Back event. From the way i understand, when we do data binding in the views, we don't have to do that in ViewSet. Has there been any change in this design in CRM 7.0?
    I would like to know if there is any workaround for this issue.
    Thanks,
    Rini

    Hi Rini,
        Did you try to bind the context nodes with the component controller. Can give it a try whether it resolves the problem. Any way it is difficult to say anything as we don't have an idea what exactly you did in the component. Lets take it forward. In the mean time have a look in the below link.
    History navigation and context initialization calls - CRM - SCN Wiki
    Thanks,
    Javed.

  • Does not received reset apple password from my email?

    I try form reset password but i input my email dantruong460@gmail (this is my apple id)
    But login to gmail does not received anything to reset password from apple?

    you might have a rescue email on the account.. try looking in all the email accounts you own

Maybe you are looking for

  • Error during sales return Delivery

    Dear Friends, I am Getting error while doing sales return processing in VL01n - Goods Issue. Error Message - Status of Inspection Lot 0600000002 / Partial Lot does not allow Goods issue. I have already done the settings in config, Assign Inspection L

  • ABAP HR - get pension data

    Hi Experts,     How can we get pension data of an employee from clusters or payroll results. Thank you. Regards, Admir. Points will be rewarded.

  • Where are EP 6.0 and XI????

    Hello all, I thought that EP  and XI were automatically a part of Netweaver 7.0 - but - when looking at the installation docs, neither is mentioned on the first page  :-| Where does one find EP and XI? I need to download and install both ... TIA

  • Return the difference between two strings

    Is it possible to return the difference between two strings? For example String one = "We went for a walk"; String two = "We went for a run"; compare "two" to "one" returns "walk" compare "one" to "two" returns "run"I need to return the difference of

  • Photoshop CS5 lens parameters online-search.

    Today I installed the trialversion of photoshop CS5, to search lens  parameters via the online-search. But it doesn´t work. The  field "online-search" in filters/lenscorrections is only grey, I can´t  click it. Where is the mistake? Perhaps in the tr