Need Help on Caching Issue !

Hi all,
I am having some issue in my application like sometimes one popup windows is not opening up properly even waiting for 1-2 minutes. What I found is the pop-up window functionality is using 15 frame htmls which is getting loaded from server for each request. If the frames gets loaded properly then required data to be displayed takes very little time.
If I change the IE setting to "Never" out of (Every visit to the page, every time you start IE, Automatically to Never) that time pop-up window takes a fraction of second to load because it loads form cache.
I have tried with the meta tag "<META HTTP-EQUIV=Expires CONTENT="Sun, 22 Oct 2006 16:18:35 GMT">". Other than this is there any way to have specific settings in httpd.conf file in web server. I want to make those specific htmls to be cached so that for each request it should not contact server for loading.
Please reply me if you have any other thoughts for the above issue to be resolved and let me know if you require any more information on the issue.
Thanks in advance
Janaki.

showsessionvalue.jsp:
<%@ page language="java" %>
<%
String username=(String) session.getAttribute("username");
if(username==null) username="";
%>
<html>
<head>
<meta http-equiv="refresh" content="<%=session.getMaxInactiveInterval()%>;url=logout.jsp">
<title>Show Saved Name</title>
</head>
<body>
<form name="action1" action="savenametosession.jsp">
<% if (username == "") { %>
<p> Invalid session </p>
<%} else {%>
<p>Welcome: <%=username%><p>
enter name <input name="username" maxlength="75">
enter age <input name="age" maxlength="3">
<button type="submit" name="submit">submit </button>
<br>
<a href = "logout.jsp">logout </a>
<%System.out.println(session.getLastAccessedTime());%>
<%}%>
</form>
</body>
Hello every one,
Thanks for your reply.
In show showsessionvalue.jsp I am just setting up the session id.
Let me first describe my requirement. I need to set a default session value<let it be 30sec>, so that when the user is ideal for that session value he should be logged out automatically. Else if he keeps the web page activate then he should not be logged out. And on the same hand if the user is ideal for some period, and come back with in the session limit then the session timer should be stopped and vice versa.
In the above code what the problem I face is that even if I keep my browser busy it logouts me after at 1 sec as I specified in the XML.
Thank you,

Similar Messages

  • Need help for desktop issue

    Hi all, i need help urgently. my desktop has nothing on it but when i get info it shows that desktop is using over 10GB of disk space and counting. does anyone knows what is going on as my available disk space getting lesser as the day goes by.

    Hi,
    I also have issues with my desktop - the iDisk was not syncing.
    I opened the desktop folder on a window, and it showed zero items, when I have the HD and LaCie hardrives showing on the desktop. The iDisk does not show on the desktop as it should. However, the desktop folder showed other items such as files saved on the desktop.
    Here's what happened last week: I received an e-mail from an airline saying that my ticket was approved - it was from an actual airline so i made the BIG mistake of opening the link only to find a bunch of scrambled characters - i immediately figured out that it was a bomb/virus/scam to destroy the computer, and after that i had problems with Entourage (had to call support to solve the issue) and now with syncing iDisk the 0-items desktop folder. Are they related or just coincidence? Who knows....
    And here's the sad part: I tried your suggestion and it didn't work. I opened the desktop folder and still shows 0 items; the iDisk still not appearing on the desktop automatically (as it should) and still "failed to sync"; and I am still frazzled/puzzled.
    Here's the messages in the terminal:
    Last login: Sun Sep 23 08:04:14 on console
    Welcome to Darwin!
    [Tocantinss-Computer:~] tc%
    [Tocantinss-Computer:~] tc% ls -alh desktop
    total 1088
    drwx------ 6 tc staff 204B Sep 22 14:21 .
    drwxr-xr-x 25 tc staff 850B Sep 23 08:04 ..
    -rw-rw-rw- 1 tc staff 42K Sep 22 14:21 .DS_Store
    -rw-rw-rw- 1 tc staff 496K Sep 20 2003 .FBCIndex
    drwxrwxrwx 3 tc staff 102B Sep 20 2003 .FBCLockFolder
    -rw-r--r-- 1 tc staff 20B May 2 2002 Icon
    [Tocantinss-Computer:~] tc%
    [Tocantinss-Computer:~] tc% defaults write com.apple.finder AppleShowAllFiles -boolean true; killall Finder
    [Tocantinss-Computer:~] tc% defaults write com.apple.finder AppleShowAllFiles -boolean true;killall Finder
    [Tocantinss-Computer:~] tc% defaults write com.apple.finder AppleShowAllFiles -boolean false;killall Finder
    [Tocantinss-Computer:~] tc%
    Do you have any other suggestion or solution?
    Thank you so much.

  • Need help on FSCM issue

    Hi All,
    Need your help on FSCM issue.
    We had an customer invoice posted through an interface . The invoice base line date is 12/16/2008 (due 30 days), interest is calculated for this invoice on 02/01/2009.
    The actual invoice amount is Rs 238.69 and the interest amount is Rs 2.00. Also the invoice is dunned on 03/03/2009 for amount 240.69 (including the interest amount).
    The document shows as open in UDM_Specialist for amount 240.69 for a particular specialist. The invoice is cleared on 03/16/2009. Though it is cleared still shows in UDM_Specialist with amount 0.0.
    Once the invoice is cleared it should not exist in UDM_Specialist. We have tried the same scenario but the functionality is working fine in Development.
    Please tell me your valuable suggestion in this regard.
    Thanks in advance.
    Regards,
    Jayasudha

    showsessionvalue.jsp:
    <%@ page language="java" %>
    <%
    String username=(String) session.getAttribute("username");
    if(username==null) username="";
    %>
    <html>
    <head>
    <meta http-equiv="refresh" content="<%=session.getMaxInactiveInterval()%>;url=logout.jsp">
    <title>Show Saved Name</title>
    </head>
    <body>
    <form name="action1" action="savenametosession.jsp">
    <% if (username == "") { %>
    <p> Invalid session </p>
    <%} else {%>
    <p>Welcome: <%=username%><p>
    enter name <input name="username" maxlength="75">
    enter age <input name="age" maxlength="3">
    <button type="submit" name="submit">submit </button>
    <br>
    <a href = "logout.jsp">logout </a>
    <%System.out.println(session.getLastAccessedTime());%>
    <%}%>
    </form>
    </body>
    Hello every one,
    Thanks for your reply.
    In show showsessionvalue.jsp I am just setting up the session id.
    Let me first describe my requirement. I need to set a default session value<let it be 30sec>, so that when the user is ideal for that session value he should be logged out automatically. Else if he keeps the web page activate then he should not be logged out. And on the same hand if the user is ideal for some period, and come back with in the session limit then the session timer should be stopped and vice versa.
    In the above code what the problem I face is that even if I keep my browser busy it logouts me after at 1 sec as I specified in the XML.
    Thank you,

  • Have upgraded to iTunes 11 and now can't determine how to printout the listing of songs on my playlists.  I admit to being a 73 year old novice.  I need help on this issue. Step by step help would be appreciated.

    I just upgraded to iTunes 11, and now I can't printout the song listings on my playlists.  It was easy for me on the earlier version of iTunes.  I am a 73 year old novice and need help.  A step by step explanatuion would really help.  Bless whoever can help me.

    Select all the songs in the playlist concerned. Ctrl + A is the normal shortcut.
    Select File > Print from the top menu
    Select the option of Song List in the dialog box
    Click Print

  • I need help understanding the issues on why i can not download the latest version of shockwave player. this affecting all of my game play on any game i attemt to run.

    is there anyone who may be able to help with the issues at hand? my current version of shockwave crashes at will! this is affecting any and all games i try to run. i have tried several times to download the latest version with no luck. if there is something i have done wrong, or something i have not done...please feel free to direct the right course of action.

    See my response to your other question

  • Moving to Uk and Need help with Voltage Issue

    Hi
    I recently (less then a month) bought a new Intel based iMac (17/1.83/512/160/COMBO/AP-USA) with built in iSight, and now I am moving to UK for a year. I want to take my iMac with me. Can someone help me with true answer on how to solve the voltage issue. I did some research on here and else where but could not come to any conclusion yet.
    I found this article http://docs.info.apple.com/article.html?artnum=75099 to know if my iMac has auto-switching voltage and also this article http://docs.info.apple.com/article.html?artnum=301724 to determine which iMac I have but still cant come to any conclusion yet.
    This will really help me to decide if I should connect directly to power outlet in UK or will I have to buy a power converter.
    Thanks in advance!

    Hey guys,
    Thank you very much for your help. I am well aware of plug/pin adaptor to connect US plug in to UK outlet, I have been UK and Euro frequently but always with my Macbook which never had any problem cause all notebooks comes with power adaptor. This is first time I will be going with iMac that doesn't have power adaptor to convert voltage.
    All I need to know can I just plug directly into wall outlet or will need a convertor in between. I am not sure is my iMac has auto switching inbuilt.
    Thanks again
    *Posted previously:*
    (Hi
    I recently (less then a month) bought a new Intel based iMac (17/1.83/512/160/COMBO/AP-USA) with built in iSight, and now I am moving to UK for a year. I want to take my iMac with me. Can someone help me with true answer on how to solve the voltage issue. I did some research on here and else where but could not come to any conclusion yet.
    I found this article http://docs.info.apple.com/article.html?artnum=75099 to know if my iMac has auto-switching voltage and also this article http://docs.info.apple.com/article.html?artnum=301724 to determine which iMac I have but still cant come to any conclusion yet.
    This will really help me to decide if I should connect directly to power outlet in UK or will I have to buy a power converter.
    Thanks in advance! )

  • Need help about Thread issue

    Given from scjp
    1.public static void main(String[] args) {
    2.        NameRunnable nr = new NameRunnable();
    3.        Thread t1 = new Thread(nr);              
    4.        t1.start();
    5.        t1.join();                   
    }There are some questions which i made up myself to test how i understand about the thread issue and I really need some experts to confirm about it.
    Question 1: At line 3, how many threads we have now ?
    my answer is
    there are 2 threads. the first one is main thread and the second one is t.
    I am not sure about the t thread because in the book, they indicate that after instantiating the thread,
    we just have a thread object but not a true thread.
    Question 2: At line 4, after t1.start(), which thread will be executed first.
    My answer is
    we dont know because it depends on the scheduler.
    Question 3: what t1.join() does ?
    my answer is
    blablabla.What I am thinking is t.join() joins the current thread to the end of t so that when t finishes the current thread can run again. However, which one is the current thread now. That is why I am stuck
    Please help me. I appreciate
    Edited by: newbie on Nov 25, 2010 4:46 PM
    Edited by: newbie on Nov 25, 2010 4:47 PM
    Edited by: newbie on Nov 25, 2010 4:49 PM

    newbie wrote:
    Given from scjp
    public static void main(String[] args) {
    NameRunnable nr = new NameRunnable();
    Thread t1 = new Thread(nr);              
    t1.start();
    t1.join();                   
    }There are some questions which i made up myself to test how i understand about the thread issue and I really need some experts to confirm about it.
    Question 1: At line 3, how many threads we have now ?
    my answer is
    there are 2 threads. the first one is main thread and the second one is t.
    I am not sure about the t thread because in the book, they indicate that after instantiating the thread,
    we just have a thread object but not a true thread.
    Don't use code blocks for prose. It won't autowrap and can lead to display problems if a line is too long.
    Which is line 3?
    What do you mean by "how many threads to we have?" Do you mean how many Thread objects exist, or how many threads (lower case "t") are executing.
    After you have called t1.start(), there are at least 2 threads executing--the main thread, and the one you started. I say "at least" because the JVM has some administrative threads of its own.
    Question 2: At line 4, after t1.start(), which thread will be execute first.
    My answer is
    we dont know because it depends on the scheduler.
    Correct. And don't think of one executing "first." They can take turns, or they can both execute at the same time (if you have a multicore or multi-CPU machine).
    Question 3: what t1.join() does ?
    my answer is
    blablabla.What I am thinking is t.join() joins the current thread to the end of t so that when t finishes the current thread can run again. However, which one is the current thread now. That is why I am stuck
    Please help me. I appreciateDid you read [url http://download.oracle.com/javase/6/docs/api/java/lang/Thread.html#join()]the docs for join()? They tell you exactly what it does. If you don't understand after reading, post again.

  • Need help on warranty issue

    Who do I contact for my extended warranty? My ipod is not working right, need it fixed before the warranty is expired.

    How do I obtain service for my iPod?
    The iPod support site has troubleshooting articles to help you solve your iPod issue. If you have reviewed those articles and still need service for your iPod, you can contact Apple. You can also take your iPod to your local Apple Authorized Service Provider. Note: There may be a fee for diagnostic service.

  • I need help with heat issue!!!!!

    Hey every one this is my first post, i got my imac 3 days ago. I have no previews experience with the macs so i need some advise on operarting heat temps. Well i first came to realise that i got heat issues on the 2 day while i was playing StarCraft 2, the back of the mac was really hot and started to affect the performance, it stopped playing smoothly and started lagging. Also the fans did not idle while the temp rise.
    2.7Ghz quad-core Intel Core i5 with 6MB on-chip shared L3 cache
    AMD RADEON HD 6770M
    Today i downloaded a fan control software and iStat. I used the fan control software and increased the fan rpms just to experiment.
    READINGS FROM iStat:
    At Default Fan RPMS                           TEMPS/fahreneit (during normal usage)
    Optical Drive      1400                           HD:Macintosh               113
    Hard Drive          1200                           CPU                              97
    CPU Fan            1400                           Ambient                         81
                                                               GPU Diode                    121
                                                                GPU Heatsink               117
                                                               Mem Controller              113
                                                               Optical drive                    97
                                                               Power Supply                103
    At Maximum Fan RPMS                               TEMPS/fahreneit (after 1 hour running on max. RPMS) (during normal usage)
    Optical Drive     4600                                 HD: Macintosh             103
    Hard Drive        5500                                  CPU                             92
    CPU Fan          3500                                  Ambient                        79
                                                                    GPU Diode                    97
                                                                     GPU Heatsink                94
                                                                     Mem Controller              95
                                                                     Optical drive                  90
                                                                     Power Supply                92
    Normal usage = Browsing, watching videos online
    I would really appreciate it if people with knowledge and experience could comment on my temperatures and advise me if i should have it replaced.
    i would also really appreciate it from any StarCraft 2 users using the same imac as mine to share with me what graphic settings are they using and what temps is the mac running during playing.
    I will also post some temps while playing the game on suggested graphics settings
    i hope to hear from you guys soon........

    Oh yeah i am enjoying.
    I have deicded to keep a track of the temperatures for my self while increasing the graphics resolution so that i can find the maximum graphics that the system can operate while playing star craft 2 and staying with in temperature limits.
    So i will be posting my temps here for others to see also that may as well comment and guide me through this.
    This readings are taken while playing StarCraft 2
    Settings:     graphics quality has been changed to HIGH from medium
    Resolution: 1280x720
    texture quality: medium
    graphics quality: HIGH
    Optical Drive      1800                           HD:Macintosh               130
    Hard Drive          1200                           CPU                             113
    CPU Fan            1890                          Ambient                         81
                                                               GPU Diode                    139
                                                                GPU Heatsink               133
                                                               Mem Controller              128
                                                               Optical drive                  110
                                                               Power Supply                119

  • Need help ASAP: ram issues for neo4 plat

    I just bought a new case, motherboard, ram, video card, power supply, and CPU. i took my drives from my old Dell and placed them into this case and the MSI neo4 plat. motherboard (specs in my sig). i just want my comp to work but it doesn't want to. it powers up and does nothing. you just hear fans going. the LED on the D-bracket says that its a ram issue. the ram worked fine last night and i had a video card problem it said. any ideas or am i just completely screwed? i use my computer a lot and need to do some things before i leave for a wedding on the 15th with my family and won't be back til the 25th. i'd like to resolve any issues before i leave so i can relax about it when i get back. i spent all of my money on this and i dont' want it wasted cause i messed it all up and even my parents helped pay for the part i couldn't pay as a birthday present. i'm annoyed, impatient, and probably acting childish over what probably is a stupid petty thing.
    thanks,
    Zack

    Quote from: hansh on 10-February-06, 05:11:12
    OK, well the first improvement is there
    Sometimes it will help to remove a component and then put it back in the same position, make sure it is fully inserted in the slot. This goes for both the video card and the memory.
    1. you can clear cmos (see in your manual)
    2. reseat videocard
    3. try the other ram module, try different slots
    ah you see i did all that already, and it did nothing :P
    would you by any chance want to help me on MSN?
    this is my second computer assembly. i'm very fluent with comps which is why this is driving my crazy:P
    also the heatsink and everything is fine. i'm always the guy that has the weirdest problem thats hard to solve. i should be a professional software tester or something... just don't know how to get there. i'm more of a musician anyway...

  • *NEED HELP WITH MAGSAFE ISSUES*

         So a few weeks back, i spilled soup on my computer (broke my keyboard), i bought and replaced the keyboard myself. In the process i also broke the cable that goes to the motherboard, and to the little board that has the magsafe connector as well as the microphone. I bought a new cable for that and replaced it.
    All was working pretty well, except now when i plug my magsafe into my mba, it will charge the computer for a few minutes 0-3 mins to be exact, then will just stop working completely, the light will turn off, and the computer runs off of battery. however if i unplug the magsafe from the wall outlet and plug it back into the wall, it will charge the computer for another few minutes then stop charging..., its just a long endless cycle... Another odd thing, if i put the computer to sleep, shutdown, it will charge the computer fully... but if i have the computer on, and running a few programs, it shuts off... I did repair the computer by myself, and could have made an error in the process... the computer is a macbook air, mid-2012.
    -things i have done.
    I have made sure that the motherboard is clean,
    i have cleaned the magsafe and the area where you connect it
    i used my sisters magsafe (Brand new magsafe)
        The last issue is, i live way to far from the apple store, and cant afford to go their right no
    Any ideas? Thanks

    As per Danny saying MEMTEST,
    Also, which bios version do you have?
    Please could you list FULL spex of system, as it helps on Forum. If you can create a sig, by going to the profile TAB button at top of page.
    Del

  • Need help with Authorization Issue

    Hi,
    I have SAP_ALL authorization. When I try to view data or run query on the cube 0CP_SLSCA I get an error saying user not authorized…
    For my ID SAP_ALL and SAP_NEW profiles have been added. As no roles have been created yet, no roles have been assigned.
    Please help.. do I need to add any other profile to my ID (system is BI 7, does it follow some other concept too).
    Thank you,
    sam

    Hi Sam,
    Check this note: 923956
    https://websmp202.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=923956&_NLANG=E
    Assign Points if Helps !!
    Regards,
    Naveen Rao Kattela

  • Need help with languages issue in iOS app created in Flash Pro CS5.5

    Hello all,
    I'm using Flash Pro CS5.5 on a Mac running Snow Leopard to create an iOS app by publishing with 'AIR for iOS' from inside Flash Pro. Everything works great except after I submit my app to the Apple App Store and it is approved, the App Store listing claims that the app is available in a ton of different languages including English, German, Chinese, Italian, Spanish, etc. Since this app is a word game and all the words are in English, this is a pretty significant issue.
    If I view the binary details for the app in iTunes Connect, it shows that localizations are active for all of the different languages. This information is read from the .ipa file that is submitted.
    If I unzip the .ipa file, I can see that folders have been created for all of the localizations (i.e. en.lproj, es.lproj, fr.lproj, etc.). If I delete any of those folders, the .ipa will give me a 'resources modified' error at install.
    I have also tried setting the plist attribute 'CFBundleLocalizations' to 'English' by editing the 'app.xml'. I have verified that the attribute has been changed correctly but it does not solve the issue. All of the localizations are still active.
    Any help would be greatly appreciated.

    Can you try workaround given at http://forums.adobe.com/message/3976641 and post back your findings.

  • Need help on this issue.

    Hi Experts & Dear Matt,
    Sorry for posting a request/thread (repost) like this.
    but my situation is worst now, I am trying in different ways but have no solution yet.
    It a minor problem where i dont know to correct, so getting problem(Pressure, Extra time used) from my higher authorities.
    So please help me out by this situation.
    My problem : I already posted a Thread, and I am reposting here again sorry for doing like this..
    My thread :
    Hi Experts,
    I have a problem in SMARTforms,
    First my requirement is Label Printing,(3 per page) I/p selection is MATNR & PLANT & LGORT.
    OUTPUT is full Classification details wth two Logo's on each label(total 6 logos per page)
    I managed to get all the data into Final table(materials) and I am passing 3 materials at a time to FORM.
    through loop & endloop. in between Loop I am calling my smart form,
    My ITAB Structire is
    MATNR1, LGORT1,MATNR2, LGORT2,MATNR3, LGORT3,
    MATNR1, LGORT1,MATNR2, LGORT2,MATNR3, LGORT3,
    MATNR1, LGORT1,MATNR2, LGORT2,MATNR3, LGORT3,
    MATNR1, LGORT1,MATNR2, LGORT2,MATNR3, LGORT3,
    MATNR1, LGORT1,MATNR2, LGORT2,MATNR3, LGORT3,
    My problem is If user inputs upto 3 matnrs. its working fine.
    when he enters more than 3 lets say 7.
    first its showing print settings screen, when i select print preview, It shows the output fine(1,2,3Materials.)
    but only One page. When I click on back, again its showing print settings, if I click print preview,
    It shows the next 3 materials(4,5,6Materials), and when I click back again print settings finally 1 materials(7th).
    My requirement is when I click on print preview, It should show 3 pages at a time instead of the above.
    -Dunlop

    Hi Sai,
    Here comes the major problem,
    After passing the variable to smartform as mentioned, I am retriving the data again like this
    now I need to show both the passing variable and the retived variables,
    retrived data is always 20-30 records, (classification of materials)
    so i am making a loop here, to print classification. so i am doing this three time for three logos..
    Hope you understand my problem now clearly.
    TABLES : KSML,AUSP, CABN.
    DATA: BEGIN OF T_TEMP OCCURS 0,
            CLASS LIKE KLAH-CLASS,         "Class number
            KLART LIKE KLAH-KLART,         "Class type
            CLINT LIKE KLAH-CLINT,         "Internal class number
          END OF T_TEMP.
    DATA : IT_TEXT3 TYPE TABLE OF TY_TEXT,
           WA_TEXT3 LIKE LINE OF IT_TEXT3.
    DATA : CNT1(2), CNT(2) .
    DATA : IT_FINAL TYPE TABLE OF TY_FINAL, WA_FINAL LIKE LINE OF IT_FINAL.
    Get the classification details KSSK and KLAH.
    SELECT SINGLE SCLASS SKLART L~CLINT INTO
        (T_TEMP-CLASS, T_TEMP-KLART, T_TEMP-CLINT)
    FROM KSSK AS L INNER JOIN KLAH AS S ON SCLINT EQ LCLINT
    WHERE L~OBJEK EQ GV_MATNR.
    CLEAR :IT_TEXT[],WA_TEXT.
    retrieve characteristics info of a class
    SELECT * FROM KSML WHERE CLINT = T_TEMP-CLINT
                         AND KLART = T_TEMP-KLART.
    retrieve characteristics value info
      SELECT * FROM AUSP WHERE OBJEK = GV_MATNR
                           AND ATINN = KSML-IMERK
                           AND KLART = KSML-KLART.
    retrieve characteristics info
        SELECT SINGLE * FROM CABN WHERE ATINN = AUSP-ATINN.
        MOVE CABN-ATNAM TO WA_TEXT-ATNAM. "Characteristics desc.
        MOVE AUSP-ATWRT TO WA_TEXT-ATWRT. "Characteristics Value
        MOVE CABN-ATINN TO WA_TEXT-ATINN.
        APPEND WA_TEXT TO IT_TEXT.
        CLEAR: WA_TEXT.
      ENDSELECT.                         "ausp
    ENDSELECT.
    DELETE IT_TEXT WHERE ATWRT IS INITIAL.
    LOOP AT IT_TEXT INTO WA_TEXT.
      SELECT SINGLE ATBEZ INTO WA_TEXT-ATBEZ FROM CABNT
      WHERE ATINN = WA_TEXT-ATINN AND SPRAS = 'EN' . "SY-LANGU.
      MODIFY IT_TEXT FROM WA_TEXT.
      CLEAR WA_TEXT.
    ENDLOOP.
    LOOP AT IT_TEXT INTO WA_TEXT.
      CNT1 = CNT1 + 1.
    ENDLOOP.
    IF IT_TEXT IS NOT INITIAL.
      LOOP AT IT_TEXT INTO WA_TEXT.
        CNT = SY-TABIX MOD 2.
        IF CNT EQ 0.
          MOVE WA_TEXT-ATWRT TO WA_TEXT3-ATWRT1.
          MOVE WA_TEXT-ATBEZ TO WA_TEXT3-ATBEZ1.
          APPEND WA_TEXT3 TO IT_TEXT3.
          CLEAR : WA_TEXT3.
        ELSE.
          MOVE WA_TEXT-ATWRT TO WA_TEXT3-ATWRT.
          MOVE WA_TEXT-ATBEZ TO WA_TEXT3-ATBEZ.
        ENDIF.
      ENDLOOP.
      CNT = CNT1 MOD 2.
      IF CNT NE 0.
        APPEND WA_TEXT3 TO IT_TEXT3.
        CLEAR : WA_TEXT3.
      ENDIF.
      CLEAR : IT_TEXT[].
      IT_TEXT[] = IT_TEXT3[].
    ENDIF.
    -Dunlop

  • I need help on these issue (watermarking and steganography)

    Hi guys, my lecturer did assign me a an assignment. She asked to insert the information about the production's company,expired date, and the approval message into a logo (to avoid fraud lisence). She's giving me option whether to use steganography or watermarking. From my reading (i'm such newbie in this field) one of the best way in stegano and watermarking is patchwork algorithm. So I did search on patchwork algorithm.
    The thing that make me so confuse is when I did the searching in google for that patchwork algorithm, the result will be in patchwork algorithm in waterwarking. There's no such details for patchwork algorithm in stegano. There's some in stegano but those just touch on the theory only. So do u guys know resource that I could refer about patchwork algorithm in stegano? I mean very detail experiments or journal or even sourcecode..
    Well, it's fine enough if I have to do it in watermarking. But there's is one issue. When I'm hiding the info, can I extract the info by using a system only (like stegano) without using any hardware device? If it so, is there any sample source code for it? Please help me...Thanks in advance guys!

    What is the connection to LabVIEW?
    LabVIEW Champion . Do more with less code and in less time .

Maybe you are looking for

  • Why does cs5 stop working when printing

    At my wits end...CS6 continually Stops working when I attempt to print to a Ricoh printer...all ok before upgrade from XP...drivers appear ok and have been reloaded.

  • Block all countries but one?

    Our management suddenly decided that some parts of our servlet based web application should only be visible from one country, and visitors from other countries should not be able to see that part of our web application. I have absolutely no idea how

  • Is is possible for an XControl to inherit properties of a control on its fascade

    I am trying to create an XControl that is based on an XYGraph control.  The fascade includes an XYGraph control to display data and some buttons to control scaling of the X axis.  I want the XControl properties to include most or all of the propertie

  • JavaFX, Display Line Chart with additional text

    Hello: I am new to Java and JavaFX. I have been able to create a line chart that has four series using example code from the Oracle Javafx Documentation home. Below is the syntax used to create the line chart once the series info has been populated:

  • USER-EXIT on SAVE event for IE01

    Hi, I need USER-EXIT on SAVE event for t-code IE01. EXIT IEQM0003 work only first time after pressing "SAVE". IF i press "SAVE"  second time equipment will be created. Edited by: andriy.hulyk on Jan 26, 2012 12:45 PM