Storing Objects in Request Scope

Hello,
I'm trying to pass an object in the request scope between a JSPDynPage and the associated JSP however the object is always null. If I store it in the session I am able to retrieve it.
Could anyone assist in how to do this?
My code is as follows, thanks and regards.
public class MyClass extends PageProcessorComponent {
  private String redirectToPage = "";
  private static final String INITAL_PAGE = "initialpage.jsp";
  private static final String SECONDARY_PAGE = "secondarypage.jsp";
  private static final String BEAN_ALIAS = "myBean";
  public void doProcessBeforeOutput() throws PageException {
    if (redirectToPage == null || redirectToPage.equals("")) {
      this.setJspName(INITAL_PAGE);
    } else {
      this.setJspName(redirectToPage);
  public void onMyButtonEvent (Event event) {
    redirectToPage = SECONDARY_PAGE;
    MyBeanClass myBean = new MyBeanClass();
    IPortalComponentRequest componentRequest = (IPortalComponentRequest)getRequest();
    componentRequest.putValue(BEAN_ALIAS, myBean);
secondarypage.jsp:
<%@ page session = "true"%>
<%@ taglib uri="tagLib" prefix="hbj" %>
<jsp:useBean id="myBean" scope="request" class="MyBeanClass " />
<hbj:content id="myContent">
  <hbj:page title="myTitle">
   <hbj:form id="myForm">
     <% if (myBean != null) {
          out.println("null");
        } else {
          out.println("not null");
     %>
   </hbj:form>
  </hbj:page>
</hbj:content>
output on the page is always "null" ??

Hi,
Thanks for your posts... the null logic was actually a typo.
I've solved the problem myself - basically I think the <jsp:useBean doesn't work as I expect it (that is automatically obtain the handle to the bean):
MyDynPage.java:
package com.my;
import com.sapportals.htmlb.*;
import com.sapportals.htmlb.enum.*;
import com.sapportals.htmlb.event.*;
import com.sapportals.htmlb.page.*;
import com.sapportals.portal.htmlb.page.*;
import com.sapportals.portal.prt.component.*;
public class MyDynPage extends PageProcessorComponent {
  public DynPage getPage(){
    return new MyDynPageDynPage();
  public static class MyDynPageDynPage extends JSPDynPage{
    public void doInitialization(){
    public void doProcessAfterInput() throws PageException {
    public void doProcessBeforeOutput() throws PageException {
          IPortalComponentRequest componentRequest = (IPortalComponentRequest)getRequest();
          componentRequest.putValue("myRequestParam", "My Request Param Value");
          MyBean myBean = new MyBean("My Bean Title Value");          
          componentRequest.putValue("myBean", myBean);
         this.setJspName("myJSP.jsp");
MyBean.java:
package com.my;
import java.io.Serializable;
public class MyBean implements Serializable {
     private String txtTitle;
     //setters
     public void setTxtTitle(String txtTitle) { this.txtTitle = txtTitle; }
     //getters
     public String getTxtTitle() { return this.txtTitle; }
     public MyBean(String txtTitle) { //constructor
          this.txtTitle = txtTitle;
myJSP.jsp:
<%@ page session = "true"%>
<%@ taglib uri="tagLib" prefix="hbj" %>
<jsp:useBean id="myBean" scope="request" class="com.my.MyBean" />
<hbj:content id="myContext" >
  <hbj:page title="PageTitle">
   <hbj:form id="myFormId" >
    <%
           String myRequestParam = (String)componentRequest.getValue("myRequestParam");
          out.println("myRequestParam: " + myRequestParam + "<br>");
          if (myBean == null) {
               out.println("myBean is null<br>");
          } else {
               out.println("myBean is not null<br>");
               out.println(myBean.getTxtTitle() + "<br>");
          com.my.MyBean myOtherBean = (com.my.MyBean) componentRequest.getValue("myBean");
          if (myOtherBean == null) {
               out.println("myOtherBean is null");
          } else {
               out.println("myOtherBean is not null<br>");
               out.println(myOtherBean.getTxtTitle() + "<br>");
    %>
   </hbj:form>
  </hbj:page>
</hbj:content>
The output is:
myRequestParam: My Request Param Value
<b>myBean is null</b>
myOtherBean is not null
My Bean Title Value
It appears that you can save objects in the request scope however you need to manually retrieve them. I'm pretty sure that this is not the case in other J2EE servers as the <jsp:useBean tag should imply that I want the bean retrieved from the scope automatically or created if it's null.
However the use of the <jsp:useBean appears to work correctly/as expected when using the session scope.
Thanks for your assistance.
DSR

Similar Messages

  • How to set  an object in request scope in  a jsp uysing  jstl

    I usally use scriptlet in jsp to set an object in request is
    there a way to do this using jstl
    instead of this
    <%request.setAttribute("test",myObject);%> I want to use tag ?

    The <c:set> tag should be useful...
    Of course if you can access it as a JSTL variable it IS already an attribute in scope.

  • Set the value of a object in request scope

    I have the object in my req scope. I need to set value to one of the object attributes if that attribute is blank. How can I set its value.
    <c:set var="benefitVO" value="${requestScope.BenefitVO}" />I need to set the following Object attribute value, if it is blank.
    something like --- > benefitVO.setBnftCd("asdf");
    How can I set it using JSTL tags?
    any ideas
    Thanks

    I need to set value to one of the object attributes if that attribute is blank.This is some kind of a default value that you want, then? If so then just take care of that when you output it. Use <c:if>, and if the attribute is blank then output the default value, otherwise output the attribute.
    Or have the servlet that created that request attribute take care of that requirement.

  • Using a request scope object in a javascript function

    Hello,
    is there a way to obtain a reference to a request scope attribute in a javascript function?
    or after using <jsp:useBean id="myBean" ...>, how do I pass the "myBean" object to a javascript fuction?
    Thanks for any help.
    E-

    ok, thanks...this is working for a string property of a bean... but I get an 'invalid character' error when I want to create an actual reference to the bean object itself.
    here is the jist of what I need to get working... myBean has a property 'listItems' that is a Vector of listBeans.
    function buildList() {
    var myBean = <%=request.getAttribute("mybean")%> ;
    // get referenence to the Vector property listItems
    var list = myBean.getListItems();
    // now I want to iterate the list and use the properties of the list beans
    for (x = 0 ; x < list.size() ; x++ ) {
    var listBean = list[x];
    var foo = listBean.getFoo();
    // need to use foo to populate a hierarchical list
    can I do this in JavaScript??? do I need to cast the classes to the variables?

  • Getting bean from request scope

    Hi,
    I am new to JSF and unfortunately I am running into a problem that I am not entirely sure about. I look in other forums and what I am doing looks right but I am not getting the desired result.
    In my faces-config.xml file I have a managed bean defined as follows:
    <managed-bean>
        <managed-bean-name>LogIn</managed-bean-name>
        <managed-bean-class>lex.cac.tables.RefUsers</managed-bean-class>
        <managed-bean-scope>request</managed-bean-scope>
      </managed-bean>I then have a log on page with a form which contains a user name and password field. The tags are defined as
    <h:inputText immediate="false" value="#{LogIn.username}" /> (for username) and
    <h:inputSecret immediate="false" required="true"
                                   value="#{LogIn.password}" /> (for password)
    When I submit the form the web app navigates to a jsp page which attempts to do validation against a database.
    The first step though is retrieving the object which is suppose to be in request scope.
    I attempt the following but I get back null which causes a NullPointerException. Why can't if find the bean?
    ExternalContext ec = FacesContext.getCurrentInstance().getExternalContext();
    Map params         = ec.getRequestParameterMap();
    params.get("LogIn");  //null is returned hereWhat am i doing wrong? Can someone please help.
    Thanks in advance,
    Alex.

    Something like that:
    FacesContext fc = FacesContext.getCurrentInstance();
    RefUsers LogIn = (RefUsers)fc.getApplication().createValueBinding("#{LogIn}").getValue(fc);
    String username = LogIn.getUsername();
    String password = LogIn.getPassword();

  • Can a Servlet be used for Storing Objects with both JSP and JSF used on it?

    Hi,
    Pages I have:
    SearchEmployee.jsp
    This page has a search engine that search out the Employee. This Employee Object will be stored inside a Servlet(controller) for future references by other pages. I used JSP, html tags for forms, and request.getParameter() to built this search engine.
    Problem:
    I have a JSF Form that wants to DISPLAY the employee which I have found in my Search Engine. How can I get the JSF's value="#{Controller.employeeObj.name}" to get the value from the object?
    This seems logical as my JSF form is just retrieving the stored object in the Controller. I currently cant seem to output it

    The servlet shouldn't be used to store ANY data, let alone data to be accessed by other sevlets. Put the object into the Session object.

  • How to get detailStamp working in an af:table when using request scope ?

    <af:table var="row" id="t1" value="#{listUsers.users}" summary="Userlist" binding="#{listUsers.ATable}" [...]
    <af:column sortable="false" headerText="Username" id="c13" filterable="true">
    <af:outputText value="#{row.username}" id="ot13"/>
    </af:column>
    <f:facet name="detailStamp">
    <af:panelFormLayout rows="4" labelWidth="33%" fieldWidth="67%" inlineStyle="width:795px" id="pfl1" labelAlignment="start" >
    <af:group id="g1">
    <af:panelLabelAndMessage id="plamNumber" label="Number" for="number">
    <af:outputText value="#{row.address.number}" id="number"/>
    </af:panelLabelAndMessage>
    I feel there is nothing special with this.
    But I've tested with 2 rows in my table and when I disclose rows, I get random results :
    sometimes I get the details related to the row disclosed, but sometimes I get the details of the other row.
    I've read several posts on the subject but none really helpful.
    Another problem ; I've noticed that when I disclose or close a row, getUsers() is called, this method fetch the data from the DB, any way to prevent it ?
    For the second problem, the solution I see would be to : change scope of listUsers to session instead of request, fetch from the DB only when "refresh", not when "detailStamp",
    but I've no clue on how to actually do the "only when part"
    Thanks in advance,
    JP

    Ok when I change the scope of ListUsers to session it's "ok" since I only load the list from the DB once (just like the demo that does not have this problem since the demo does not use the DB)
    When I change the scope for request and that the page is refreshed then the object ListUsers is "recreated" and the data reloaded : that's the expected behavior
    So I prefer to have the scope sets to request
    The problem is that when a user disclose/close a detailstamp and that the scope is set to request,
    then the data is reloaded from the DB
    because apparently this event acts like a "refresh"
    because this event (disclose/close) cause the destruction of what is in the request scope ...
    That's my understanding, probably few mistakes, I'm beginning with ADF/JSF
    It seems that when I load the data from the DB, it's not always in the same order, causing the problem itself probably, which is not ADF related BUT ;
    what I would like to know is how to (elegantly) prevent the event of "disclose/close" to act like a "refresh" ?
    Because even if I fix the "not ADF related problem" (if there is one), loading the list from the DB each time, appears really useless and the DBA won't like me !
    A solution could be to leave the session scope, but then my question would be ;
    *how to know I've to reload from the DB ?"
    I could just "reload it on page load", seems ok to me but
    I'm not sure it's the best, I would like to have your opinion, I've found this article for the "on page load" part ;
    http://groundside.com/blog/DuncanMills.php?title=adf_executing_code_on_page_load&more=1&c=1&tb=1&pb=1
    Thanks,
    JP

  • Command Link in the af:table Component can not Work in the Request Scope

    Actually, the problem is that when we click on the command link, the action method #{overview.goToLinkAction} is not triggered.
    Here is the codes of action method "goToLinkAction" on the backing bean:
    public String goToLinkAction() {
    String linkString = (String) AdfFacesContext.getCurrentInstance()
    .getProcessScope().get("linkString");
    System.out.println("Link String is: " + linkString);
    return "";
    The data object list "listOfTransefer" for af:table is composed first time when the page is initialized.
    public void onPageLoad() {
    this.listOfTransfers = composeListOfTransfers();
    But when the commandlink or commandbutton is clicked to pose the form, this onPageLoad method is ignored by using PagePhaseListener:
    public void beforePhase(PagePhaseEvent event) {
    FacesPageLifecycleContext ctx =
    (FacesPageLifecycleContext)event.getLifecycleContext();
    if (event.getPhaseId() == Lifecycle.PREPARE_MODEL_ID && needReload()) {
    bc = ctx.getBindingContainer();
    onPageLoad();
    bc = null;
    public final boolean needReload() {
    if (!isPostback())
    return Boolean.TRUE;
    else
    return alwaysReload();
    protected boolean isPostback() {
    return Boolean.TRUE.equals(resolveExpression("#{adfFacesContext.postback}"));
    That means the method "onPageLoad()" may not be invoked when the commandlink is clicked.
    Is there any way to resolve this problem without changing the scope of the backing bean to "session"?
    Your response will be very helpful for us.
    Thanks

    Hi,
    if you implicitly say that this works if the managed bean is in session scope then the problems seems to me that one of your evaluation criterias is reset in the request scope, which I think most likely is the needReload() method. Did you add debug statements to the methods to see where exactly it gets stuck?
    Frank

  • Forwarding a variabe in request scope

    When i am trying to forward a variable in request scope along with action, i am not not able to retrieve the value in action class.As in config.xml one action will call other action in LayoutConfig.xml I couldnt retrieve the vaue in action class.So anyone please suggest me in this criteria.
    regards
    Anuradha

    Hi Steve,
    Try to pass your parameter in layoutconfig.xml instead of in Java Script function of JSP Page.
    JSP:
    document.forms[0].action='<isa:webappsURL name="/b2c/transactiondetails.do"/>?transId='+transvalue;
    documen.forms[0].submit
    config.xml
    <action path="/b2c/transactiondetails" forward="UIArea : transactionDetails"/>
    LayoutConfig.xml
    <UIComponent name="transactionDetails" action="/b2c/getTransactionDetails.do"
    title="b2c.transactiondetails.title"/>
    config.xml
    <action path="/b2c/getTransactionDetails" type="com.sap.isa.isacore.action.loyalty.ZGetTransactiondetailsAction">
    <forward="succecc" path="UIInclude:/b2c/transactionDetails.inc.jsp"/>
    </action>
    Try below it may work.
    JSP:
    document.forms[0].action='<isa:webappsURL name="/b2c/transactiondetails.do"/>;
    documen.forms[0].submit
    config.xml
    <action path="/b2c/transactiondetails" forward="UIArea : transactionDetails"/>
    LayoutConfig.xml
    <UIComponent name="transactionDetails" action="/b2c/getTransactionDetails.do?transId="transvalue" title="b2c.transactiondetails.title"/>
    config.xml
    <action path="/b2c/getTransactionDetails" type="com.sap.isa.isacore.action.loyalty.ZGetTransactiondetailsAction">
    <forward="succecc" path="UIInclude:/b2c/transactionDetails.inc.jsp"/>
    </action>
    You will get transld value in action class ZGetTransactiondetailsAction and get the attribute from request object by getParameter/getAttribute method also you can set this parameter/attribute again in request object in ZGetTransactiondetailsAction and then retrieve it again on transactionDetails.inc.jsp page from request object.
    If getAttribute do not work try getParameter method.
    I hope this will help you.
    eCommerce Developer

  • Communicating between beans in request scope

    I have list.jsp that has a table of items with a link to edit each item like so
    <h:dataTable value="#{list.model}" var="curItem">
        <h:commandLink actionListener="#{item.doActionEdit}" action="edit">
          <h:outputText value="#{curItem.id}"/>
          <f:param name="id" value="#{curItem.id}"/>
        </h:commandLink>
    </h:dataTable>edit is map to item.jsp
    when i click on the link the item bean gets called and doActionEdit sets up the id and fetches data from db but then the bean gets recreated (from scratch and all data is lots id is unset) and it loads item.jsp with and empty bean.
    This only happens when item bean is in request scope, however when it is in session scope it works fine, which brings the question; how can I pass objects to a bean that is in the request scope?
    I have tries to map id of item in faces-config.xml with #{param.id} which works fine if id is passed but fails with a npe when item.jsp loads without id (say I want to create a new item.)
    Please advise me what is the best approach to communicate between beans in request scope, so it will work with and without id being passed.

    here is doActionEdit, basicly it gets the id param and then calls setId which tries to load data from db if id is >0 if that fails or id is <=0 it creates new data object instead.
    when the item bean is in session scope the constructor is called once but if the scope is request it is called twice (first time doActionEdit is called after constructor but the 2nd time only constructor is called and the itemData is empty.
         public void doActionEdit(final ActionEvent event) {
                    int id = 0;
              try {
                   id = Integer.parseInt(FacesUtil.getParameter("id"));
              } catch (Exception e) {
                   e.printStackTrace();
              setId(id);
    private ItemData data = null;
         public void setId(final int id) {
              if (id > 0) {
                   data = DB.getItemData(id); //load data from db
                   if (data == null) {
                        data=new Data();
              else {          
                   data=new Data();
         public Item() {
              data=new Data();
              System.out.println("Loading Item class");
         }

  • How To Pass the Request Scope To Another Class

    In my ListThread class, I first retrieve some of the text fields; i.e., request.getParameter( ... );
    Thereafter, I want to pass the request scope together with some parameters to another class; SiteUtil.java., for some further processing. This is what I do:
    public final class ListThread extends HttpServlet
          public doPost( HttpServeltRequest request, HttpServlerResponse response)
                      throws ServletException, IOException
          String offset = request.getParameter( "offset" );
          String size = request.getParameter( "size" );
          SiteUtil.prepareNavigate( request, offset, size,
               MessageInboxConfig.ROWS_IN_THREADS );
    }This is my SiteUtil.java:
    import javax.servlet.http.HttpServletRequest;
    public class SiteUtil
       public static void prepareNavigate  
         (HttpServletRequest request, int offset, int   
                         collectionSize, int totalRows)
          int startOffset = offset + 1;
          int lastOffset = offset + collectionSize;
          request.setAttribute("StartOffset", new Integer(startOffset));
          request.setAttribute("LastOffset", new Integer(lastOffset));
    }Can I pass the request scope and save attributes in the scope this way?

    You can pass the request to that method as a parameter, yes, and you can even modify the request there. The request is just an ordinary Java object, so ordinary Java rules apply. Your code looks fine to me too.
    However don't try to store the request for future use, since after the response is sent back to the client, the request object is never used again. A new one is created for the next request.

  • DataTable var in request scope?

    Hi all,
    The description for the 'var' attribute of a h:dataTable tag reads:
    "Name of a request-scope attribute under which the model data for the row ... will be exposed."
    So I thought I would be able to access the object set as 'var' in normal JSP expressions and actions:
    <h:dataTable value="#{currentItem.children}" var="item">
      <h:column>
        <h:outputText value="#{item.uri}"/>
        <f:verbatim>${item.uri}</f:verbatim>
      </h:column>
    </h:dataTable>But the ${item.uri} does not evaluate to the same as #{item.uri}. Instead, it is empty, or if 'item' pre-exists in the request scope, it shows that item (and not the one assigned by the dataTable).
    What have I misunderstood?
    Cheers,
    Roger

    Basically:
    JSF<h:dataTable binding="#{myBean.table}" value="#{myBean.list}" var="item">
        <h:column><h:outputText value="#{myBean.value}" /></h:column>
    </h:dataTable>MyBeanprivate HtmlDataTable table;
    private List<Dto> list;
    // + getters + setters
    public String getValue() {
        Dto dto = (Dto) table.getRowData();
        // Do your thing with the current row object.
    }Although I recommend to just add a new property or getter to the DTO. It saves one mapping layer.

  • Problem with Commit button When Backing bean is in Request Scope...

    HI Everybody,
    I have a Backing Bean in request scope having over 1000 lines of code, And in my JSPX page I have a table binding with a view object and At run time when user select the row in table and click the edit button so user will be able to edit that selected row in the same table at run time.. but the problem is : when the user enters some data in the Editable inputTexts and then clicks save(Commit), then the save button doesn't work..but when i delete any selected row and then press save then it is working fine..
    And to test it in Session scope i made another sample page where every thing is working very fine..
    Now i want to know What is the difference between Session scope and request scope bean...
    And is there any solution to Save editable input text in Request scope?.
    Also want to know that is it safe to set the scope of my main bean class to session scope without effecting the current running functionality? which is having over 1000 lines of code and lot of component has been placed...
    Please help me to resolve this problem...
    Thanks in Advance to all of you
    Fizzz..

    Hi Frank...
    In my code i used almost same logic as Andrejus Baranovskis has explained in his Editable Table example...
    You can refer that example to see what problem I'm facing...
    http://andrejusb.blogspot.com/2007/04/create-edit-and-delete-operations-in.html
    The Bean Scope in this Example is Session scope...Save button is working fine...
    But as i Change the bean scope to Request scope then Save button is not working for Edit but it is working for Delete Action very well..
    I want that save button should work also for Edit action in Request Scope..
    Please Make me understand that why it is happened like that..
    and help me to find the solution..
    and Also if you have a better document to Explain the life cycle of Application in Different Bean Scope...So please provide me that Doc to me...
    It would be a great help for me to understand the concept of session...
    Thanks Frank
    Fizzz...

  • JNDI lookup for request scope component,

    Hi,
    I have 2 web applications part of single ear file.
    Where One application is ATG application having ATG pipeline defined in its web.xml
    and 2nd one is a simple j2ee web application.
    From 2nd application if I try to lookup a request scoped component by following code
    String jndiName = "dynamo:/------compenent path------";
    Context ctx = new javax.naming.InitialContext ();
    Scheduler s = (Scheduler) ctx.lookup (jndiName);
    it shows me following error.
    ** Error Fri Nov 16 11:04:20 CST 2012 1353085460117 / Invalid attempt to resolve component /atg/-------component path------/ in scope global. It is defined in scope request
    Is there any way to resolve it ?
    Edited by: Arvind Pal on Nov 16, 2012 2:00 PM

    It seems the scheduler global component is resolving the request scope component internally.
    For request scope components there should be DynamoHttpServletRequest object in context to resolve.
    DynamoHttpServletRequest object is created as part of servlet pipeline.
    As you request is not going thru servlet pipeline, there is no DynamoHttpServletRequest and hence the request scope components cannot be resolved.
    So check in the scheduler why do you need to resolve the request scope component. Its not good practice to resolve them in schedulers.
    Peace
    Shaik

  • Flex + Sending ArrayCollection to Server + Request Scope

    Hi All,
    I have a requirement where I have to send an ArrayCollection
    instance containing actionscript instances to server side. Server
    side component is java servlet.
    Could anyone please tell me how this can be done.
    I hav explored flex APIs where I get reference to sending as
    key/value. Here this is not feasible as I have a collection of .as
    instances and each .as instance is composed of 20 string objects.
    I have one idea I can get the whole ArrayCollection on the
    server side by request scope, if I can bind the same
    ArrayCollection in request scope with some key in mxml page. Can it
    be done.
    If I am in one jsp page from where I am forwarding to another
    jsp, then what I will do is in first jsp, I will write:
    request.setAtribute("SomeKey", instance);
    In second jsp, I will write
    List list = (List)request.getAttribute("SomeKey");
    I have no idea of how request.setAttribute is done in mxml
    page. Can it be done. Can anyone help me here. If this is not
    possible, is there any other way of doing this.
    Many Thanks,
    Best Regards,
    Nazz

    Hi,
    Thanks for the reply. Apologies for updating you late on
    this.
    I have downloaded JSON api from here:
    JSON API
    I have placed the as3corelib.swc file in my WEB-INF/flex/lib
    folder, I have imported the JSON class in mxml page using import
    com.adobe.serialization.json.JSON;
    when I hit the browser, it gives me following error on the
    browser:
    quote:
    1 Error, 1 Exception found.
    Error /nazz/SampleJSON.mxml
    unable to load SWC as3corelib.swc
    Exception flex2.compiler.swc.SwcException$SwcNotLoaded
    Here is the stacktrace from the server log:
    quote:
    12/21 20:07:55 ERROR
    unable to load SWC as3corelib.swc
    12/21 20:07:55 ERROR
    flex2.compiler.swc.SwcException$SwcNotLoaded
    at flex2.compiler.swc.SwcCache.getSwc(SwcCache.java:230)
    at flex2.compiler.swc.SwcCache.getSwcs(SwcCache.java:174)
    at flex2.compiler.swc.SwcCache.getSwcGroup(SwcCache.java:78)
    at flex2.compiler.swc.SwcCache.getSwcGroup(SwcCache.java:67)
    at
    flex2.compiler.CompilerSwcContext.load(CompilerSwcContext.java:52)
    at
    flex2.server.j2ee.IncrementalCompileFilter.fullCompile(IncrementalCompileFilter.java:186)
    at
    flex2.server.j2ee.IncrementalCompileFilter.compileMxml(IncrementalCompileFilter.java:113)
    at
    flex2.server.j2ee.BaseCompileFilter.mxmlToSwf(BaseCompileFilter.java:286)
    at
    flex2.server.j2ee.BaseCompileFilter.invoke(BaseCompileFilter.java:72)
    at
    flex2.server.j2ee.RecompileFilter.invoke(RecompileFilter.java:38)
    at flex2.server.j2ee.AboutFilter.invoke(AboutFilter.java:48)
    at flex2.server.j2ee.MxmlServlet.doGet(MxmlServlet.java:159)
    at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
    at
    javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at
    flex.bootstrap.BootstrapServlet.service(BootstrapServlet.java:85)
    at
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.j ava:252)
    at
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at
    org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at
    org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    at
    org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    at
    org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    at
    org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    at
    org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    at
    org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:825)
    at
    org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11P rotocol.java:743)
    at
    org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    at
    org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.ja va:80)
    at
    org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    at java.lang.Thread.run(Unknown Source)
    Please help.
    I'm using flex 2.
    Many Thanks,
    Best Rgds,
    NAZZ

Maybe you are looking for

  • Ipod Crash? PLEASE HELP

    my ipod has been acting strangely lately, randomly stopping in the middle of the song and going to the next, etc. Now all of a sudden..when i plug my ipod into the computer an autoplay box comes up, i've tried numerous times to change this setting in

  • Electronic bank statement customer payment and invoice(s) clearing

    Hi there, I am configuring electronic bank statements and wanting to "increase the hit rate" of automatic clearing. For this, I have configured postings, posting rules, etc. and I am testing on a bank statement we receive from the bank (this is ABN A

  • Classification set up for Vendor Master

    I plan on using Classifications for Vendors to assign a status.  I need to define the Class and assign to Class type as well as define the Characteristics and assign the values.  Can anyone tell me where this is done? Any help is appreciated. Thanks

  • Uses unchecked or unsafe operations with deserialization

    Ive read a lot of posts and they all seem to say it something wrong with my generics and / or casting of them and I can't figure out what's wrong? First I created a Map as follows: Map<String, Map<String, Integer>> map = new HashMap<String, Map<Strin

  • When we execute Package it is giving Error..!

    Hi, I want to know how to email through SQL*Plus in Oracle 10g. I found some packages from oracle site, but it is for only 8i. Then also i tryed to executed that package, but it is giving error as follows: SQL> Execute demo_mail.mail('[email protecte