No-cache not expiring web page

In the below servlet A i am able to get the no cache to work so when i hit the back button the page is expired.
I am using this same exact code in another servlet. The only differenc i can think of is the i am using the PRG patten with it. So i do a process then it redirects to servlet B and displays the invoice page. However if i hit back from here the page is not expired and will still display.
any ideas?
thanks john
SERVLET A
public class NewRegistration extends HttpServlet{
     public void doGet(HttpServletRequest request,
               HttpServletResponse response)
     throws IOException, ServletException
          HttpSession session = request.getSession();
          User user = (User) session.getAttribute("user");      
          Cart cart = (Cart) session.getAttribute("cart");
          session.setAttribute("cart", cart);
          session.setAttribute("user", user);
          //session.setAttribute("Checked", "CHECKED");
          session.setAttribute("isChecked", "isChecked");
          response.setHeader("Pragma", "No-cache");
          response.setHeader("Cache-Control", "no-cache");
          response.setDateHeader("Expires", 1);
          String url = "/register.jsp";
          RequestDispatcher dispatcher =
               getServletContext().getRequestDispatcher(url);
          dispatcher.forward(request, response);
     public void doPost(HttpServletRequest request,
               HttpServletResponse response)
     throws IOException, ServletException
          doGet(request, response);
}SERVLET B
public class DisplayInvoiceServlet extends HttpServlet
    public void doGet(HttpServletRequest request,
            HttpServletResponse response)
            throws IOException, ServletException
        HttpSession session = request.getSession();
         String Error = (String) session.getAttribute("Error");
         String processerror = (String) session.getAttribute("processerror");
                                response.setHeader("Pragma", "No-cache");
          response.setHeader("Cache-Control", "no-cache");
          response.setDateHeader("Expires", 1);
          String url = "";
          if(Error !=null){
               url = "/confirm.jsp";
               session.setAttribute("Error", Error);
          else if(processerror != null){
               session.setAttribute("processerror", processerror);
               url = "/carderror.jsp";
          else{
               url = "/invoice.jsp";     
        RequestDispatcher dispatcher =
                getServletContext().getRequestDispatcher(url);
        dispatcher.forward(request, response);
     public void doPost(HttpServletRequest request,
               HttpServletResponse response)
     throws IOException, ServletException
          doGet(request, response);
}

The redirect in this servlet goes to servlet B. This is the servlet described in the first post that i didnt include.
public class SubmitOrderServlet  extends HttpServlet
     public void doGet(HttpServletRequest request,
               HttpServletResponse response)
     throws IOException, ServletException
          String cardType = request.getParameter("Ecom_Payment_Card_Type");
          String cardName = request.getParameter("Ecom_Payment_Card_Name");
          String cardNum = request.getParameter("Ecom_Payment_Card_Number");
          String expMonth = request.getParameter("Ecom_Payment_Card_ExpDate_Month");
          String expYear = request.getParameter("Ecom_Payment_Card_ExpDate_Year");
          String cvvCheck = request.getParameter("group2");
          String cvv2 = request.getParameter("Ecom_Payment_Card_Verification");
          String bankPhone = request.getParameter("bankphone");
          HttpSession session = request.getSession();
          User user = (User) session.getAttribute("user");    
          Cart cart = (Cart) session.getAttribute("cart");
          Icharge icharge = new Icharge();
          Cardvalidator validate = new Cardvalidator();
          GenericValidator validator = new GenericValidator();
          DecimalFormat format = new DecimalFormat("0.00");
          String Error = "";
          boolean proceede = true;
          try {
               validate.reset();
               if(cardType.equalsIgnoreCase("0")){
                    Error = "Please Select Card Type";
                    proceede = false;
                    session.setAttribute("Error", Error);
               if(proceede){
                    if(!cardName.equalsIgnoreCase(user.getformatBName())){
                         Error = "Cardholder name must match billing Information";
                         proceede = false;
                         session.setAttribute("Error", Error);
               if(proceede){
                    if(expMonth.equalsIgnoreCase("Month")){
                         Error = "Please Select Exp. Month";
                         proceede = false;
                         session.setAttribute("Error", Error);
               if(proceede){
                    if(expYear.equalsIgnoreCase("Year")){
                         Error = "Please Select Exp. Year";
                         proceede = false;
                         session.setAttribute("Error", Error);
               if(proceede){
                    if(expMonth != null && expMonth.length() >0 && !expMonth.equalsIgnoreCase("Month")){
                         validate.setCardExpMonth(Integer.parseInt(expMonth));
               if(proceede){
                    if(expYear != null && expYear.length() >0 && !expYear.equalsIgnoreCase("Year")){
                         validate.setCardExpYear(Integer.parseInt(expYear));
               if(proceede){
                    if(cvvCheck.equalsIgnoreCase("cscY")){
                         if(cvv2 == null || cvv2.equals("")){
                              Error = "Please enter Card Security Code";
                              proceede = false;
                              session.setAttribute("Error", Error);
                         else if(cvv2 != null && (cvv2.length() < 3 || cvv2.length() > 4)){
                              Error = "Please enter a valid Card Security Code";
                              proceede = false;
                              session.setAttribute("Error", Error);
                         else if(!validator.isInt(cvv2)){
                              Error = "CSC must be numeric";
                              proceede = false;
                              session.setAttribute("Error", Error);
               if(proceede){
                    if(bankPhone == null || bankPhone.equals("")){
                         Error = "Please enter issuing bank phone number";
                         proceede = false;
                         session.setAttribute("Error", Error);
               if(proceede){
                    validate.setCardNumber(cardNum);
                    validate.validateCard();
               if(proceede){
                    if(validate.isDateCheckPassed() && validate.isDigitCheckPassed()){
                         try{
                              icharge.resetData();
                              icharge.setGateway(1);
                              icharge.setTransactionDesc("Ibiz Test Transaction");
                              String total = cart.getTotalPrice();
                              total = total.substring(1);
                              icharge.setTransactionAmount(total);
                              icharge.setCardCVV2Data(cvv2);
                              icharge.setCardNumber(cardNum);
                              icharge.setCardExpMonth(expMonth);
                              icharge.setCardExpYear(expYear);
                              icharge.setCustomerFirstName(user.getBillfirstName());
                              icharge.setCustomerLastName(user.getBilllastName());
                              icharge.setCustomerAddress(user.getBilladdress1());
                              icharge.setCustomerCity(user.getBillcity());
                              icharge.setCustomerState(user.getBillstate());
                              icharge.setCustomerZip(user.getBillzip());
                              //icharge.setInvoiceNumber("12345");
                              icharge.setTimeout(30);
                              icharge.authorize();
                              if(icharge.isTransactionApproved()){
                                   session.setAttribute("processerror", null);
                                   System.out.println("AVS " +icharge.getResponseAVS());
                                   System.out.println("resp " +icharge.getResponseCode());
                                   System.out.println("cvv " +icharge.getResponseCVV2());
                                   //System.out.println("respD " +icharge.getResponseData());
                                   System.out.println("resptext " +icharge.getResponseText());
                                   System.out.println("transId " +icharge.getResponseTransactionId());
                                   System.out.println("apprCode " +icharge.getResponseApprovalCode());
                                   java.util.Date today = new java.util.Date();
                                   CCData cardData = new CCData();
                                   cardData.setAvsResp(icharge.getResponseAVS());
                                   cardData.setCardholder(user.getBillfirstName() + " " + user.getBilllastName());
                                   cardData.setCardNum(cardNum);
                                   cardData.setCardType(validate.getCardTypeDescription());
                                   cardData.setCvvResp(icharge.getResponseCVV2());
                                   cardData.setRespApprCode(icharge.getResponseApprovalCode());
                                   cardData.setRespText(icharge.getResponseText());
                                   cardData.setRespTransId(icharge.getResponseTransactionId());
                                   Invoice invoice = new Invoice();
                                   invoice.setUser(user);
                                   invoice.setInvoiceDate(today);
                                   invoice.setLineItems(cart.getItems());
                                   if(cart.getTax() > 0){
                                        invoice.setIsTax("Y");
                                        invoice.setTax(cart.getTax());
                                   else{
                                        invoice.setIsTax("N");
                                   invoice.setSubtotal(cart.getSubtotal());
                                   invoice .setTotal(Double.parseDouble(total));
                                   Tender tender = new Tender();
                                   tender.setAmount(Double.parseDouble(total));
                                   tender.setTenderType(validate.getCardTypeDescription());
                                   InvoiceDB.insert(invoice,cardData,tender);
                                   StringUtils strUtil = new StringUtils();
                                   String items = "";
                                   for(int i = 0; i < cart.getItems().size(); i++){
                                        LineItem item = cart.getItems().get(i);
                                        Product p = item.getProduct();
                                        items = strUtil.addToRecWSAftr(items, String.valueOf(item.getQuantity() + strUtil.fillRight(String.valueOf(p.getItemNum()),17)) +
                                                  strUtil.fillRight(p.getDesc2(),29) + strUtil.fillRight(String.valueOf(p.getPriceFormat()),12));
                                   // Send an email to the user to confirm the order.
                                   String to = user.getEmail();
                                   String from = "[email protected]";
                                   String subject = "Order Confirmation";
                                   String body = "Dear " + user.getFormatSName() + ",\n\n" +
                                   "Thanks for ordering from us. " +
                                   "You should receive your order in 3-5 business days. " +
                                   "Please contact us if you have any questions.\n\n" +
                                   "Order Summary\n\n" +
                                   "Qty          Item No.          Description            Price\n"+
                                   "-----------------------------------------------------------\n"+
                                   items + "\n";
                                   boolean isBodyHTML = false;
                                   try
                                        MailUtil.sendMail(to, from, "", subject, body, isBodyHTML);
                                   catch(MessagingException e)
                                        this.log(
                                                  "Unable to send email. \n" +
                                                  "You may need to configure your system as " +
                                                  "described in chapter 15. \n" +
                                                  "Here is the email you tried to send: \n" +
                                                  "=====================================\n" +
                                                  "TO: " + to + "\n" +
                                                  "FROM: " + from + "\n" +
                                                  "SUBJECT: " + subject + "\n" +
                                                  "\n" +
                                                  body + "\n\n");
                                   session.setAttribute("invoice", invoice);
                              else{
                                   session.setAttribute("processerror", icharge.getResponseText());
                                   System.out.println("resptext " +icharge.getResponseText());
                                   System.out.println("resp " +icharge.getResponseCode());
                                   System.out.println("respD " +icharge.getResponseData());
                         catch(IBizPayException ex){
                              System.out.println("IPWorks exception thrown: " + ex.getCode() + " [" + ex.getMessage() + "].");
                         catch(Exception ex){
                              System.out.println(ex.getMessage());
                    else{
                         proceede = false;
          catch (IBizPayException ex) {
               Error = ex.getMessage();
               proceede = false;
               session.setAttribute("Error", Error);
          catch (Exception e1) {
               System.out.println(e1.getMessage());
          if(!proceede){
               session.setAttribute("cardI", cardType);
               session.setAttribute("expmI", expMonth);
               session.setAttribute("expyI", expYear);
               session.setAttribute("cardN", cardNum);
               session.setAttribute("cvv", cvv2);
               session.setAttribute("bphone", bankPhone);
          else{
               session.setAttribute("cardI", null);
               session.setAttribute("expmI", null);
               session.setAttribute("expyI", null);
               session.setAttribute("cardN", null);
               session.setAttribute("cvv", null);
               session.setAttribute("bphone", null);
               session.setAttribute("Error", null);
          response.setHeader("Pragma", "No-cache");
          response.setHeader("Cache-Control", "no-cache");
          response.setDateHeader("Expires", 1);
          response.sendRedirect("DisplayInvoice");
     public void doPost(HttpServletRequest request,
               HttpServletResponse response)
     throws ServletException, IOException
          doGet(request, response);
}

Similar Messages

  • Safari not opening web page with 10.4 thru 10.6 either on wireless or direct connect Cat 5, any ideas?

    Hello,
    Have a 2006 MBP core duo that Safari seems to stall and not load web pages using wireless or CAT 5, have reloaded the OS starting with Tiger and have progressed thru Snow Leopard and still no luck, I-chat works no issues and have done all the updates both wireless and via CAT 5, any suggestions?

    Try emptying the Safari cache more often.   Command + Option + E
    Quit and relaunch Safari to test.
    If that didn't help, from your Safari menu bar click Safari > Preferences then select the Advanced tab.
    Cllick Change Settings from the Proxies pop up menu. That will launch System Preferences for you.
    Deselect any checked boxes on the left under Select a protocol to configure then click OK.
    Quit and relaunch Safari to test.

  • Safari (7.0.6) on my iMac running Mavericks (10.9.4) is not saving web pages (web archives)

    Hi.  Not familiar with forums but hope to get some help.
    Safari (7.0.6) on my iMac running Mavericks (10.9.4) is not saving web pages (web archives).
    I've used the following path:
    File > Save As >then Format > Web Archive 
    It saves a file but when I click on its icon it opens up to the 'Top Sites' page (as when you click on the + for a new tab) not a saved web archive of the web page I was on.
    I have no such problem with Safari on my MacBook Pro running Lion. 
    The iMac hardware details are: 2.7 Gz Intel Core i5 with 8 gb of RAM .  The software update tells me I'm up to date.
    Any help would be much appreciated.  Thanks in advance. 
    Errol.

    It could be malware that's causing the archive /  Top Sites problem.
    Download and run the adware removal tool here >   The Safe Mac » Adware Removal Guide
    Easy, safe, and only takes a minute or two.
    If no malware is found ...
    From your Safari menu bar click Safari > Preferences then select the Privacy tab.
    Click:   Remove All Website Data
    Then delete the cache.
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.
    If that didn't help, troubleshoot Safari extensions.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test.
    If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.

  • Safari Not Diplaying Web Pages Properly

    This has really been annoying me, and today I've tried everything to fix it...
    For some reason Safari will not display web pages properly. The problem occurs in different ways, sometimes varying between page loads. The one example that illistrates the nature of the problem best is Apple's iPhone page.
    I have a snapshot of what I see when I load the page in Safari.
    http://img.torgo.org/offsite/other/safari_iphone.jpg
    As you can see in this snapshot, the black background that is supposed to be part of the page is not displaying black. This is obvously indicating a bug as apposed to bad css/styling, as I would think Apple's most recently added web page would be the one page that should display properly.
    This problem is not limitd to missing backgrounds (though it's one of the more regular issues). My own blog is not displaying all the text in the right color (the color is supposed to be white, but between reloads some to all of the text displays in black).
    I've tried empting safari's cache, resetting safari, and deleting the com.apple.safari.plist file in my preferences folder, but none of these had any effect... Furthermore I've also tried using different user accounts, and as of now they ALL display this pattern...
    The only thing I cannot seem to try is to boot into 'safe mode' and see if it still occurs. This is because I just learned if I hold the shift key down to do so without fail every time my system shuts off at about the time it usually switches from the apple screen to the loading progress bar screen, but that is obvously unrelated to the Safari issue.
    I'm using Version 2.0.4 (419.3) on 10.4.8 intel core duo (origional MacBook)...
    2.0 GHz MacBook (Black) w/512 MB RAM   Mac OS X (10.4.8)  

    Bobby, sorry to hear of this.
    Good that you tried this in another user, and with the same thing happening there, this lets us know you have a system wide issue.
    Since safemode isn't working for you at the moment, try doing a PRAM reset and a PMU reset
    PRAM - http://docs.info.apple.com/article.html?artnum=2238
    PMU - http://docs.info.apple.com/article.html?artnum=303319
    then try safemode...
    if it's still doing the same thing, then I suggest you try an Archive/Install w/preserving users and network setting; this walks you through that - http://docs.info.apple.com/article.html?artnum=107120
    if it still doesn't work after that -
    • back up all you files to an externald HD, CD/DVD, etc..
    • boot to install disk 1
    • launch disk utility
    • partition the HD (you'll see it's ONE volume scheme) chnage it to like 4, partition it, then change it back to 1 and partition it then perform a clean install of OSX
    if it doesn't work after that, there is a hardware issue, contact Apple
    Macbook Pro 2.0ghz   Mac OS X (10.4.8)  

  • HT4922 Downloaded 5.1.1. to my iphone. Now, Safari will not connect to my server.  Can not download web pages and many of my apps. Running very slow sluggish! Is there a fix? Sound like other users are experiencing same problems.  Anyone have a solution?

    Downloaded 5.1.1 to my iphone. Now, Safari will not connect to my server. Can not download web pages and many of my apps. Email seems to be ok. iphone running slow and sluggish.  I have read several other users have experienced the same problem. Any solutions?

    Basic troubleshooting steps oultlined in the User Guide are restart, reset, restore from backup, restore as new device.
    You need to go through all steps in succession until your problem is solved.  If going through ALL these steps fails to resolve your issue, then you'll need to bring your phone into Apple for evaluation and possible replacement.

  • Firefox will not load web page (I also have Internet Explorer 8 installed).

    Fire Fox will not load web pages. It may have something to do with proxy settings but I have reset this to Auto-Detect which is where it has always been in the past but still nothing. Something has reset my proxy settings in the past which caused a similar problem but doesn't seem to be the issue this time. I have Internet Explorer 8.0 installed on computer right now and it seems to work.

    After looking into this further I checked firewall settings in Panda A.V. For Firefox they were set to Custom settings which effectively disabled it. I changed setting to Outbound only like Internet Explorer and other programs and Firefox seems to work fine now. Hope this helps others who have experienced this problem. I have teenage children who use computer a lot (Face Book, etc.) so the root of the problem may have been Malware, Adware, or something else but hopefully Panda has taken care of this.

  • Will not show web page on windows high contrast

    Hi,
    Am running Windows 7 64bit
    my problem is as follows.
    I normally run Windows in high contrast mode and would prefer all web sites to be on the dark side.
    Occasionally I need to be able to see a web page as its designers intended it to be.
    So I want to have the text white and background black and then the ability to toggle between that and the web page's own colour scheme.
    Thought I'd found exactly what I needed in the add-on "Toggle Document Colors 1.0"
    Am presuming it toggles the status of the "Allow pages to choose their own colours..." tick box.
    This setting seems to get lost when FF closes. Even if I set the tick box myself and then close FF it is gone when I reopen FF.
    If the box is ticked and a page refreshed it still does not show web page colours ?
    Without any addons at all after a reset and only using the colours dialog I cannot get it to behave.
    If you start in Windows white mode (normal) things are better even after FF close. Change to Windows black mode (high contrast) things start off ok then after you close FF it will not work
    If there is a solution I would love to know it.
    Will settle for a workaround.
    Considered using old version of FF, but this is not really a good idea.
    Really don't want to go back to IE
    in hope ... Bob

    iTunes does not yet support Windows 8, so there may not be a fix until such time as Apple releases a version of iTunes that does support 8. You can search this forum for "windows 8", though, and perhaps you'll find a suggestion in one of the other threads on the issue.
    Regards.

  • New tab will not open web page

    *error message when opening firefox= "Could not initialize the application's security component. The most likely cause is problems with files in your application's profile directory. Please check that this directory has no read/write restrictions and your hard disk is not full or close to full. It is recommended that you exit the application and fix the problem. If you continue to use this session, you might see incorrect application behaviour when accessing security features."
    *new tabs do not open web pages
    *plugin container.exe and updater.exe do not open or run

    Create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    *https://support.mozilla.org/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    If that new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls

  • Internet explorer will not open web pages

    HPw1858, Windows 7 connected to comcast cable. norton anti-virus program.
    Internet Explorer will not open web pages - refers to Domain Name Server missing or Error 403 (Forbidden) h30155.www.hp.com
    very frustrating. can you tell me what settings i need to change?

    y2ken wrote:
    You can try the Firefox web browser to see if you can then connect. Firefox is a better, faster, more secure browser anyway and will prompt you to transfer all your Favorites from IE.
    Firefox Download
    or
    Try the free Fix IE utility.
    FixIE Utility
    or
    You can try uninstalling IE8 then reinstalling it.
    Uninstall IE8
    I would take 'Y2ken's' advice and try Firefox.  I have used it for years with XP Pro and Ubuntu, Linux.  It definitely is more responsive.  Most of what is in IE8 was developed in FF several years ago.  FF was the first browser with tabs, for instance.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • My new LaserJet Pro CM 1415 does not print web pages. Please help. Thanks.

    My new LaserJet Pro CM1415 does not print web pages. I go a printed message says:
    PCL XL Error
        Subsystem: TEXT
        Error: InternalError 0x50
        File name: cheettext
        Line number: 710
    Thank you for helping.
    Christopher

    I have similar problem but it happens when printing anything to the printer. has there been any solution posted? 

  • I would like to be able to clip out a rectangular section of any screen on the iPad (not just web pages)

    I would like to be able to clip out a rectangular section of any screen (not just web pages and not just text pages) on the iPad and then email that clip or send it to Evernote or whatever.  I can't find any means of doing this.  I know how to take full screen shots and crop, but that's a poor solution.
    Thanks for any suggestions you may have.

    That is not a feature of iOS and no 3rd party app would be able to do that. You're going to need to continue taking a full screen shot and cropping it.

  • WCS is initialized, but is not serving web pages.

    The WCS version 5.0 failed to start, I tried stop the services and then reload the server but the resut is same.
    The dadabase is running and Apache server is running but  WCS is initialized, but is not serving web pages.
    CISCO say this issue coul be for syncronization.

    Hi,
    Cisco says it could be synchornization with the database.
    The log file show:
    172.28.255.113 - - [14/Nov/2010:00:02:18 -0500] "GET /webacs/loginAction.do?requestUrl=/webacs/welcomeAction.do HTTP/1.1" 500 3368
    172.28.255.111 - - [14/Nov/2010:00:04:30 -0500] "GET /webacs/loginAction.do?requestUrl=/webacs/welcomeAction.do HTTP/1.1" 500 3368
    172.28.255.113 - - [14/Nov/2010:00:07:17 -0500] "GET /webacs/loginAction.do?requestUrl=/webacs/welcomeAction.do HTTP/1.1" 500 3368
    172.28.255.111 - - [14/Nov/2010:00:09:30 -0500] "GET /webacs/loginAction.do?requestUrl=/webacs/welcomeAction.do HTTP/1.1" 500 3368
    172.28.255.113 - - [14/Nov/2010:00:12:17 -0500] "GET /webacs/loginAction.do?requestUrl=/webacs/welcomeAction.do HTTP/1.1" 500 3368
    172.28.255.111 - - [14/Nov/2010:00:14:30 -0500] "GET /webacs/loginAction.do?requestUrl=/webacs/welcomeAction.do HTTP/1.1" 500 3368
    172.28.255.113 - - [14/Nov/2010:00:17:17 -0500] "GET /webacs/loginAction.do?requestUrl=/webacs/welcomeAction.do HTTP/1.1" 500 3368
    172.28.255.111 - - [14/Nov/2010:00:19:31 -0500] "GET /webacs/loginAction.do?requestUrl=/webacs/welcomeAction.do HTTP/1.1" 500 3368
    172.28.255.113 - - [14/Nov/2010:00:22:17 -0500] "GET /webacs/loginAction.do?requestUrl=/webacs/welcomeAction.do HTTP/1.1" 500 3368
    172.28.255.111 - - [14/Nov/2010:00:24:31 -0500] "GET /webacs/loginAction.do?requestUrl=/webacs/welcomeAction.do HTTP/1.1" 500 3368
    172.28.255.113 - - [14/Nov/2010:00:27:17 -0500] "GET /webacs/loginAction.do?requestUrl=/webacs/welcomeAction.do HTTP/1.1" 500 3368
    172.28.255.111 - - [14/Nov/2010:00:29:31 -0500] "GET /webacs/loginAction.do?requestUrl=/webacs/welcomeAction.do HTTP/1.1" 500 3368
    172.28.255.113 - - [14/Nov/2010:00:32:17 -0500] "GET /webacs/loginAction.do?requestUrl=/webacs/welcomeAction.do HTTP/1.1" 500 3368
    172.28.255.111 - - [14/Nov/2010:00:34:31 -0500] "GET /webacs/loginAction.do?requestUrl=/webacs/welcomeAction.do HTTP/1.1" 500 3368
    172.28.255.113 - - [14/Nov/2010:00:37:17 -0500] "GET /webacs/loginAction.do?requestUrl=/webacs/welcomeAction.do HTTP/1.1" 500 3368
    172.28.255.111 - - [14/Nov/2010:00:39:31 -0500] "GET /webacs/loginAction.do?requestUrl=/webacs/welcomeAction.do HTTP/1.1" 500 33
    Thanks for your help.

  • Why does my browser not load web pages?

    I have been having trouble with my browser not loading web pages.  After clicking on a link or typing in a web page, the page will usually not load.  I have to reload the page a few times, then it will work fine.  I have this problem with all web pages.  As for pages like youtube, if I can get a video to start playing, it will stop loading at random times.  I can back up in the video and start playing again, sometimes this will lead to the video playing further, only to stop loading again.  Help please!

    Try streching it with the bottom left corner. Also try view zom in. You can also try safari preferences resetsafari.

  • I can not print web pages,print box does not appear . I can print web pages using IE

    Windows 7. Firefox 5.0 I can not print web pages. After clicking PRINT the print dialog box does not appear and nothing prints. I do not have this problem using IE
    Printer: Brothers HL-5140
    Thank you,
    Syd

    First of all, update Firefox to 3.6.17 via Help | Check For Updates.
    There was a security breach at Comodo which is an SSL certificate provider recently whereby a number of fraudulent certificates were inadvertently issued. These allow a hacker to impersonate any site including online banking and the Firefox version you're running at the moment will not warn you that the site is a fake. The fraudulent certificates were blacklisted in v3.6.17 and beyond.
    To uninstall the Yahoo Toolbar, go to Tools | Add-ons | Extensions. You should find it in there.
    To revert to Google as your preferred search engine, please do the following.
    * In the location bar, type '''about:config''' and hit Enter.
    * In the filter at the top, type: '''keyword.URL'''
    * Double click it and remove whatever's in there and replace it with http://www.google.com/search?q=
    The URL to add in "keyword.URL" becomes a link in this post, so right click it and choose "Copy Link Location" to copy it to the Windows clipboard. Then hit CTRL+V to paste it. Saves you having to type the whole thing.
    '''To reset your home page, do the following'''.
    * Go to the site you want to set as your homepage.
    * Go to '''Tools '''| '''Options '''| '''General'''
    * Make sure it says "''Show My Homepage''" in the first dropdown menu.
    * Click the button called "'''Use Current Pages'''" to set the homepage to the one you have on the screen.
    After you complete the above steps, install this add-on to prevent another search engine from modifying your preferences: https://addons.mozilla.org/en-US/firefox/addon/browserprotect/
    Additonal security risks on your system are the version of Flash you have installed at the moment. See http://www.adobe.com/support/security/bulletins/apsb11-12.html
    Update via http://get.adobe.com/flashplayer/
    Printing issues might be fixed by installing Java via http://www.java.com/en/
    But if the problem persists, please post again.

  • I can not print web pages with my HP Deskjet 5440

    I can not print web pages with my HP Deskjet 5440.  I use Vista, no error page, just prints a blank page with headers and footers.  Recently reinstalled printer driver from HP.

    Hello , Welcome to the HP Support Forums!
    I understand that since upgrading your Mac OS X 10.10 computer to Mac OS X 10.10.4 you have been unable to print colour photos wirelessly from your HP Officejet 5740 e-All-in-One Printer. I would like to assist you today with resolving this colour printing issue. To be honest, it does sound like Mac may have loaded the generic Apple Airprint driver on your printer rather then the HP Full Feature Software and Driver package. Should this be the case then you will only have basic print capabilities. Please follow the steps below to confirm that your HP Officejet is utilising the correct driver on your Mac.   
    1. Click the Apple menu, and then click System Preferences. 2. Click Print & Scan, and then check if the name of your printer displays in the Printers list. 3. Click the name of your printer, click the minus sign (), and then delete the printer.  4. Click the plus sign (), click Add Printer or Scanner, click the name of your printer, 5. Click the Use or Print Using box, and then select the name of your printer in the pop-up menu. Ensure that the Officejet driver is selected and not the Airprint driver.
      6. Click Add to add the printer to the list.  Once your printer has been installed with the correct HP driver, please test printing a colour photo to confirm that the issue has been resolved. Please respond to this post with the result of your troubleshooting. Should the issue persist there are additional software and driver troubleshooting steps I will have you perform. I look forward to hearing from you!

Maybe you are looking for

  • Can't open Firefox 8.0. It crashes immediately.

    I couldn't open Firefox. It would instantly crash - a window would flash and then I would see the Mozilla Crash Reporter . I restarted my computer. It continued to instantly crash. I went online and downloaded the most recent version of Firefox. Just

  • Firefox will not display a complete page only framework w/o background. have reloaded 3X still junk.

    Full page with background does not display.

  • Segment reporting view in FBL1N

    Dear Friends, We have segment reporting and each plant is a different segment. Our various plants deal with common vendor and have same vendor code I need to see the segment view of one vendor in FBL1N report Hence i added "Segment" as a field in SPR

  • How do I keep file menu open after CheckBox has been selected?

    The following represents a written code for a menu with checkboxes. I would like the menu to stay open after a check box has been selected. Does anyone have a suggested modification for this to occur? Thanks, JR public class NewJFrame extends javax.s

  • LOAD FILE with xml

    HI I want to load an xml file into a RDBMS table, using sunopsis xml driver. I try to use an other xml file than the initial that is defined in the driver url. I cannot run this instruction in a XML treatment before the interface : LOAD FILE "C:/AXYU