Use of resource-env-ref tag

Hi,
Can anybody tell me what is the use of the resource-env-ref tag. I am using resourec-ref tag where I have specified a jdbc datasource configuration. But I do not know what does resource-env-ref do? Does it add any extra feature to the resource-ref tag? I know the use of env-entry tag. Is it similar to env-entry tag?
Please give an example.
Thanking in advance.

* <env-entry> - Environment entry, a single-value
parameter that can be used to configure how the
application will operate.
* <resource-ref> - Resource reference, which is
typically to an object factory for resources such as
a JDBC DataSource, a JavaMail Session, or custom
object factories
* <resource-env-ref> - Resource environment
reference, a new variation of resource-ref added in
Servlet 2.3 that is simpler to configure for
resources that do not require authentication
information.Ok, u mean to say that i can use either resource-ref or resource-env-ref tag depending on whether i require authentication or not, right?
Also, please tell me what does the web container do with these configurations? Does it load these resources at container start-up or it simply
creates the environment where resources can be accessed through a name like, say java:comp/env/jdbc/MyDataSource where this is again mapped to a jndi name?
I know that using this type of configuration helps make changes to the jndi name without recompiling our servlets.
Also, could u please tell me can we use ejbs the same way as above (using resourec-ref or resource-env-ref tag) or I must use the ejb-ref tag. Since ejbs are also bound to jndi names, they should be accessible throught the above tags and not only through the ejb-ref tag.

Similar Messages

  • Topic  'resource-env-ref-mapping'

    I get the following exception:
    javax.naming.NamingException: Error creating context: No resource named 'XXXX/WorkflowControllerTopic' found in resource provider 'QT_Topic'
    orion-ejb-jar.xml:
    <resource-env-ref-mapping name="jms/MyTopic"
    location="java:comp/resource/QT_Topic/XXXX/MYTopic" />
    What should I use for 'XXXX'? I've tried the following options
    1) Topics
    2) Topic
    3) Queues
    Regards,
    Marteyn

    Hello Sugu,
    I've made a spelling mistake:
    WorkflowContollerTopic vs WorkflowControllerTopic
    This works:
    java:comp/resource/QT_Topic/Topics/WorkflowContollerTopic
    Therefore your 'Topics' solution is correct (Thanks!).
    But now I've got a new problem:
    ORA-06550: Regel 1, kolom 7:
    PLS-00306: Onjuist aantal of type argumenten in aanroep naar 'AQ$_JMS_ENQUEUE_OBJECT_MESSAGE'..
    ORA-06550: Regel 1, kolom 7:
    PL/SQL: Statement ignored.
    I've executed the following script (ignore the spelling error):
    BEGIN
    DBMS_AQADM.CREATE_QUEUE_TABLE(
    Queue_table => 'QT_Topic',
    Queue_payload_type => 'SYS.AQ$_JMS_MESSAGE',
    multiple_consumers => true);
    END;
    EXEC DBMS_AQADM.CREATE_QUEUE(
    'WorkflowContollerTopic','QT_Topic');
    EXEC DBMS_AQADM.ADD_SUBSCRIBER(
    'WorkflowContollerTopic', sys.aq$_agent('MDSUB', null, null));
    EXEC DBMS_AQADM.START_QUEUE ('WorkflowContollerTopic');
    Regards,
    Marteyn Heijlaerts

  • Resource-env-ref

    Hi,
              in a servlet's war.xml I define a resource-env reference. But how do I
              specify that in the assiciated weblogic.xml?
              web.xml:
              <resource-env-ref>
                   <resource-env-ref-name>jms/EventTopic</resource-env-ref-name>
                   <resource-env-ref-type>javax.jms.Topic</resource-env-ref-type>
              </resource-env-ref>
              the dtd for weblogic.xml
              (http://www.bea.com/servers/wls610/dtd/weblogic-web-jar.dtd) only
              defines resource reference and ejb reference.
              <!ELEMENT reference-descriptor (resource-description*,
              ejb-reference-description*)>
              <!ELEMENT resource-description (res-ref-name, jndi-name)>
              <!ELEMENT ejb-reference-description (ejb-ref-name, jndi-name)>
              while the dtd for web.xml (http://java.sun.com/dtd/web-app_2_3.dtd) also
              defines resource-env-ref, resource-ref, env-entry, ejb-ref, ejb-local-ref:
              <!ELEMENT web-app (icon?, display-name?, description?, distributable?,
              context-param*, filter*, filter-mapping*, listener*, servlet*,
              servlet-mapping*, session-config?, mime-mapping*, welcome-file-list?,
              error-page*, taglib*, resource-env-ref*, resource-ref*,
              security-constraint*, login-config?, security-role*, env-entry*,
              ejb-ref*, ejb-local-ref*)>
              Having said that I just read the servlet-spec (2.3 pfd2, page 68), where
              only env-entry, ejb-ref and resource-ref are mentioned! weired ...
              "The env-entry element contains information to set up basic environment
              entry names relative to the java:comp/env context, the expected Java
              type of the environment entry value (the type of object returned from
              the JNDI lookup method), and an optional environment entry value. The
              ejb-ref element contains the information needed to allow a servlet to
              locate the home interfaces of a enter-prise bean. The resource-ref
              element contains the information needed to set up a resource factory."
              >>>
              >>>So defining a resource-env-ref is possibly not possible?!
              >>>Why are they then defined in the dtd?
              >>>
              For the log: my code is:
              Context myNamingContext = new javax.naming.InitialContext();
              System.out.println("NamingContext: "+myNamingContext);
              System.out.println("Event Topic" +
              myNamingContext.lookup("java:comp/env/jms/EventTopic").toString());
              and the Exception is:
              javax.naming.NameNotFoundException: Unable to resolve
              comp/env/jms/EventTopic/ Resolved: 'comp/env/jms'
              Unresolved:'EventTopic' ; remaining name ''
              Thanks for your help,
              Andreas Ebbert
              

    the quotes from "more servlets and java server pages":
    The resource-env-ref element declares an administered object associated with a resource. It
    consists of an optional description element, a resource-env-ref-name element (a JNDI name
    relative to the java:comp/env context), and a resource-env-type element (the fully qualified
    class designating the type of the resource), as below.
    <resource-env-ref>
    <resource-env-ref-name>
    jms/StockQueue
    </resource-env-ref-name>
    <resource-env-ref-type>
    javax.jms.Queue
    </resource-env-ref-type>
    </resource-env-ref>
    The resource-ref element declares an external resource used with a resource factory. It
    consists of an optional description element, a res-ref-name element (the resource manager
    connection-factory reference name), a res-type element (the fully qualified class name of the
    factory type), a res-auth element (the type of authentication used� Application or
    Container), and an optional res-sharing-scope element (a specification of the shareability of
    connections obtained from the resource� Shareable or Unshareable). Here is an example.
    <resource-ref>
    <res-ref-name>jdbc/EmployeeAppDB</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    <res-sharing-scope>Shareable</res-sharing-scope
    </resource-ref>
    Hope it helps.

  • Orion-web.xml and resource-env-ref-mapping correct usage

    What happened to resource-env-ref-mapping element in orion-web.xml? I have a 9.0.4.1 server running several .EAR files containing web applications using this attribute to configure JMS related items. But when deploying the .EAR to newer versions (9.0.5.2) of the server this attribute doesn't appear to be valid any longer?
    Here it is in the 9.0.4 documentation:
    http://strogoff.unex.es/oradoc/form_y_report_10g/web.904/b10322/apdx_a.htm
    Any help would be appreciated?

    I should have been more clear about the issue. The error only occurs when running inside the embedded OC4J container of JDeveloper 10.1.2 build 1913. The error does NOT occur in JDeveloper 9.0.3. The application also runs fine when deployed to a 10.1.2 Enterprise application server. The error only occurs in JDeveloper.
    The following error occurs when validating my orion-web.xml file. The entry is:
    orion-web.xml:
    <orion-web-app>
    <resource-ref-mapping name="jms/mQueueConnectionFactory" location="jms/matchingQueueConnectionFactory"/>
    <resource-env-ref-mapping name="jms/mQueue" location="jms/matchingQueue"/>
    </orion-web-app>
    web.xml
    <resource-env-ref>
    <resource-env-ref-name>jms/mQueue</resource-env-ref-name>
    <resource-env-ref-type>javax.jms.Queue</resource-env-ref-type>
    </resource-env-ref>
    java.lang.IllegalArgumentException: Unrecognized parent-elem combination: interface oracle.jdeveloper.xml.oc4j.war.OrionWebApp - resource-env-ref-mapping
         at oracle.javatools.xml.bind.XMLBinding.throwUnrecognizedElem(XMLBinding.java:127)
         at oracle.jdeveloper.xml.j2ee.war.WebAppBinding.elem2intImpl(WebAppBinding.java:637)
         at oracle.javatools.xml.bind.XMLBinding.elem2int(XMLBinding.java:104)
         at oracle.javatools.xml.bind.XMLBinding.insertBetween(XMLBinding.java:88)
         at oracle.javatools.xml.bind.BindingContext.insertNewElement(BindingContext.java:121)
         at oracle.javatools.xml.bind.BindingContext.insertElem(BindingContext.java:95)
         at oracle.javatools.xml.bind.BindingContext.setElement(BindingContext.java:71)
         at oracle.javatools.xml.bind.SetImpl.callSetterForUniqueElem(SetImpl.java:66)
         at oracle.javatools.xml.bind.SetImpl.callSetter(SetImpl.java:57)
         at oracle.javatools.xml.bind.SetImpl.invoke(SetImpl.java:26)
         at oracle.javatools.xml.bind.ElementProxy.invoke(ElementProxy.java:35)
         at $Proxy10.setWebApp(Unknown Source)
         at oracle.jdevimpl.runner.oc4j.Oc4jWorkspaceConfig.ensureLocalPageReposRootIsSet(Oc4jWorkspaceConfig.java:633)
         at oracle.jdevimpl.runner.oc4j.Oc4jWorkspaceConfig.transmogrifyConfigFiles(Oc4jWorkspaceConfig.java:269)
         at oracle.jdevimpl.runner.oc4j.Oc4jWorkspaceConfig.configureAll(Oc4jWorkspaceConfig.java:114)
         at oracle.jdevimpl.runner.oc4j.Oc4jStarter.preStart(Oc4jStarter.java:618)
         at oracle.jdevimpl.runner.oc4j.Oc4jStarter.start(Oc4jStarter.java:268)
         at oracle.ide.runner.RunProcess.startTarget(RunProcess.java:756)
         at oracle.jdeveloper.runner.JRunProcess.startTarget(JRunProcess.java:461)
         at oracle.ide.runner.RunProcess$2.run(RunProcess.java:699)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:178)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:454)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)

  • Difference between resource-ref and resource-env-ref ?

    Hello,
    Can anyone tell me what the difference is between <resource-ref> and <resource-env-ref>? (in ejb-jar.xml)
    Thanks in advance,
    Julien Martin.

    Check out this URL. You will find out your answer.
    http://docs.sun.com/source/816-7156-10/agj2eres.html
    Thanks

  • resource-env-description can't be set in weblogic.xml

    hi guys , i've been troubled with this configuration problem. i am trying a very simple example to send messages from a servlet to a weblogic queue, but i cant configure the weblogic.xml properly. i've been reading a lot of information but i cant find it.:
    this is my web.xml
    <resource-ref>
              <res-ref-name>jms/ConnectionFactory1</res-ref-name>
              <res-type>javax.jms.QueueConnectionFactory</res-type>
              <res-auth>Container</res-auth>
              <res-sharing-scope>Shareable</res-sharing-scope>
         </resource-ref>
         <resource-env-ref>
              <resource-env-ref-name>jms/colaIN</resource-env-ref-name>
              <resource-env-ref-type>javax.jms.Queue</resource-env-ref-type>
         </resource-env-ref>
         <resource-env-ref>
              <resource-env-ref-name>jms/colaOUT</resource-env-ref-name>
              <resource-env-ref-type>javax.jms.Queue</resource-env-ref-type>
         </resource-env-ref>
    this work fine, but when i try to create the weblogic.xml , it doesn;t work:
    <weblogic-web-app>
         <reference-descriptor>
                   <resource-description>     
                        <res-ref-name>jms/ConnectionFactory1</res-ref-name>
                        <jndi-name>weblogic.jms.ConnectionFactory</jndi-name>
                   </resource-description>
         </reference-descriptor>
         <resource-env-description>
                        <res-ref-name>jms/colaIN</res-ref-name>
                        <jndi-name>weblogic.jms.Queue</jndi-name>
                   </resource-env-description>
    </weblogic-web-app>
    what am i doing wrong? . i try to set resource-env-description in weblogic-ejb-jar.xml but it didn't work either? some ideas?

    Is your workflow looking for publishing infrastructure to be turned on at site collection and site level?
    Is this a 2013 WF? is WF management service connected?
    Stacy Simpkins | MCSE SharePoint | www.sharepointpapa.com

  • Using ejb-ref tag for EJB toEJB reference

    Hello all respected members,
    I am using weblogic 5.1 (sp 9).
    I have two Session EJBs - a client and another is the referenced by
    the client.
    The client is using services of the referenced EJB.
    The two EJBs are in two very different packages.
    Now say I am trying to deploy the client EJB first, without deploying
    the referenced EJB.
    What I expect (rather, want)is, when the client EJB is being deloyed,
    it should give a notification somehow (let's say, by throwing an
    exception) that the referenced EJB is not yet deployed.
    First of all, is this possible ?
    Secondly, I am aware of the of the <ejb-ref> tag. In order to meet my
    requirement, I have added the same tag in the client's ejb-jar.xml and
    corresponding <ejb-reference-description> tag in the
    weblogic-ejb-jar.xml file.
    When I start the weblogic server, I can see that the referenced EJB is
    not deployed. But the client EJB is being deployed, it does not give
    any notification that the referenced EJB is not yet deployed and gets
    deployed successfully.
    In other words, I expect <ejb-ref> tag to let me know that the
    referenced EJB is not yet deployed. Is my understanding of <ejb-ref>
    tag correct ?
    It is clear to me that when the client EJB tries to instantiate the
    referenced EJB to use its services, it would throw an exception
    (during the lookup) since the referenced EJB is not deployed. But I
    want to avoid this exception at this stage. I want to get a
    notification of this, much before i.e. when the weblogic is deploying
    my client EJB. I think the <ejb-ref> tag does this. Hence I am using
    it.
    If I am going in wrong direction, is there any other way to fulfil my
    requirement ?
    Please advise.
    Neelesh.

    The <ejb-ref> element is used at deployment to map the bean references.
    The beans referred to should already be deployed.
    Neelesh wrote:
    Hello all respected members,
    I am using weblogic 5.1 (sp 9).
    I have two Session EJBs - a client and another is the referenced by
    the client.
    The client is using services of the referenced EJB.
    The two EJBs are in two very different packages.
    Now say I am trying to deploy the client EJB first, without deploying
    the referenced EJB.
    What I expect (rather, want)is, when the client EJB is being deloyed,
    it should give a notification somehow (let's say, by throwing an
    exception) that the referenced EJB is not yet deployed.
    First of all, is this possible ?
    Secondly, I am aware of the of the <ejb-ref> tag. In order to meet my
    requirement, I have added the same tag in the client's ejb-jar.xml and
    corresponding <ejb-reference-description> tag in the
    weblogic-ejb-jar.xml file.
    When I start the weblogic server, I can see that the referenced EJB is
    not deployed. But the client EJB is being deployed, it does not give
    any notification that the referenced EJB is not yet deployed and gets
    deployed successfully.
    In other words, I expect <ejb-ref> tag to let me know that the
    referenced EJB is not yet deployed. Is my understanding of <ejb-ref>
    tag correct ?
    It is clear to me that when the client EJB tries to instantiate the
    referenced EJB to use its services, it would throw an exception
    (during the lookup) since the referenced EJB is not deployed. But I
    want to avoid this exception at this stage. I want to get a
    notification of this, much before i.e. when the weblogic is deploying
    my client EJB. I think the <ejb-ref> tag does this. Hence I am using
    it.
    If I am going in wrong direction, is there any other way to fulfil my
    requirement ?
    Please advise.
    Neelesh.

  • How to include javascript resources in  Facelet tag library

    I've been trying out Duncans watermark behavior tag (https://blogs.oracle.com/groundside/entry/placeholder_watermarks_with_adf_11). Indeed a great article and the example work perfectly when the tag library is included within the project and when the javascript resource (common.js) file is added to the document using af:resource tag.
    I would like to create a deployable tag library, including a setWatermarkBehavior tag, for reuse in various apps. I'm able to create and deploy the tag library as a ADF library and include it for use in an application. But on runtime, the pages are not able to find the "addWatermarkBehavior" method, which I hoped automatically got loaded from the javascript file defined in the tag library jar. In the tag library file, I've added a "adf-js-features.xml" in META-INF. This file and the .js file is included in the ADF library jar. "adf-js-features.xml" looks like this:
    <adf-js-features xmlns="http://xmlns.oracle.com/adf/faces/feature">
    <features xmlns="http://xmlns.oracle.com/adf/faces/feature">
    <feature>
    <feature-name>adfExtTaglib</feature-name>
    <feature-class>com/cgi/adf/ext/taglib/js/adfExtTaglib.js</feature-class>
    </feature>
    </features>
    </adf-js-features>
    I'm not sure, what value should be used for "feature-name" - I've tried many different "meaningful" names. I presume, that the ADF framework, should automatically discover all "adf-js-features" files and automatically load js-file on pages, which are using tags from the particular tag library. But apparently I'm missing something. In the facelets page used for testing, I have these few components.
    <f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:adfext="http://xmlns.cgi.com/adf/ext">
    <af:document title="testAdfExtTaglib" id="d1">
    <!-- af:resource type="javascript" source="/resources/js/common.js" / -->
    <af:form id="f1">
    <af:inputText label="Label 1" id="it1">
    <adfext:setWatermarkBehavior value="CHR-Nr"/>
    </af:inputText>
    </af:form>
    </af:document>
    </f:view>
    Doing some debugging, I can confirm that the "getScript" method of the setWatermarkBehavior class is called. I can also find the javascript produced by the "getScript" method in the DOM. But I cannot find anywhere in the DOM, where the javascript file from the tag library is loaded.
    Please, help me out?
    Edited by: wmjaboj on 2012-09-23 23:58

    The Javascript source URI has the value "RES_NOT_FOUND".
    If I try to access it using ".../faces/javax.faces.resource/javascript.js?ln=js" I get a blank page (contains a Html and Body only).
    If I try to access it using ".../faces/resources/js/javascript.js" I can download the javascript file from the taglib.
    If I manually copy the javascript.js file from the taglib into the enclosing project and save it in "resource/js", then the javascript source URI is resolved correctly to ".../faces/javax.faces.resource/javascript.js?ln=js" and I can downloaded it, but then it is the local copy and not the one from the taglib jar.
    Do I need some specific configuration in web.xml or other deployment descriptors, to be able to use "javax.faces.resource"?
    The only configurations whoch smells like "javax.faces.resource" is this context param: javax.faces.FACELETS_RESOURCE_RESOLVER=oracle.adfinternal.view.faces.facelets.rich.AdfFaceletsResourceResolver
    In web.xml various "resource" servlets is defined (I'm not sure whether I need them, JDeveloper has created them automatically):
    a) resources = org.apache.myfaces.trinidad.webapp.ResourceServlet, maps to: /adf/*, /afr/*, /bi/*
    b) adflibResources = oracle.adf.library.webapp.ResourceServlet, maps to: /adflib/*
    I appreciate your help.

  • Changes are not reflecting using af:resource for adding CSS

    Hi,
    I am trying to add new CSS file(say the name as customNew.css) to page template using af:resource tag, the changes are not reflected. Instead I see(using firebug) that, styles coming from different CSS file(say the name as customOld.css ) which configured on trinidad-config.xml and trinidad-skins.xml files.
    I was under the impression that, the new CSS file(customNew.css) will override the old css (customOld.css). So, CSS added using af:resource tag will not override any other CSS ???
    Any help will be appreciated
    Thanks,
    San.

    Hi,
    if you bring CSS to the browser through af:resource then this is not overriding any skinning definition. Skins can only changed in trinidad-config.xml file (which also can be done at runtime). Just adding a CSS file to af:resource wont do the trick here.
    Frank

  • Ejb-ref and ejb-local-ref tags

    Hi everyone,
    Can someone please tell me
    1) Is it necessary for me to define ejb-ref or ejb-local-ref tags if I am referering one ejb from other ejb? I mean to say is it mandatory that I should have these deployment descriptor tags?
    2) What is purpose of ejb-link tag ?

    Hi everyone,
    Can someone please tell me
    1) Is it necessary for me to define ejb-ref or
    ejb-local-ref tags if I am referering one ejb from
    other ejb? I mean to say is it mandatory that I should
    have these deployment descriptor tags?Yes, to write portable J2EE components, every time you have a dependency on an ejb, you need to declare an ejb-ref (for a Remote EJB client) or ejb-local-ref (for a Local EJB client). This is true no matter what kind of J2EE component is accessing the ejb (Application Client, JSP, Servlet, or another ejb).
    Think of the ejb-ref or ejb-local-ref as a pointer. It's different from the thing that is pointed to. Instead, it represents a dependency between a client component and a target ejb.
    2) What is purpose of ejb-link tag ?Every ejb-ref or ejb-local-ref must be resolved to unambiguously point to the target ejb. The ejb-link tag is one way to resolve this dependency for the case where the target ejb lives in the same .ear as the referring component. The ejb-link tag is the ejb-name (or <ejb-jar uri>#<ejb-name>) of the target ejb.
    Note that this means ejb-link is the ONLY way to resolve an ejb-local-ref, since by definition Local EJB access can only take place between two ejbs within the same .ear or a web component/ejb that live within the same .ear.
    For ejb-refs, you can use ejb-link if the target ejb is within the same .ear. If not, the ejb specification does not prescribe how the dependency is resolved. It's left up to the J2EE implementation. The most common approach is for the vendor to provide a product-specific runtime .xml element that resolves the ejb-ref by associating it with the global JNDI name of the target EJB. That's the approach used in the J2EE SDK and Sun Java System Application Server.
    Kenneth Saks
    J2EE SDK Team
    SUN Microsystems

  • Use Local Resource(Webcam/Speaker) with VNC Viewer like RDP (MS)

    Hi All,
    I have got Latest Mac Mini 2012 Oct Edition with 10.8.2 . Most of the time i connect my mac mini using VNC Viewer. However i can't use local resource like webcam/Speaker/Drive in Mac Mini.
    Source (VNC Viewer) Laptop - Linux - I use Vncviewer here.
    Target - Mac mini.
    For example :- When i connect PC1(Win) to PC2(Win)  using MS  RDP then  i can use PC1's resource on PC2 remotely.
    Link for ref: http://windows.microsoft.com/en-IN/windows7/How-can-I-use-my-devices-and-resourc es-in-a-Remote-Desktop-session
    Please advice if we can get it done using vncviewer or i need some other tools.
    Regards

    Hi All,
    I have got Latest Mac Mini 2012 Oct Edition with 10.8.2 . Most of the time i connect my mac mini using VNC Viewer. However i can't use local resource like webcam/Speaker/Drive in Mac Mini.
    Source (VNC Viewer) Laptop - Linux - I use Vncviewer here.
    Target - Mac mini.
    For example :- When i connect PC1(Win) to PC2(Win)  using MS  RDP then  i can use PC1's resource on PC2 remotely.
    Link for ref: http://windows.microsoft.com/en-IN/windows7/How-can-I-use-my-devices-and-resourc es-in-a-Remote-Desktop-session
    Please advice if we can get it done using vncviewer or i need some other tools.
    Regards

  • Use SSO resource for 10gReports across two servers

    We currently have installed oracle10g suite on a server which has 10ginfra,10gas and 10greports.
    We are able to generate reports without passing the Username Password to the request by creating an SSO resource.
    We now have a requirement to move 10greports to a new server and have the Portal on the existing server. Is there any means by which the Portal User can use the fire reports, which inturn can use the SSO resource defined on the Portal Server.
    Basically the requirement is to decouple Portal and Reports Server across machines and yet be able to use SSO resource to get DB User credentials for generation of reports.
    Pls Help.

    There is no problem if you keep same SericeAccount for 2 Env.
    In Cluster Env configuration would be same no extra effort, configuration is tomcat dependent not CMS or Processing Server dependent.
    Encryption is by default RC4 in 3.1 and 4.1

  • MS Project Very Slow and Project Files Large when Using Shared Resource Pool

    Hello,
    We are using MS Project 2010 Professional in our organization and using a shared resource pool so we can easily identify resource conflicts.  When we started this process many months ago the resource pool worked great.  Now that we have nearly
    all of our projects (~40) using the resource pool, it has become essentially unusable.  Each project file that is sharing the resource pool is 12 MB or greater in file size, and most of the project files contain less than 100 lines.  Saving any file
    takes ~4 minutes.  As a result, many of the resource managers and project managers are starting to avoid using MS Project which is undermining our original intent.
    Any thoughts on what we could try to regain the usability, make the file sizes smaller, improve save times, etc.?  Will MS Project Server fix all of these issues?
    Thanks,
    Josh

    If any of your PMs renamed, moved or over-wrote their project file whilst linked to the Resource Pool or a master, then the file may well have corrupted itself or the pool or both. With 40 files, you can guarantee one or more PMs will do one of the above,
    so file corruption is a when, not if (2days or 2 years or more).
    For 40 projects Project Server or any solution that copies data to a database so the resource data can be consolidated is needed. Project Server is not a simple application, it's a full server and requires proper training and processes to add value. And
    it needs configuring by someone who knows what they're doing!
    In the mean time try unattaching all project files from the pool, then create a new blank pool and re-attach.You will also need to File, Save as to repair each project file if needed. For bad corruption save as to a .xml format then re-import to a blank
    project.
    Or, create a new master each time by inserting all projects into a new blank project, but deselecting the Link option. All tasks are then copied and the resource data consolidated. Record a macro to make creating this very quick and easy (provided your network
    isn't too slow).
    <p>Rod Gill</p> <p><a href="http://www.project-systems.co.nz/project-vba-book/index.html/">The one and only Project VBA Book</a> <a href="http://www.project-systems.co.nz/"></p> <p>Rod
    Gill Project Management</a></p>

  • Premiere Pro CC not using all resources... 4k

    I just put together a new workstation machine for editing 1D-C 4k files in Premiere Pro and After Effects.
    Specs...
    i7 3770     3.4
    Gigabyte Z77 Mobo
    32gb Corsair Vengance DDR3 1600 RAM
    250gb Samsung SSD
    4x 2TB Seagate 7200 HDDs in RAID 0 (Yes I know it isn't backed up, we have that part covered)
    Nvidia Quadro K4000 (3gb vram)
    Anyway, we transfered a project with all the media files to our RAID media drive.
    It opened up very quickly and loaded all the media much faster then our old workstation.
    Then I hit the spacebar (perview) and the problems started..
    It won't play back smoothly at all,
    AND it is only running the CPU at 10-20%, GPU 10-50%, ram at 25% and it is not really taxing the drives very hard either...
    Why won't PP use all the resources at 100% like I have previously seen it do on other machines?
    ** The project we are trying to play is 2 layers of 4k .MOV footage in a 1080 timeline... with sharpening, Fast color corrector, and RGB curves.
    ** It also drops every fourth frame when playing back just one layer of 4k .mov footage in a 1080 timeline with NO Effects applied. (Much smoother, but still not using all resources)
    What I am asking, is why would it be giving up so quickly? Before even taxing the resources very hard?

    I too have a recent 1D-C project I'm editing.  That 1D-C is something, yes?  Most filmic images I've ever seen from a DSLR.  But I digress. 
    I'm following a workflow closer to the one used by Philip Bloom and Shane Hurlbut.  The Motion Jpeg files will not play well at all on your system.  It's strictly a capture medium - not an editing one.
    I converted all my 1D-C files to Prores 422 at 4K size using Mpeg Streamclip.  Those files imported beautifully and edit well on my Retina Macbook Pro laptop.  I usually set playback to 1/2 quality, ps. 
    I have had problems using CUDA, so I'm sticking to software mode.  But I don't see any problem with being able to cut my film and finish on my computer.
    Also - my sequence is a 4K sequence right in Premiere.  I simply chose a clip and "made a sequence" from that.  Why scale when I don't have to?  I've exported to 1080p easily from the sequence. 
    If anyone finds this workflow less than ideal, I'm all ears.  Thanks. 

  • Dynamic text box generation in jsp page by using net-ui jsp html tags

    Hi All,
    I Need to generate the "TextBoxes" Dynamically by using the "Net-UI HTML Tags".How can i do this ?
    I am using
    1. WebLogic portal server 8.1 sp4 (Workshop dev environment)
    2. JavaPageFlow Applications
    3. Net-UI tags html jsp
    I need to generate the textboxes dynamically and i have to
    get those values in the page flow .
    How it is possible by using the "Net-UI Tags".
    Thanks In Advance,
    KiranBabu.Karusala

    how we create dynemic text box in jsp based one value which we give at runtime

Maybe you are looking for

  • Follow up task without using the action profile

    Hi, Is it possible to create the follow up task without using the action profile? If so, please let me know how we can do that? as per the requirements, i have to the custom coding that will automatically create follow-on task triggered by status cha

  • Album art not tagged properly iPhone 4

    In iTunes, ALL my songs have their album art covers TAGGED PROPERLY! Upon transfer to iPhone, the art covers are NOT Synced/Tagged properly as the art covers of songs uses art covers from other songs! EVERY TIME I correct this, it still is messed up!

  • Can't drag/drop mp3's into iTunes

    Today I tried to drag a few mp3s from a folder on my computer into iTunes, but it won't work. I've tried other copying mp3's from different folders & drives on my computer but none will work. I have been using this method to import my music into iTun

  • Call PL/SQL Package to Create DB User and assign Privileges

    Hi All, I'm sure this has been covered before but I couldn't find anything relevant.... I'm calling a PL/SQL Process from within an Apex (version 2.0) Page, that ultimately Creates a New DB user. I am receiving an ORA-01031: insufficient privileges e

  • BitShift problem

    See this... int i = 4*6-3/2<<2*5>>>1%2-4^3; According to me, arithmetic operations preceed over binary shift operators , taking this into account, the answer to i is 0 but when I run , I get an answer 3. This is how I evaluated. int i = ((4*6)-(3/2))