Can't compile any JSP : method handlePageException(...) not found

Hello,
I installed JDev 9.0.3 yesterday, it did compile my JSP pages, but today it won't, even after reinstalling it.
I get the following error messages for every page :
Error: method handlePageException(java.lang.Throwable) not found in class javax.servlet.jsp.PageContext
Error(16,45): method doAfterBody not found in class org.apache.struts.taglib.template.InsertTag
Error(16,93): variable EVAL_BODY_AGAIN not found in interface javax.servlet.jsp.tagext.BodyTag
Does anyone know what this could mean ? I have added all libraries in the project's "library" tag, to no avail.
Thanks.
P.

Lynn -
I tried making a new page with JDev's wizard : File -> New -> Web Tier -> JSP -> JSP Page. This minimal page contains only a "hello world" message, and has got no taglib. I still get :
Error: method handlePageException(java.lang.Throwable) not found in class javax.servlet.jsp.PageContext
when I compile it.
j2ee.jar is in Path and libraries ; my libraries are "JDev Runtime, JSP Runtime, Oracle XML Parser v2" and a bunch of our libraries.
Any ideas ?
Thanks.

Similar Messages

  • Error in compiling: file javax\servlet\jsp\PageContext.class not found

    Hi,
    i'm getting an error when I'm trying to compile an java file. The error is as follows:
    cannot access javax.servlet.jsp.PageContext
    file javax\servlet\jsp\PageContext.class not found
    Isn't the javax package included in jdk? I've installed jdk 1.3.1_03 and j2re1.4.0_02. Shouldn't this PageContext.class be automatically loaded when i've installed jdk?
    I'm getting desperated! I've tried almost everything: i've changed the classpath, moved the directory of the java file I'm trying to compile over and over but i'm getting no success!
    Any help is very welcome!
    Thankx,
    Nuno.

    hmmm... i had a look and it seems that what you are trying to "import" is actually in a package... instead of import try:
    package javax.servlet.jsp;you may need to go download this "package" and complile it in the directory you are working in.
    my advice: try the above statement (which does compile for me), if it doesn't work, you will need to find the source code for this package and compile it just like you do any other source code.
    hope this helps.

  • I can't import any photos. 'Could not copy to requested location' is the given but i have tried importing to both hard drive and external drive.

    i can't import any photos. 'Could not copy to requested location' is the given but i have tried importing to both hard drive and external drive. Help please ?

    Most likely, the "requested location" where you are trying to copy files to does not have WRITE permission, and so you need to change the permissions.

  • Method init not found in class oracle.apps.fnd.cp.request.C

    Hi all,
    I am reffering to Oracle Application Framework Developer’s Guide Release
    11.5.10 RUP3 December 2, 2005
    As given in the document (page 275) Concurrent Processing: Request Submission
    and Monitoring ,I want the Concurrent Processing Request Submission and Monitoring user interfaces available on my OA Framework-based pages.
    I have followed the steps given in the OADevGuide but when the custom CO
    is compiled it gives following error.
    method <init> not found in class oracle.apps.fnd.cp.request.ConcurrentRequest.
    The import statement in our code is as followed
    import oracle.apps.fnd.cp.request.ConcurrentRequest;
    import oracle.apps.fnd.cp.request.RequestSubmissionException;
    wheather I have to open a SR on metalink asking for an updated file ConcurrentRequest.class ?
    Thanks in advance,
    Anant.

    Hi All,
    Thanks Prabhat for that update.
    Thanks tapashray cause u r update on thread Apply not being caught in debugger helped me a lot.
    Right now I am facing a different problem.
    On click of submit button The page gets called but it gives error as
    oracle.apps.fnd.framework.OAException: Could not load application module 'oracle.apps.fnd.cp.srs.server.RequestAM'.
    In myprojects folder under oracle dir at reqd path I have this AM .
    Whether I need to add the bc4j pkg "oracle.apps.fnd.cp.srs.server.RequestAM" in my project . I dont think so as I am not extending any class/VO or doing any substitution.
    my code is as followed
    public void processFormData(OAPageContext pageContext, OAWebBean webBean)
    System.out.println("Inside ProcessFormData");
    if (pageContext.getParameter("Submit")!= null )
    System.out.println("Inside Submit ");
    try
    // get the JDBC connection
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    //Connection conn = (Connection)am.getOADBTransaction();
    OADBTransaction conn = am.getOADBTransaction();
    System.out.println("OADBTransaction conn "+conn);
    ConcurrentRequest cr = new ConcurrentRequest(conn.getJdbcConnection());
    System.out.println(" ConcurrentRequest cr "+cr);
    cr.setDeferred();
    // call submit request
    Vector param = new Vector();
    String selectedValue = pageContext.getParameter("reportList");
    System.out.println("selectedValue -> "+selectedValue);
    param.add(selectedValue);
    System.out.println("before cr.submitRequest ");
    int reqId = cr.submitRequest("SQLGL", "RGFSGXML", "Run FSG and XML Publisher",null, false, param);
    // int reqId = cr.submitRequest("SYSADMIN", "FNDSCURS", "User Responsibility Report",null, false, param);
    System.out.println("After cr.submitRequest reqId "+reqId);
    conn.commit();
    System.out.println("After commit");
    // redirect page to Request Scheduling page
    HashMap parameters = new HashMap();
    String url = "OA.jsp";
    parameters.put("akRegionApplicationId", "0");
    parameters.put("akRegionCode", "FNDCPPROGRAMPAGE");
    String id = "" + reqId + "";
    parameters.put("requestMode", "DEFERRED");
    parameters.put("requestId", id);
    System.out.println("before page forward ");
    pageContext.setForwardURL("BSE_CONC_REQUEST"
    ,OAWebBeanConstants.KEEP_MENU_CONTEXT
    ,null
    ,parameters
    ,true
    ,OAWebBeanConstants.ADD_BREAD_CRUMB_NO
    ,OAWebBeanConstants.IGNORE_MESSAGES);
    catch(RequestSubmissionException reportError)
    System.out.println("RequestSubmissionException raised "+reportError.getStackTrace());
    catch(SetDeferredException deferred)
    System.out.println("SetDeferredException raised "+deferred.getStackTrace());
    super.processFormData(pageContext,webBean);
    Hope I have given all the details.
    Regards,
    Anant.
    Message was edited by: Removed the error stack so that thread details remain on the same page
    Anant

  • UI Error 'Method clone not found in class java.lang.Class'

    When attempting to view an application window in the User Interface error I receive the error 'Method clone not found in class java.lang.Class'. The window will run correctly when I execute the application and other objects on the window are displayed correctly in the UI editor.
    Within the window class I have used the following line of code to clone a reference list of values that is loaded just once when the application starts up: -
    dsDefaultComboBoxModel priorityComboBoxModel = (dsDefaultComboBoxModel) dsReferenceLuLists.priorityComboBoxModel.clone();
    And then this line of code to create a combo box: -
    dsGuiComboBoxRefelu priorityComboBox = new dsGuiComboBoxRefelu(priorityComboBoxModel,ReportWindowSql.priorityCodeBuffer);
    And then later on the combo box is displayed.
    detailsArea.add(priorityComboBox, new XYConstraints(250,10,dsGlobalVariables.gvFieldWidthLarge,-1));
    'dsDefaultComboBoxModel' is defined as follows: -
    public class dsDefaultComboBoxModel extends DefaultComboBoxModel implements Cloneable
    public dsDefaultComboBoxModel()
    public Object clone()
    try
    return super.clone();
    catch ( CloneNotSupportedException e )
    // Shouldn't happen.
    throw new InternalError( e.toString() );
    This error occurs using the latest v903, but was also present in previous versions of JDeveloper.
    At the moment this means that I did to execute the window in order to see all of the GUI elements that are displayed. As on option I could use something other than the clone method, but it seems to be such a nice way of copying the static reference lists.
    Thanks for any help.

    Hi Darren,
    My guess is that since DefaultComboBoxModel doesn't implement Cloneable, you can't call super.clone(). Does your code compile?
    Later.
    Dennis

  • Compilation Error for import classes not found in generated Proxy Class

    Hi,
    We are generating java classes for the COM dll using JCOM com2java compiler.
    We are getting a compilation error for import class not found when compiling the
    generated Proxy java source code. It can't find the com.bea.jcom.Dispatch class that
    the generated Proxy java source code extends. It also can't find com.bea.jcom.Variant
    or com.bea.jcom.Param. These are interfaces or data types or classes used by COM
    library.
    I added weblogic.jar to my class path and the only Dispatch class i found inside
    the weblogic.jar is com.linar.jintegra.Dispatch;
    We have com objects for which we want to develop an EJB client to interface with
    the COM object using JCOM with Native Mode disabled.
    Any help on the compilation error..I tried changing the extends for Dispatch to com.linar.jintegra.Dispatch
    but the other errors are still there.
    To begin with, I think the generated code should not refer to any of the COM data
    types.
    Any help please.
    Thank you in advance,
    Regards,
    Rahul Srivastava
    [email protected]

    Hi,
    I resolved the other errors by changing all references from com.bea.jcom.Variant
    etc to com.linar.jintegra.class name..all were present under the com.linar.jintegra
    package.
    Thank you all anyways,
    Regards,
    rahul
    "Rahul Srivastava" <[email protected]> wrote:
    >
    Hi,
    We are generating java classes for the COM dll using JCOM com2java compiler.
    We are getting a compilation error for import class not found when compiling
    the
    generated Proxy java source code. It can't find the com.bea.jcom.Dispatch
    class that
    the generated Proxy java source code extends. It also can't find com.bea.jcom.Variant
    or com.bea.jcom.Param. These are interfaces or data types or classes used
    by COM
    library.
    I added weblogic.jar to my class path and the only Dispatch class i found
    inside
    the weblogic.jar is com.linar.jintegra.Dispatch;
    We have com objects for which we want to develop an EJB client to interface
    with
    the COM object using JCOM with Native Mode disabled.
    Any help on the compilation error..I tried changing the extends for Dispatch
    to com.linar.jintegra.Dispatch
    but the other errors are still there.
    To begin with, I think the generated code should not refer to any of the
    COM data
    types.
    Any help please.
    Thank you in advance,
    Regards,
    Rahul Srivastava
    [email protected]

  • The getBuiltInScopes method was not found

      I have an application that has worked for quite a while. I have made no changes to the code since the last time I used it. Basically, the code creates a zip file with input for an involved report. I used it in March of this year it worked fine. I've been assured by the gov't sysadmins and DBAs that nothing has changed, but I still get the attached error. Any ideas?    I have just heard from a friend who knows CF, that it could be a version issue.  I am currently running 8 and I believe he is running 10.   If this is an issue, is the solution somewhere on this site?   I do minimal CF and am at a loss.   The function that is throwing the error is when a button is clicked, a javascript routine is run which combines all the files requred for the zip file.   Yesterday, another application started throwing the error.  I haven't been through the code yet, but it is another button being clicked, and I'm sure, another javascript error.

    The SysAdmin sent me the application log:  Since it is a government site, I changed identifying things to XXXX  or xxxx.
    "Error","ajp-bio-8012-exec-2091","09/26/14","11:43:33","XXXXransfer3","The getBuiltInScopes method was not found.Either there are no methods with the specified method name and argument types or the getBuiltInScopes method is overloaded with argument types that ColdFusion cannot decipher reliably. ColdFusion found 0 methods that match the provided arguments. If this is a Java object and you verified that the method exists, use the javacast function to reduce ambiguity. The specific sequence of files included or processed is: \\haffs002\ProdData\Sites\xxx\IE\XXXX\secure\Authorization\FundingRequestForm_Action.cfm, line: 113 "
    Line 113 is: document.form1.actiontaken.value = "approve"
    The user clicks on a button to Approve or Disapprove a request.  This causes another screen to be displayed.  The error is happening before the 2nd screen is displayed.

  • Junit AssertionFailedError - method 'null' not found

    After running the TestSuite, everytime I click on "null" in Eclipse under Failures, I get "method 'null' not found".
    The Failure Trace says "junit.framework.AssertionFailedError".
    just running one class through the TestSuite and have commented all my assertion statements but still get this error. Any pointers ?
    Thanking you

    I once encountered this issue. The cause was I put some code in the class (which inherits from TestCase) constructor.
    After I remove the constructor, everything went OK. Hope this help.

  • Method getConnection not found

    hi am having this method am geting error method getConnection not found what could be the problem
    public String login_action() {
    // Add event code here...
    String user = this.getUid().getValue().toString();
    String pwd1 = this.getPwd1().getValue().toString();
    Connection conn;
    try {
    conn = getConnection();
    Statement stmt = conn.createStatement();
    ResultSet rset = stmt.executeQuery ("SELECT 'x' FROM sms_users where user_id = '"+user+"'");
    if (rset.next()) {
    conn.close();
    return "sms0000-v2";
    conn.close();
    } catch (SQLException e) {
    System.out.println(e);
    return "sms0000 Logon";
    }

    thats was easy sorry was not thinking
    public Connection getCurrentConnection()
    Statement st = null;
    try
    // create dummy Statement
    st = this.getDBTransaction().createStatement(0);
    return st.getConnection();
    catch (SQLException s)
    finally
    // close Statement
    if (st != null)
    try
    st.close();
    catch (SQLException s2)
    }

  • Cannot compile any JSPs TODAY!!!!

    I could compile all my JSPs yesterday, but when I came to work, many failed. I can compile a few JSPs that are not so robust.
    I get:
    [java] java.lang.NoClassDefFoundError: javax/servlet/jsp/JspContext
    [java] at java.lang.Class.getDeclaredMethods0(Native Method)
    [java] at java.lang.Class.privateGetDeclaredMethods(Class.java:1647)
    [java] at java.lang.Class.getDeclaredMethods(Class.java:1131)
    [java] at java.beans.Introspector$1.run(Introspector.java:1126)
    [java] at java.security.AccessController.doPrivileged(Native Method)
    [java] at java.beans.Introspector.getPublicDeclaredMethods(Introspector
    .java:1124)
    [java] at java.beans.Introspector.getTargetMethodInfo(Introspector.java
    :989)
    [java] at java.beans.Introspector.getBeanInfo(Introspector.java:370)
    [java] at java.beans.Introspector.getBeanInfo(Introspector.java:207)
    [java] at java.beans.Introspector.getBeanInfo(Introspector.java:193)
    [java] at weblogic.servlet.jsp.StandardTagLib.parseTagDD(StandardTagLib
    .java:1333)
    [java] at weblogic.servlet.jsp.StandardTagLib.parseDD(StandardTagLib.ja
    va:1271)
    [java] at weblogic.servlet.jsp.StandardTagLib.<init>(StandardTagLib.jav
    a:292)
    [java] at weblogic.servlet.jsp.TagLibHelper.loadTagLib(TagLibHelper.jav
    a:314)
    [java] at weblogic.servlet.jsp.JspLexer.loadTagLib(JspLexer.java:145)
    [java] at weblogic.servlet.jsp.JspLexer.mTAGLIB_DIRECTIVE_BODY(JspLexer
    .java:5004)
    [java] at weblogic.servlet.jsp.JspLexer.mTAGLIB_DIRECTIVE(JspLexer.java
    :4842)
    [java] at weblogic.servlet.jsp.JspLexer.mDIRECTIVE(JspLexer.java:4688)
    [java] at weblogic.servlet.jsp.JspLexer.mSTANDARD_THING(JspLexer.java:2
    093)
    [java] at weblogic.servlet.jsp.JspLexer.mTOKEN(JspLexer.java:1879)
    [java] at weblogic.servlet.jsp.JspLexer.nextToken(JspLexer.java:1752)
    [java] at weblogic.servlet.jsp.JspLexer.parse(JspLexer.java:962)
    [java] at weblogic.servlet.jsp.JspParser.doit(JspParser.java:105)
    [java] at weblogic.servlet.jsp.JspParser.parse(JspParser.java:228)
    [java] at weblogic.servlet.jsp.Jsp2Java.outputs(Jsp2Java.java:120)
    [java] at weblogic.utils.compiler.CodeGenerator.generate(CodeGenerator.
    java:258)
    [java] at weblogic.jspc.runJspc(jspc.java:550)
    [java] at weblogic.jspc.runBodyInternal(jspc.java:409)
    [java] at weblogic.jspc.runBody(jspc.java:318)
    [java] at weblogic.utils.compiler.Tool.run(Tool.java:146)
    [java] at weblogic.utils.compiler.Tool.run(Tool.java:103)
    [java] at weblogic.jspc.main(jspc.java:702)
    [java] Exception in thread "main"
    Why is it trying to use this!! I know its part of J2EE 1.4, but this code worked yesterday with weblogic 8.1 j2ee 1.3 impl!!! What changed??
    frustrated,
    Jay Garala

    Hi,
    I think I have the same problem. This is the error that I get:
    java.lang.NoClassDefFoundError: javax/servlet/jsp/JspContext
    But, I didn't realize what is going on. I'm just trying to write to the page, like this:
    this.pageContext.getOut().write("test");
    And I just simply can't do it, because when I call the method getOut(), I go to the error said above.
    This application was working on the websphere 4, but I can`t deploy it on the Jboss 3.2.3, neither Tomcat 4.1.29, because of this error.
    Can you help me ?
    Thanks in advance

  • Method oadbtransaction not found while running jsp page

    Hi all,
    We are trying to use the below method in jsp, but when are trying its giving error as the method OADBTransaction is not found in corresponding directory, can you please let us know from where we need to download this method from server so that we can run the jsp page from local directory.
    Thanks in advance.
    AppsContext context = ((OADBTransactionImpl)getOADBTransaction()).getAppsContext();
    Regards
    Deb

    Deb,
    To get the object of AppsContext we use following code in jsp
    import      = "oracle.apps.fnd.common.WebAppsContext"
      WebAppsContext wctx = null;
      int userId = 0;
      try {
                  if (Utils.isAppsContextAvailable()) {
                      wctx = Utils.getAppsContext();
                      userId  = wctx.getUserId();
      catch (Exception e) {}Regards,
    Gyan

  • Urgent! Pls help me! Can't compile any *.java files

    I am a new user to Java2SDK. I am using Win2K sever and I have installed Java2SDK1.4.0 in D drive. When I compile any *.java files, a message " 'javac' is not recognized as an internal or external command, operable program or batch file" appears. How can I solve this problem?
    Please help me. I am busy with my homework. Thank you very much.

    In your PATH variable include %JAVA_HOME%\bin;
    For example:
    C:\jdk1.4\bin;

  • [SOLVED] Can't compile any kernels or modules

    I can't compile the kernel, or any kernel modules. I tried the [core] kernel from ABS and the linux-ck kernel from AUR. I also tried to build vhba and nvidia modules.
    I tried the standard cflags and many others.
    All kernel compiles fail (immediately) with:
    scripts/mod/empty.c:1:0: error: code model kernel does not support PIC mode
    /* empty file to figure out endianness / word size */
    ^
    edward_81 had the same problem, with a default makepkg.conf and linux-mainline, which was never resolved.
    I don't know why this file is being compiled in PIC mode. I have not explicitly enabled PIC anywhere I know of. I checked everywhere I know to look.
    Last edited by quequotion (2015-02-04 15:46:10)

    graysky wrote:Try building one of them in a clean chroot.
    Will try.
    Finally got this working:
    Please add V=1 to the make command on line 89 and rebuild with MAKEFLAGS="-j1" to get verbose output.
    make -f ./scripts/Makefile.build obj=scripts/genksyms
    [...snip...]
    gcc -Wp,-MD,scripts/mod/.empty.o.d -nostdinc -isystem /usr/lib/gcc/x86_64-unknown-linux-gnu/4.9.2/include -I./arch/x86/include -Iarch/x86/include/generated -Iinclude -I./arch/x86/include/uapi -Iarch/x86/include/generated/uapi -I./include/uapi -Iinclude/generated/uapi -include ./include/linux/kconfig.h -D__KERNEL__ -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common -Werror-implicit-function-declaration -Wno-format-security -std=gnu89 -m64 -mno-80387 -mno-fp-ret-in-387 -march=native -mno-red-zone -mcmodel=kernel -funit-at-a-time -maccumulate-outgoing-args -DCONFIG_X86_X32_ABI -DCONFIG_AS_CFI=1 -DCONFIG_AS_CFI_SIGNAL_FRAME=1 -DCONFIG_AS_CFI_SECTIONS=1 -DCONFIG_AS_FXSAVEQ=1 -DCONFIG_AS_CRC32=1 -DCONFIG_AS_AVX=1 -DCONFIG_AS_AVX2=1 -pipe -Wno-sign-compare -fno-asynchronous-unwind-tables -mno-sse -mno-mmx -mno-sse2 -mno-3dnow -mno-avx -fno-delete-null-pointer-checks -O2 --param=allow-store-data-races=0 -Wframe-larger-than=2048 -fstack-protector-strong -Wno-unused-but-set-variable -fno-var-tracking-assignments -pg -mfentry -DCC_USING_FENTRY -fno-inline-functions-called-once -Wdeclaration-after-statement -Wno-pointer-sign -fno-strict-overflow -fconserve-stack -Werror=implicit-int -Werror=strict-prototypes -Werror=date-time -DCC_HAVE_ASM_GOTO -D"KBUILD_STR(s)=#s" -D"KBUILD_BASENAME=KBUILD_STR(empty)" -D"KBUILD_MODNAME=KBUILD_STR(empty)" -c -o scripts/mod/.tmp_empty.o scripts/mod/empty.c
    scripts/mod/empty.c:1:0: error: code model kernel does not support PIC mode
    /* empty file to figure out endianness / word size */
    ^
    scripts/Makefile.build:257: recipe for target 'scripts/mod/empty.o' failed
    Last edited by quequotion (2015-02-04 13:40:15)

  • Method addLayout not found in class ...cp.request.ConcurrentRequest

    I am trying to send concurrent request (XML publisher report) through OAF controller.
    But I get next error when compile it:
    Error(46,20): method addLayout(java.lang.String, java.lang.String, java.lang.String, java.lang.String, java.lang.String) not found in class oracle.apps.fnd.cp.request.ConcurrentRequest
    Below the sample of code.
    Please, help me to find a root of cause
    package xxcust.oracle.apps.ap.oie.webui;
    import oracle.apps.fnd.common.VersionInfo;
    import oracle.apps.fnd.framework.webui.OAControllerImpl;
    import oracle.apps.fnd.framework.webui.OAPageContext;
    import oracle.apps.fnd.framework.webui.beans.OAWebBean;
    import oracle.jdbc.OracleCallableStatement;
    import java.util.Vector;
    import oracle.apps.fnd.cp.request.ConcurrentRequest;
    import oracle.apps.fnd.framework.OAApplicationModule;
    import oracle.apps.fnd.framework.OAException;
    import oracle.apps.fnd.framework.server.OADBTransaction;
    public class xxMyPrintCO extends OAControllerImpl
    public static final String RCS_ID="$Header$";
    public static final boolean RCS_ID_RECORDED =
    VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    { super.processRequest(pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OADBTransaction tx = am.getOADBTransaction();
    java.sql.Connection pConncection = tx.getJdbcConnection();
    ConcurrentRequest cr = new ConcurrentRequest(pConncection);
    int xxRequestId = 0;
    // concarent parameters
    String xxp_type = null;
    String applnName = "SQLAP";
    String cpName = "XXKVP_KO1";
    String LayName = "XXKVP_KO1";
    String cpDesc = null;
    try
    cr.addLayout("PER",LayName,"ru","RU","PDF");
    catch(Exception e)
    {throw new OAException("addLayout -" + e.getMessage(), (byte)0);
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    }

    it was a bug described in doc [ID 1360914.1]
    JBO-29000 java.lang.NoSuchMethodError When Calling oracle.apps.fnd.cp.request.ConcurrentRequest.addLayout [ID 1360914.1]

  • Firefox suddenly can't connect to the Internet (Address Not Found)

    OK, so I recently bought a netbook (Asus eeePC) and put Arch on it to dual-boot. I took it with me on a business trip last week, and I was so impressed with Arch I decided to put it on my desktop today (I had used Arch before, but not for a long time). So, as I was chugging along, I pulled up Firefox on my netbook (it's handy to have a secondary computer while installing Linux), and it gave me an "Address Not Found" error when pulling up Google. Firefox had been working just fine (wired or wireless Internet) for all of last week, and I haven't changed anything.
    What's extremely strange is that everything else works. I could pull up Google in Lynx, and I was listening to an Internet radio station (Groove Salad) using cmus, and it worked just fine. Figuring it was just a fluke, I kept going and discovered that I had the same problem on the Desktop once I got around to gettting Xorg and Fluxbox working and after I installed Firefox. It's very strange - the computers are quite different (the netbook is running i686, and the desktop is running x86_64). I have a home file/web server running Gentoo, and I'm able to run Firefox on it using ssh/X-Forwarding, and it works just fine. I can also pull up my server on Firefox on both the Laptop and the Desktop (just on the LAN, not the Internet). I also tried installing SeaMonkey on the netbook just to see, and I got the same results - it can't access Google or anything. Both computers are dual-booting Windows XP and Arch, and Firefox works on Windows for both computers.
    This might be the strangest error I've ever run into on Linux - I'm not sure what to do next to diagnose the issue. I'll gladly post any information anyone thinks is relevant. Any ideas?

    It's definitely a DNS issue. I tried as Statix suggested above and it worked after a little tweaking. I went back and checked my modem, and it listed two DNS servers. I put those in resolv.conf manually and they worked too. My router or modem (192.168.0.1 and 192.168.1.254 respectively) should each be able to handle DNS on their own, but for some reason they aren't. I know it works; Windows XP and Gentoo both set their nameservers to 192.168.0.1 and 192.168.1.254 using DHCP and have no issues. When I tried DHCP on Arch, these were the relevant sections of rc.conf:
    eth0="dhcp"
    INTERFACES=(eth0)
    gateway="default gw 192.168.0.1"
    ROUTES=(!gateway)
    I tried using ROUTES=(gateway) as well (no effect). When I did that, DHCP automatically set my resolv.conf to:
    # Generated by dhcpcd
    # /etc/resolv.conf.head can replace this line
    nameserver 192.168.1.254
    nameserver 192.168.0.1
    # /etc/resolv.conf.tail can replace this line
    So changing the eth0 line in rc.conf to:
    eth0="eth0 192.168.0.100 netmask 255.255.255.0 broadcast 192.168.0.255"
    And putting the nameservers in resolv.conf from the values my modem listed works, but it shouldn't be necessary. I'd rather have it send DNS requests to the router or modem like my other systems work, but at least I have a workaround for the time being. My time is a bit limited, but I'll keep looking into it when I have the chance and post whatever I find. If anyone has any other ideas, I'd appreciate it though. Thanks!

Maybe you are looking for

  • How to create variants for a sequence-f​ile?

    Hello, i have a testplan with custom teststeps. Each step has a new field with type "container" and name "myData", Inside of this container are numeric, string and bool parameter. The parameter inside this container are used to execute the teststep.

  • Hardware Security Modul (HSM) - SAP PI 7.0

    One of my customers want to use a HSM with PI. Did anyone of our partners develop a SAP adapter that supports such an integration?

  • Help me in badi's

    i want to practise badi in my own but i don't know any thing abt badi's please help me in badi so that i can get an idea on badi uses. Edited by: mahesh kumar on Apr 4, 2008 7:26 PM

  • Question for BasicComboBoxEditor use in JComboBox  How can I get right ce

    I use a JComboBox as the editor for JTable.Now I met a problem In use object that BasicComboBoxEditor as the editor for JComboBox that in JTable. I can't get the cell data rightly.I can't get the editing row and column when system call getEditorCompo

  • Oracle.mds.versioning.VersioningNotSupportedException: MDS-01900

    Hi people, I'm trying set a label in my MDS to test customizzations in my application with this code: public void meuMetodo() { try { MDSInstance mds = (MDSInstance)ADFContext.getCurrent().getMDSInstanceAsObject(); VersionHelper vh = VersionHelper.ge