Url variable doesn't work in IE

   Hey guys, my page, www.powerhouse.com/Products/Inventory.php I have a bunch of links that reload the page with a url variable.  If FF 3, this works fine, yet in IE 8 the page does not load.  My error log has the following error:
script '/var/www/powerhouse/public_html/Products/inventory.php' not found or unable to stat
what stupid IE Hack do I need to get this to work?

PHE Admin wrote:
My error log has the following error:  
script '/var/www/powerhouse/public_html/Products/inventory.php' not found or unable to stat
what stupid IE Hack do I need to get this to work?
You don't need any IE hack. I have just tested the page in both FF and IE8. It works just fine in both.
However, it's very noticeable from your error log that it refers to inventory.php (all lowercase), whereas the actual page is Inventory.php (initial cap). The other thing that's noticeable is the path, which indicates your server is running on Linux, which is case-sensitive.
From this, I conclude that you originally coded the page using inventory.php, and later updated it. This suggests that IE8 is probably still using a cached version. Clear your cache, and the problem will probably go away.

Similar Messages

  • URL blocking doesn't work on E4200

    I have the 1.0.03 firmware installed and URL blocking doesn't work.  I assigned the policy to the entire address range and could still access the web site I wanted to block.

    What website? https or http?
    You can't block https...

  • Safari copy url button doesn't work

    I just upgraded from an ipad2 to an iPad air 2. Before, if I wanted to copy and paste a url I'd use the copy button. Now,on the new iPad air 2, the copy button just wipes out whatever I've previously copied, and doesn't copy the url.

    You tap and hold down in the URL field until you get the option to select all. Then you choose the option to select all. An option to Copy appears and you select that and then you should be able to paste that URL into a text field.
    Safari copy url button doesn't work
    I Realize that you must know the steps but I am just double checking. If that is not working for you, and you are not having copy and paste issues elsewhere in other apps, I would try clearing Safari, force close it and then reset your iPad.
    Go to Settings>Safari>Clear History and Website Data
    Now force close Safari. In order to close apps, you have to drag the app up from the multitasking display. Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the app that you want to close and then swipe "up" on the app preview thumbnail to close it.
    Next, reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • USER Exit variable doesn't work in BSP

    Hi gurus
    I made a characteristic variable with user-exit replacement type.
    It get the user id from sy-uname. It works well in Gui version. But when I execute the layout in BSP (WI), it doesn't work.
    But If i do the hard-coding the line from (l_eto_charsel-low   = uid.) to (l_eto_charsel-low   = '4012121'.) it works well.
    The following is my coding.
    Please give me any comment.
      CLEAR eto_charsel.
      DATA l_eto_charsel TYPE upc_ys_charsel.
      DATA  uid type c. "(also I have tried 'data uid type sy-uname')
      uid = sy-uname.
      l_eto_charsel-chanm = i_chanm.
      l_eto_charsel-seqno = '0001'.
      l_eto_charsel-sign  = 'I'.
      l_eto_charsel-opt   = 'EQ'.
      l_eto_charsel-low   = uid.  ++++>
      INSERT l_eto_charsel INTO TABLE eto_charsel.
    ENDFUNCTION.
    Message was edited by: Bryan Lee

    Hi,
    Your patch level seems to be OK.
    pls. try the declaration as 'Data: uid like syst-uname' or you could try directly assigning the sy-uname.
    Try to debug and see the content of the sy-uname, when it hits this code.
    HTH,
    Regards,
    Nataraj.

  • Authorization Variable doesn't work in Workbook

    Hi all,
    I have defined authorization variable for a characteristics in Query. When I run the query, the variable's value can be derived from user's authorization. But when running in workbook, it doesn't work. The value is empty and workbook shows "No Authorization". Does anyone have the same problem?

    Dear Eric,
    Are you sure that you have enabled the authorization object for your InfoProvider? This is something that has to be done in transaction RSSM after an authorization object as been created.
    Greetings,
    Stefan

  • Filter Web Template with URL Cmd: doesn't work with compound infoobject ?

    Hello all,
    I've to filter the query contained on a web template with URL command, but it doesn't work.
    The web template contains only one query, and on the free chars I have 0PLANT.
    I call the web template adding to the normal url the following command:
    &FILTER_IOBJNM=0PLANT&FILTER_VALUE=33
    where 33 is the code of the plant I want to filter.
    The command is executed, I think, because the  result is "NO APPLICABLE DATA FOUND". The fact is that when I execute this query on the Bex filtering 0PLANT by value 33 the data exists.
    May be because 0PLANT on our system is in compound with 0SOURSYSTEM ? In this case, what's the value I can use as filter ?
    Thank's in advance,
    Max

    Hi,
    please see http://help.sap.com/saphelp_nw04/helpdata/en/59/edfe395dd76846e10000000a114084/frameset.htm
    especially:
    If the variant with ending 'EXT' is selected, the fully compounded value has to be entered in the external format, for example, 24.12.2000.
    If the ending 'EXT' is not used, the fully compounded value has to be entered in the internal format, for example, 20001224 for 24.12.2000.
    and
    In the internal display (see table below) you can easily determine the name of the characteristic and the filter value using the URL parameter &snippet_operations=%20 (see also Object Tag for the Properties of Web Templates). Call the Web application with this URL parameter. If you filter using the context menu, the parameters FILTER_IOBJNM and FILTER_VALUE are automatically added to the URL in the Web browser. You can then use the desired values with Command URLs in hyperlinks.
    Heike

  • [BUG]: af:commandButton rendered with requestScope variable doesn't work

    This took me two days to figure out, and I wonder if it is a bug:
    I have a page that can be navigated to on two occassions, let's call them "left" and "right". I want the page to know what side I came from, so I set a requestScope variable on the buttons that navigate to this page, a bit like this:
    <af:commandButton action="toPage">
      <af:setActionListener from="left" to="#{requestScope.sideFrom}"/>
    </af:commandButton>I have two buttons on the page, one is to navigate back to the left and one to navigate back to the right. Only one is rendered, depending on the requestScope.sideFrom variable.
    One says rendered="#{requestScope.sideFrom eq 'left'}" and the other says rendered="#{!requestScope.sideFrom eq 'left'}"
    Only one button works, namely the one for which the rendered property evaluates to true <b>when the button is pressed</b>!! My requestScoped variable doesn't exist anymore when I press the button to navigate back so it's behavior is changed. How weird is that?
    Should I file a bug?
    I refuse to make it a sessionScoped variable and change it back with the return buttons Imho this is what requestScope is for.
    I am on JDeveloper 11.1.1.6

    Wendy,
    To amplify what Timo rightly says: as JSF goes through its merry lifecycle, one of the steps is to rebuild the component tree in memory. When you use the rendered property, that particular component is not in the component tree - it's as if it doesn't even exist according to JSF. Then, when it comes time to deal with events, the event isn't seen or is ignored (I don't know which) because JSF doesn't think that component is present. As Timo also rightly says - this behaviour is why the "visible" attribute was created.
    John

  • Query variable doesn't work

    Help, I have a query with a variable that doesn't work, if I substitute a valid value for the variable it works correctly. What am I doing wrong here?
    SELECT     T1.FormatCode, T0.Account, MONTH(T0.TaxDate) AS Period,
                          CASE MONTH(TaxDate) WHEN 1 THEN SUM(Debit - Credit) END AS January,
                          CASE MONTH(TaxDate) WHEN 2 THEN SUM(Debit - Credit) END AS February,
                          CASE MONTH(TaxDate) WHEN 3 THEN SUM(Debit - Credit) END AS March,
                           CASE MONTH(TaxDate) WHEN 4 THEN SUM(Debit - Credit) END AS April,
                           CASE MONTH(TaxDate) WHEN 5 THEN SUM(Debit - Credit) END AS May,
                          CASE MONTH(TaxDate) WHEN 6 THEN SUM(Debit - Credit) END AS June,
                          CASE MONTH(TaxDate) WHEN 7 THEN SUM(Debit - Credit) END AS July,
                          CASE MONTH(TaxDate) WHEN 8 THEN SUM(Debit - Credit) END AS August,
                          CASE MONTH(TaxDate) WHEN 9 THEN SUM(Debit - Credit) END AS Sept,
                          CASE MONTH(TaxDate) WHEN 10 THEN SUM(Debit - Credit) END AS Oct,
                          CASE MONTH(TaxDate) WHEN 11 THEN SUM(Debit - Credit) END AS Nov,
                          CASE MONTH(TaxDate) WHEN 12 THEN SUM(Debit - Credit) END AS Dec
    FROM         JDT1 AS T0 INNER JOIN
                          OACT AS T1 ON T0.Account = T1.AcctCode
    WHERE     (T0.TaxDate > '12/31/2007') and T1.segment_1 = [%0]
    GROUP BY T1.FormatCode, T0.Account, MONTH(T0.TaxDate), YEAR(T0.TaxDate)
    ORDER BY T1.formatcode
    Segment_1 is the value I what to let the user enter.
    This query also groups by month, so there is a row for each month, each GL account. Is there a way I can collapse this to one line per account? And show each the GL amount of each month across?
    The purpose of this query is to give a report of each GL account with a column amount for each month.
    Thanks

    Peter,
    Using a fully qualified table reference helps.  I mean [dbo\].[xxxx\]
    Check this out
    SELECT T1.FormatCode, T0.Account, MONTH(T0.TaxDate) AS Period,
    CASE MONTH(TaxDate) WHEN 1 THEN SUM(Debit - Credit) END AS January,
    CASE MONTH(TaxDate) WHEN 2 THEN SUM(Debit - Credit) END AS February,
    CASE MONTH(TaxDate) WHEN 3 THEN SUM(Debit - Credit) END AS March,
    CASE MONTH(TaxDate) WHEN 4 THEN SUM(Debit - Credit) END AS April,
    CASE MONTH(TaxDate) WHEN 5 THEN SUM(Debit - Credit) END AS May,
    CASE MONTH(TaxDate) WHEN 6 THEN SUM(Debit - Credit) END AS June,
    CASE MONTH(TaxDate) WHEN 7 THEN SUM(Debit - Credit) END AS July,
    CASE MONTH(TaxDate) WHEN 8 THEN SUM(Debit - Credit) END AS August,
    CASE MONTH(TaxDate) WHEN 9 THEN SUM(Debit - Credit) END AS Sept,
    CASE MONTH(TaxDate) WHEN 10 THEN SUM(Debit - Credit) END AS Oct,
    CASE MONTH(TaxDate) WHEN 11 THEN SUM(Debit - Credit) END AS Nov,
    CASE MONTH(TaxDate) WHEN 12 THEN SUM(Debit - Credit) END AS Dec
    FROM [dbo\].[JDT1\] T0 INNER JOIN
    [dbo\].[OACT\] T1 ON T0.Account = T1.AcctCode
    WHERE (T0.TaxDate > '12/31/2007') AND T1.segment_1 = '[%0\]'
    GROUP BY T1.FormatCode, T0.Account, MONTH(T0.TaxDate), YEAR(T0.TaxDate)
    ORDER BY T1.formatcode

  • ExecuteWithParams with URL parameter doesn't work

    Hi!
    There are a lot of posts about executing VO with parameters, but I'm still stuck on it. I have a VO with WHERE condition like this:
    WHERE TABLE.ID = :IdParm
    I want this binded variable to get populated in jspx page by parameter in URL. I've created a binding for ExecuteWithParams in my pageDef like this:
    <action IterBinding="MyViewGIterator" id="ExecuteWithParams"
    InstanceName="AppModuleDataControl.MyViewG"
    DataControl="AppModuleDataControl" RequiresUpdateModel="true"
    Action="95">
    <NamedData NDName="IdParm" NDValue="${param.IdParm}"
    NDType="java.lang.String"/>
    </action>
    and an executable on this:
    <invokeAction Binds="ExecuteWithParams" id="callExecuteWithParams"
    Refresh="ifNeeded"/>
    so the executables in my pageDef look like this:
    <executables>
    <iterator id="MyViewGIterator" RangeSize="10"
    Binds="MyViewG" DataControl="AppModuleDataControl"/>
    <variableIterator id="variables">
    <variable Name="parameterURL" Type="String"
    DefaultValue="${param.IdParm}"/>
    </variableIterator>
    <invokeAction Binds="ExecuteWithParams" id="callExecuteWithParams"
    Refresh="ifNeeded"/>
    </executables>
    I have a variableIterator that is binded on outputText control on my jspx just to test if parameter gets read correctly and it does.
    What am I doing wrong that query doesn't execute correctly and I don't have any data on my page? I've also tried with refresh condition "Always" but it doesn't help.
    Any help would be much appreciated.
    BB
    Message was edited by:
    Brokenbone

    Hi,
    do the following:
    - In the pageDef file (Executable section), create a "Parameter". The name of this parameter is up to you.
    - the value of this parameter point to #{param.IdParm}
    - In the ExecuteWithParam OperationBinding, select the agument item and select the NDVaue. Open the ExpressionLanguage editor and select the Parameter you just created
    Here's a working pageDef file example:
    <pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel"
                    version="10.1.3.41.57" id="RequestParamTestPageDef"
                    Package="adf.testcases.view.pageDefs">
      <parameters>
        <parameter id="param1" value="#{param.param1}"/>
      </parameters>
      <executables>
        <iterator id="DepartmentsVOWithBindVar1Iterator" RangeSize="10"
                  Binds="DepartmentsVOWithBindVar1"
                  DataControl="AppModuleDataControl"/>
        <invokeAction id="executeDepartments" Binds="ExecuteWithParams"/>
      </executables>
      <bindings>
        <table id="DepartmentsVOWithBindVar1"
               IterBinding="DepartmentsVOWithBindVar1Iterator">
          <AttrNames>
            <Item Value="DepartmentId"/>
            <Item Value="DepartmentName"/>
            <Item Value="ManagerId"/>
            <Item Value="LocationId"/>
          </AttrNames>
        </table>
        <action IterBinding="DepartmentsVOWithBindVar1Iterator"
                id="ExecuteWithParams"
                InstanceName="AppModuleDataControl.DepartmentsVOWithBindVar1"
                DataControl="AppModuleDataControl" RequiresUpdateModel="true"
                Action="95">
          <NamedData NDName="deptId" NDValue="${bindings.param1}"
                     NDType="oracle.jbo.domain.Number"/>
        </action>
      </bindings>
    </pageDefinition>Frank

  • Customer exit variable doesn't work

    Hi,
    I tried to create customer exit for my query but  iam not getting the right result.
    My requirement is to create a Key figure variable that displays Q1 - Q4 based on fiscal year/period (001.2008) entered by the user.
    steps I have taken
    1. created variable MD_VAR for fiscal year/period
    2. created key figure variable MD_VAR_KF where I have the description as Q1 .
    and the result I have is Q&MD_VAR_KF& but I would like to get Q1
    my code
    data: lv_month type n length 3.
    CASE I_VNAM.
    WHEN 'MD_VAR_KF'. "KF variable
    IF I_STEP = 2.
    LOOP AT I_T_VAR_RANGE INTO LOC_VAR_RANGE WHERE VNAM ='MD_VAR'.
    lv_month = LOC_VAR_RANGE-LOW+6(3).
    IF lv_month = '001' OR lv_month = '002' OR lv_month = '003'.
    L_S_RANGE-LOW = '1'.
    ELSEIF lv_month = '004' OR lv_month = '005' OR lv_month = '006'.
    L_S_RANGE-LOW = '2'.
    ELSEIF lv_month = '007' OR lv_month = '008' OR lv_month = '009'.
    L_S_RANGE-LOW = '3'.
    ELSEIF lv_month = '010' OR lv_month = '011' OR lv_month = '012'.
    L_S_RANGE-LOW = '4'.
    ELSE.
    L_S_RANGE-LOW = 'wrong values'.
    ENDIF.
    L_S_RANGE-SIGN = 'I'.
    L_S_RANGE-OPT = 'EQ'.
    APPEND L_S_RANGE TO E_T_RANGE.
    ENDLOOP.
    ENDIF.
    ENDCASE.
    What did I do wrong and  how do I achieve my requirement
    thanks

    When you variable result displays the variable name inside &...& means the variable is not deriving a value.
    Make sure the variable &MD_VAR_KF& is defined as a Text variable and as an Exit variable. Otherwise it won't process it in the exit.
    If Fiscal Period is dependent on Fiscal Year Variant (I can't remember off-hand) then the variant key will preceed the Fiscal Period value in the variable, and the value is always processed based on internal format YYYYMMM.  So your substring will be +6(3) if FYV dependent, and +4(3) otherwise.
    You have focused the issue on the code but didn't clarify how you defined the variable itself. If these settings are correct then you need to debug the code to see what part works and what doesn't, then provide more details.

  • Web URL - Variable input not working

    Hi There,
    I have got following URL for one of my web application -
    http://cccbwde1.xxx.com:8120/sap/bw/BEx?sap-language=EN&CMD=LDOC&INFOCUBE=ZSC_O01&QUERY=QZSC_O01_5002_TEST
    and it works fine. It has got a few variables and as parameter passing I would like to pass on default value to variable.
    Say one of the variable used is S_plant and supply default value 6011 to it, my new URL looks like
    http://cccbwde1.xxx:8120/sap/bw/BEx?sap-
    language=EN&CMD=LDOC&INFOCUBE=ZSC_O01&QUERY=QZSC_O01_5002_TEST*&VARIABLE_SCREEN=X&
    var_name_1=S_PLANT&var_value_ext_1=6011*
    problem I am facing is that it does not show and default value while displaying variable entry screen. Please suggest.
    Regards
    Vikash
    Split the URL for easier display
    Edited by: Arun Varadarajan on Feb 20, 2009 10:45 AM
    Edited by: Arun Varadarajan on Feb 20, 2009 10:46 AM

    Hi Vikash,
    there is a possibility to modify WAD applications by using parameters to call Web applications ([SAP Help|http://help.sap.com/saphelp_nw70ehp1/helpdata/en/43/ef05462480025ae10000000a1553f7/content.htm]). Just tried it with
    a dummy query on our system and it works for queries which are executed directly from Query Designer as well.
    Just give it a try like this extension:
    &BI_COMMAND_1-BI_COMMAND_TYPE=SET_VARIABLES_STATE
    &BI_COMMAND_1-VARIABLE_VALUES-VARIABLE_VALUE_1-VARIABLE_TYPE=VARIABLE_INPUT_STRING
    &BI_COMMAND_1-VARIABLE_VALUES-VARIABLE_VALUE_1-VARIABLE_TYPE-VARIABLE_INPUT_STRING=
    [variable_value]
    &BI_COMMAND_1-VARIABLE_VALUES-VARIABLE_VALUE_1-VARIABLE=[variable_name]
    Your link in total should be like this (if I have not done an error; please also complete the xxx):
    http://cccbwde1.xxx:8120/sap/bw/BEx?sap-
    language=EN&CMD=LDOC&INFOCUBE=ZSC_O01&QUERY=QZSC_O01_5002_TEST&VARIABLE_SCREEN=X&
    BI_COMMAND_1-BI_COMMAND_TYPE=SET_VARIABLES_STATE&BI_COMMAND_1-VARIABLE_VALUES-
    VARIABLE_VALUE_1-VARIABLE_TYPE=VARIABLE_INPUT_STRING&BI_COMMAND_1-VARIABLE_VALUES-
    VARIABLE_VALUE_1-VARIABLE_TYPE-VARIABLE_INPUT_STRING=6011&BI_COMMAND_1-VARIABLE_VALUES-
    VARIABLE_VALUE_1-VARIABLE=S_plant
    If it is not working just let me know.
    Brgds,
    Marcel
    Split the URL for want of seeing the post in whole!!
    Edited by: Arun Varadarajan on Feb 20, 2009 10:44 AM
    Edited by: Arun Varadarajan on Feb 20, 2009 10:46 AM

  • Currency conversion type by customer exit variable doesn't work

    Hi all.
    In my query I need amounts by quarter, applying quarters last date rates as currency conversion.
    Query has Year parameter. Based on this parameter, by customer exits I calculate every quarters last date and use them as currency conversion types.
    The problem is that query DOESN'T APPLY currency conversions!
    I checked TCURR table - currency conversions do exist for applied days
    I checked my customer exits - the date calculation works fine
    I suppose where is something wrong in query processes (customer exits/currency conversions) sequence before running it.
    Someone knows anything 'bout that?

    Check these docs.. and check again.
    [Creating Currency Translation Types|http://help.sap.com/saphelp_nw04/helpdata/en/80/1a6813e07211d2acb80000e829fbfe/content.htm]
    [Use Variables for Currency Conversion|http://www.scribd.com/doc/7061035/How-to-Use-Variables-for-Currency-Conversion]

  • URL button doesn't work after export into ppt/word/pdf

    Hi,
    I am working in Xcelsius.
    Lets say I have placed a URL button in the Canvas and mapped that to a path of the file(which is not actualy an URL),but any path of the file which is present in the local system
    After exporting this dashboard into ppt(or word/pdf),when i click the button,its not redirecting me to a target.
    But during Preview of dashboard,it works fine.But after exporting,the URL button not redirects me to the path specified.
    Rgds,
    Murali

    Hi
    U got any solution for the above problem?
    Thanks
    Kothai

  • URL Cloaking doesn't work with Safari - IE & Firefox work fine

    Hi There,
    just wondering if anyone else has had this problem.
    If I choose "URL Cloaking" from the domain options on my ISP's site, Safari cannot find my site, or links on the site quite often will not work.
    IE on a PC and Firefox on both platforms work fine.
    Does anyone have any suggestions? My Site URL is: www.svelte.net.nz
    Any help would be much appreciated as cloaking hides the .Mac address which is kind of useful.
    Cheers
    Ben

    HI There Tom,
    I turned URL cloaking off so hadn't come back to the forum to see your reply - sorry for this. But now I need to have cloaking back on.
    I'm not an HTML coder so don't know what I'm looking for. I might send this in to Apple and see If I get a response. Anyway, here is the code in case you or someone else knows if the ISP has got something wrong.
    Any help would be much appreciated.
    Cheers
    Ben
    <!-- 13452:33834:www.svelte.net.nz:<a class="jive-link-external-small" href="http://web.mac.com/ben.sciascia/:cloak:">http://web.mac.com/ben.sciascia/ :cloak:</a> --><html>
    <frameset rows="*" cols="*" >
    <frame name="topFrame" scrolling="auto" src="http://web.mac.com/ben.sciascia/" frameborder="NO" marginwidth="0" noresize marginheight="0">
    </frameset>
    </html>

  • URL.openstream doesn't work

    Hi,
    I run the demo program form java tutorial. Code as below:
    import java.net.*;
    import java.io.*;
    public class urltest {
    public static void main(String[] args) throws Exception {
         URL yahoo = new URL("http://www.yahoo.com/");
         BufferedReader in = new BufferedReader(
                        new InputStreamReader(
                        yahoo.openStream()));
         String inputLine;
         while ((inputLine = in.readLine()) != null)
         System.out.println(inputLine);
         in.close();
    but it gives the follow output
    Exception in thread "main" java.net.NoRouteToHostException: Operation timed out:
    no further information
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at sun.net.NetworkClient.doConnect(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.<init>(Unknown Source)
    at sun.net.www.http.HttpClient.<init>(Unknown Source)
    at sun.net.www.http.HttpClient.New(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown So
    urce)
    at java.net.URL.openStream(Unknown Source)
    at urltest.main(urltest.java:30)
    Plz advise.

    Thx Jean, I modify the OS to Windows 95, but the program still don't work
    code:
    import java.net.*;
    import java.io.*;
    public class urltest {
    public static void main(String[] args) throws Exception {
         URL yahoo = new URL("http://www.yahoo.com/");
         HttpURLConnection uc = (HttpURLConnection)yahoo.openConnection();
    uc.setRequestProperty("User-Agent","Mozilla/4.0 (compatible; MSIE 5.5; Windows 95)");
    uc.setRequestProperty("Connection","Keep-Alive");
    uc.setDoOutput(true);
    uc.setDoInput(true);
    uc.setUseCaches(false);
    uc.setRequestMethod("GET");
    uc.setFollowRedirects(false);
    uc.setInstanceFollowRedirects(false);
         BufferedReader in = new BufferedReader(
                        new InputStreamReader(
                        uc.getInputStream()));
         String inputLine=in.readLine();
         //while ((inputLine = in.readLine()) != null)
         System.out.println(inputLine);
         in.close();
    The output is
    Exception in thread "main" java.net.NoRouteToHostException: Operation timed out:
    no further information
    at java.net.PlainSocketImpl.socketConnect(Native Method)
    at java.net.PlainSocketImpl.doConnect(Unknown Source)
    at java.net.PlainSocketImpl.connectToAddress(Unknown Source)
    at java.net.PlainSocketImpl.connect(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at java.net.Socket.<init>(Unknown Source)
    at sun.net.NetworkClient.doConnect(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.openServer(Unknown Source)
    at sun.net.www.http.HttpClient.<init>(Unknown Source)
    at sun.net.www.http.HttpClient.<init>(Unknown Source)
    at sun.net.www.http.HttpClient.New(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.connect(Unknown Source)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown So
    urce)
    at urltest.main(urltest.java:39)
    Plz advise

Maybe you are looking for

  • Save As = spinning beach ball = freeze = what the!

    Short Story: in various applications, at various times, the program stops responding and Force Quit does not work. Usually this occurs when using the SAVE AS function. Long Story. I have an eMac G4 that was running 10.3.8. it was networked at home vi

  • Customization of backup drive

    Is there any way to select exactly where on a particular external FW drive I want to backup to? Also, if I only want to backup my iPhoto library and choose not to backup any other system files or library files, will this be a problem? One other quest

  • Calling function from sql folder vs report

    Hi, A report based on a custom sql folder is taking a long time to run. One of the things that I noticed is that when I run the sql in plsql it takes a long time, but if I remove the row where I call a function, it runs pretty quickly. In general, is

  • How to change "send statements" to each customer

    Hi, Currently we are using send_statements attribute through concurrent request to change appropriatively for each customer. We are unable to group them into different classes and that's why we are following this approach. What I am thinking is, inst

  • Adobe LiveCycle Designer 8 Questions Go Here

    You can use this forum for questions relating to Adobe LiveCycle Designer 8. LiveCycle Designer 8 is available as part of the trial for Adobe Acrobat Professional 8, and will be available in a standalone version in 2007. There are a lot of improvemen