Error message http status 500 when I try to sign in to HBO go

Hi, I'm trying to sign into HBO Go and I keep getting this error message.  Not sure why.  Never had had this problem before.  My iPad is about 2-3 months old.  I restarted it, and same thing happens.  It also says Apache Tomcat/5.5.27    Thanks.

Some other users have been having the some problem over the past few days.  This discussion my help:
"Invalid Address Tap Continue to sign...: Apple Support Communities

Similar Messages

  • Error message - HTTP Status 500 -

    sir,
    i deployed my struts application using simple form bean and am getting the error message HTTP Status 500- . please guide me to solve this problem. im presenting you the source code i had written. please kindly check this and give the solution.
    this is the login.html
    <html>
    <body bgcolor=#23533234>
    <center>
    <pre>
    <form action=login.do>
    <font size=10 color=pink>welcome</font>
    <font size=5 color=pink>
    username:<input type=text name=un>
    <br><br>
    password:<input type=password name=pw>
    <br><br>
    <input type=submit value=G e t    I n>
    </font>
    </form>
    </pre>
    </center>
    </body>
    </html>
    this is the AdminHome.jsp
    Response from AdminHome page
    this is the UserHome.jsp
    Response from UserHome.jsp
    this is the LoginModel.java
    package com.nit.struts;
    public class LoginModel
    public String validate(String name,String pass)
    if(name.equals("user1")&&pass.equals("pass1"))
    return "admin";
    this is the LoginAction.java
    package com.nit.struts;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import org.apache.struts.action.*;
    public class LoginAction extends Action
    public ActionForward execute(ActionMapping am, ActionForm af, HttpServletRequest req, HttpServletResponse res)throws Exception
    UserDetails ud=(UserDetails)af;
    String uname=ud.getName();
    String upass=ud.getPass();
    // String uname=req.getParameter("un");
    // String upass=req.getParameter("pw");
    LoginModel lm=new LoginModel();
    String user_type=lm.validate(uname,upass);
    if(user_type==null)
    return am.findForward("fail");
    return am.findForward(user_type);
    this is the UserDetails.java
    package com.nit.struts;
    import org.apache.struts.action.*;
    public class UserDetails extends ActionForm
    public void setName(String s)
    un=s;
    public void setPass(String s)
    pw=s;
    public String getName()
    return un;
    public String getPass()
    return pw;
    String un,pw;
    this is the struts-config.xml
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <!DOCTYPE struts-config PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"
    "http://struts.apache.org/dtds/struts-config_1_3.dtd">
    <struts-config>
    <form-beans>
    <form-bean name="userform" type="com.nit.struts.UserDetails"/>
    </form-beans>
    <action-mappings>
    <action name="userform" scope="session" path="/login" type="com.nit.struts.LoginAction">
    <forward name="fail" path="/login.html"/>
    <forward name="admin" path="/AdminHome.jsp"/>
    <forward name="user" path="/UserHome.jsp"/>
    </action>
    </action-mappings>
    </struts-config>
    this is the web.xml
    <web-app>
    <servlet>
    <servlet-name>first</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <load-on-startup>0</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>first</servlet-name>
    <url-pattern>*.do</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
    <welcome-file>login.html</welcome-file>
    </welcome-file-list>
    </web-app>
    if(name.equals("user2")&&pass.equals("pass2"))
    return "user";
    return null;
    *this is the                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    javax.servlet.ServletException: java.lang.NullPointerException
         org.apache.struts.action.RequestProcessor.processException(RequestProcessor.java:545)
         org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:486)
         org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
         org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    root cause
    java.lang.NullPointerException
         com.nit.struts.LoginModel.validate(LoginModel.java:7)
         com.nit.struts.LoginAction.execute(LoginAction.java:18)
         org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
         org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
         org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
         org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)

  • I have an error message that comes up when i try to get into itunes... 0x 80092013 can anyone help

    i have an error message that comes up when i try to get into itunes... 0x 80092013 can anyone help

    Hi Katy19831,
    Thanks for using Apple Support Communities.  These articles may help with the error you're seeing:
    Apple software on Windows: May see performance issues and blank iTunes Store
    http://support.apple.com/kb/TS4123
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/ts3297
    Cheers,
    - Ari

  • Acrobat Pro is now constantly giving me the error message (program not responding) when I try and perform any kind of action.

    Acrobat Pro is now constantly giving me the error message (program not responding) when I try and perform any kind of action.

    Hi cruzsanta03,
    Can you please let us know the following:
    - Operating System;
    - Complete version of Acrobat installed;
    - Experiencing this issue with a particular file or all PDF files;
    - Experiencing this issue while performing a particular task or with any task;
    - Files are saved on the local machine or on a share drive;
    - Launch Acrobat in Safe Mode and then check the issue. Hold 'Shift' key and launch Acrobat, and then check the issue.

  • Can anybody help me? i have an error message about internet connectivity when i try to download garage band content every time.

    I am having issues with logicpro x and garage band using marverics.
    After the installation is done when opening the program almost 90% trhu i get an error message content could not download because of internet connectivity.
    I try different connection still same error mesage.
    Any body had the same issue, can you help please

    After the installation is done when opening the program almost 90% trhu i get an error message content could not download because of internet connectivity.
    Is this the in-app purchase, that does not suucceed? Then check this support document:
      GarageBand for Mac (v10.0): Unable to complete in-app purchase
    The error message can also be due to antivirus software or firewalls peventing the installer to contact the store.  Then it would help to boot your Mac into Safe mode, to disable all non-standard extensions and try again to download the additional content:  
    See this:   Mac OS X: Starting up in Safe Mode

  • I get 2 error messages (-50 and -52) when I try to back up data

    Hi, Can anyone please help me.
    When I try and back up my iphone to my imac in itunes OR icloud, I am always asked for authorisation to keep apps from either computer to iphone or visa versa. When I put my password in (which I have changed a few times to try and fix this bug) it says there has been an error in tinues (-50, and then -52). This has been happening for about a year and subsequesntly I am losing important data AND important apps that I use everday for work etc.
    Can anyone help me with this bug fix?
    Thank you. 

    i just upgraded to win 7 also. finish installing win 7. do all the win 7 updates, don't install any antivirus. then re-download itunes for win 7 (64). and install.

  • Error message and black scrren when I try to load new game.

    Hi
    Recently I purchased Restaurant Empire 2 for my pc and I downloaded and installed the game but everytime I try to play it, the first screen loads then a black screen comes up with error message " error opening file SHADER/shadowmi/cubemap+shadow.pso." 
    I have sims 3 installed on my computer and runs with no problem so I assumed this game should be able to run too.  Please help.

    It would help us to know the model of your computer and the OS.
    Did you install the patches for the game?
    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.

  • HT201413 my ipad stopped working and will not start error message 1601 comes up when i try to restore any one have advice on what to do

    my ipad 4 stopped working, it will not switch on, charge nor will it allow me to restore, the errror message 1601 comes up when trying to restore does anyone know how to help as i am not near an apple store to get help

    You have already seen this for Error 9
    This error occurs when the device unexpectedly loses its USB connection with iTunes.  This can occur if the device is manually disconnected during the restore process.  This issue can be resolved by performing USB troubleshooting, using a different USB dock-connector cable, trying another USB port, restoring on another computer, or by eliminating conflicts from third-party security software.
    For a new machine Error 11 !
    Check Hosts file if it is diverting iTunes away from Apple servers.

  • How do I resolve the following error message: HTTP Status 404- The requested resource () is not available. Apache Tomcat/5.5.17

    I log onto the following URL:
    >http://15thcircuit.co.palm-beach.fl.us/web/guest/adminorders/series1<
    I click on a link whose URL is:
    >/15thcircuit.co.palm-beach.fl.us/c/document_library/get_file?folderId=149&name=DLFE-1775.pdf<
    The screen opens with the error message shown in my question above.

    put your biplab folder inside root folder under tomcat\webapps\root
    http://localhost:8080/biplab/hello.jsp

  • How to delete app error message.  This appears when I try free apps.  "says, unable to purchase a certain book and 4 others".  Have reset account and credit info.  Any ideas?

    How do I delete error message that says "unable to purchase certain book and 4 others".  Have reset account ant credit info.  any ideas?

    Have you tried tapping on your id in Settings > Stores on your phone and logging ouy of your account and then logging back in and seeing if that 'refreshes' the account on it ?

  • I get an error message "WebGet request failed" when I try to download Adobe Acrobat every time

    I have tried to download Acrobat Pro 6 times, and continue to get an error message, "WebGet Request Failed".  I need to get this downloaded.  Is there a way to make it work??

    Download onto what system using what means? This is an hopelessly outdated version that is/ may simply not be compatible with modern operating systems...
    Mylenium

  • I'm getting an error message in Lightroom 6 when I try to export a photo. It's "The specified folder is not writable". It doesn't matter which folder I pick, I get the same message. However, if I open the image in photoshop and then save it, it works just

    I've already reset my lightroom preferences, didn't work. I also uninstalled, and reinstalled lightroom. Didn't work either.
    I have no problems with any other programs including photoshop, so this has to be an issue with lightroom.
    Also, I can import from a memory card using lightroom and save to them to the folders just fine, the error only comes when I'm exporting a photo after I'm done editing in.
    I'm running windows 8.1 and the folders are all onedrive folders. (I have unlimited onedrive storage so I take full advantage of it.) I've always saved them this way, and only started having trouble after updating to Lightroom 6

    The problem with write permissions for the OneDrive folder only shows up in Lightroom 6's export dialogue, that's why it's to irritating. Lightroom 5.7.1 is not having that problem nor does the file explorer. The problem also exists on both of my machines. I will try to check for other problems with the OneDrive troubleshooter though: Running the OneDrive troubleshooter - Windows Help   

  • I am getting error message too many redirects when i try to open apps store in iphone 5 ios 6.1 pls help

    Too many redirects error when trying to open apps store in iphone 5 ios 6.1

    Error 2, 4 (or -4), 6, 1000, 9006
    Follow Troubleshooting security software. Often, uninstalling third-party security software will resolve these errors.
    There may be third-party software that modifies your default packet size in Windows by inserting a TcpWindowSize entry into your registry. Your default packet size being set incorrectly can cause these errors. Contact the manufacturer of the software that installed the packet size modification for assistance or follow this article by Microsoft: How to reset Internet Protocol (TCP/IP).
    Verify that access to ports 80 and 443 are allowed on your network.
    Verify that communication to albert.apple.com or photos.apple.com is not blocked by a firewall, or other Internet security setting.
    Discard the .ipsw file, open iTunes and attempt to download the update again. See the steps underAdvanced Steps > Rename, move, or delete the iOS software file (.ipsw) below for file locations.
    Restore your device while connected to a different network.
    Restore using a different computer.

  • Why do I get error message 'disallowed key characters' when I try to access some websites.

    This has happened with two particular websites I've been trying to access. Both are in the same domain (.cam.ac.uk), so is it a problem with them or some setting on my computer?

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    If you use a bookmark then try to navigate to the page by starting from its main (home) page in case the bookmark is corrupted.
    Clear the cache and remove cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"

  • Error message keeps popping up when I try to go to any website

    message: Sorry! Firefox is not responding

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

Maybe you are looking for

  • Oracle 11g: Oracle insert/update operation is taking more time.

    Hello All, In Oracle 11g (Windows 2008 32 bit environment) we are facing following issue. 1) We are inserting/updating data on some tables (4-5 tables and we are firing query with very high rate). 2) After sometime (say 15 days with same load) we are

  • ITunes cannot launch.  An unknown error has occurred (-69)  Please help!

    I have tried everything I know to fix it. Never had a problem with iTunes before. It just won't open at all. With or without my iPod connected. I am at a loss. I've uninstalled, reinstalled.....Thanks for any help!! Jessica

  • Jaxb classpath / which jars?

    typical jaxb sample   <path id="classpath">     <fileset dir="${jwsdp.home}" includes="jaxb/lib/*.jar" />     <fileset dir="${jwsdp.home}" includes="jwsdp-shared/lib/*.jar" />     <fileset dir="${jwsdp.home}" includes="jaxp/lib/**/*.jar" />   </path>

  • Load and Play audio file (either sound or music) from my computer using DirectSound in C++

    #include "stdafx.h" #include <dsound.h> class AudioPlayer private: unsigned long long start_point, playback_point, break_point; bool now_playing, loop, ignore_start_point; int speed; //and any data that stores an audio (can be either sound or music)

  • Solaris Remote Desktop Login to Red Hat 5 Server

    We have a number of Sun boxes running Solaris 8 and 9 and we need them to login to a Server running Red Hat 5. Have edited the /etc/hosts file to include the Red Hat hostname and ip address and when I enter the hostname it acts as if it is connecting