Problem Accessing Website using Apache

Hi All,
I successfully integrated Apache 2.0.37 with Tomcat 4.1.18.
I can access my web appln(jsp based) successfuly via Tomcat directly as well as Apache on my machine i.e localhost.
But when i try to access the jsp web appln from some other machine on my Network It always gives an Error 404 Not Found whereas I am able to access the web appln directly on Tomcat port.
What could be the reason for this.
I would apprecaite an early answer
Thanks
Raj

Is your server has unique name or fixed ip like abc for instance, you can't use localhost to refer to your server even under LAN environment
To access that particular jsp on fixed IP , try the following
http://abc:port number/jsp location/jsp page without mapping or
http://abc:port number/mapped directory
On local LAN environment , be sure to tick bypass proxy for local addresses in your browser setting

Similar Messages

  • Trying to Access Website using SSL running JAVA from inside ORACLE DB

    Hi,
    I am trying to access website using SSL and running JAVA code from inside Oracle 10g DB server using SSL and Java. I have loaded my java code into Oracle data base. My problem is when I am running same code from outside the DB it is running perfectly fine but when the same code is loaded into DB and trying to run from DB under these environment I am using for running my code:-
    JDK 1.4.2_06
    JSSE 1.4
    Database :- Oracke 10G
    I am getting following Exception:-
    CALL testssl_http_mar20_New();
    java.io.IOException: Unable to tunnel through 123.456.789.123:80. Proxy returns "HTTP/1.1 407 Proxy Authentication Required ( The ISA Server requires authorization to fulfill the request. Access to the Web Proxy service is denied.)
    at com.sun.net.ssl.internal.www.protocol.https.HttpsClient.a(DashoA12275
    at
    com.sun.net.ssl.internal.www.protocol.https.HttpsClient.doConnect(DashoA12275)
    at
    com.sun.net.ssl.internal.www.protocol.https.NetworkClient.openServer(DashoA12275
    at com.sun.net.ssl.internal.www.protocol.https.HttpClient.l(DashoA12275)
    at com.sun.net.ssl.internal.www.protocol.https.HttpClient.<init>(DashoA1
    2275)
    at com.sun.net.ssl.internal.www.protocol.https.HttpsClient.<init>(DashoA
    12275)
    at com.sun.net.ssl.internal.www.protocol.https.HttpsClient.a(DashoA12275
    at com.sun.net.ssl.internal.www.protocol.https.HttpsClient.a(DashoA12275
    at
    com.sun.net.ssl.internal.www.protocol.https.HttpsURLConnection.connect(DashoA122
    75)
    at
    com.sun.net.ssl.internal.www.protocol.https.HttpsURLConnection.getInputStream(Da
    shoA12275)
    at java.net.URL.openStream(URL.java:924)
    at SecureURLhttp_Mar20_New.SecureURLhttp_Mar20_New(
    source code is below :-
    import java.io.*;
    import java.net.*;
    import java.security.*;
    import java.util.*;
        public class SecureURLhttp
              public static void main(String[] args) throws Exception
                  SecureURLhttp r = new SecureURLhttp();
                  r.SecureURLhttp();
        public static void SecureURLhttp() throws IOException
                System.setProperty("java.protocol.handler.pkgs","oracle.aurora.rdbms.url|com.sun.net.ssl.internal.www.protocol");
                System.setProperty("https.proxySet","true");
                Authenticator.setDefault(new MyAuthenticator());
                System.setProperty("https.proxyHost","123.456.789.123");
                System.setProperty("https.proxyPort","80");
               //  URL verisign = new URL("https://login.oracle.com/");
                URL verisign = new URL("https://www.verisign.com");
                BufferedReader in = new BufferedReader(new InputStreamReader(verisign.openStream()));
                String inputLine;
                while ((inputLine = in.readLine()) != null)
                System.out.println(inputLine);
                in.close();
                 /* Code Newly Add for checking the system property   */
                java.util.Properties props = System.getProperties();
                java.util.Enumeration propNames = props.propertyNames();
                 while (propNames.hasMoreElements ())
                 Object o=  propNames.nextElement();
                 String name = (String ) o;
                 String val =  props.getProperty(name)   ;
                 System.out.println ( name +  "  = "  + val );
        private static class MyAuthenticator extends Authenticator {
              protected PasswordAuthentication getPasswordAuthentication() {
                   return new PasswordAuthentication("<USERNAME>",new String("<USER_PASSWORD>").toCharArray());
         }Please help me out:
    Thanks a lot in advance.

    0- the fact the ISA server logs an 'anonymous' seems logical, since it answers by HTTP 407. I will say it's even a "good log" :) but I had preferred a good old "security exception" but it's not the case..
    1- The code for checking the properties (your debugging) should be placed BEFORE trying to connect to the url if you want to see what's happening
    2- The 'normal' way to set the proxy is to set the following properties
    System.setProperty("http.proxySet","true"); // and NOT https.proxyset as ejp said
    System.setProperty("http.proxyHost","123.456.789.123");
    System.setProperty("http.proxyPort","80");
    3- what's the behavior if you change 123.456.789.123 by the real name (hostname) of the server ?
    4- You can try setting up the proxy in the java control panel instead of in your code (easy to do under Windows, you look for the networking settings, and you find the proxy settings for http/https there. Otherwise look for all files called net.properties and edit them).
    5- to help debbuging, we can rely on several methods of Authenticator :
    protected PasswordAuthentication getPasswordAuthentication() {
    System.err.println(".\tgetRequestingHost: " + getRequestingHost());
    System.err.println("..\tgetRequestingSite: " + getRequestingSite());
    System.err.println("...\tgetRequestingPort: " + getRequestingPort());
    System.err.println("....\tgetRequestingProtocol: " + getRequestingProtocol());
    System.err.println(".....\tgetRequestingPrompt: " + getRequestingPrompt());
    System.err.println("......\tgetRequestingScheme: " + getRequestingScheme());
    return new PasswordAuthentication("<USERNAME>",new String("<USER_PASSWORD>").toCharArray());
    Try all this and let us see the output messages.
    Please remember to give some 'duke stars' if it helped resolving the problem ;)
    NephYliM

  • SSO with a website using Apache Httpclient form post

    Hi ,
    I am trying to obtain, SS0 with a website, that accepts the user information via post.
    I tried using app Integrator, but the website sends a cookie in first request, and redirects to another URL. App Integrator is only catching the first response.
    Thus i tried implementing this Form post using Apache HTTPClient class inside the Abstractportacomponent, as shown..
    The login is taking place. But, When i click on any link on the page, It is redirecting to the login page again, I am wondering where should i give the Cookie, so the portal request will include that cookie in its subsequent requests, so that i wont be prompted for login agian..
    thank you,
    chiranjeevi.
    public void doContent(IPortalComponentRequest request, IPortalComponentResponse response)
        {try
                      String url = "http://www.xxxxxxxxxxxxx.com/gold_online/validate.asp";
                      //Here, calling the timberline comes into place.
                       HttpClient client = new HttpClient();
                        PostMethod method = new PostMethod (url);
                        method.setFollowRedirects(false);
                        method.addParameter( "code","xxxxxxx");
                        method.addParameter( "upass", "xxxxxx" );
                                  int statusCode = client.executeMethod( method );
                        if( statusCode != -1 ) {
                             // The Status code for this first request is 302..which is a redirect with the redirect path
                             Header locationHeader = method.getResponseHeader("location");
                             Header cookie = method.getResponseHeader("set-cookie");
                             String redirectedURL = locationHeader.getValue();
                             String host = "http://www.xxxxxxxxxxxxxx.com/gold_online/";
                             redirectedURL = host+redirectedURL;
                             GetMethod method2 = new GetMethod (redirectedURL);
                             method2.setFollowRedirects(false);
                             method2.setRequestHeader("cookie",cookie.getValue());
                             method2.addRequestHeader("Accept", "image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, /");
                             int statuscode2 = client.executeMethod( method2);
                             String contents  = method2.getResponseBodyAsString();
                             // Converting the Relative URLs to Absolute URLs
                             contents = replace (contents,"src=\"","src=\""+host);
                             contents = replace(contents,"href=\"","href=\""+ host);
                             Cookie ck = new Cookie("cookie", cookie.getValue()) ;
                             //adding the cookie to the response...
                             response.addCookie(ck);
                             response.write(contents);
                          method.releaseConnection();

    Hi Manish,
    first, welcome on SDN! About your question:
    The URL iView in SP9++ has been reported quite instable from different sides (just do a look on "URL iView" within this forum). The alternative for the aim you have is to use the good "old" application integrator iView, which behaves very stable and will do what you want without hesitating...
    Also see URL iView and HTTP System - SSO to web app
    Hope it helps
    Detlev
    PS: Please consider to reward point for helpful answers on SDN. Thanks in advance!

  • Problems with SSL using Apache proxy

    I'm trying to use Apache+mod_ssl+openssl on linux RedHat 6.2 and mod_wl_ssl from WLS 5.1+SP5. Setting PathTrim in httpd.conf I'm able to send http request
    to WebLogic Cluster located on outside machines. However, https requests don't work and I receive the following messages in httpd's error_log
    [Fri Sep 1 13:44:01 2000] [notice] Apache/1.3.12 (Unix) mod_ssl/2.6.6 OpenSSL/0.9.5a configured -- resuming normal operations
    [Fri Sep 1 13:44:28 2000] [notice] child pid 12329 exit signal Segmentation fault (11) Do you receive the same message in error_log
    Any help you can provide will be appreciated.
    Enrico

    My client (Netscape browser) are making SSL connection to Apache.
    I would use SSL3 from client to Apache then read the client certificate from
    WebLogic (in back-end) servlet to check the user's attribute from ldap
    server. Could you tell me if there is some example of keeping client
    certificate from front-end web server to WebLogic servlet?
    Thanks,
    Enrico
    Michael Girdley <[email protected]> wrote in message
    [email protected]..
    >
    >
    You're making SSL connections from Apache to WebLogic? Or your clientsare
    making SSL connections to Apache?
    Thanks,
    Michael
    Michael Girdley
    BEA Systems Inc
    "enrico notariale" <[email protected]> wrote in message
    news:39b5fa6f$[email protected]..
    I'm trying to use Apache+mod_ssl+openssl on linux RedHat 6.2 andmod_wl_ssl from WLS 5.1+SP5. Setting PathTrim in httpd.conf I'm able tosend
    http request
    to WebLogic Cluster located on outside machines. However, https
    requests
    don't work and I receive the following messages in httpd's error_log
    [Fri Sep 1 13:44:01 2000] [notice] Apache/1.3.12 (Unix) mod_ssl/2.6.6OpenSSL/0.9.5a configured -- resuming normal operations
    [Fri Sep 1 13:44:28 2000] [notice] child pid 12329 exit signalSegmentation fault (11) Do you receive the same message in error_log
    Any help you can provide will be appreciated.
    Enrico

  • Unable to access website using home network but able to access using school network.

    Hi, I'm currently on a MacBook Pro running OS X Mountain Lion and Safari v6.0.4.
    As per the title, I'm unable to access particular websites, namely abduzeedo.com and fromupnorth.com, using my home network but when I try to access using my school network, I can access it freely.
    The error message I get is: "Safari can't open the page [website] because the server where this page is located isn't responding"
    I've tried clearing my cache, resetting my IP, deleting the library file (or whatever it was that some people suggested in forums) but it still doesn't work ):
    Any suggestions?

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, or by a peripheral device.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including Wi-Fi on certain iMacs.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • Problems Accessing Website with Safari 4.1

    We have a person that cannot access www.fowa.org using Safari 4.1 using Mac OSX 10.4.11 - any access problems we need to know about? Access is no problem on multiple other versions of Safari, Firefox, MACS and PCS. Cannot replicate the problem.
    - thanks in advance

    HI,
    Try this. From the Safari Menu Bar click Safari/Preferences then select the Security tab. Click: Show Cookies Delete all cookies associated to that site. Click the Autofill tab. Click the Edit button next to: Other forms. Delete .fowa.org
    Relaunch Safari. Navigate to that site and see if that helped. If not...
    Quit Safari. Open Keychain Access (Applications/Utilities) Select Passwords on the left.
    Delete the fowa.org keychain. Relaunch Safari. Navigate to the fowa.org site. Login with the user name and password as usual. Click Yes, when prompted.
    Carolyn

  • Problem accessing internet using time capsule after update to mountain lion

    After updating my macbook air to moutain lion i am having some trouble accessing internet.
    Evertytime i re-start my mac or airport utility i am able to access internet properly. After sometime when i access some particular sites, internet access goes down and i need to restart time capsule to access internet again.
    Even though in airport utility internet is marked as disconnected, time capsule's indicator is still glowing green colour.
    I tried deleting the com.apple.timemachine.plist file from /Library/Preferences/, but still no luck.
    Is anybody else also facing the same problem? How can i resolve this problem?

    Is the time capsule the only router in the network?
    Try setting the lease time in the TC to very short value.. 20min or even less, 10min. It will not add signficant network traffic but might keep the Air updated to the TC.
    I would also use SMB compatible name for the TC as well as wireless.. ie short, no spaces.. pure alphanumeric.
    Set a different name for 5ghz so it cannot swap around.
    And lock the wireless channels. Try each channel in turn, to see if any are better.

  • Problems accessing Forte using C++

    We're building an extension for use with a 3rd party application that
    integrates the application with a Forte application. The extension is a DLL
    that is written in C++ and the headerfiles and libs generated by the Forte.
    The problem is that the app crashes with the following message when I try
    to call the ForteStartup() function:
    Unhandled Exception in TheApp.exe (QQKN.DLL): 0xC0000005: Access Violation
    When I debugged the extension I noticed that the program crashes in the
    function qqos_GetEnv.
    In order to find out if the 3rd party app was the cause, we built two test
    applications. One is a console application and works fine, the other is a
    MFC application and results in the same exception.
    It seems that exception has something to do with the nature of the
    application (Window or console). Does anyone have clue?
    Environment:
    WinNT 4.0 SP3
    Forte 3.0.F.2
    MSVC 5.0 SP3
    Regards,
    Joost Huizinga
    IMPORTANT:
    Due to problems with our mail server, you cannot reply directly to this
    message.
    In order to reply, please send your email explicitly to [email protected]
    Joost Huizinga mailto:[email protected]
    Mediasystemen B.V., a Triple P Company phone: +31-(0)23-5259010
    P.O.Box 32, 2060 AA Bloemendaal fax: +31-(0)23-5260072
    The Netherlands http://www.mediasys.triple-p.com

    Ok ,well I just got a email from Yahoo Support (I sent many,many)and in the beginning they kept insisting it was malware,or a virus,this now has changed.
    The email says they're currently investigating the issue and have determined
    that this is a problem on their end. They are working to resolve this.
    I do hope that a lot of people who are experiencing this have not let up on
    contacting Yahoo,and I do know that they are hard to contact,the support
    is not easily obtained,but you just have to be persistent till you get one person
    who is willing to go beyond the standard answer they give to a lot of problems
    people present to them..and this isn't just Yahoo,but others,who will automatically blame it on a virus,ad-ware,malware-or in this case even the
    firefox browser.
    So please submit your complaints to Yahoo this will make them work harder
    if they see how many people are effected .
    I did try the firefox safe mode that was brought up earlier,this did not do anything
    and I more or less felt it wouldn't,but wanted to give it a try.
    Now I will wait to see how long it takes for Yahoo to resolve this problem.

  • Problem accessing Infosets using Query with SQL

    Hi,
    I have Lumira desktop version 1.18.0.
    Using the Query with SQL connection, I successfully connected to SAP R/3 6. I was able to view the User Groups under CATALOG_VIEW, but it seems I cannot go beyong this point and select an Infoset. When I click on an Infoset I expect the Query pane to be populated with the SQL statement but nothing happens.
    I attached a screenshot for clarification
    Thanks
    Dany

    Hi Dany,
    A suggestion for you would be to use another client tool & check if the behavior is the same. I suggest that you use Information Design Tool (from BOE 4.1), create a connection to your ERP, then a data foundation on top of that connection and check if the behavior is the same. This way we can isolate if the problem is caused by the client tool or by the backend.
    My 2 cents
    Antoine

  • Problem: Accessing BAPI using SAP System Connector and setting SELOPT_TAB

    Hi,
    I am trying to use the SAP System Connector (based on JCA) to connect to a BAPI and do a search for a customer with EP SP15. (Using BAPI_CUSTOMER_FIND).
    I established the connection and can set simple input parameters, however I didn't find a way for setting the SELOPT_TAB in the IInteraction instance.
    This is what the table should contain:
    Table SELOPT_TAB
    Field Content
    COMP_CODE SPACE
    TABNAME KNA1
    FIELDNAME NAME1
    FIELDVALUE Ma*
    Here the import parameter:
    IMPORT-Parameter
    MAX_CNT 100
    PL_HOLD X
    And here the code for the IInteraction without the SELOPT_TAB that I want to include.
    // Get the Interaction interface for executing the command
    IInteraction ix = connection.createInteractionEx();
    IInteractionSpec ixspec = ix.getInteractionSpec();
    String functionName = "BAPI_CUSTOMER_FIND";
    ixspec.setPropertyValue("Name", functionName);
    String function_out = "RESULT_TAB";
    RecordFactory rf = ix.getRecordFactory();
    MappedRecord input = rf.createMappedRecord("input");
    // put function input parameters
    input.put("MAX_CNT", "100");
    input.put("PL_HOLD", "X");
    MappedRecord output = (MappedRecord) ix.execute(ixspec, input);
    Does anybody know how to set the SELOPT_TABLE as input parameter?
    Any help would be appreciated.
    Regards, Andy

    Maybe your application isn´t run in x84
    #Go to properties of your project ->Build -> changed platform target of "Any CPU" to "x86"
    #Copy these libraries from our 32-bit environment :
    *SAP.Connector.dll
    *SAP.Conector.Rfc.dll
    *librfc32.dll
    *msvcp71.dll
    *msvcr71.dll
    In 64 bits environment:
    1. librfc32.dll to C:WINDOWSsystem
    2. msvcp71.dll to C:WINDOWSsystem32
    3. msvcp71.dll and  msvcr71.dll to C:WINDOWSSysWOW64
    4. SAP.Connector.dll and SAP.Conector.Rfc.dll to C:WINDOWSassembly (DRAG)

  • Problems accessing school website

    I'm trying to get onto the library website for my school and it will not let me. I've never had any problems accessing websites before. This is the first time. I've had my router about a week and a half now. I've been researching my issue all morning and I'm not sure what's wrong. I believe the firmware is up-to-date. I knew a few things about the internet but I am new to networking. Can someone help me?

    Goto www.linksys.com/download and check for latest versio of firmware and update it. It might fix it

  • I'm having a problem accessing Bupers Online using my CAC reader. I get an error that says safari can't establish a secure connection to the website. Does anyone know how to fix this?

    I am having a problem accessing Bupers Online on OS X Mountain Lion. I get an error that says Safari cant establish a secure connection with Bupers Online. Does anyone have any tips to access Bupers?

    I don't use CAC certificates, but since updating to 10.9.3, I too am getting the same error, BUT only with some HTTPS sites (e.g., https://webmail.pairlite.com), not all. Meanwhile, Firefox (was 12.0, now 29.0.1) connects with no issue.
    I too have verified date/time is set automatically, checked for (and fixed) disk integrity errors and permissions, and rebooted, all to no avail.
    Update:
    Well...heck. Tried accessing the problematic site via the Guest account, and that WORKED. So...back to the drawing board.

  • I AM UNABLE TO CONNECT TO ANY WEBSITE USING FIREFOX. EVEN THOUGH, I HAVE BEEN USING FIREFOX ON THE SAME COMPUTER FOR YEARS WITH NO DIFFICULTY. THE PROBLEM AROSE AFTER COMCAST, MY ISP, RECOVERED FROM A WIDESPREAD OUTAGE THAT LASTED 5 HOURS.

    I SUCCEEDED IN TRANSFERING ALL MY BOOKMARKS TO GOOGLE CHROME. THIS WILL ALLOW ME ACCESS TO WEBSITES WHILE I WAIT FOR A METHOD TO REPAIR MY FIREFOX PROGRAM. IN A PREVIOUS MESSAGE, I EXPLAINED THAT I WAS UNABLE TO ACCESS ANY WEBSITE USING FIREFOX AFTER COMCAST, MY ISP, RECOVERED FROM AN OUTAGE THAT LASTED 5 HOURS. WHENEVER I TRIED TO CONNECT TO A SITE, A POP-UP MESSAGE APPEARED INDICATING: "UNABLE TO INITIALIZE THE APPLICATION'S SECURITY COMPONENT. THE MOST LIKELY CAUSE IS PROBLEMS WITH FILES IN YOUR APPLICATION'S PROFILE DIRECTORY. CHECK THAT THIS DIRECTORY HAS NO READ/WRITE RESTRICTIONS." I EVEN REMOVED FIREFOX FROM MY COMPUTER AND DOWNLOADED IT AGAIN, FIGURING THAT BY NOT MERELY USING AN UPGRADE, I WOULD BE INSTALLING A COMPLETELY FRESH DOWNLOAD. UNFORTUNATELY, I RECEIVED THE SAME DISAPPOINTING RESULT, WITH THE SAME POP-UP MESSAGE RE-APPEARING. HOWEVER USING BOTH GOOGLE CHROME AND INTERNET EXPLORER, I WAS ABLE TO CONNECT TO WEBSITES. SO I HAVE TO CONCLUDE THAT THE PROBLEM IS NOT WITH MY INTERNET CONNECTION.

    Press '''START + R''' in keyboard to open the '''Run''' box(or '''start''' then '''run''') , type in the RUN box '''%APPDATA%''' (or copied in just i wrote, bold text) then click '''OK'''. A Windows Explorer window will appear, in this window, choose '''Mozilla''' then '''Firefox''' then '''Profiles'''. Each folder in the "Profiles" folder (e.g., "xxxxxxxx.default") is a profile on your computer (maybe is one file if you have only one profile).
    see for more info : [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile folder - Firefox ]
    try it, good luck
    thanks again

  • Having Problems Accessing my own Website!

    Hello there,
    I had a very strange problem today.  I run a website (http://jag35.com) which I hosted for free on Byethost.com 
    I usually access this from home no problems, for about a year now, today when I tried to call it on my browser (safari on an iMac) it timed out.  Server didn't respond, so I thought my free host of course is down.  
    So to quickly test this I checked another site that I also host on with the same company under the same account (http://vdslruser.com) and that pulled up just fine, so I thought it was strange already.  This lead lead me to check my Who's Online account, basically a small widget that tells you who's online at this moment watching your website (http://whos.amung.us/stats/n3u5yoc1plgi/) this widget tells me that there are people on my website, it even tells me which pages they are one, which makes this situation even more strange.  Other can view my website, but I can't for some reason.
    I immediately thought it was my computer of course.  So I restart my computer, clear out my cache & cookies, flush my DNS cache on my computer, and I still have the same problem, all other pages seem to work just fine, except for my http://jag35.com domain.  I tried the pulling the page on another computer at my house, same problem, then I tried a laptop, same thing.  It's beginning to become even more strange.
    So I restart my router and modem a couple of times, even reset all my settings to make sure the problem isn't there.  Nothing, same problem.  I sent out a twitter message to see if anyone else was having problems viewing my page, everyone says it's fine except for a couple of other people, I then asked those other people who had the same problem, which service provider they were using.  Turned out they were both using Verizon.
    I tried to ping the site and do a trace route and I just keep getting a timeout message, however I also noticed that I get a timed out message on most domains that I try to ping or trace route.  I haven't come up with a solution of figured out where the problem is.  I hope someone that's had the same problem came share some insight  as to what might be a solution.
    I have a feeling, I'm gonna have to change my free host, but I'm just hoping to understand the problem.

    I tried to access your website using a Verizon FiOS connection and it failed.  Running a traceroute suggested that the failure occured after the first hop that did not have "Verizon" in the server name.
    About two hours later I tried and succeeded in accessing your website using a Comcast connection.  It would appear that Verizon has a problem.
    Just for laughs and grins I tried accessing your website using a Verizon DSL connection.  Once again, the connection failed.  Tracert showed the connection failing after first hop without "Verizon" in the server name.  Are you starting to see a pattern here?

  • Can't log on to website to access email using ipad

    I have been able to successfully view emails via my provider's website using my ipad.  That has now changed.  I can't sign on using the ipad.  I have no problem accessing using my imac.  Any idea what has happened?  Any way to fix?
    Thanks,
    tad

    Do all other apps that need the interned work OK? Can you surf the web with Safari with no other noticeable issues?
    Why don't you try using another browser? If another browser works, that would seem to pin it down to an issue with Safari. Google Chrome is a free browser available in the app store. Give that a try now.

Maybe you are looking for

  • Information in Bi Publisher PDF Properties

    Is is possible to have audit information in the properties of the pdf that specifies the authenticity of the document (date of creation, no modifications, date of modifications ...) for legal requirements? Regards Sarah

  • Open new Known Error from CI

    I have a requirement to open a new KNOWNERROR form from device. I am trying through Display Option - am.display.joinfile Related -->Known Errors -->Open I have  included openke action in am.view state, proces is validate.fields. But I am getting a po

  • Re; Tutorial Introduction to ADF/JSTrinidad - jdeveloper

    I am having trouble running the first example form which included adding a state selection drop down and a city selection drop down. I get the following error from the OCBJ embedded server when I right click on the dialog.. form and select run. [Star

  • Authorization check - Lvel: Program/Tcode - report/SM30/odr

    How do we identify if an authority check should be given 1) at the Program(Report) level or 2) at the T-code level itself? Is there any other level we can do it? For SM30s / tablemaintenances, how do we do it? Suppose we have a  T-code with SM30 for

  • Final Cut Express 4 - Can not display CANVAS or TIMELINE

    In just one of my projects the Canvas and Timeline doesn't appear. Window>Arrange>Standard does not affect this. Selections for Canvas and Timeline are all grey'd out. My Browser window shows the tabs for my sequence and Effects tab. Clicking or doub