Problem in retrieving query string parameters

Hi All,
AM working on wsrp in weblogic..Have a doubt in it..
I have two tabs in my application home page..One is tab HOME and another one is tab SEARCH..
So i want to navigate between these two tabs and i have my consumer portlet in tab HOME and producer portlet in tab SEARCH..
AM trying to pass some values when i click the tab SEARCH from the home page in query string using <render:param> tag.. AM using that tag, since have used <render:paramURL> tag for navigation..
so it will be like this:
<render:param name="test" value="sample"/></render:pageUrl>">
but am not able to retrieve the value in my producer doview()..
i get NULL value
when i try to access it using
request.getParameter("test")
but when i focus the mouse pointer on the SEARCH tab in my application, i see the value gets appended to the query string but not able to retrieve it inmy producer portlet..
Does anyone have idea about this??
Regards

Hello,
There is no way to generate a URL to another portal page from a producer portlet, as the producer has no idea what the structure of the consumer-side portal looks like or how to change a page.
By far your best bet is to use events to change the page, and put an "activatePage" handler on the portlet on your "HOME" page, and send an event to trigger the page change.
Put an "activatePage" handler in your remote portlet's .portlet file (on the producer side), such as:
<?xml version="1.0" encoding="UTF-8"?>
<portal:root xmlns:html="http://www.w3.org/1999/xhtml-netuix-modified/1.0.0" xmlns:portal="http://www.bea.com/servers/netuix/xsd/portal/support/1.0.0" xmlns:netuix="http://www.bea.com/servers/netuix/xsd/controls/netuix/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/servers/netuix/xsd/portal/support/1.0.0 portal-support-1_0_0.xsd">
    <netuix:portlet title="Sample Page Activating Portlet" definitionLabel="eventsLinkDef1">
        <netuix:handleCustomEvent event="SampleCustomEvent">
            <netuix:activatePage /> <!-- This changes the page to the page this portlet is on when this event is received -->
        </netuix:handleCustomEvent>
        <netuix:titlebar>
            <netuix:minimize/>
            <netuix:maximize/>
        </netuix:titlebar>
        <netuix:content>
            <netuix:jspContent contentUri="whatever"/>
        </netuix:content>
    </netuix:portlet>
</portal:root>This way, when you send the event (and you can include a payload in the event if you want to send search terms), the consumer will automatically switch pages to the page containing the search portlet. And it works over WSRP and locally (not over WSRP).
Kevin

Similar Messages

  • Using Query String Parameters with Session Scoped bean

    I would like to pass query string parameters from a product page (user clicks on a specific product commandLink) that is request scope to a details page that is session scoped.
    The problem is that the session scoped page only handles the first request. If you view the details of a product and then navigate back to the product page and choose another product ... the details page will not handle the new query string parameters and display the details for the first product chosen.
    Is there a way to make the session scoped bean recognize the query string parameters past the first request?

    I was able to replicate this problem with a very simple app that performs a redirection... just like the real app. Here's the simple app that I put together:
    From request scope page:
    <f:view>
             <h:form>
               <h:commandButton value="Link 1" action="#{reqbean.Link1}"/>
               <br/><br/>
              <h:commandButton value="Link 2" action="#{reqbean.Link2}"/>
            </h:form>
           </f:view>
    From request scope bean:
    public String Link1() throws IOException
        // Add event code here...
        //redirect the user
        FacesContext.getCurrentInstance().getExternalContext().redirect("untitled2.jspx?p=1");
        return null;
      public String Link2() throws IOException
        // Add event code here...
        //redirect the user
        FacesContext.getCurrentInstance().getExternalContext().redirect("untitled2.jspx?p=2");
        return null;
      }At this point... I put a println in the constructor of the session scoped bean because this is where I want to get the query string params. The constructor only gets called the first time a redirect is performed.

  • UiXML and query string parameters

    Is there a simple way to access a query string parameter within the destination page?
    Example:
    - in my source page I have something like:
    <link text="My page destination"
    destination="page?param1=value1" />
    What I want is to be able to acces directly to the param1 within page.uix without handling events or writing any kind of java code.
    I have tried to use ctrl:page, ctrl:eventResult or ctrl:servletRequest without success (thought it was not the right thing to do but gave it a try anyway).
    As i understand (?) the doc query string parameters are event parameters:
    - does it mean we can only deal with query string parameters in an event handler?
    Oscar

    Hi Oscar -
    As i understand (?) the doc query string parameters are event parameters:
    - does it mean we can only deal with query string parameters in an event handler? Right. The UIX Controller allows you to pass data to a new page using URL parameters in one of two ways: as event parameters - in which case you need to have a corresponding event handler - or as page properties. So, the built-in data providers that are supported by the UIX Controller (ctrl:page, ctrl:eventResult) are designed for supporting these two mechanisms.
    If you do not want to write an event handler, then you could consider using page properties to pass your parameters. The following link shows how to use the pageURL bound value to construct a destination which includes a single page property:
    <link text="Go to target page" xmlns="http://xmlns.oracle.com/uix/ui">
    <boundAttribute name="destination">
    <pageURL name="targetPage" xmlns="http://xmlns.oracle.com/uix/controller">
    <properties>
    <property key="prop1" value="value1"/>
    </properties>
    </pageURL>
    </boundAttribute>
    </link>
    And the following sample shows how to bind to the same property:
    <styledText data:text="prop1@ctrl:page"/>
    Andy

  • Masking of query string parameters

    Hello all,
     I have a dot net application which has a query string parameters coming from a sharepoint site. I want to mask those incoming query string parameters.
    Can anybody sugeest me whats the best method to mask paramters which are coming from another application, but not from any other aspx page.
     Any help is greatly appreciated.
    Thanks

    Hello,
    Seems that you've post your question in Sharepoint Forums, and some developers have given you suggestions or solutions. Please check the answers there and follow up if needed.
    https://social.msdn.microsoft.com/Forums/office/en-US/d999d231-c517-4dbb-80e3-ede99eab09ed/encrypt-query-string-parameters?forum=sharepointdevelopment#d999d231-c517-4dbb-80e3-ede99eab09ed
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Encrypt query string parameters

    Hi All,
     I have a SharePoint designer workflow email. I want to send encrypted link to users within email. Is there any way to send encrypted query string parameters?
     Please guide me how to send parameters with url in email so that users cannot see it.
      All suggestions are highly appreciated.
    Regards and Thanks 

    Hi,
    Per my knowledge, we can't Encrypt query string parameters in SharePoint Designer.
    As a workaround, we can encrypt query string parameters using C# code and store the URL in a list. Then we can get the URL in SharePoint Designer.
    http://www.codeproject.com/Articles/33350/Encrypting-Query-Strings
    Best Regards
    Dennis Guo
    TechNet Community Support

  • [svn:osmf:] 13412: WebPlayer: optimizing JS code to forward all query string parameters to WebPlayer.swf .

    Revision: 13412
    Revision: 13412
    Author:   [email protected]
    Date:     2010-01-11 02:02:20 -0800 (Mon, 11 Jan 2010)
    Log Message:
    WebPlayer: optimizing JS code to forward all query string parameters to WebPlayer.swf.
    Modified Paths:
        osmf/trunk/apps/samples/framework/WebPlayer/html-template/index.template.html
        osmf/trunk/apps/samples/framework/WebPlayer/src/Configuration.as

    ls -l /var/run/lighttpd/
    And how are you spawning the php instances? I don't see that in the daemons array anywhere.
    EDIT: It looks like the info in that page is no longer using pre-spawned instances, but lighttpd adaptive-spawn. The documentation has been made inconsistent it looks like.
    You will note that with pre-spawned information, the config looks different[1].
    You need to do one or the other, not both (eg. choose adaptive-spawn, or pre-spawn..not both).
    [1]: http://wiki.archlinux.org/index.php?tit … oldid=8051 "change"

  • How to customize the SharePoint 2010 search query string parameters

    Hi All,
    I am trying to redirect default SharePoint search to a custom search results page.
    I modified the Search Settings to redirect to the URL that I want.
    But my custom search page takes different query string parameters to provide the results.
    Eg: SharePoint search passes k=search term when we perform a search. But my custom page needs
    test=search term
    I would like to pass 'test' instead of 'k' as a query string. Is this possible?
    Thanks
    Carol

    There is no way out of the box to change it.  You could always write your own control that passes the value or inherit from SearchBoxEx web part (if you are using a search center) to pass a different value.  Query String Filter web part won't
    help you here I am afraid.  However, wouldn't it be easier just to change your code to take the value that SharePoint passes you?
    Corey Roth - SharePoint Server MVP blog:
    www.dotnetmafia.com twitter: @coreyroth

  • FLVPlayback source with query strings (parameters) doesn't load

    Flash version: CS4
    AS version: AS3
    I'm currently trying to use the FLVPlayback component and pass a source FLV that's living on a cloudfront webserver. The problem is that the cloudfront requires authentication in the form of query strings in the source FLV. For example:
    import fl.video.*;
    var mainMovie:FLVPlayback = new FLVPlayback();
    mainMovie.source = "http://www.somedomainname.com/firmware.flv?dummyquery=22";
    trace(addChild(mainMovie));
    As soon as I take away the "dummyquery", it works fine. When I add a query string, it breaks (nothing loads).
    Here is the error output I get:
    [object FLVPlayback]
    VideoError: 1005: Invalid xml: URL: "http://www.somedomainname.com/firmware.flv?dummyquery=22&FLVPlaybackVersion=2.1" No root node found; if url is for an flv it must have .flv extension and take no parameters
         at fl.video::SMILManager/http://www.adobe.com/2007/flash/flvplayback/internal::xmlLoadEventHandler()
         at flash.events::EventDispatcher/dispatchEventFunction()
         at flash.events::EventDispatcher/dispatchEvent()
         at flash.net::URLLoader/onComplete()
    It adds on "&FLVPlaybackVersion=2.1" to the end.
    I saw a different article that said I should add a dummy variable at the end like "&dummy=.flv" because I was told that Flash is basically looking for an .flv extension at the end and you can trick it, but it doesn't work because they add on additional code.
    Does anyone know how to work around this?

    Hey supervu,
    I know you already found a workaround to make this work, just figured I'd post an alternative to editing the FLVPlayback compoent. I also am retrieving an FLV file via a .Net ASHX file. To keep both worlds happy, I used a URLRewriter module to translate for me... this one translates what I am using for the FLVPlayback component source:
    http://domain.com/flv/22.flv  to be resolved as http://domain.com/API/resource.ashx?ID=22
    There is of course no flv folder in the root of my application...
    Here is my very simple URLRewriter class in vb.net:
    Imports Microsoft.VisualBasic
    Imports System
    Imports System.Web
    Public Class URLRewriter
        Implements IHttpModule
        Public Sub Init(ByVal inst As System.Web.HttpApplication) Implements System.Web.IHttpModule.Init
            AddHandler inst.BeginRequest, AddressOf Me.OnBeginRequest
        End Sub
        Public Sub OnBeginRequest(ByVal app As Object, ByVal e As EventArgs)
            Dim inst As HttpApplication = CType(app, HttpApplication)
            Dim req_path As String = inst.Context.Request.Path
            Dim trans_path As String = ""
            Dim search As String = "/flv/"
            Dim pos As Integer = req_path.IndexOf("/flv/")
            If pos > -1 Then
                Dim key as string = req_path.Substring(pos + search.Length, (req_path.LastIndexOf(".flv") - (pos + search.Length)))
                HttpContext.Current.Response.Redirect("~/API/resource.ashx?ID=" & key )
            End If
        End Sub
        Public Sub Dispose() Implements System.Web.IHttpModule.Dispose
        End Sub
    End Class
    and make sure you add this to your web.config.. this will cause URLRewriter to intercept all HTTP requests, and redirect as needed.
    <system.web>
         <httpModules>    
              <add name="URLRewriter" type="[Namespace].URLRewriter"/>
          </httpModules>
    </system.web>
    Hope this helps someone.

  • Reports 6i Encrypting query string parameters using Web.Show_Document()

    I am developing Forms 6i form which initiates a report on our reports server (using rwcgi60) using a call to Web.Show_Document(). However, we pass several parameters to the report from the form which we'd like to encrypt, otherwise they're likely to be abused.
    For example, I might have something like:
    http://www.myserver.com/dev60cgi/rwcgi60?report=MYREPORT&p_unsecure_param=1234
    I am aware of the following document which describes how to use a JavaBean implmentation and client cookie to hide sensitive information using a client side cookie - but this appears to be specific to hiding user logon information - can it be extended to cover any parameter on the query string?
    http://www.oracle.com/technology/products/forms/pdf/secure_webshowdoc_rep6i.pdf
    ...or will I have to provide my own solution - e.g. perhaps using the DBMS_OBFUSCATION encryption and decryption functions to pass an encrypted parameter string to the report, and have the report decrypt the string on the reports server....
    I should probably point out that the parameter values are dynamic - not static, so adding an entry to cgicmd.dat isn't going to solve my problem.
    Any ideas?
    Shane

    Frank,
    Thanks for confirming this - this is what I had suspected - just wanted to check that there wasn't already some inbuilt functionality which I had overlooked. DBMS_OBFUSCATION_TOOLKIT it is then!
    Shane

  • Passing query string parameters to Visual Web Parts?

    Does anyone know how to get the parameters from a query string to a Visual Web Part?
    Dan Marth

    Hi,
    you can read the query string parameter from the code behind using:
    Request.QueryString["YourParam"];
    You can also use Javascript or jQuery:
    http://archive.plugins.jquery.com/project/query-object
    http://javascript.about.com/library/blqs1.htm
    HTH!
    Regards, Sjoukje
    Web: http://sjoukjezaal.com | LinkedIn:
    http://www.linkedin.com/in/sjoukjezaal | Twitter:
    @SjoukjeZaal
    Please click "Propose As Answer" if a post solves your problem or "Vote As Helpful" if a post has been useful to you.

  • Problem in using query bind parameters with dynamic domains

    Hi JHeadstart Team,
    I am trying to implement the functionality you have mentioned in the chapter 3 of JHS Developer's Guide Using Query Bind Parameters section. I followed the instructions but when I run the application, the following errors are shown on the top of the page :
    javax.faces.FacesException: javax.faces.FacesException: Can't set managed bean property: 'namedParams'.
    javax.faces.FacesException: javax.faces.FacesException: Possible cycle reference to managed bean "ElgOfMajDomainQueryBindParams"
    javax.faces.FacesException: javax.faces.FacesException: Can't set managed bean property: 'namedParams'.
    javax.faces.FacesException: javax.faces.FacesException: Possible cycle reference to managed bean "ElgOfMajDomainQueryBindParams"
    I also read the chapter 5 - Query Bind Parameters and found that there is a difference between my page definition and the one mentioned in the JHS Developer's Guide .the refresh property in the InvokeAction section of our page definition was "ifNeeded" and I changed it to "renderModel". Now I just get these 2 following errors :
    javax.faces.FacesException: javax.faces.FacesException: Can't set managed bean property: 'namedParams'.
    javax.faces.FacesException: javax.faces.FacesException: Can't set managed bean property: 'namedParams'.
    What is the probable cause of this problem ?
    Any help would be appreciated.
    Best Regards,
    Navid
    P.S. We are using Jdeveloper 10.1.3 and jhs 10.1.3 biuld 97.

    Dear Steven,
    I have noticed that I have this difficulty with every dynamic domain which uses query bind parameters.
    Here is a scenario which leads to the same error.
    I want to have a read only view object on cg_ref_codes table with a p_domain_name parameter so that I can use it for every drop down list in my application.
    1- I added a read only view with the following query :
    select rv_domain,rv_low_value ,rv_high_value ,rv_abbreviation ,rv_meaning
    from cg_ref_codes
    where (:p_domain_name is null or rv_domain = :p_domain_name)
    2- I added a bind variable to the view with the name of p_domain_name
    3- I added the view to application module
    4- I made a dynamic domain and put the following values in the query bind parameters but I always got the same errors and the drop down list always showed every record in cg_ref_codes which probably means that the parameter was sent to view object with the value of null.
    p_domain_name=#{'RELIGION'}
    p_domain_name=#{RELIGION}
    p_domain_name=#{"RELIGION"}
    p_domain_name='RELIGION'
    I also tried to use a trick to check if this problem relate to constant value, so I update one field of my form to the constant I wanted and used the following value for query bind parameters :
    p_domain_name=#{bindings.EngOrgPersonFirstName.inputValue}
    but the result was the same.
    I am realy confused with this error. Any prompt help would be highly appreciated.
    Thanks in advance,
    Navid
    Here is one of stack trace :
    14:05:10 ERROR (ApplicationImpl) -Managedbean ReligionsQueryBindParams could not be created Can't set managed bean property: 'namedParams'.
    javax.faces.FacesException: Can't set managed bean property: 'namedParams'.
         at com.sun.faces.config.ManagedBeanFactory.setPropertiesIntoBean(ManagedBeanFactory.java:576)
         at com.sun.faces.config.ManagedBeanFactory.newInstance(ManagedBeanFactory.java:233)
         at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:256)
         at com.sun.faces.el.VariableResolverImpl.resolveVariable(VariableResolverImpl.java:78)
         at oracle.adfinternal.view.faces.el.AdfFacesVariableResolver.resolveVariable(AdfFacesVariableResolver.java:40)
         at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:79)
         at oracle.adfinternal.view.faces.model.VariableResolverUtils$FacesResolver.resolveVariable(VariableResolverUtils.java:144)
         at oracle.adf.share.http.HttpADFContextVariableResolverImpl.resolveVariable(HttpADFContextVariableResolverImpl.java:232)
         at oracle.adf.model.binding.DCVariableResolverImpl.resolveVariable(DCVariableResolverImpl.java:84)
         at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:70)
         at com.sun.faces.el.impl.NamedValue.evaluate(NamedValue.java:125)
         at com.sun.faces.el.impl.ComplexValue.evaluate(ComplexValue.java:146)
         at com.sun.faces.el.impl.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:243)
         at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:173)
         at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:154)
         at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator._evaluate(FacesExpressionEvaluator.java:101)
         at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator.evaluate(FacesExpressionEvaluator.java:69)
         at oracle.adf.model.binding.DCUtil.elEvaluate(DCUtil.java:765)
         at oracle.adf.model.binding.DCBindingContainer.evaluateParameter(DCBindingContainer.java:1078)
         at oracle.adf.model.binding.DCMethodParameterDef.resolveParameterValue(DCMethodParameterDef.java:213)
         at oracle.adf.model.binding.DCMethodParameter.resolveParameterValue(DCMethodParameter.java:63)
         at oracle.adf.model.binding.DCInvokeMethod.fetchAndSaveParameterValues(DCInvokeMethod.java:278)
         at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:195)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1287)
         at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:1802)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:625)
         at oracle.adf.model.binding.DCInvokeActionDef$DCInvokeAction.refresh(DCInvokeActionDef.java:130)
         at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:2518)
         at oracle.adf.model.binding.DCBindingContainer.refresh(DCBindingContainer.java:2257)
         at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.prepareModel(PageLifecycleImpl.java:104)
         at oracle.adf.controller.v2.lifecycle.Lifecycle$8.execute(Lifecycle.java:210)
         at oracle.adf.controller.v2.lifecycle.Lifecycle.executePhase(Lifecycle.java:116)
         at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.mav$executePhase(ADFPhaseListener.java)
         at oracle.adf.controller.faces.lifecycle.ADFPhaseListener$4.after(ADFPhaseListener.java:331)
         at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:97)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:211)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:332)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
         at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    Caused by: java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.commons.beanutils.PropertyUtils.getSimpleProperty(PropertyUtils.java:1185)
         at org.apache.commons.beanutils.PropertyUtils.getNestedProperty(PropertyUtils.java:772)
         at org.apache.commons.beanutils.PropertyUtils.getProperty(PropertyUtils.java:801)
         at com.sun.faces.config.ManagedBeanFactory.setMapPropertiesIntoBean(ManagedBeanFactory.java:773)
         at com.sun.faces.config.ManagedBeanFactory.setPropertiesIntoBean(ManagedBeanFactory.java:519)
         ... 57 more
    Caused by: java.lang.NullPointerException
         at oracle.jheadstart.controller.jsf.bean.QueryBindParams.getNamedParams(QueryBindParams.java:94)
         ... 66 more
    14:05:11 DEBUG (JhsPageLifecycle) -Executing prepareModel, page=/WEB-INF/engorg/page/EngOrgPerson.jspx, pagedef=EngOrgPersonPageDef
    14:05:11 DEBUG (JhsNavigationHandlerImpl) -Executing checkRoles
    14:05:11 ERROR (ManagedBeanFactory) -Possible cyclic reference to managedBean ReligionsQueryBindParams
    14:05:11 ERROR (ApplicationImpl) -Managedbean ReligionsQueryBindParams could not be created Possible cycle reference to managed bean "ReligionsQueryBindParams"
    javax.faces.FacesException: Possible cycle reference to managed bean "ReligionsQueryBindParams"
         at com.sun.faces.config.ManagedBeanFactory.newInstance(ManagedBeanFactory.java:189)
         at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:256)
         at com.sun.faces.el.VariableResolverImpl.resolveVariable(VariableResolverImpl.java:78)
         at oracle.adfinternal.view.faces.el.AdfFacesVariableResolver.resolveVariable(AdfFacesVariableResolver.java:40)
         at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:79)
         at oracle.adfinternal.view.faces.model.VariableResolverUtils$FacesResolver.resolveVariable(VariableResolverUtils.java:144)
         at oracle.adf.share.http.HttpADFContextVariableResolverImpl.resolveVariable(HttpADFContextVariableResolverImpl.java:232)
         at oracle.adf.model.binding.DCVariableResolverImpl.resolveVariable(DCVariableResolverImpl.java:84)
         at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:70)
         at com.sun.faces.el.impl.NamedValue.evaluate(NamedValue.java:125)
         at com.sun.faces.el.impl.ComplexValue.evaluate(ComplexValue.java:146)
         at com.sun.faces.el.impl.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:243)
         at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:173)
         at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:154)
         at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator._evaluate(FacesExpressionEvaluator.java:101)
         at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator.evaluate(FacesExpressionEvaluator.java:69)
         at oracle.adf.model.binding.DCUtil.elEvaluate(DCUtil.java:765)
         at oracle.adf.model.binding.DCBindingContainer.evaluateParameter(DCBindingContainer.java:1078)
         at oracle.adf.model.binding.DCMethodParameterDef.resolveParameterValue(DCMethodParameterDef.java:213)
         at oracle.adf.model.binding.DCMethodParameter.resolveParameterValue(DCMethodParameter.java:63)
         at oracle.adf.model.binding.DCInvokeMethod.fetchAndSaveParameterValues(DCInvokeMethod.java:278)
         at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:195)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1287)
         at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:1802)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:625)
         at oracle.adf.model.binding.DCInvokeActionDef$DCInvokeAction.refresh(DCInvokeActionDef.java:130)
         at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:2518)
         at oracle.adf.model.binding.DCBindingContainer.refresh(DCBindingContainer.java:2257)
         at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.prepareModel(PageLifecycleImpl.java:104)
         at oracle.jheadstart.controller.jsf.lifecycle.JhsPageLifecycle.prepareModel(JhsPageLifecycle.java:798)
         at oracle.adf.controller.v2.lifecycle.Lifecycle$8.execute(Lifecycle.java:210)
         at oracle.adf.controller.v2.lifecycle.Lifecycle.executePhase(Lifecycle.java:116)
         at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.mav$executePhase(ADFPhaseListener.java)
         at oracle.adf.controller.faces.lifecycle.ADFPhaseListener$4.after(ADFPhaseListener.java:331)
         at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:97)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:211)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:332)
         at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
         at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
         at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    14:05:11 DEBUG (BreadcrumbStack) -Adding breadcrumb to stack: "?????? ??????? ??? ?????" (/WEB-INF/engorg/page/EngOrgPerson.jspx)
    14:05:11 DEBUG (JhsPageLifecycle) -Executing prepareRender, page=/WEB-INF/engorg/page/EngOrgPerson.jspx, pagedef=EngOrgPersonPageDef
    14:05:11 DEBUG (BreadcrumbStack) -Breadcrumb already on stack; rolling back the stack
    14:05:11 DEBUG (BreadcrumbStack) -Adding breadcrumb to stack: "?????? ??????? ??? ?????" (/WEB-INF/engorg/page/EngOrgPerson.jspx)
    06/11/20 14:05:11 javax.faces.el.EvaluationException: javax.faces.FacesException: javax.faces.FacesException: Can't set managed bean property: 'namedParams'.
    06/11/20 14:05:11      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:206)
    06/11/20 14:05:11      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:154)
    06/11/20 14:05:11      at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator._evaluate(FacesExpressionEvaluator.java:101)
    06/11/20 14:05:11      at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator.evaluate(FacesExpressionEvaluator.java:69)
    06/11/20 14:05:11      at oracle.adf.model.binding.DCUtil.elEvaluate(DCUtil.java:765)
    06/11/20 14:05:11      at oracle.adf.model.binding.DCBindingContainer.evaluateParameter(DCBindingContainer.java:1078)
    06/11/20 14:05:11      at oracle.adf.model.binding.DCMethodParameterDef.resolveParameterValue(DCMethodParameterDef.java:213)
    06/11/20 14:05:11      at oracle.adf.model.binding.DCMethodParameter.resolveParameterValue(DCMethodParameter.java:63)
    06/11/20 14:05:11      at oracle.adf.model.binding.DCInvokeMethod.fetchAndSaveParameterValues(DCInvokeMethod.java:278)
    06/11/20 14:05:11      at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:195)
    06/11/20 14:05:11      at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1287)
    06/11/20 14:05:11      at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:1802)
    06/11/20 14:05:11      at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:625)
    06/11/20 14:05:11      at oracle.adf.model.binding.DCInvokeActionDef$DCInvokeAction.refresh(DCInvokeActionDef.java:130)
    06/11/20 14:05:11      at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:2518)
    06/11/20 14:05:11      at oracle.adf.model.binding.DCBindingContainer.refresh(DCBindingContainer.java:2257)
    06/11/20 14:05:11      at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.prepareModel(PageLifecycleImpl.java:104)
    06/11/20 14:05:11      at oracle.adf.controller.v2.lifecycle.Lifecycle$8.execute(Lifecycle.java:210)
    06/11/20 14:05:11      at oracle.adf.controller.v2.lifecycle.Lifecycle.executePhase(Lifecycle.java:116)
    06/11/20 14:05:11      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.mav$executePhase(ADFPhaseListener.java)
    06/11/20 14:05:11      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener$4.after(ADFPhaseListener.java:331)
    06/11/20 14:05:11      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:97)
    06/11/20 14:05:11      at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:211)
    06/11/20 14:05:11      at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
    06/11/20 14:05:11      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
    06/11/20 14:05:11      at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    06/11/20 14:05:11      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:332)
    06/11/20 14:05:11      at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    06/11/20 14:05:11      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
    06/11/20 14:05:12      at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
    06/11/20 14:05:12      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
    06/11/20 14:05:12      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)
    06/11/20 14:05:12      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    06/11/20 14:05:12      at java.lang.Thread.run(Thread.java:595)
    06/11/20 14:05:12 Caused by: javax.faces.FacesException: javax.faces.FacesException: Can't set managed bean property: 'namedParams'.
    06/11/20 14:05:12      at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:266)
    06/11/20 14:05:12      at com.sun.faces.el.VariableResolverImpl.resolveVariable(VariableResolverImpl.java:78)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.el.AdfFacesVariableResolver.resolveVariable(AdfFacesVariableResolver.java:40)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:79)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$FacesResolver.resolveVariable(VariableResolverUtils.java:144)
    06/11/20 14:05:12      at oracle.adf.share.http.HttpADFContextVariableResolverImpl.resolveVariable(HttpADFContextVariableResolverImpl.java:232)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCVariableResolverImpl.resolveVariable(DCVariableResolverImpl.java:84)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:70)
    06/11/20 14:05:12      at com.sun.faces.el.impl.NamedValue.evaluate(NamedValue.java:125)
    06/11/20 14:05:12      at com.sun.faces.el.impl.ComplexValue.evaluate(ComplexValue.java:146)
    06/11/20 14:05:12      at com.sun.faces.el.impl.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:243)
    06/11/20 14:05:12      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:173)
    06/11/20 14:05:12      ... 44 more
    06/11/20 14:05:12 Caused by: javax.faces.FacesException: Can't set managed bean property: 'namedParams'.
    06/11/20 14:05:12      at com.sun.faces.config.ManagedBeanFactory.setPropertiesIntoBean(ManagedBeanFactory.java:576)
    06/11/20 14:05:12      at com.sun.faces.config.ManagedBeanFactory.newInstance(ManagedBeanFactory.java:233)
    06/11/20 14:05:12      at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:256)
    06/11/20 14:05:12      ... 55 more
    06/11/20 14:05:12 Caused by: java.lang.reflect.InvocationTargetException
    06/11/20 14:05:12      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    06/11/20 14:05:12      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    06/11/20 14:05:12      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    06/11/20 14:05:12      at java.lang.reflect.Method.invoke(Method.java:585)
    06/11/20 14:05:12      at org.apache.commons.beanutils.PropertyUtils.getSimpleProperty(PropertyUtils.java:1185)
    06/11/20 14:05:12      at org.apache.commons.beanutils.PropertyUtils.getNestedProperty(PropertyUtils.java:772)
    06/11/20 14:05:12      at org.apache.commons.beanutils.PropertyUtils.getProperty(PropertyUtils.java:801)
    06/11/20 14:05:12      at com.sun.faces.config.ManagedBeanFactory.setMapPropertiesIntoBean(ManagedBeanFactory.java:773)
    06/11/20 14:05:12      at com.sun.faces.config.ManagedBeanFactory.setPropertiesIntoBean(ManagedBeanFactory.java:519)
    06/11/20 14:05:12      ... 57 more
    06/11/20 14:05:12 Caused by: java.lang.NullPointerException
    06/11/20 14:05:12      at oracle.jheadstart.controller.jsf.bean.QueryBindParams.getNamedParams(QueryBindParams.java:94)
    06/11/20 14:05:12      ... 66 more
    06/11/20 14:05:12 javax.faces.el.EvaluationException: javax.faces.FacesException: javax.faces.FacesException: Possible cycle reference to managed bean "ReligionsQueryBindParams"
    06/11/20 14:05:12      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:206)
    06/11/20 14:05:12      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:154)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator._evaluate(FacesExpressionEvaluator.java:101)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator.evaluate(FacesExpressionEvaluator.java:69)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCUtil.elEvaluate(DCUtil.java:765)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCBindingContainer.evaluateParameter(DCBindingContainer.java:1078)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCMethodParameterDef.resolveParameterValue(DCMethodParameterDef.java:213)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCMethodParameter.resolveParameterValue(DCMethodParameter.java:63)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCInvokeMethod.fetchAndSaveParameterValues(DCInvokeMethod.java:278)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:195)
    06/11/20 14:05:12      at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1287)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:1802)
    06/11/20 14:05:12      at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:625)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCInvokeActionDef$DCInvokeAction.refresh(DCInvokeActionDef.java:130)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:2518)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCBindingContainer.refresh(DCBindingContainer.java:2257)
    06/11/20 14:05:12      at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.prepareModel(PageLifecycleImpl.java:104)
    06/11/20 14:05:12      at oracle.jheadstart.controller.jsf.lifecycle.JhsPageLifecycle.prepareModel(JhsPageLifecycle.java:798)
    06/11/20 14:05:12      at oracle.adf.controller.v2.lifecycle.Lifecycle$8.execute(Lifecycle.java:210)
    06/11/20 14:05:12      at oracle.adf.controller.v2.lifecycle.Lifecycle.executePhase(Lifecycle.java:116)
    06/11/20 14:05:12      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.mav$executePhase(ADFPhaseListener.java)
    06/11/20 14:05:12      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener$4.after(ADFPhaseListener.java:331)
    06/11/20 14:05:12      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:97)
    06/11/20 14:05:12      at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:211)
    06/11/20 14:05:12      at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
    06/11/20 14:05:12      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
    06/11/20 14:05:12      at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    06/11/20 14:05:12      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:332)
    06/11/20 14:05:12      at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
    06/11/20 14:05:12      at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
    06/11/20 14:05:12      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
    06/11/20 14:05:12      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)
    06/11/20 14:05:12      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    06/11/20 14:05:12      at java.lang.Thread.run(Thread.java:595)
    06/11/20 14:05:12 Caused by: javax.faces.FacesException: javax.faces.FacesException: Possible cycle reference to managed bean "ReligionsQueryBindParams"
    06/11/20 14:05:12      at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:266)
    06/11/20 14:05:12      at com.sun.faces.el.VariableResolverImpl.resolveVariable(VariableResolverImpl.java:78)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.el.AdfFacesVariableResolver.resolveVariable(AdfFacesVariableResolver.java:40)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:79)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$FacesResolver.resolveVariable(VariableResolverUtils.java:144)
    06/11/20 14:05:12      at oracle.adf.share.http.HttpADFContextVariableResolverImpl.resolveVariable(HttpADFContextVariableResolverImpl.java:232)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCVariableResolverImpl.resolveVariable(DCVariableResolverImpl.java:84)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:70)
    06/11/20 14:05:12      at com.sun.faces.el.impl.NamedValue.evaluate(NamedValue.java:125)
    06/11/20 14:05:12      at com.sun.faces.el.impl.ComplexValue.evaluate(ComplexValue.java:146)
    06/11/20 14:05:12      at com.sun.faces.el.impl.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:243)
    06/11/20 14:05:12      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:173)
    06/11/20 14:05:12      ... 45 more
    06/11/20 14:05:12 Caused by: javax.faces.FacesException: Possible cycle reference to managed bean "ReligionsQueryBindParams"
    06/11/20 14:05:12      at com.sun.faces.config.ManagedBeanFactory.newInstance(ManagedBeanFactory.java:189)
    14:05:12 DEBUG (JhsPageLifecycle) -Executing prepareRender, page=/WEB-INF/engorg/page/EngOrgPerson.jspx, pagedef=EngOrgPersonPageDef
    06/11/20 14:05:12      at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:256)
    06/11/20 14:05:12      ... 56 more
    06/11/20 14:05:12 javax.faces.el.EvaluationException: javax.faces.FacesException: javax.faces.FacesException: Can't set managed bean property: 'namedParams'.
    06/11/20 14:05:12      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:206)
    06/11/20 14:05:12      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:154)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator._evaluate(FacesExpressionEvaluator.java:101)
    14:05:12 DEBUG (BreadcrumbStack) -Breadcrumb already on stack; rolling back the stack
    14:05:12 DEBUG (BreadcrumbStack) -Adding breadcrumb to stack: "?????? ??????? ??? ?????" (/WEB-INF/engorg/page/EngOrgPerson.jspx)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator.evaluate(FacesExpressionEvaluator.java:69)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCUtil.elEvaluate(DCUtil.java:765)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCBindingContainer.evaluateParameter(DCBindingContainer.java:1078)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCMethodParameterDef.resolveParameterValue(DCMethodParameterDef.java:213)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCMethodParameter.resolveParameterValue(DCMethodParameter.java:63)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCInvokeMethod.fetchAndSaveParameterValues(DCInvokeMethod.java:278)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:195)
    06/11/20 14:05:12      at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1287)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:1802)
    06/11/20 14:05:12      at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:625)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCInvokeActionDef$DCInvokeAction.refresh(DCInvokeActionDef.java:130)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:2518)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCBindingContainer.refresh(DCBindingContainer.java:2257)
    06/11/20 14:05:12      at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.prepareModel(PageLifecycleImpl.java:104)
    06/11/20 14:05:12      at oracle.adf.controller.v2.lifecycle.Lifecycle$8.execute(Lifecycle.java:210)
    06/11/20 14:05:12      at oracle.adf.controller.v2.lifecycle.Lifecycle.executePhase(Lifecycle.java:116)
    06/11/20 14:05:12      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.mav$executePhase(ADFPhaseListener.java)
    06/11/20 14:05:12      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener$4.after(ADFPhaseListener.java:331)
    06/11/20 14:05:12      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:97)
    06/11/20 14:05:12      at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:211)
    06/11/20 14:05:12      at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
    06/11/20 14:05:12      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
    06/11/20 14:05:12      at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    06/11/20 14:05:12      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:332)
    06/11/20 14:05:12      at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
    06/11/20 14:05:12      at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
    06/11/20 14:05:12      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
    06/11/20 14:05:12      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)
    06/11/20 14:05:12      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    06/11/20 14:05:12      at java.lang.Thread.run(Thread.java:595)
    06/11/20 14:05:12 Caused by: javax.faces.FacesException: javax.faces.FacesException: Can't set managed bean property: 'namedParams'.
    06/11/20 14:05:12      at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:266)
    06/11/20 14:05:12      at com.sun.faces.el.VariableResolverImpl.resolveVariable(VariableResolverImpl.java:78)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.el.AdfFacesVariableResolver.resolveVariable(AdfFacesVariableResolver.java:40)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:79)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$FacesResolver.resolveVariable(VariableResolverUtils.java:144)
    06/11/20 14:05:12      at oracle.adf.share.http.HttpADFContextVariableResolverImpl.resolveVariable(HttpADFContextVariableResolverImpl.java:232)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCVariableResolverImpl.resolveVariable(DCVariableResolverImpl.java:84)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:70)
    06/11/20 14:05:12      at com.sun.faces.el.impl.NamedValue.evaluate(NamedValue.java:125)
    06/11/20 14:05:12      at com.sun.faces.el.impl.ComplexValue.evaluate(ComplexValue.java:146)
    06/11/20 14:05:12      at com.sun.faces.el.impl.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:243)
    06/11/20 14:05:12      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:173)
    06/11/20 14:05:12      ... 44 more
    06/11/20 14:05:12 Caused by: javax.faces.FacesException: Can't set managed bean property: 'namedParams'.
    06/11/20 14:05:12      at com.sun.faces.config.ManagedBeanFactory.setPropertiesIntoBean(ManagedBeanFactory.java:576)
    06/11/20 14:05:12      at com.sun.faces.config.ManagedBeanFactory.newInstance(ManagedBeanFactory.java:233)
    06/11/20 14:05:12      at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:256)
    06/11/20 14:05:12      ... 55 more
    06/11/20 14:05:12 Caused by: java.lang.reflect.InvocationTargetException
    06/11/20 14:05:12      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    06/11/20 14:05:12      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    06/11/20 14:05:12      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    06/11/20 14:05:12      at java.lang.reflect.Method.invoke(Method.java:585)
    06/11/20 14:05:12      at org.apache.commons.beanutils.PropertyUtils.getSimpleProperty(PropertyUtils.java:1185)
    06/11/20 14:05:12      at org.apache.commons.beanutils.PropertyUtils.getNestedProperty(PropertyUtils.java:772)
    06/11/20 14:05:12      at org.apache.commons.beanutils.PropertyUtils.getProperty(PropertyUtils.java:801)
    06/11/20 14:05:12      at com.sun.faces.config.ManagedBeanFactory.setMapPropertiesIntoBean(ManagedBeanFactory.java:773)
    06/11/20 14:05:12      at com.sun.faces.config.ManagedBeanFactory.setPropertiesIntoBean(ManagedBeanFactory.java:519)
    06/11/20 14:05:12      ... 57 more
    06/11/20 14:05:12 Caused by: java.lang.NullPointerException
    06/11/20 14:05:12      at oracle.jheadstart.controller.jsf.bean.QueryBindParams.getNamedParams(QueryBindParams.java:94)
    06/11/20 14:05:12      ... 66 more
    06/11/20 14:05:12 javax.faces.el.EvaluationException: javax.faces.FacesException: javax.faces.FacesException: Possible cycle reference to managed bean "ReligionsQueryBindParams"
    06/11/20 14:05:12      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:206)
    06/11/20 14:05:12      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:154)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator._evaluate(FacesExpressionEvaluator.java:101)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator.evaluate(FacesExpressionEvaluator.java:69)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCUtil.elEvaluate(DCUtil.java:765)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCBindingContainer.evaluateParameter(DCBindingContainer.java:1078)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCMethodParameterDef.resolveParameterValue(DCMethodParameterDef.java:213)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCMethodParameter.resolveParameterValue(DCMethodParameter.java:63)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCInvokeMethod.fetchAndSaveParameterValues(DCInvokeMethod.java:278)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCInvokeMethod.callMethod(DCInvokeMethod.java:195)
    06/11/20 14:05:12      at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:1287)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCDataControl.invokeOperation(DCDataControl.java:1802)
    06/11/20 14:05:12      at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:625)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCInvokeActionDef$DCInvokeAction.refresh(DCInvokeActionDef.java:130)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:2518)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCBindingContainer.refresh(DCBindingContainer.java:2257)
    06/11/20 14:05:12      at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.prepareModel(PageLifecycleImpl.java:104)
    06/11/20 14:05:12      at oracle.jheadstart.controller.jsf.lifecycle.JhsPageLifecycle.prepareModel(JhsPageLifecycle.java:798)
    06/11/20 14:05:12      at oracle.adf.controller.v2.lifecycle.Lifecycle$8.execute(Lifecycle.java:210)
    06/11/20 14:05:12      at oracle.adf.controller.v2.lifecycle.Lifecycle.executePhase(Lifecycle.java:116)
    06/11/20 14:05:12      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.mav$executePhase(ADFPhaseListener.java)
    06/11/20 14:05:12      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener$4.after(ADFPhaseListener.java:331)
    06/11/20 14:05:12      at oracle.adf.controller.faces.lifecycle.ADFPhaseListener.afterPhase(ADFPhaseListener.java:97)
    06/11/20 14:05:12      at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:211)
    06/11/20 14:05:12      at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
    06/11/20 14:05:12      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
    06/11/20 14:05:12      at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
    06/11/20 14:05:12      at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:332)
    06/11/20 14:05:12      at com.evermind.server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._invokeDoFilter(AdfFacesFilterImpl.java:367)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl._doFilterImpl(AdfFacesFilterImpl.java:336)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl.doFilter(AdfFacesFilterImpl.java:196)
    06/11/20 14:05:12      at oracle.adf.view.faces.webapp.AdfFacesFilter.doFilter(AdfFacesFilter.java:87)
    06/11/20 14:05:12      at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:627)
    06/11/20 14:05:12      at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
    06/11/20 14:05:12      at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)
    06/11/20 14:05:12      at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)
    06/11/20 14:05:12      at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    06/11/20 14:05:12      at java.lang.Thread.run(Thread.java:595)
    06/11/20 14:05:12 Caused by: javax.faces.FacesException: javax.faces.FacesException: Possible cycle reference to managed bean "ReligionsQueryBindParams"
    06/11/20 14:05:12      at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:266)
    06/11/20 14:05:12      at com.sun.faces.el.VariableResolverImpl.resolveVariable(VariableResolverImpl.java:78)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.el.AdfFacesVariableResolver.resolveVariable(AdfFacesVariableResolver.java:40)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:79)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$FacesResolver.resolveVariable(VariableResolverUtils.java:144)
    06/11/20 14:05:12      at oracle.adf.share.http.HttpADFContextVariableResolverImpl.resolveVariable(HttpADFContextVariableResolverImpl.java:232)
    06/11/20 14:05:12      at oracle.adf.model.binding.DCVariableResolverImpl.resolveVariable(DCVariableResolverImpl.java:84)
    06/11/20 14:05:12      at oracle.adfinternal.view.faces.model.VariableResolverUtils$JspResolver.resolveVariable(VariableResolverUtils.java:70)
    06/11/20 14:05:12      at com.sun.faces.el.impl.NamedValue.evaluate(NamedValue.java:125)
    06/11/20 14:05:12      at com.sun.faces.el.impl.ComplexValue.evaluate(ComplexValue.java:146)
    06/11/20 14:05:12      at com.sun.faces.el.impl.ExpressionEvaluatorImpl.evaluate(ExpressionEvaluatorImpl.java:243)
    06/11/20 14:05:12      at com.sun.faces.el.ValueBindingImpl.getValue(ValueBindingImpl.java:173)
    06/11/20 14:05:12      ... 45 more
    06/11/20 14:05:12 Caused by: javax.faces.FacesException: Possible cycle reference to managed bean "ReligionsQueryBindParams"
    06/11/20 14:05:12      at com.sun.faces.config.ManagedBeanFactory.newInstance(ManagedBeanFactory.java:189)
    06/11/20 14:05:12      at com.sun.faces.application.ApplicationAssociate.createAndMaybeStoreManagedBeans(ApplicationAssociate.java:256)
    06/11/20 14:05:12      ... 56 more
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\jlib\sync.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\jlib\netcfg.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\lib\jsse.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\lib\jnet.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\lib\jcert.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\ldap\oidadmin\dasnls.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\owm\jlib\owm-3_0.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\jlib\oembase.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\jlib\oemlt.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\encryption\jlib\ojpse.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\oracle\jlib\ldapjclnt10.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\ldap\jlib\ldapjclnt10.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\jlib\owm-3_0.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\oem_bin\lib\oembase.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\oem_bin\lib\oemlt.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\oracle\jlib\oraclepki.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\lib\xmlparserv2.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\lib\xmlparserv2.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\oracle\lib\xmlparserv2.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\jlib\ldapjclnt10.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\jlib\ldapjclnt10.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\oracle\jlib\ldapjclnt10.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\oracle\jlib\ospnego.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\dms\diagnostics\lib\ojdl.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\oracle\lib\dms.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\xdk\xml.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\webservices\lib\.\namespace.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\javacache\cachedobjects\classes doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\javacache\cachedobjects\share.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\oracle\lib\xschema.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\oracle\jlib\ojmisc.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\j2ee\home\lib\jsse.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\oracle\j2ee\home\lib\jsse.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\j2ee\home\lib\jnet.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\oracle\j2ee\home\lib\jnet.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\dms\lib\dms.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\commons-beanutils.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\commons-collections.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\commons-digester.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\commons-logging.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\commons-validator.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\jakarta-oro.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\struts-legacy.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\jakarta-taglibs\commons-logging-1.0.3\log4j.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\jakarta-taglibs\commons-logging-1.0.3\log4j-core.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\oracle\jlib\ojpse.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\jakarta-struts\lib\log4j.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory D:\Oracle\Jdev10g\jakarta-struts\lib\log4j-core.jar doesn't exist on classpath
    06/11/20 14:05:16 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\classes doesn't exist on classpath
    06/11/20 14:05:18 E:\Users\JdevProjects\Mhud0829_3\ViewController\classes\.jsps\_regions\_engorg\_MhudAppModuleMenu1Tabs_jspx.java:32: warning #556: variable session assigned to but never used
    06/11/20 14:05:18 HttpSession session = pageContext.getSession();06/11/20 14:05:18 ^
    06/11/20 14:05:18 E:\Users\JdevProjects\Mhud0829_3\ViewController\classes\.jsps\_regions\_engorg\_MhudAppModuleMenu1Tabs_jspx.java:34: warning #556: variable application assigned to but never used
    06/11/20 14:05:18 ServletContext application = pageContext.getServletContext();06/11/20 14:05:18 ^
    06/11/20 14:05:18 E:\Users\JdevProjects\Mhud0829_3\ViewController\classes\.jsps\_regions\_engorg\_MhudAppModuleMenu1Tabs_jspx.java:36: warning #556: variable page assigned to but never used
    06/11/20 14:05:18 MhudAppModuleMenu1Tabsjspx page = this;06/11/20 14:05:18 ^
    06/11/20 14:05:18 E:\Users\JdevProjects\Mhud0829_3\ViewController\classes\.jsps\_regions\_engorg\_MhudAppModuleMenu1Tabs_jspx.java:37: warning #556: variable config assigned to but never used
    06/11/20 14:05:18 ServletConfig config = pageContext.getServletConfig();06/11/20 14:05:18 ^
    06/11/20 14:05:18 E:\Users\JdevProjects\Mhud0829_3\ViewController\classes\.jsps\_regions\_engorg\_MhudAppModuleMenu1Tabs_jspx.java:38: warning #556: variable __ojsp_varRes assigned to but never used
    06/11/20 14:05:18 javax.servlet.jsp.el.VariableResolver __ojsp_varRes = (VariableResolver)new OracleVariableResolverImpl(pageContext);06/11/20 14:05:18 ^
    06/11/20 14:05:18 E:\Users\JdevProjects\Mhud0829_3\ViewController\classes\.jsps\_regions\_engorg\_MhudAppModuleMenu1Tabs_jspx.java:40: warning #556: variable __ojsp_s_out assigned to but never used
    06/11/20 14:05:18 com.evermind.server.http.JspCommonExtraWriter __ojsp_s_out = (com.evermind.server.http.JspCommonExtraWriter) out;06/11/20 14:05:18 ^
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\jlib\sync.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\jlib\netcfg.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\lib\jsse.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\lib\jnet.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\lib\jcert.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\ldap\oidadmin\dasnls.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\owm\jlib\owm-3_0.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\jlib\oembase.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\jlib\oemlt.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\encryption\jlib\ojpse.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\oracle\jlib\ldapjclnt10.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\ldap\jlib\ldapjclnt10.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\jlib\owm-3_0.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\oem_bin\lib\oembase.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\oem_bin\lib\oemlt.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\oracle\jlib\oraclepki.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\lib\xmlparserv2.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\lib\xmlparserv2.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\oracle\lib\xmlparserv2.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\jlib\ldapjclnt10.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\jlib\ldapjclnt10.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\oracle\jlib\ldapjclnt10.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\oracle\jlib\ospnego.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\dms\diagnostics\lib\ojdl.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\oracle\lib\dms.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\xdk\xml.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\webservices\lib\.\namespace.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\javacache\cachedobjects\classes doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\javacache\cachedobjects\share.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\oracle\lib\xschema.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\oracle\jlib\ojmisc.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\j2ee\home\lib\jsse.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\oracle\j2ee\home\lib\jsse.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\j2ee\home\lib\jnet.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\oracle\j2ee\home\lib\jnet.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory D:\Oracle\Jdev10g\dms\lib\dms.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\commons-beanutils.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\commons-collections.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\commons-digester.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\commons-logging.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\commons-validator.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\jakarta-oro.jar doesn't exist on classpath
    06/11/20 14:05:19 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\lib\struts-legacy.jar doesn't exist on classpath
    06/11/20 14:05:20 Warning: directory D:\Oracle\Jdev10g\jakarta-taglibs\commons-logging-1.0.3\log4j.jar doesn't exist on classpath
    06/11/20 14:05:20 Warning: directory D:\Oracle\Jdev10g\jakarta-taglibs\commons-logging-1.0.3\log4j-core.jar doesn't exist on classpath
    06/11/20 14:05:20 Warning: directory D:\Oracle\Jdev10g\oracle\jlib\ojpse.jar doesn't exist on classpath
    06/11/20 14:05:20 Warning: directory D:\Oracle\Jdev10g\jakarta-struts\lib\log4j.jar doesn't exist on classpath
    06/11/20 14:05:20 Warning: directory D:\Oracle\Jdev10g\jakarta-struts\lib\log4j-core.jar doesn't exist on classpath
    06/11/20 14:05:20 Warning: directory E:\Users\JdevProjects\Mhud0829_3\ViewController\public_html\WEB-INF\classes doesn't exist on classpath
    06/11/20 14:05:21 E:\Users\JdevProjects\Mhud0829_3\ViewController\classes\.jsps\_regions\_engorg\_MhudAppModuleEngOrgPersonMenu2Tabs_jspx.java:32: warning #556: variable session assigned to but never used
    06/11/20 14:05:21 HttpSession session = pageContext.getSession();06/11/20 14:05:21 ^
    06/11/20 14:05:21 E:\Users\JdevProjects\Mhud0829_3\ViewController\classes\.jsps\_regions\_engorg\_MhudAppModuleEngOrgPersonMenu2Tabs_jspx.java:34: warning #556: variable application assigned to but never used
    06/11/20 14:05:21 ServletContext application = pageContext.getServletContext();06/11/20 14:05:21 ^
    06/11/20 14:05:21 E:\Users\JdevProjects\Mhud0829_3\ViewController\classes\.jsps\_regions\_engorg\_MhudAppModuleEngOrgPersonMenu2Tabs_jspx.java:36: warning #556: variable page assigned to but never used
    06/11/20 14:05:21 MhudAppModuleEngOrgPersonMenu2Tabsjspx page = this;06/11/20 14:05:21 ^
    06/11/20 14:05:21 E:\Users\JdevProjects\Mhud0829_3\ViewController\classes\.jsps\_regions\_en

  • How to retrieve query string value from the URL in my portlet

    Hi,
    When user clicks on "Advance Search", i am redirecting to page in the community. At the same i am adding some more values to the query string (to the URL).
    My URL will look like this.
    http://ctp-mc0149/portal/server.pt?space=CommunityPage&parentname=CommunityPage&parentid=0&in_hi_userid=200&cached=true&control=SetCommunity&PageID=202&CommunityID=200&searchType=2
    Now in one of my portlet in that page, i want to retrieve the query string values from the URL.
    Please help me regarding this.
    Thanks in advance.
    Thanks,
    sreekanth.

    Hi,
    Look at the following threads,
    For programmatically getting the iview properties,
    Programmatically getting iView Properties
    Also,
    Get Properties of IView Programmatically
    Permanent change of iView property programmatically
    Hope these threads help u.
    Regards
    Srinivasan T

  • SSOServlet - query string parameters being lost

    Hi,
    We recently upgraded ALUI from version 5.04J to 6.1. After the upgrade, we noticed one issue with the redirection. When the user is not logged in & accesses a secure commnity, he/she is redirected to the SSO Servlet. For instance, if the following URL is accessed
    /portal/server.pt?open=512&objID=326&PageID=0&cached=true&mode=2&userID=2&CommunityID=326
    the user should be redirected to (as in version 5.04J)
    /portal/SSOServlet?open=512&objID=326&PageID=0&cached=true&mode=2&userID=2&CommunityID=326
    Instead the user is redirected to /portal/SSOServlet?
    (without the query string)
    Does anyone know why?
    Thanks,
    Dev

    I've tired doing this and it did not work for me. However, I was able to find a solution that helped me a whole lot.
    After running all test runs - I found a solution that helped me take off the extra parameters that Eloqua adds to all URL's.
    I created my urls without placing "http://" or "https://" or http://www." or "https://www." and that helped take off all tracking.
    Re: Use of tinyUrl

  • Need example for using query string parameters in Web Dynpro

    Hello,
    Is it possible to transfer a Web DynPro application parameters at the query string (URL)?
    Can someone please show me an example of how to pass it and how to retreive it using code inside an application?
    Thank you in advance

    Hi,
    when launching WD apps in the Portal you have to define a WD iView in the Portal. This can be started using the NavigationTarget parameter.
    Parameters (ie. Business Parameters) that should be passed to the WebDynpro application can be defined in the iView itself - the iView attribute is called "Application Parameters". Here you can also define variable expressions like "emailaddr=<User.email>" so that the value of the email address is evaluated on runtime.
    This way you don't have to care about URL encodings at all
    The following user expressions can be used:
    <User.displayname>
    <User.uniquename>
    <User.firstname>
    <User.lastname>
    <User.salutation>
    <User.jobtitle>
    <User.department>
    <User.email>
    <User.telephone>
    <User.mobile>
    <User.fax>
    <User.streetaddress>
    <User.city>
    <User.zip>
    <User.country>
    <User.state>
    <User.timezone>
    udo

  • Export to Excel is not working for List View Web Part after filtering using Query String parameters in SharePoint 2010

    Hi, 
    I am filtering SharePoint list view web part based on Query string parameter and I am doing Export to Excel by using following code.
    <a href="#" onclick="javascript:window.location='../_vti_bin/owssvr.dll?CS=109&Using=_layouts/query.iqy&List=0DC67399-BE11-48F3-ADFC-E911FB8B5845&View=54671412-3EFE-4281-835A-9EF747AE774E&CacheControl=1'"><img
    alt="Excel" src="/_layouts/images/icxlsx.gif" border="0"/>&nbsp;Export to Excel</a>
    Issue: Able to do Export to Excel when there are no filters applied on list view web part but if applied filters on web part and do export to excel , only header fields are displaying in the excel sheet.
    I don't know why owssvr.dll is behaving like that .
    Please share your ideas.
    Thanks in Advance.

    Hi,
    According to your post, my understanding is that you wanted to create hyperlink to export to excel.
    The URL to execute the export is as follows:
    {Site URL}/_vti_bin/owssvr.dll?CS=109&Using=_layouts/query.iqy&List={List GUID}&View={View GUID}&CacheControl=1
    After getting the GUID, you  need to “decode” the list GUID.
    Replace %7B with {
    Replace %2D with –
    Replace %7D with }
    More information:
    Create Link to Export Library Contents to Excel
    SharePoint - Create a link to export to Excel
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

Maybe you are looking for

  • Can I recover lost app data after restore?

    Hi everyone and thank you in advance to anyone who can offer some help! Apple recently told me some issues I was having with my phone were software based and they refused to issue me a replacement phone until I attempted to setup the phone as a new p

  • Releasing Anchored objects

    I saw a couple of earlier posts with code for releasing an anchored object ( http://forums.adobe.com/click.jspa?searchID=2331267&objectType=2&objectID=1109584 and http://forums.adobe.com/click.jspa?searchID=2331267&objectType=2&objectID=2062943 ) but

  • Invoice Cancell after Credit note creation ?

    Hi If credit note creates with ref to Invoice system should not allow to cancell the invoice? How to control this? Plz guide me Regards rajendra

  • Easing in and out on the same tween

    I have a motion tween that I want to ease on both the beginning and end of the motion. As far as I can tell I can only set one value for easing and in the easing graph I can't add more points. The only way I've been able to have both ease in and out

  • No Padding when Extending ButtonBar as Item Renderer in AdvancedDataGrid

    I am using an ActionScript Class to extend the ButtonBar component as my Item Renderer in an AdvancedDataGrid. However, when I set the styles and properties of the ButtonBar in the constructor, it shifts the ButtonBar all the way to the left of the C