Struts Error while loading a page

Hi Friends,
In our aplication when i try to load a page am getting the following error , please throw some light if you have come across any such exception:
<Error> <HTTP> <101017> <[ServletContext(id=22376268,name=QS,context-path=/QS)] Root cause of ServletException
javax.servlet.jsp.JspException: Cannot find bean null in any scope
at org.apache.struts.util.RequestUtils.lookup(RequestUtils.java:938)
at org.apache.struts.taglib.bean.MessageTag.doStartTag(MessageTag.java:274)
It is very strange that the same .EAR file is workign fine in the dev and the UAT environment but in production it is throwin this error. Am sure its some environment problem, but still searching.If any of you have come across such erro please help.
Thanks
Vishy

Hi,
You have to see your jsp page.
It is usually seen in association with a problematic Struts HTML SELECT custom tag. The Struts
<html:select >
tag behaves differently depending whether one or both of the name and property attributes is specified for its encompassed
<html:options> tags.
If the name attribute is specified, whether or not if the property attribute is specified, then a bean matching the specified name will be expected in some scope (such as page, request, session, or application). If the matching bean is not found in any available scope, the error above will be seen.
There are two ways to address this. The first approach is to put a bean in one of the scopes so that the html:options might be associated with it. The second approach is to not specify the name attribute and instead use only the property attribute.
It would be help out you.
Thanks and Regards
Maruthi.

Similar Messages

  • Struts Error while loading a JSP

    Hi Friends,
    In our aplication when i try to load a page am getting the following error , please throw some light if you have come across any such exception:
    <Error> <HTTP> <101017> <[ServletContext(id=22376268,name=QS,context-path=/QS)] Root cause of ServletException
    javax.servlet.jsp.JspException: Cannot find bean null in any scope
    at org.apache.struts.util.RequestUtils.lookup(RequestUtils.java:938)
    at org.apache.struts.taglib.bean.MessageTag.doStartTag(MessageTag.java:274)
    It is very strange that the same .EAR file is workign fine in the dev and the UAT environment but in production it is throwin this error. AM sure its some environment problem, but still searching.If any of you have come across such erro please help.
    Thanks
    Vishy

    Have you tried asking this on the JSP forum?
    http://forum.java.sun.com/forum.jspa?forumID=45

  • RV120W - critical error while loading web page

    Hello
    I am getting this error when trying to edit QOS / Profile binding. I believe it appeared after I added a second VLAN.
    Firmware Version:
    1.0.3.10
    Firmware MD5 Checksum:
    6300e6c67223a4821c117504dc7ad6d6
    PID VID:
    RV120W-E V01
    Any other suggestions than factory reset ? and if this is the only one, will it be possible to save the config, do the fact reset, and restore the config without having the problem reappearing ?
    Thanks for the help
    E

    Dear Eric,
    Thank you for reaching Small Business Support Community.
    I believe the problem is related to a couple bugs documented for firmware v1.0.3.10; CSCts21176 and CSCtu24324 where the second one better describes the issue:
    Issue—QoS Profile Binding does not work properly for a selected service.
    Workaround—Select the service type Any instead of selecting a particular service
    when configuring a QoS profile. QoS profile binding is then based on an IP address or a
    group of IP addresses.
    My suggestion is to backup the configuration, update the firmware to latest v1.0.4.10 and restore the configuration.  Please take a look at the actual firmware release notes I suggest;
    http://www.cisco.com/en/US/docs/routers/csbr/rv120w/release/notes/rv120_rn_v1_0_4_10.pdf
    Firmware download;
    http://software.cisco.com/download/release.html?mdfid=282981372&softwareid=282487380&release=1.0.3.10
    Backup, restore and firmware upgrade instruction, chapter 7 in admin guide;
    http://www.cisco.com/en/US/docs/routers/csbr/rv120w/administration/guide/rv120w_admin.pdf
    Please do not hesitate to reach me back if there is anything I may assist you with in the meantime.
    Kind regards,
    Below is a link with the
    Jeffrey Rodriguez S. .:|:.:|:.
    Cisco Customer Support Engineer
    *Please rate the Post so other will know when an answer has been found.

  • Error While loading a image from database

    Purpose
    Error While loading the Image from the database
    ORA-06502: PL/SQL : numeric or value error:Character string buffer too small
    ORA-06512: at "Sys.HTP" ,line 1480
    Requirement:
    I am developing the web pages using PSP(Pl/sql Serverpages) . I have a requirement to show a image in the webpage. I got the following procedures from the oracle website.
    I have created the following table to store the images
    create table DEMO
    ID INTEGER not null,
    THEBLOB BLOB
    And I also uploaded the Images. Now I am try to get a image from the table using the following procedure .But I am getting the error message line 25( htp.prn( utl_raw.cast_to_varchar2( l_raw ) );) .at it throws the following error messages
    ORA-06502: PL/SQL : numeric or value error:Character string buffer too small
    ORA-06512: at "Sys.HTP" ,line 1480
    Procedure that I used to get the image
    create or replace package body image_get
    as
    procedure gif( p_id in demo.id%type )
    is
    l_lob blob;
    l_amt number default 30;
    l_off number default 1;
    l_raw raw(4096);
    begin
    select theBlob into l_lob
    from demo
    where id = p_id;
    -- make sure to change this for your type!
    owa_util.mime_header( 'image/gif' );
    begin
    loop
    dbms_lob.read( l_lob, l_amt, l_off, l_raw );
    -- it is vital to use htp.PRN to avoid
    -- spurious line feeds getting added to your
    -- document
    htp.prn( utl_raw.cast_to_varchar2( l_raw ) );
    l_off := l_off+l_amt;
    l_amt := 4096;
    end loop;
    exception
    when no_data_found then
    NULL;
    end;
    end;
    end;
    What I have to do to correct this problem. This demo procedure and table that I am downloaded from oracle. Some where I made a mistake. any help??
    Thanks,
    Nats

    Hi Satish,
    I have set the raw value as 3600 but still its gives the same error only. When I debug the procedure its throwing the error stack in
    SYS.htp.prn procedure of the following line of code
    if (rows_in < pack_after) then
    while ((len - loc) >= HTBUF_LEN)
    loop
    rows_in := rows_in + 1;
    htbuf(rows_in) := substr(cbuf, loc + 1, HTBUF_LEN);
    loc := loc + HTBUF_LEN;
    end loop;
    if (loc < len)
    then
    rows_in := rows_in + 1;
    htbuf(rows_in) := substr(cbuf, loc + 1);
    end if;
    return;
    end if;
    Its a system procedure. I don't no how to proceed .. I am really stucked on this....is their any other method to take picture from the database and displayed in the web page.....???? any idea..../suggesstion??
    Thanks for your help!!!.

  • Error while loading shared libraries: libg2c.so.0

    I just installed g77 and compiled some program I wrote for a computaional physics class. They also compile / run fine with xlf90 and xlf95 on a mac.
    But here, on my intel box I get this error:
    [ryan@dogma Desktop]$ ./a.out
    ./a.out: error while loading shared libraries: libg2c.so.0: cannot map zero-fill pages: Cannot allocate memory
    I know there is plenty of RAM available too.
    Any ideas?

    Check for  Task #2299 — gcc-g77 creates "bad" executables in the bugtracker.  The maintainer has posted a gcc-g77 package to test.  I will test it tonight but another user said that it corrected a problem with octave about the libg2c.so.0 library.

  • Error while loading data

    hi guys
    i got an error while loading infoobject atrributes
    i created characteristic info object "equipment" with Master data and text.
    when i loaded text it was working fine but the problem happened when i start
    loading attributes data.
    error code is as given below
    Check Load from InfoSource D92_EQUIP , Packet infpackage for equipment -attrib
    Please execute the mail for additional information.
    Data records were selected in the PSA
    Diagnosis
    Data records were marked as incorrect in the PSA.
    System response
    If error messages exist for the data records, the corresponding data packets were not updated using the PSA.
    Procedure
    Go into the PSA maintenance for the request and read the logged messages.
    You find the relevant messages for each record in the PSA table by double-clicking on the status of the record.
    Where necessary, edit the incorrect records or remove the error in another way.
    Post the incorrect data packets manually.
    Note that you are only permitted to edit and manually update the request if it is not contained in the request list in the InfoCube (see InfoCube administration). Where necessary, first delete it from the InfoCube.
    any advice ???its says problem with data records..but i couldnt find any
    regards
    abhi
    Message was edited by:
            Abhilash Muraleedharan

    Hi Abhilash,
    You can use the preview functionality in the external page to see if the reords are being pulled properly or not.
    If not then there is some problem with the file which you need to fix. Or might be the setting you have done in selecting the delimiter in BW or any setting. Also check your routines if you are using any.
    If the file is being pulled correctly try seeing the error message under the details tab in the monitor screen. That will give you an idea why the load is failing.
    Hope that helps.
    regards.

  • Error while loading entity  ORM

    entityLoad('Account') throws this error,
    Error while loading entity
    java.sql.SQLException: [Macromedia][Oracle JDBC Driver]Numeric overflow.
    However  entityLoad('Account',1) returns the proper record.
    I am using oracle 10g as a datebase.
    Is this a bug with oracle? entityLoad('Account') should return all my accounts.

    What if you use the offset & maxrows settings to return the whole lot? Does that work?
    If not, it might be bung data: try paging through all the records to see if one page in particular gives you a problem, then you can maybe narrow it down to a specific record.
    Can you profile the SQL that Hibernate is passing to the DB? Anything unexpected about it?
    Adam

  • Error while loading journal template in fdm 11.1.1.2

    Hi Guys,
    I am using Fdm 11.1.1.2. I am getting the following error while loading a journal template
    The following error I am getting while loading the template while using the option Select file from inbox
    Error- The remote server machine does not exist or is unavailable
    The following error I am getting while loading the template using the option upload file
    Error- file upload attempt failed.
    Detail- access to the path c:\hyperion\products\financial data quality\web server components\website\temporary export files\admin******.temp is denied
    An early response is highly appreciated
    Thanks & Regards
    pss

    Hi,
    Did you drop it as ADF table? Can you post the code snippet of your jspx page?
    -Arun

  • Error while Loading the WSDL

    Hi,
    Getting error while loading the WSDL in Browser.Mentioned below is the link which trying to load.
    http://10.162.32.113/DNBDAASEXCMDL4/AdapterProductService?wsdl
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    A string literal was not closed. Error processing resource 'http://10.162.32.113/DNBDAASEXCMDL4/AdapterProductService?wsdl'...
    <xs:element name="POST_CODE" type="a
    Please can any one help on this.

    That's no problem with the wsdl, it's the browser that's not able to show the xml, try on firefox or try using "show page source"...

  • Error While loading into BW using infoPackage

    Hi All,
    While following directions posted at the following wiki page https://wiki.sdn.sap.com/wiki/display/BOBJ/ConfiguretheLoadJobinBW%28DS+3.2%29,
    we get an error while loading data into BW using infoPackage via Data services 3.2
    In SAP BI side Error says :"Error while executing the following command:  -sJO return code:220"
    On DS side for the RFC server log we get the error" Error while executing the following command -sJOB_SQL_TO_DBI -Ubbu -P;(encrypted password) -A (encryted information) -VMODE=F"
    Issue is still open with support as we still cannot excute the job from infopackage. it is succesfully executed from designer, admin console, batch file.
    Any insights/help would be appreciated.
    Thanks.
    Edited by: rana_accn on Jan 26, 2010 6:48 PM

    Sure I will.
    One thing we have noticed is that in the server_eventlog parameter for the  log line "Starting job with command line parameters are different"
    When job is executed from DS side parameters -Ct -Cm -Ca -Cj -Cp -S -N -Q -U -P -G -r -T -Locale are used
    When job is executed from BW side parameters -Ct -Cm -Ca -Cj -Cp -s -N -Q are used
    Also when the job is executed from BW,  log files start getting created but then trace and error file show an error that cannot open database - and that points to DSCentral repository.This repository is not even mapped to the job server and the job has been exported from the correct repository as command line execution of the job works perfectly fine.
    Thnx
    Just an update we were not able to figure out why this happened in the existing environment. One reason given was that somehow the commands which were being executed from BW side were getting corrupted. We had to build a new environment and this is no longer an issue in the new environment, as now all jobs can be executed from BW. Only difference between the 2 environments was we are now on 12.2.1.3 while earlier we were on 12.2.0.0.
    Edited by: rana_accn on Mar 23, 2010 10:21 PM
    Edited by: rana_accn on Apr 29, 2010 9:46 PM

  • Bex Report Designer: Error while loading metadata

    hi experts,
    I am working with BI7 Bex Report Designer and we are using SP9. when i tried to load the Query in Report Designer its giving below error.
    Error while loading metadata.
    Check the Query and portal settings.(but the query is working fine in Analyzer).
    and its giving message class RSBOLAP, message number 018 and Description is java system error: incoming call is not authorized.
    when i double click the error its giving below error details.
    Diagnosis
    An error occurred in the BI components on the SAP J2EE Engine.
    System Response
    Procedure
    Contact your system administrator to have the error analyzed in detail.
    Procedure for System Administration
    Start the Visual Administrator, log on to the SAP J2EE Engine and choose "<J2EE_SID>" ->"Server" -> "Services" -> "Log Viewer".
    The file "defaultTrace.trc" includes detailed information about the error that occurred. In Windows, you can find this file in the Log Viewer under "Cluster <computer name>" -> "Server <server number>" -> "<drive>:\usr\sap\<SID>\JC<INSTANCE>\j2ee\cluster\server<NUMBER>\log". ". In Unix, the file is located under "/usr/sap/<SID>/JC<INSTANCE>/j2ee/cluster/server<NUMBER>/log".
    If the file does not include enough detail about the error, you can increase the log level to obtain more information. To do this, choose "<J2EE_SID>" -> "Server" -> "Services" -> "Log Configurator". On the "Locations" tab page, choose "com" -> "sap" -> "ip" -> "bi" -> "webapplications". Using the selection list on the right side of the screen, you can increase the log level, whereby "DEBUG" represents the log level with the most information. You can save your settings by choosing the "Save" icon. The change to the log level is active immediately. Once you have successfully analyzed the error, you should set the log level back to its default value using the appropriate pushbutton; continuous writing to the log file negatively affects the overall performance of the system.
    could you plz suggest me how to rectify the problem.
    regards
    vadlamudi

    Hi vadlamudi
    The error message RSBOLAP 018 means, that the ABAP stack can't communicate with the Java Stack.
    1) Please ensure, that the user, used for the Report Designer, is valid in the Portal too. Depending on the user management setup this means that there either needs to be the same user or an assigned user in the Portal.
    2) In case the user is valid, it means a basic misconfiguration according to note 937697. In this case please run the Support Desk Tool and ensure, that all checks are green. Please ensure, that the latest version of the Support Desk Tool is used.
    Regards,
    Janine

  • Using FF to access my AOL emails I get "There was an error while loading the message. Please try again later." Access is OK via Chrome, IE & AOL's own desktop.

    "There was an error while loading the message. Please try again later." is a recent (3/4 days) error message I get when accessing my AOL emails. I can access the page and move them between states but cannot open them to read. Chrome, IE and AOL's own desktop open emails OK & can access them from the wife's PC using my AOL details. Have cleaned the history tab of everything in FF, have also removed it with add/rem progs and reinstalled - still I get the above message.
    PC - W7 Pro 64 bit, 16GB RAM etc.

    Hello,
    Certain Firefox problems can be solved by performing a ''Clean reinstall''. This means you remove Firefox program files and then reinstall Firefox. Please follow these steps:
    '''Note:''' You might want to print these steps or view them in another browser.
    #Download the latest Desktop version of Firefox from http://www.mozilla.org and save the setup file to your computer.
    #After the download finishes, close all Firefox windows (click Exit from the Firefox or File menu).
    #Delete the Firefox installation folder, which is located in one of these locations, by default:
    #*'''Windows:'''
    #**C:\Program Files\Mozilla Firefox
    #**C:\Program Files (x86)\Mozilla Firefox
    #*'''Mac:''' Delete Firefox from the Applications folder.
    #*'''Linux:''' If you installed Firefox with the distro-based package manager, you should use the same way to uninstall it - see [[Installing Firefox on Linux]]. If you downloaded and installed the binary package from the [http://www.mozilla.org/firefox#desktop Firefox download page], simply remove the folder ''firefox'' in your home directory.
    #Now, go ahead and reinstall Firefox:
    ##Double-click the downloaded installation file and go through the steps of the installation wizard.
    ##Once the wizard is finished, choose to directly open Firefox after clicking the Finish button.
    Please report back to see if this helped you!
    Thank you.
    <!-- VERY important to include-->
    <b>WARNING:</b> Do not run Firefox's uninstaller or use a third party remover as part of this process, because that could permanently delete your Firefox data, including but not limited to, extensions, cache, cookies, bookmarks, personal settings and saved passwords. <u>These cannot be recovered unless they have been backed up to an external device!</u>

  • Error while loading the runtime repository via HTTP

    Hi Experts,
    I am trying to delete an enhancement and when I enter the component name and the enhancement set in BSP_WD_CMPWB. I get the following error when right click the enhanced view and select delete : Error while loading the runtime repository via HTTP. How do I delete this enhancement?
    Regards
    Abdullah Ismail.

    if for some reason the runtime repository is not coherent, you get an error each time you try to read it (and this is the case when you open a component using the transaction BSP_WD_CMPWB)
    this is because the XML file is interpreted by a CALL TRANSFORMATION statement, and any incorrect node will raise an uncaught exception
    solution:
    enhanced view is contained into BSP application you have created the first time you enhanced the component
    go to SE80 and enter the BSP application where your objects are stored (the name you provided the first time)
    there you can modify directly the objects, including the runtime repository which is stored under node "Pages with flow Logic"
    once the correction is done, you can access again your component through transaction BSP_WD_CMPWB (and delete it properly if this is what you want to do)

  • MainPage.xaml throws an error while loading designer.

    Hello,
    I am new to WIndows store app development.
    I am creating a sample windows store App using VC++ UAP using Visual Studio 2015 CTP5. 
    MainPage.xaml throws an error while loading the designer:
    "The element [Grid] could not be displayed because of a problem with WIndows..UI.Xaml.Control.Grid"
    Exception:
    NullReferenceException: Object reference not set to an instance of an object.
    at Microsoft.VisualStudio.DesignTools.WindowsXamlDesigner.WindowsStoreXamlPlatform.get_ThemeResources()
    at Microsoft.VisualStudio.DesignTools.Platform.InstanceBuilders.ClrObjectInstanceBuilder.FindInstantiatedResource(IInstanceBuilderContext context, ViewNode viewNode, DocumentNode documentNode, DocumentNode keyNode)
    at Microsoft.VisualStudio.DesignTools.Platform.InstanceBuilders.ClrObjectInstanceBuilder.UpdatePropertyOrChildValue(IInstanceBuilderContext context, ViewNode viewNode, IProperty propertyKey, Int32 childIndex, DocumentNodeChangeAction action, DocumentNode valueNode, ViewNode& childViewNode, IInstanceBuilder& valueBuilder, Boolean& isNewInstance)
    at Microsoft.VisualStudio.DesignTools.Platform.InstanceBuilders.ClrObjectInstanceBuilder.UpdateProperty(IInstanceBuilderContext context, ViewNode viewNode, IProperty propertyKey, DocumentNode valueNode)
    at Microsoft.VisualStudio.DesignTools.Platform.InstanceBuilders.DependencyObjectInstanceBuilderBase`1.UpdateProperty(IInstanceBuilderContext context, ViewNode viewNode, IProperty propertyKey, DocumentNode valueNode)
    at Microsoft.VisualStudio.DesignTools.WindowsXamlDesigner.InstanceBuilders.FrameworkElementInstanceBuilder.UpdateProperty(IInstanceBuilderContext context, ViewNode viewNode, IProperty propertyKey, DocumentNode valueNode)
    at Microsoft.VisualStudio.DesignTools.Platform.InstanceBuilders.ClrObjectInstanceBuilder.InstantiateProperties(IInstanceBuilderContext context, ViewNode viewNode, DocumentCompositeNode compositeNode)
    at Microsoft.VisualStudio.DesignTools.Platform.InstanceBuilders.ClrObjectInstanceBuilder.Initialize(IInstanceBuilderContext context, ViewNode viewNode, Boolean isNewInstance)
    at Microsoft.VisualStudio.DesignTools.Platform.InstanceBuilders.ViewNodeManager.InitializeInstance(IInstanceBuilder builder, ViewNode viewNode, Boolean isNewInstance)
    The default contents of MainPage.Xaml for windows 8.1 project is :
    <Page
    x:Class="HelloWorld.MainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:HelloWorld"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">
    <Grid Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
    </Grid>
    </Page>
    The windows Phone 8.1 project loads the MainPage.xaml correctly. What is wrong with MainPage.xaml of Windows 8.1 project ?
    Thanks,
    Kunal

    There is nothing wrong with the code.
    >> using Visual Studio 2015 CTP5. 
    You're using a beta version of Visual Studio. Try using VS2013 instead. There's probably a bug.
    It could also be a problem with your Visual Studio install. Try repairing and/or reinstalling.
    Does taking out the Background property fix the issue? (i.e. just leave a completely empty grid)
    I'm a self-taught noob amateur. Please take this into account when responding to my posts or when taking advice from me.

  • Installing flashplayer 11 on Linux 64 bit - error while loading shared libraries: libX11.so.6

    I've downloaded the flashplayer_11_sa_debug.i386.tar.gz file and extracted it on my RHEL box. When I run ./flashplayerdebugger I get the following error:
    ./flashplayerdebugger: error while loading shared libraries: libX11.so.6: wrong ELF class: ELFCLASS64
    This lib is found in /usr/lib64/libX11.so.6 on this machine.
    It is my understanding that flashplayer has native 64 bit support on Linux and therefore should be compatible with lib64 libaries, so why I am I seeing this error? I've been told it's because it's a 32 bit version of the player....
    I also see this error if I install the flashplayer_11_sa.i386.tar.gz projector instead of the debugger version.
    There don't seem to be any specific 64bit versions of the flashplayer from the download page: http://www.adobe.com/support/flashplayer/downloads.html, yet there seem to be beta releases of a 64 bit Linux player which are no longer available.
    Can anyone help me with this? Where can I get a 64bit v11 flashplayer for Linux?
    Thanks

    Hi MurrayFurtado,
    The builds you are attempting to download from that page are the 32-bit content debuggers and standalone players.  To download the 64-bit players go to http://get.adobe.com/flashplayer (or get.adobe.com/flashplayer/otherversions).
    Since you didn't specify which version of RHEL you have, FP 11 is supported on RHEL 5.6 or later (http://www.adobe.com/products/flashplayer/tech-specs.html).
    Maria

Maybe you are looking for

  • How i can display multiple row from one row

    Hi , i have table called temp_probabaility and contain 2 colomns (id1 , path )the values as below , ID1 Path 3 ;2,4,6 4 ;1;2;3;5 5 ;1;2;3;4;5 i need to convert the values to be like below , id1 path 3 2 3 4 3 6 4 1 4 2 4 3 4 5 please any help ? Edite

  • Iphoto pour OS 10.5.8

    Hello, iphoto has disepeared from my computer, my mac book was delivered without dvd to re-install it, and no support files available. How can I install iphoto back to my computer, without changing my operating system, which is OS 10.5.8 ? thanks

  • Spell checker Functionality to be Implemented in a Oracle Ebiz Custom form

    Hi, I have tried implementing the Spell checker functionality in one of our Custom form,I used the OLE2 Built in Package in forms 6i to invoke the Spell checker functionality in Microsoft word but i am getting an error,Could anyone please help me in

  • Mighty Mosue Out of box won't turn on

    Hi, I just purchased a wireless mighty mouse and the thing will not turn on i did what this web site said installed the batteries the way the picture shows. I fliped the cover down and nothing happens. I know i have to pair the bluetooth but it won't

  • WebService Action Block Return Type

    Hi ,    I would like to know on xMII 11.5 RC2 if the Webservice can only return    it's XML data in a standard Iluminator Row Set structure or is there a way    that one can get the return XML in a cutom format i.e.     <ROOT>           <MYDATA>blah