Error trying to pass one to two diffirent inputtext

hi i have a situation where i what to pass my username to diffirent inputtext,e.g i got username entered i what to pass it to another table which got username and cratedby
<af:inputText simple="true"
                        required="#{bindings.Username.hints.mandatory}"
                        columns="#{bindings.Username.hints.displayWidth}"
                        maximumLength="#{bindings.Username.hints.precision}"
                        shortDesc="#{bindings.Username.hints.tooltip}" id="it1"
                        value="#{bindings.Username.inputValue}"
                        valueChangeListener="#{pageFlowScope.InternalUserBean.changeUserListener};#{pageFlowScope.InternalUserBean.changeListener}"
                        autoSubmit="true">
            <f:validator binding="#{bindings.Username.validator}"/>
          </af:inputText>
    public void changeUserListener(ValueChangeEvent valueChangeEvent) {
            // get the binding container
            BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
            // get an ADF attributevalue from the ADF page definitions
            AttributeBinding attr = (AttributeBinding)bindings.getControlBinding("Createdby");
            String user = (String)valueChangeEvent.getNewValue();
            attr.setInputValue(user);
            System.out.println("createdbypassed " +user);
            // PPR refresh a jsf component
            UIComponent ui = (UIComponent)valueChangeEvent.getSource();
            AdfFacesContext.getCurrentInstance().addPartialTarget(ui.getParent());
    public void changeListener(ValueChangeEvent valueChangeEvent) {
            // get the binding container
            BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
            // get an ADF attributevalue from the ADF page definitions
            AttributeBinding attr = (AttributeBinding)bindings.getControlBinding("Username1");
            String user = (String)valueChangeEvent.getNewValue();
            attr.setInputValue(user);
            System.out.println("userpassed " +user);
            // PPR refresh a jsf component
            UIComponent ui = (UIComponent)valueChangeEvent.getSource();
            AdfFacesContext.getCurrentInstance().addPartialTarget(ui.getParent());
am geting this error
javax.el.ELException: Not a Valid Method Expression: #{pageFlowScope.InternalUserBean.changeUserListener};#{pageFlowScope.InternalUserBean.changeListener}
     at com.sun.el.lang.ExpressionBuilder.createMethodExpression(Unknown Source)
     at com.sun.el.ExpressionFactoryImpl.createMethodExpression(Unknown Source)
     at weblogic.servlet.jsp.ELHelper.createMethodExpression(ELHelper.java:74)
     at jsp_servlet.__intnlusr_jsff._jspx___tag9(__intnlusr_jsff.java:800)
     at jsp_servlet.__intnlusr_jsff._jspService(__intnlusr_jsff.java:166)
     at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
     at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
     at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
     at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:416)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:326)
     at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
     at java.security.AccessController.doPrivileged(Native Method)
     at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
     at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
     at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
     at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
     at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:524)
     at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:444)
     at weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:163)
     at weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:184)
     at oracle.adfinternal.view.faces.taglib.region.IncludeTag.__include(IncludeTag.java:442)
     at oracle.adfinternal.view.faces.taglib.region.RegionTag$1.call(RegionTag.java:153)
     at oracle.adfinternal.view.faces.taglib.region.RegionTag$1.call(RegionTag.java:128)
     at oracle.adf.view.rich.component.fragment.UIXRegion.processRegion(UIXRegion.java:503)
     at oracle.adfinternal.view.faces.taglib.region.RegionTag.doStartTag(RegionTag.java:127)
     at jsp_servlet.__index_jspx._jspx___tag3(__index_jspx.java:243)
     at jsp_servlet.__index_jspx._jspx___tag2(__index_jspx.java:204)
     at jsp_servlet.__index_jspx._jspx___tag1(__index_jspx.java:154)
     at jsp_servlet.__index_jspx._jspx___tag0(__index_jspx.java:104)
     at jsp_servlet.__index_jspx._jspService(__index_jspx.java:65)
     at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
     at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
     at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
     at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:416)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:326)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:183)
     at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:523)
     at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:253)
     at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:410)
     at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
     at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
     at oracle.adfinternal.view.faces.config.rich.RecordRequestAttributesDuringDispatch.dispatch(RecordRequestAttributesDuringDispatch.java:44)
     at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
     at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
     at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
     at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl$OverrideDispatch.dispatch(FacesContextFactoryImpl.java:267)
     at com.sun.faces.application.ViewHandlerImpl.executePageToBuildView(ViewHandlerImpl.java:469)
     at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:140)
     at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
     at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:911)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:367)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:222)
     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
     at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
     at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
     at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
     at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
     at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
     at java.security.AccessController.doPrivileged(Native Method)
     at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
     at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
     at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
     at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
     at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
     at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
     at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
     at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
     at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
     at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
     at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
<13 May 2013 8:37:16 AM> <Error> <HTTP> <BEA-101020> <[ServletContext@11145638[app:InternalUsr module:InternalUsr-ViewController-context-root path:/InternalUsr-ViewController-context-root spec-version:2.5]] Servlet failed with Exception
javax.el.ELException: Not a Valid Method Expression: #{pageFlowScope.InternalUserBean.changeUserListener};#{pageFlowScope.InternalUserBean.changeListener}
     at com.sun.el.lang.ExpressionBuilder.createMethodExpression(Unknown Source)
     at com.sun.el.ExpressionFactoryImpl.createMethodExpression(Unknown Source)
     at weblogic.servlet.jsp.ELHelper.createMethodExpression(ELHelper.java:74)
     at jsp_servlet.__intnlusr_jsff._jspx___tag9(__intnlusr_jsff.java:800)
     at jsp_servlet.__intnlusr_jsff._jspService(__intnlusr_jsff.java:166)
     Truncated. see log file for complete stacktrace
>
<13 May 2013 8:37:16 AM> <Notice> <Diagnostics> <BEA-320068> <Watch 'UncheckedException' with severity 'Notice' on server 'DefaultServer' has triggered at 13 May 2013 8:37:16 AM. Notification details:
WatchRuleType: Log
WatchRule: (SEVERITY = 'Error') AND ((MSGID = 'WL-101020') OR (MSGID = 'WL-101017') OR (MSGID = 'WL-000802') OR (MSGID = 'BEA-101020') OR (MSGID = 'BEA-101017') OR (MSGID = 'BEA-000802'))
WatchData: DATE = 13 May 2013 8:37:16 AM SERVER = DefaultServer MESSAGE = [ServletContext@11145638[app:InternalUsr module:InternalUsr-ViewController-context-root path:/InternalUsr-ViewController-context-root spec-version:2.5]] Servlet failed with Exception
javax.el.ELException: Not a Valid Method Expression: #{pageFlowScope.InternalUserBean.changeUserListener};#{pageFlowScope.InternalUserBean.changeListener}
     at com.sun.el.lang.ExpressionBuilder.createMethodExpression(Unknown Source)
     at com.sun.el.ExpressionFactoryImpl.createMethodExpression(Unknown Source)
     at weblogic.servlet.jsp.ELHelper.createMethodExpression(ELHelper.java:74)
     at jsp_servlet.__intnlusr_jsff._jspx___tag9(__intnlusr_jsff.java:800)
     at jsp_servlet.__intnlusr_jsff._jspService(__intnlusr_jsff.java:166)
     at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
     at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
     at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
     at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:416)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:326)
     at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
     at java.security.AccessController.doPrivileged(Native Method)
     at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
     at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
     at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
     at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
     at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:524)
     at weblogic.servlet.internal.RequestDispatcherImpl.include(RequestDispatcherImpl.java:444)
     at weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:163)
     at weblogic.servlet.jsp.PageContextImpl.include(PageContextImpl.java:184)
     at oracle.adfinternal.view.faces.taglib.region.IncludeTag.__include(IncludeTag.java:442)
     at oracle.adfinternal.view.faces.taglib.region.RegionTag$1.call(RegionTag.java:153)
     at oracle.adfinternal.view.faces.taglib.region.RegionTag$1.call(RegionTag.java:128)
     at oracle.adf.view.rich.component.fragment.UIXRegion.processRegion(UIXRegion.java:503)
     at oracle.adfinternal.view.faces.taglib.region.RegionTag.doStartTag(RegionTag.java:127)
     at jsp_servlet.__index_jspx._jspx___tag3(__index_jspx.java:243)
     at jsp_servlet.__index_jspx._jspx___tag2(__index_jspx.java:204)
     at jsp_servlet.__index_jspx._jspx___tag1(__index_jspx.java:154)
     at jsp_servlet.__index_jspx._jspx___tag0(__index_jspx.java:104)
     at jsp_servlet.__index_jspx._jspService(__index_jspx.java:65)
     at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
     at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
     at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
     at weblogic.servlet.internal.ServletStubImpl.onAddToMapException(ServletStubImpl.java:416)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:326)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:183)
     at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:523)
     at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:253)
     at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:410)
     at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
     at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
     at oracle.adfinternal.view.faces.config.rich.RecordRequestAttributesDuringDispatch.dispatch(RecordRequestAttributesDuringDispatch.java:44)
     at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
     at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
     at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
     at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl$OverrideDispatch.dispatch(FacesContextFactoryImpl.java:267)
     at com.sun.faces.application.ViewHandlerImpl.executePageToBuildView(ViewHandlerImpl.java:469)
     at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:140)
     at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
     at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:911)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:367)
     at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:222)
     at javax.faces.webapp.FacesServlet.service(FacesServlet.java:266)
     at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
     at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
     at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
     at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:205)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
     at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
     at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
     at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:119)
     at java.security.AccessController.doPrivileged(Native Method)
     at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:315)
     at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:442)
     at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:103)
     at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:171)
     at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:139)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
     at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
     at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
     at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
     at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
     at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
     at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
     at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
     at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
     at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
     at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
SUBSYSTEM = HTTP USERID = <WLS Kernel> SEVERITY = Error THREAD = [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)' MSGID = BEA-101020 MACHINE = srd-ws23042 TXID =  CONTEXTID = 7157afcc9f9dbb93:557d4acf:13e9c9b203c:-8000-0000000000000021 TIMESTAMP = 1368427036226 
WatchAlarmType: AutomaticReset
WatchAlarmResetPeriod: 30000
>
<13 May 2013 8:37:17 AM> <Alert> <Diagnostics> <BEA-320016> <Creating diagnostic image in c:\users\10017134\appdata\roaming\jdeveloper\system11.1.1.6.38.61.92\defaultdomain\servers\defaultserver\adr\diag\ofm\defaultdomain\defaultserver\incident\incdir_87 with a lockout minute period of 1.>

Your description is not satisfactory.Too confusing and messed up.Just try to describe it properly.
But looking at the log its states clearly that your expression is invalid.
javax.el.ELException: Not a Valid Method Expression: #{pageFlowScope.InternalUserBean.changeUserListener};#{pageFlowScope.InternalUserBean.changeListener}My suggestion : Just directly call changeUserListener(). Why are you using pageFlowScope.?
Note:- My suggestion is based on assumption that your are not using taskflow and your description regarding your problem is not clear.*
Thanks
Lovin

Similar Messages

  • Difficulty with pdf form trying to "choose" one of two paragraphs of text

    I am creating a PDF form and trying to find a way to choose one of two groups of text that are about paragraph long. and only having the the one I choose be visible on my pdf.  I tried using a dropdown list, but it would not accmodate the amount of text I needed

    OK, the following is for a single check box and a single field. If the check box is checked the multiline text field will display one block of text, and if unchecked, it will display the other.
    I'm goping to assume the text field is named "Text1". The Mouse Up JavaScript of the check box could then be:
    // Get a reference to the text field
    var f = getField("Text1");
    // Set the value of the text field depending
    // on the state of this check box
    if (event.target.value === "Off") {
        f.value = "Paragraph 1 goes here. You can use \rto indicate a carriage return.";
    } else {
        f.value = "Paragraph 2 goes here. Add as much text as you like...";
    Change "Text1" in the getField statement to match the name of your multiline text field.

  • Items in the Itunes library were not copied because of one or two errors occurred. How to fix this problem?

    Items in the Itunes library were not copied because of one or two errors occurred. How to fix this problem?

    Hello mobyash,
    Have you tried converting each of these 8 tracks to a different file format and seeing if they will then sync to your iPod.  See this Apple support document for information and instructions on how to convert a song to a different format.
    iTunes: How to convert a song to a different file format
    B-rock

  • I am trying to store music for two different iPods on the same computer, against two different Apple IDs. When I try and download content from the Cloud I get an error message?

    I am trying to store music for two different iPods on the same Windows 8 computer, and when I try and download content from the Cloud I get an error message. Is it possible to have two different Apple IDs on the same computer?

    Unfortunately you've discovered too late how important it is to maintain an up-to-date backup of your iTunes library (and all other data of value).  You could, before wiping the drive, have considered making use of a commercial data recovery service that could (albeit at considerable cost) have extracted your library from the hard disk, even if virus infected.
    In the absence of that option, you will need to restore the content of your library from its original sources:
    Depending on your location, you may be able to re-download any iTunes Store purchases that are still available on the Store
    Likewise, most digital purchases from Amazon (including auto-rip copies of purchased CDs) should be available from the Amazon Cloud and via the Amazon Music application - the same may be true of other commercial sources for digital downloads
    Content imported from your CDs will have to imported again
    The specific situation that you describe regarding the music imported from your friend's external HDD suggests that either the source is badly organized and/or originates from a source other than iTunes (other media players may use alternative tags for information like artist, title, album, etc. that are not wholly consistent with how iTunes handle these).  Without details of the issues you're seeing it is difficult to suggest a remedy other than going through the media album-by-album, track-by-track, and correcting the inconsistencies.
    In the absence of a backup or access to the original library data there is no option other than painstakingly recreating your library as described above.  As you do so, you'll now realize how important creating and maintaining backups are - in my case I have at all times three separate duplicates of my library, in two different locations, where none is ever more than a week old compared to the content of my master library.

  • Trying to backup one of my iPhoto libraries I keep getting a error message that basically says that the file could not be backed up because there is another file on the external drive with the same name, etc. There is no other file.

    While trying to copy one of my iPhoto libraries to an external hard drive I get the following error message "You can’t copy “iPhoto Library old” because it has the same name as another item on the destination volume, and that volume doesn’t distinguish between upper- and lowercase letters in filenames." There is no other file on the external drive with this name. I have asked this question before and was told that there are some duplicate photos (files) in my library and I needed to go to "show file contents" and look at certain files to find duplicates and delete the duplicates. I did all of this and the library will still not copy and always stops copying in the exact same place on each attempt. Any help would be greatly appreciated.

    You've been deleting your actual Photos.
    Don't change anything in the iPhoto Library Folder via the Finder or any other application. iPhoto depends on the structure as well as the contents of this folder. Moving things, renaming things, deleting them or otherwise making changes will prevent iPhoto from working and could even cause you to damage or lose your photos.
    Best way forward now is to recover the surviving Originals from this library and start over from scratch.
    Regards
    TD

  • TS1292 Purchased gift cards about a year ago. Misplaced two of them. Found them yesterday, tried to use one today. Invalid. If the money is tagged to the card code why is it invalid? Now have to take photos of both sides and find receipt? Guess out $20?

    Purchased gift cards about a year ago. Misplaced two of them, but Found them yesterday. i tried to use one today. Invalid. If the money is tagged to the card code why is it invalid? Now have to take photos of both sides and find receipt? Finding the receipt might take as long as .finding the cards. If I paid hard earned money for the card from a computer company why would that card not be in their data base waiting to be activated? I guess I am out $20 to Apple for not activating immediately! My account was hacked once so I won't put a credit card in and live with gift cards. Now I am getting hit for $20, two gift cards for ten each. I now question who and how people are making money?? Is my only solution, buy card, redeem code instantly, purchase item?

    Hi Oxfordataloss,
    Thanks for posting. I'm really sorry you've had such problems with BT, it's certainly not the kind of service we would hope to provide. I'll take your comments on board and if you don't receive the final bill as expected please drop me an email with the account details and a link to this thread for reference.
    Cheers
    David
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

  • ORA-01722: invalid number error when trying to pass a list of values

    Gurus
    We are using a function like so
    The usage for the function below is
    Select fn_st_bb_nm_uc (‘1232131312, 123213312’) from dual;
    SQL> /
    Select fn_st_bb_nm_uc ('1232131312, 123213312') from dual
    ERROR at line 1:
    ORA-01722: invalid number
    It’s giving an invalid number error. When we pass one value it is working fine but when we pass a string of values it gives this error. I have opened an SR around this but would greatly appreciate your help
    Acc_blackbar is the table and acc_blkbr_id is of type number.
    FUNCTION fn_st_bb_nm_uc (pBB_ID_LIST VARCHAR2)
    RETURN VARCHAR2 IS
    vspcm_typ_nm_uc VARCHAR2 (2000);
    CURSOR stname
    IS
    SELECT distinct st.spcm_typ_nm_uc
    FROM
    acc_blackbar abb,
    acc_specimen_type ast, acc_procedure apr,
    acc_specimen_part asp,
    specimen_type st, procedure pr,
    proc_proc_family ppf
    WHERE abb.ACC_BLKBR_ID = apr.ACC_BLKBR_ID
    AND apr.ACC_SPCM_PART_ID = asp.ACC_SPCM_PART_ID
    AND asp.ACC_SPCM_TYP_ID = ast.ACC_SPCM_TYP_ID
    AND ast.ACC_SPCM_TYP_SPCM_TYP_ID = st.SPCM_TYP_ID
    AND apr.procdr_id = pr.PROCDR_ID
    AND pr.PROCDR_ID = ppf.PROCDR_ID
    AND abb.acc_blkbr_id in (pBB_ID_LIST) ;
    BEGIN
    DBMS_OUTPUT.PUT_LINE(' BB LIST : ' || pBB_ID_LIST);
    FOR st IN stname
    LOOP
    vspcm_typ_nm_uc := vspcm_typ_nm_uc || ',' || st.spcm_typ_nm_uc;
    END LOOP;
    vspcm_typ_nm_uc := SUBSTR (vspcm_typ_nm_uc, 2);
    RETURN vspcm_typ_nm_uc;
    END;

    This ask tom thread covers multiple solutions:
    [http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:210612357425|http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:210612357425]

  • I am getting error "The connection to the server was reset while the page was loading" whenever i am trying to view one perticular page asset?.

    Hi Experts,
    i am getting  error "The connection to the server was reset while the page was loading" whenever i am trying to view one perticular page asset. i am directly view page asset through contribute editor. Please tell me what is the issue.
    Thanks
    Satya

    Hello.
    Can you provide more details? Is there more information in the logs (what's the stacktrace)? What version are you working with?
    Regards,
    Raul.

  • "Powermaps needs more resources to complete this operation" error. 2 datasets 100 rows. one tour. two layers

    I'm working on some BI mashups to demo the powerbi offerings to potential clients, but I get close to 20+ crashes a day relating to memory issues
    I'm utilising powerquery to import and filter data from 2 rss feeds. Each are at most 100 rows. I then add these to a powerpivot model & have two powerview reports over this.
    I've added a powermap to the solution but find the reliability to be very poor. If it does manage to work the colours of the bubbles and bars sometimes don't match the defined colours or they're black (a telltale sign of memory problems in windows). This
    usually breaks the whole excel 'process' and I can't save the workbook. I get "workbook not saved" errors or that "there was a problem saving with all the features added. Click continue and save as a different file"
    either that or i get a hard crash like I did while writing this post:
    Problem signature:
      Problem Event Name:    APPCRASH
      Application Name:    EXCEL.EXE
      Application Version:    15.0.4535.1507
      Application Timestamp:    52282875
      Fault Module Name:    KERNELBASE.dll
      Fault Module Version:    6.1.7601.18229
      Fault Module Timestamp:    51fb1116
      Exception Code:    e0434f4d
      Exception Offset:    0000c41f
      OS Version:    6.1.7601.2.1.0.256.1
      Locale ID:    3081
    Additional information about the problem:
      LCID:    1033
      skulcid:    1033
    Read our privacy statement online:
      http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
    If the online privacy statement is not available, please read our privacy statement offline:
      C:\Windows\system32\en-US\erofflps.txt
    Memory amount is not a problem according to resource manager; excel process taking ~500mb and 70% free ram. I left memtest86+ running overnight and it found no errors in 8 passes so it looks like my sticks are ok. I have sql server 2008r2 & 2012
    along with all the bells (db engine, ssis, ssas) installed and that never gives me hard memory failures even when I drive it hard. Obviously if i try to process a data model that's too big it gives me out of mem errors but that's expected and it doesn't crash
    SSDT or the SSAS\Tabular instance. The services are off while I'm doing the excel powerbi work.
    laptop specs are :
    OS Name    Microsoft Windows 7 Ultimate
    Version    6.1.7601 Service Pack 1 Build 7601
    Other OS Description     Not Available
    OS Manufacturer    Microsoft Corporation
    System Manufacturer    Dell Inc.
    System Model    XPS L521X
    System Type    x64-based PC
    Processor    Intel(R) Core(TM) i7-3612QM CPU @ 2.10GHz, 2101 Mhz, 4 Core(s), 8 Logical Processor(s)
    BIOS Version/Date    Dell Inc. A15, 1/08/2013
    SMBIOS Version    2.7
    Windows Directory    C:\Windows
    System Directory    C:\Windows\system32
    Boot Device    \Device\HarddiskVolume1
    Locale    Australia
    Hardware Abstraction Layer    Version = "6.1.7601.17514"
    Time Zone    Cen. Australia Daylight Time
    Installed Physical Memory (RAM)    8.00 GB
    Total Physical Memory    7.88 GB
    Available Physical Memory    5.67 GB
    Total Virtual Memory    15.9 GB
    Available Virtual Memory    13.6 GB
    Page File Space    8.00 GB
    Page File    C:\pagefile.sys
    I can upload the workbook too if desired
    I dont solely blame powermaps, rendering the powerview reports is pretty hit and miss in all the workbooks i've developed before as well, but clicking the Maps button in excel is certainly the biggest gamble
    Jakub @ Adelaide, Australia

    Hi Jakub,
    I can think of two changes you can make that can help.
    1. You don't mention what architecture your office version is. I would suggest you use 64 bit Excel. It has a higher memory threshold and performs much better when using a lot of memory.
    2. Install all of the latest CU updates for Office. There has been dozens of bug fixes for PowerPivot and Power View since the last release.
    You mention you can share the workbook. Feel free to send to me at
    [email protected] and I would be willing to take a look and see if the crashes are known issues or already fixed.
    Brad Syputa, Microsoft Reporting Services This posting is provided "AS IS" with no warranties.

  • I have a new laptop and I am trying to download CS3. The site on adobe gives an error message and the one I tried from this forum downloaded CS3 extended, so my serial number does not work. Does anyone have any suggestions. Regards Vicki

    Hi,
    I have a new laptop and I am trying to download CS3. The site on adobe gives an error message and the one I tried from this forum downloaded CS3 extended, so my serial number does not work. Does anyone have any suggestions. Regards Vicki

    The trial is always extended. The serial number you enter determines whether it runs as standard or extended.
    I'm getting through fine with that link, so it must be a browser issue or some such thing. Try another browser.

  • PLS-00201 error when trying to pass an OUT parameter

    Hi,
    Please help me to resolve the below error:
    I am trying to pass an OUT parameter in a package.
    I have declared it in package specs as
    ProcABC(p_val IN varchar2, p_val2 IN varchar2, p_val3 OUT varchar2)
    In package body
    I have created the procedure as
    Create or Replace procedure ProcABC(p_val IN varchar2, p_val2 IN varchar2, p_val3 OUT varchar2) AS
    v_LogDir varchar2(40);
    v_message varchar2(200);
    BEGIN
    SELECT directory_path into v_LogDir FROM ALL_DIRECTORIES WHERE directory_name = 'ABC';
    v_message := v_LogDir ;
    some sql statements..
    p_val3 := v_message;
    Return p_val3;
    End procABC;
    SQL> exec pkg_A.procABC('Stage2', NULL, p_val3);
    Package compiles successfully but while execution it returns error as:
    ORA-06550: line 1, column 74:
    PLS-00201: identifier 'p_val3 ' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    Please advise.

    Hi Suresh,
    Thanks for the information and help. I was able to run the package with this usage.
    Now, the issue is
    I need to return a v long string by the OUT parameter so I defined the datatype of OUT parameter as CLOB.
    But, when I declare local variable to run the package with this OUT paramater I get the error :
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ORA-06512: at line 1
    When I pass a shorter string it works.
    Kindly advise me how to resolve this issue while using CLOB as datatype of OUT parameter.

  • Error occured when trying to pass object from Jsp to Applet

    I am trying to pass a serialized object(ie, object class implements java.io.Serializable...so that is not a problem) from a Jsp to an Applet.
    My jsp(Jsp_RMI.jsp) page is:-
    <%@ page import="java.io.*" %>
    <%@ page import="com.itlinfosys.syslab.mfasys.scm.*" %>
    <%@ page import="java.util.*" %>
    <applet code="com/itlinfosys/syslab/mfasys/scm/Applet_RMI" width=200 height=100>
    </applet>
    <%! ObjectOutputStream outputToApplet=null;
    PrintWriter out=null;
    BufferedReader inTest=null;
    %> <% Student student=new Student();
    Vector students=new Vector();
    students.addElement(student);
    outputToApplet=new ObjectOutputStream(response.getOutputStream());
    outputToApplet.writeObject(students);
    out.println(student);
    outputToApplet.flush();
    outputToApplet.close();
    %> <html> <head> <title>My Page</title> </head> <body> </body> </html>
    My Applet Applet_RMI.java is:-
    package com.itlinfosys.syslab.mfasys.scm;
    import java.applet.*;
    import java.net.*;
    import java.io.*;
    import com.itlinfosys.syslab.mfasys.scm.Student;
    import java.util.*;
    public class Applet_RMI extends Applet{
    Vector aStudent=null;
    ObjectInputStream inputFromServlet=null;
    String location="<URL>";
    public void init(){
    getConnection(location);
    public void getConnection(String location) {
    try{
    URL testJsp=new URL(location);
    URLConnection jspConnection=testJsp.openConnection();
    jspConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
    jspConnection.setDoInput(true);
    jspConnection.setDoOutput(true);
    jspConnection.setUseCaches(false);
    jspConnection.setDefaultUseCaches(false);
    inputFromServlet=new ObjectInputStream(jspConnection.getInputStream());
    aStudent=(Vector)inputFromServlet.readObject();
    }catch(MalformedURLException e){ System.out.println(e);
    catch(IOException e){
    System.out.println(e);
    catch(ClassNotFoundException e){ System.out.println(e);
    I am using netscape-4.73 on weblogic server. On server when I try to view Jsp page it gives netscape.security.AppletSecurity Exception.
    When I am trying to call this Jsp from IE-5 on my client machine, I am getting error:-"java.io.StreamCorruptedException: InputStream does not contain a serialized" Pl help me out.

    You should probably change your implementation to use a servlet rather than JSP. There may be extra stuff being put in by the JSP. Besides, servlets run faster. Here is some code that may help.
    From the Servlet:
      public void doPost(
          HttpServletRequest               httpServletRequest,
          HttpServletResponse              httpServletResponse )
          throws ServletException, IOException {
        ObjectInputStream in = new ObjectInputStream(new GZIPInputStream(httpServletRequest.getInputStream()));
        requestObject = in.readObject() ;
        ObjectOutputStream out = new ObjectOutputStream(new GZIPOutputStream(httpServletResponse.getOutputStream()));
        out.writeObject(responseObject);
        out.close();
      } //end doPost()And from the Applet:
      public Object doServletCall(
          Object                           sendObject ) {
        try {
          HttpURLConnection con = (HttpURLConnection)servlet.openConnection() ;
          con.setRequestMethod("POST");
          con.setDoInput(true);
          con.setDoOutput(true);
          con.setUseCaches(false);
          con.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
          ObjectOutputStream out = new ObjectOutputStream(new GZIPOutputStream(con.getOutputStream()));
          out.writeObject(sendObject);
          out.flush();
          out.close();
          ObjectInputStream in = new ObjectInputStream(new GZIPInputStream(con.getInputStream()));
          Object returnObject = in.readObject() ;
          in.close();
          return returnObject ;
        } catch (IOException e) {
          e.printStackTrace();
        } catch (ClassNotFoundException e) {
          e.printStackTrace();
        } //end try
        return null ;
      } //end doServletCall()Of course you can remove the ZIP and send object if you don't need them

  • HT202157 When I try to update my Apple TV software, I get an error message "update was unsuccessful try again later". I've tried downloading the update for two weeks. Are there any recommendations?

    When I try to update my Apple TV software, I get an error message "update was unsuccessful try again later". I've tried downloading the update for two weeks. Are there any recommendations?

    If your problem persists get yourself a micro USB cable (sold separately), you can restore your Apple TV from iTunes:
    Remove ALL cables from Apple TV. (if you don't you will not see Apple TV in the iTunes Source list)
    Connect the micro USB cable to the Apple TV and to your computer.
    Reconnect the power cable (only for Apple TV 3)
    Open iTunes.
    Select your Apple TV in the Devices list, and then click Restore.
    (You may already have a micro USB cable if you have a camera or other digital device)

  • Transitioned from an older G5 Pro to a new iMac. My Final Cut files are on a 2T WD external HD. When I try to boot I get a "General Error 41" and files do not load. Took the WD to the Apple Store and tried it on one of their iMacs...it works OK. Ideas?

    Transitioning from an older G5 Pro to a new iMac. My Final Cut Express files are on a 2T WD external HD. When I try to load a project to the iMac I get a "General Error 41" and the files do not load. Took the WD the Apple Store and tried it on one of their iMacs...it works fine. The problem seems to be in my new iMac, other WD's with different files load OK. Any ideas?

    Hi
    Can it be so that You try to boot a G5 (Power) Mac from one external hard disk - then try to boot an INTEL Mac from same external Mac.
    WILL NOT WORK - It's not just the Mac OS Extended formation that plays a part here - they have to be formatted differently to be bootable on each system.
    I don't think there is any solution to this AT ALL.
    When You format a hard disk.
    • Select Partitions
    • Under the graphic representation to the left there is an Alternative button
    Here You select if it's supposed to be Bootable on a Power CPU or INTEL-CPU
    No other possibilities.
    Yours Bengt W

  • When trying to import videos off of a CD I continually get error code -36 on one of the videos. How can I fix this?

    When trying to import videos off of a CD I continually get error code -36 on one of the videos. How can I fix this?

    Contact Apple and request a 10.4 or possibly a 10.5 distribution disk for this system, if you've not obtained that DVD disk from the seller. 
    Boot and use that distribution disk to wipe the hard disk via Disk Utility, and to then reinstall OS X. 
    Best to start with a fresh installation of OS X, as that'll provide the default environment and not something that's been customized and extended by the previous owner.
    The last OS X version that was supported for most PowerMac G5 systems was 10.5.8, and that would be preferable — if your Mac supports that.
    If you're not sure which Mac you have, then use the  > About This Mac from the menu and request more information on the system.  You're looking for a model number listed there, and that'd be something like PowerMac7,3 or PowerMac11,2 for a ~2005-vintage PowerMac system.  Whatever model number you have can then be used to determine the general specs for the configuration, and what the last version of OS X that was supported for the system.

Maybe you are looking for