Smooth update of information on jsp

hi all,
i'm developing the web app portion for a crowd management system. in a particular jsp page, i need to display information pertaining to the current crowd, hence it must be updated and reflected on the very page on real-time basis.
i know of an easy way; that is to set the meta-tag and let the refresh takes place automatically. however, my "fussy" client doesn't like the idea of that page gets flicker on every refresh. they prefer to view a "smooth" transition of information being updated.
any idea, guys?
thanks in advance!

hi, thanks for your prompt reply!
yes i know ajax but didn't know it can be applied this way to solve my problem. well then, if ajax is the ultimate solution, is it correct to say that i should create another function to invoke it at certain time interval? (because the information has to be updated on real-time basis)

Similar Messages

  • How to ensure a smooth update and smooth running mac

    Hello all. First off this is not a 'help' or 'query' post, thanks to everyone in this Discussion who has helped me in the past for various mac problems, thought I "give back" and post some good tips and usage on "ensuring a smooth update and smooth running mac" in the long run.
    Altogether I have 3 Macs at home to "maintain" (my iMac G5, MacBook and my sis's Mac mini Intel) and in the office my own G5 Tower and 2-3 other same G5s. So far I have "dare to say" (touchwood ) I have not run into any major problems while performing any major OS or Security Updates; I know some of these steps are mentioned and even "preach" many times, but by doing them, you avoid all the inconvenience in the long run:
    Always Backup:
    1. Whatever you do, invest in a 2nd hard drive and perform regular back ups!
    2. If you have a G5 Tower or Mac Pro, get a 2nd drive or 3rd and install internally, if you have the other Macs, get an external FireWire Hard Drive.
    3. Use SuperDuper, and pay the little shareware to get the additional automatic and scheduling functions to help you perform auto backups, or if you prefer doing the backup manually
    4. For home users, I would recommend you perform a Backup once every 2 weeks. Heavy office/work use, I say once a week
    Performing Updates:
    1. Before Starting Up, unplug all external devices like FW drives, USB hubs etc, leave only your wired keyboard, mouse and internet connection (unless they are all wireless)
    2. Start Up your mac, quit all running applications and Repair Disk Permission
    3. Restart again and Repair Permission again
    4. Quit all other running apps and also turn off Norton Anti-virus, run Software Update
    5. Whether or not you have the Restart option after the update, Restart your mac
    6. Repair Disk Permission
    7. Shut down the mac, fix all the external devices etc
    8. Start up your mac, Repair Permission again
    9. Use your Mac as usual
    I have been doing these since all the 10.4 updates and I have not encounter any problems with all my macs.
    When a Kernel Panic occurs:
    1. Restart the mac and boot into Single User Mode (fsck)
    2. Run fsck and Repair the mac
    3. Reboot the mac, Repair Permission
    Regular Maintenance:
    1. Get a Maintenance Utility like Cocktail, and pay for the shareware and schedule regular maintenance cycles.
    2. The Mac OS also has a "built-in" maintenance script that runs in the wee hours (local time), so it is actually encourage that you at least leave your mac on overnight for at least one or two nights in the week.
    If you do not wish your mac to be left on till the morning, you can always schedule in Energy Saver's Schedule options for the mac to turn on and off at your designated times.
    I always leave my office mac on till about 4-5 am in the morning and I set things like Cocktail and NAV scans to run in those hours so they won't disrupt your day time operations, I do the same to my own home iMac.
    These tips and pointers are not new and have been mentioned many times in these posts, but if you just take that extra little time to follow through, you will be ensure a better and healtheir running mac.
    Cheers

    You can enter your Mac's serial number at this site. Information, based on the serial number, will be shown. http://www.chipmunk.nl/klantenservice/applemodel.html Then tell us what model PB you have.
    Usually, you get a blinking ? when no OS is installed. The startup tone (bong) you heard indicates the PB passed the startup hardware test.
     Cheers, Tom

  • How can I use multiple row insert or update into DB in JSP?

    Hi all,
    pls help for my question.
    "How can I use multiple rows insert or update into DB in JSP?"
    I mean I will insert or update the multiple records like grid component. All the data I enter will go into the DB.
    With thanks,

    That isn't true. Different SQL databases have
    different capabilities and use different syntax, That's true - every database has its own quirks and extensions. No disagreement there. But they all follow ANSI SQL for CRUD operations. Since the OP said they wanted to do INSERTs and UPDATEs in batches, I assumed that ANSI SQL was sufficient.
    I'd argue that it's best to use ANSI SQL as much as possible, especially if you want your JDBC code to be portable between databases.
    and there are also a lot of different ways of talking to
    SQL databases that are possible in JSP, from using
    plain old java.sql.* in scriptlets to using the
    jstlsql taglib. I've done maintenance on both, and
    they are as different as night and day.Right, because you don't maintain JSP and Java classes the same way. No news there. Both java.sql and JSTL sql taglib are both based on SQL and JDBC. Same difference, except that one uses tags and the other doesn't. Both are Java JDBC code in the end.
    Well, sure. As long as you only want to update rows
    with the same value in column 2. I had the impression
    he wanted to update a whole table. If he only meant
    update all rows with the same value in a given column
    with the same value, that's trivial. All updates do
    that. But as far as I know there's know way to update
    more than one row where the values are different.I used this as an example to demonstrate that it's possible to UPDATE more than one row at a time. If I have 1,000 rows, and each one is a separate UPDATE statement that's unique from all the others, I guess I'd have to write 1,000 UPDATE statements. It's possible to have them all either succeed or fail as a single unit of work. I'm pointing out transaction, because they weren't coming up in the discussion.
    Unless you're using MySQL, for instance. I only have
    experience with MySQL and M$ SQL Server, so I don't
    know what PostgreSQL, Oracle, Sybase, DB2 and all the
    rest are capable of, but I know for sure that MySQL
    can insert multiple rows while SQL Server can't (or at
    least I've never seen the syntax for doing it if it
    does).Right, but this syntax seems to be specific to MySQL The moment you use it, you're locked into MySQL. There are other ways to accomplish the same thing with ANSI SQL.
    Don't assume that all SQL databases are the same.
    They're not, and it can really screw you up badly if
    you assume you can deploy a project you've developed
    with one database in an environment where you have to
    use a different one. Even different versions of the
    same database can have huge differences. I recommend
    you get a copy of the O'Reilly book, SQL in a
    Nutshell. It covers the most common DBMSes and does a
    good job of pointing out the differences.Yes, I understand that.
    It's funny that you're telling me not to assume that all SQL databases are the same. You're the one who's proposing that the OP use a MySQL-specific extension.
    I haven't looked at the MySQL docs to find out how the syntax you're suggesting works. What if one value set INSERT succeeds and the next one fails? Does MySQL roll back the successful INSERT? Is the unit of work under the JDBC driver's control with autoCommit?
    The OP is free to follow your suggestion. I'm pointing out that there are transactions for units of work and ANSI SQL ways to accomplish the same thing.

  • Becouse of expire of credit card I updated billing information by providing data of new credit card but system just says "We're sorry, the billing information on file could not be used for this payment. Please update your information.". What exactly is wr

    Becouse of expire of credit card I updated billing information by providing data of new credit card but system just says "We're sorry, the billing information on file could not be used for this payment. Please update your information.". What exactly is wrong?

    Are you 100% sure that every detail of your information is the same in each place?
    Make sure that EVERY DETAIL is the same in every place you enter your information
    -right down to how you spell and punctuate the parts of your name and address
    Change/Verify Account https://forums.adobe.com/thread/1465499 may help
    -Credit card https://helpx.adobe.com/utilities/credit-card.html

  • Geting this errror, eventhough information is ok: We're sorry, the billing information on file could not be used for this payment. Please update your information.

    Geting this errror, eventhough information is ok: We're sorry, the billing information on file could not be used for this payment. Please update your information.
    And please remove one of my unassigned user.

    Are you 100% sure that every detail of your information is the same in each place?
    Make sure that EVERY DETAIL is the same in every place you enter your information
    -right down to how you spell and punctuate the parts of your name and address
    Change/Verify Account https://forums.adobe.com/thread/1465499 may help
    -Credit card https://helpx.adobe.com/utilities/credit-card.html

  • Unable to update payment information

    Due to the recent Adobe security breach, I like many other people have been forced to replace our credit cards. I received my new card and am completely unable to update my payment information. All attempts to update the information using Firefox, Chrome, Safari and Android and iPhone browsers is unsuccessful. Considering that the recent security problems of compromised customer payment information, I would have expected more from Adobe. Why doesn't such an important function of the Creative Cloud website work at a time when many people are having to re-enter their payment information due to recent events?
    I have been waiting for the chat support to person for a while now and can't spend another hour waiting for assistance. This series of events is really beyond the pale in regards to Adobe's customer service and support. First we get our credit cards stolen, and then when we have to put in new payment information, the website doesn't even work properly. Adobe isn't some start up that's only been around for a few months, they're a multi-billion dollar company.
    Do I need to call someone instead? Is there any sort of notification or status as to whether or not the website is functioning as expected?

    I had the same issue, Sent Email offering £7.99 for 25 GB. Then sent me an Email at 2.52AM saying I needed to update my payment method although they had just refunded to it. Then 7 hours later, I had tried to before work at 7AM and thought, "as it won't let me do that on my iphone, I'll do it at lunch." Sadly at 9:56 am UK time, They reduced my storage.
    Having Wasted an hour on the phone tonight, they first tried to explain that £7.99 is More than £0.79 times 12. Doh!
    That was followed with lots of being on hold and then being told "We can't go back, We Can't make a refund. We agree it was short notice and that we didn't do it well, there are lots of issues about this and also that we never offered you that (till the saw the email)" So no better off and now having to pay more for same service. That's pretty poor service all around. I have to upgrade as All my files, Backups and Emails are inoperative Till I do so.
    That's pretty bad for a company of this size, Guess they need some more bad press at the moment.

  • HT201380 Yesterday this was automatically installed.  Today I can't access a document in Pages.  A prompt says I need a Pages update.  But the next screen tests for updates and informs me everything is up to date.  What's up?

    Yesterday this was automatically installed.  Today I can't access a document in Pages.  A prompt says I need a Pages update.  But the next screen tests for updates and informs me everything is up to date.  What's up?

    It's highly unlikely that the Pages update problem has anything to do with the ARD client update, since the client is not involved in any way with Software Update. I'd suggest asking for assistance with the update problem in the forum appropriate for your version of Mac OS X.
    Regards.

  • I want iTunes to STOP updating my information, is this possible?  how?

    I want iTunes to STOP updating my information.  Each time I open my 21,000 song library in which I have carefully customized 'genre' and 'album' and 'album sort' iTunes CHANGES MY SETTINGS.  I want to stop this unasked for and unwanted corruption of my entries, please.  (e.g. album sort undoes alphabetical song order for an artist, which is unwanted and irritating .. I have ALL of my 'album sort' set as * .. this provides perfect alphabetization .. please stop changing 'genre' and 'album' and 'album sort'.
    <Email Edited By Host>

    Without the previous user erasing, using their Apple ID/password, the iPad you have an "electronic brick". You may have purchased a stolen iPad.
     Cheers, Tom

  • Updation agent information in table

    Hi ,
    I have created one custom module pool program which is used for request for resource.
    Now in that i create new entries with request no , date (i.e sydatum) , person responsible (for creating request)
    all this values are stored in the custom table .
    when i hit the save the workflow should trigger.
    I have used table maintainence generator and created the event and used swe_create_event to trigger the workflow.
    now the workflow select the agent from the Ztable where the agant are maintained .
    i want to know how should i update the information as to which agent has approved the workitem in the custom and at which date.
    i believe i am correct in stating my query .
    Thanks in advance
    chitis

    The simple way is to make use of program exit tab of the step which is sent ot approver for approval.The progrma exit events react based on various eventytpes, like workitem before creation, after execution, completed, state chnaged etc...
    My suggesstion is to create a program exit class and include the class in the program exit tab of the step and update you z table in the one of the methods of the program exits tab.
    for more information, on how to create and use it please go through the [wiki|https://www.sdn.sap.com/irj/scn/wiki?path=/display/abap/programExitsIn+Workflow]

  • Hi My name ali from iran  IDi I opened my iPad in China because the Chinese did not notice but I update my information  Unfortunately, due to the country's name to Iran sanctions not Sbn I chose to make Iraq  Now I'm able to take my Mastercard and softwar

    Hi
    My name ali from iran
    IDi I opened my iPad in China because the Chinese did not notice but I update my information
    Unfortunately, due to the country's name to Iran sanctions not Sbn I chose to make Iraq
    Now I'm able to take my Mastercard and software applications I buy from iTunes
    But I do not know how?, Please help me to register your MasterCard

    Dear Hi
    I would also be in itunes and App Store Get into English
    I've opened all of IDI in China is Chinese and I do not understand Software
    Program
    Please advise me please
    Thank you
    Ali

  • Information about JSP

    Hi everyone,
    I am trying to collect information about JSP and was wondering if anybody could help me?
    I am trying to find something about the history, what kind of compiling language JSP is using and how it works, what kind of runtime and how it works, what kind of uniform class library and how it works.
    I am trying to find general information. I don�t want to go into details like is using Taglibs, Beans ect.
    I would appreciate the help.
    Thanks,
    Michael

    Well, JSP is Java Server Pages. I'm not sure how old it is, offhand. At least 5 years now, I guess. Generally, it uses Java as the language, although, technically, there is a language parameter of a JSP page that suggests there was some thought to supporting other languages (like ASP supports (or used to) VBScript or JScript).
    Why don't you go to the JSP page on Sun's site and read that info.

  • Help, cant update payment information..

    I cant update payment information on my account, wont let me purchase any apps.. Any help?

    Hello there, Nafters.
    The following Knowledge Base article offers up some great information for troubleshooting your issue:
    iTunes Store: Changing your payment information
    http://support.apple.com/kb/ht1918
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Update of information in SO header - but affecting the item

    Hi all,
    I am updating some information in the SO header (in the tab of Additional data)
    When I'm just about to save, it actually prompted me the reason code for changing the items. Since I'm only changing in the area of header so I'm guessing this thing shouldnt be happening.
    Does anyone have any idea on this? Points will be rewarded for your great opinions

    Hi,
    I assume you changed Condition Group 1 till 5 fields. It's standard function. It will happen if you changed the customer condition group field for pricing, system will be populate to the items automatically.
    Regards,
    Gumanti

  • Getting an error when trying to update payment information on iTunes

    Getting an error when trying to update payment information on iTunes

    If you would like help from these user forums then saying what the error message was would be useful.

  • Error in SWCV-Update SLD information

    Hi Experts,
    I have imported a XI content from marketplace and the same is imported successfully and i am able to create end to end
    scenario.
    But when it check  SWCV->Tool->Update SLD information  i am getting the following error.
    Cannot update SLD information because there is no entry with key <604><sap.com><ECC-SE><01200615320200010995><ESA ECC-SE 604><509ac7568dff11dcbb6fc5790a115642><ExtSwc> in the SLD, or the ID 509ac756-8dff-11dc-bb6f-c5790a115642 already exists
    Do I need to check if something wrong with PI system version and XI content not in sync.
    I check in SLD the entry for 604 is not there.
    My doubt is , in SLD -SWCV-XI content  i am not able to see ECC SE 604 but 603 is present ;Does 603 comes by default durign
    installation.
    Do i need to upgrade my PI from 7.1 to 7.1 EHP1.
    Regards,
    Abhi

    Hi Abhi,
    Please check if the software component versions ESA ECC SE is installed, which should be the perquisite for Enterprise services implementation .
    Generally the Xi contents are shipped with the sap releases so you might be having the XI content already in SLD which comes during installation  in a similar way as we have SAP BASIS.
    If you download the XI content , you just need to keep the .tpz file in the server under  import directory or repository.
    once you do a import from server , the component will appear  and can be used for scenarios.
    But before thinking  to upgrade please do check with any other Xi content import and see if it is shown in the SLD
    after import in ESR.
    Regards,
    Srinivas

Maybe you are looking for

  • How to hide Attributes of Variable (In F4 Help)

    Hi Gurus, I'm using BI 7.0. I have created a Variable on 0EMPLOYEE which should let me select the key and text of 0EMPLOYEE. But when i do F4 in the 0EMPLOYEE field I'm getting 47 different fields, which i assume are the attributes of 0EMPLOYEE. I ha

  • Sending emails from the JSP application

    hi, I am trying to send emails from my jsp application using JavaMail API's. I am using my own mailserver. Iam able to send emails from my applications to the ids of my own mailserver but not the yahoo,gmail and rediff ids. Is it because of blocking

  • Transferring new iphone

    I have friend who just purchased a iphone 4s and wants to transfer all data from his 3gs.  He doesn't have a computer and wants to do it on my computer.  Can he just sign into his itunes account on my computer, backup his old iphone and then restore

  • SELECTION BASE ON SELECTION

    hi all,    can anyone tell me how to code for a selection based on selection, that is i have taken suppose material document in the selection screen now when i look for a data in the field it should select based on the moment type displaying a popup

  • cfpresentation does not keep formatting as coded

    I am creating a PPT using the <cfpresentation> tag using coldfusion 9.0.1.  The presentation gets generated, however the information within is not getting displayed as it is coded.  I am using <div> tags to specify font size,weight, and margins. Howe