Using the EDK (PRC) in ASP Pages

Hi there,
I have an ASP Portlet that I would like to move to use the EDK. (It formerly used the GDK). As it is quite a large application, moving it to .NET is not possible at this time. Does anyone have any experience with this?
The overall objective is to set Administrative Settings of a portlet. To do that, I want to use the RemoteSessionFactory to create an IRemoteSession which is used to call the PortletManager to open a portlet. The final goal is to get the IPortlet interface (from Plumtree.Remote.PRC) . Once I have the IPortlet Interface, I am able to get/set Administrative settings.
(For those of you who would recommend using the Portal Server API, the problem I have then is that once I change the administrative settings, the new settings are not picked up until I restart the portal on the portal server. It appears that the Portlet stays in the globalgadgetcache and does not know that it has been updated. Please let me know if there is a way to force that update from the Remote Server)
I've basically tried 2 options, with both resulting in the following problems.
1. Calling the EDK directly from the ASP, using Server.CreateObject. I have 2 major problems here. The firsrt is, it appears that the object I wish to use is not creatable. (RemoteSessionFactory) I have successfully created some classes off the EDK using Server.CreateObject. For example, Server.CreateObject("com.plumtree.remote.prc.xp.XPAdminPortletSettingsPersistence") seems to work. Unforutnately, I can not figure out how to get my IRemoteSession in ASP. If anyone knows how, I would be very grateful.
The other problem I have with using Server.CreateObject is that some of the objects I can find PROGIDs for do not create successfully. Here, I receive the error that the "DLL or some of its dependencies can not be found". This is noteable because of my strategy #2.
2. I have created a wrapper class that IS createable using Server.CreateObject. I can then create this class and call it's functions from the ASP. This C# .NET DLL references the EDK.dll. When I call functions in my class that to not use the EDK ( Set oPISettings = Server.CreateObject("PISettings.PIRemoteAdminSettings"), Response.Write "<BR>" & oPISettings.TestClass() ) it works fine. However, as soon as I try to use the EDK to open the RemoteSessionFactory (IRemoteSession session = RemoteSessionFactory.GetExplicitLoginContext(new System.Uri(sURI), sUserName, sPassword);) then I get the same error as above "the DLL or one of its dependencies can not be found". Interestingly, I can use SOME parts of the EDK - for example all of the classes that I can create in ASP - but not that Remote Session Factory.
With EDK 5.1 being signed, I thought my problem would be solved by putting the EDK into the Global Assembly Cache. I have put the EDK and OpenFoundation in. I have also registered them both using REGASM.exe. Neither fixed my problem. I have also installed the Microsoft Web Services Extensions (and put the dll in the GAC)
I'm wondering if there is another DLL that is required to go into the GAC? It's clear that the ASP can find the EDK - as I can call some functions from it - but only when I call certain other functions (through direct ASP or through my wrapper) that I hit problems.
ANY suggestions would be very much appreciated.
Thanks and Hpapy Holidays,Karen

Hi Phil and Joseph,
Thanks for your responses! Yes, Christams during summer is a bit wierd. It always sneaks up on me and I dont realize it's christmas until I go to the store and everthing is closed!!!
Joseph, to answer your questions - I can't use the GDK because I want to set Administrative preferences from a portal page. (As you know, Plumtree blocks you from setting admin preferences from a portal page).
Going direct to the database (via Plumtre server API) ALMOST works, except the settings aren't picked up until the server restarts? (I'm thinking here that the Gadget Cache isn't clearing - is there a way to force that?) However, going through the Remote API does work, except that I run into the problems described above. (The portlet does though update the settings right away)..
Yes, I have added all 4 to the project and to everywhere else I can think of (and used REGASM.exe), as well as the new EDK. (not all at the same time, and also all at the same time!). It is quite bizarre b/c I have 2 computers that it works fine with EDK 5.02 (never works with EDK 5.1) but nowhere else does it work?
(PS sorry Joseph it took me so long to reply, our email address changed and I guess my notifications have stopped!)
Phil, your suggestion is a good one, maybe you can give me a bit more detail? If I used ASP.net to route the request to the ASP files, then I would pull those admin settings that were set by the ASP file (ie GDK) out and set them via the EDK Remote Server? Do you think that would work?
Thanks so much for everything,Karen

Similar Messages

  • Using the EDK in ASP Pages

    Hi there,
    I have an ASP Portlet that I would like to move to use the EDK. (It formerly used the GDK). As it is quite a large application, moving it to .NET is not possible at this time. Does anyone have any experience with this?
    The overall objective is to set Administrative Settings of a portlet. To do that, I want to use the RemoteSessionFactory to create an IRemoteSession which is used to call the PortletManager to open a portlet. The final goal is to get the IPortlet interface (from Plumtree.Remote.PRC) . Once I have the IPortlet Interface, I am able to get/set Administrative settings.
    (For those of you who would recommend using the Portal Server API, the problem I have then is that once I change the administrative settings, the new settings are not picked up until I restart the portal on the portal server. It appears that the Portlet stays in the globalgadgetcache and does not know that it has been updated. Please let me know if there is a way to force that update form the Remote Server)
    I've basically tried 2 options, with both resulting in the following problems.
    1. Calling the EDK directly from the ASP, using Server.CreateObject. I have 2 major problems here. The firsrt is, it appears that the object I wish to use is not creatable. (RemoteSessionFactory) I have successfully created some classes off the EDK using Server.CreateObject. For example, Server.CreateObject("com.plumtree.remote.prc.xp.XPAdminPortletSettingsPersistence") seems to work. Unforutnately, I can not figure out how to get my IRemoteSession in ASP. If anyone knows how, I would be very grateful.
    The other problem I have with using Server.CreateObject is that some of the objects I can find PROGIDs for do not create successfully. Here, I receive the error that the "DLL or some of its dependencies can not be found". This is noteable because of my strategy #2.
    2. I have created a wrapper class that IS createable using Server.CreateObject. I can then create this class and call it's functions from the ASP. This C# .NET DLL references the EDK.dll. When I call functions in my class that to not use the EDK ( Set oPISettings = Server.CreateObject("PISettings.PIRemoteAdminSettings"), Response.Write "<BR>" & oPISettings.TestClass() ) it works fine. However, as soon as I try to use the EDK to open the RemoteSessionFactory (IRemoteSession session = RemoteSessionFactory.GetExplicitLoginContext(new System.Uri(sURI), sUserName, sPassword);) then I get the same error as above "the DLL or one of its dependencies can not be found". Interestingly, I can use SOME parts of the EDK - for example all of the classes that I can create in ASP - but not that Remote Session Factory.
    With EDK 5.1 being signed, I thought my problem would be solved by putting the EDK into the Global Assembly Cache. I have put the EDK and OpenFoundation in. I have also registered them both using REGASM.exe. Neither fixed my problem. I have also installed the Microsoft Web Services Extensions (and put the dll in the GAC)
    I'm wondering if there is another DLL that is required to go into the GAC? It's clear that the ASP can find the EDK - as I can call some functions from it - but only when I call certain other functions (through direct ASP or through my wrapper) that I hit problems.
    ANY suggestions would be very much appreciated.
    Thanks and Hpapy Holidays,Karen

    Hi Phil and Joseph,
    Thanks for your responses! Yes, Christams during summer is a bit wierd. It always sneaks up on me and I dont realize it's christmas until I go to the store and everthing is closed!!!
    Joseph, to answer your questions - I can't use the GDK because I want to set Administrative preferences from a portal page. (As you know, Plumtree blocks you from setting admin preferences from a portal page).
    Going direct to the database (via Plumtre server API) ALMOST works, except the settings aren't picked up until the server restarts? (I'm thinking here that the Gadget Cache isn't clearing - is there a way to force that?) However, going through the Remote API does work, except that I run into the problems described above. (The portlet does though update the settings right away)..
    Yes, I have added all 4 to the project and to everywhere else I can think of (and used REGASM.exe), as well as the new EDK. (not all at the same time, and also all at the same time!). It is quite bizarre b/c I have 2 computers that it works fine with EDK 5.02 (never works with EDK 5.1) but nowhere else does it work?
    (PS sorry Joseph it took me so long to reply, our email address changed and I guess my notifications have stopped!)
    Phil, your suggestion is a good one, maybe you can give me a bit more detail? If I used ASP.net to route the request to the ASP files, then I would pull those admin settings that were set by the ASP file (ie GDK) out and set them via the EDK Remote Server? Do you think that would work?
    Thanks so much for everything,Karen

  • Get Parent Community from Current Comm using the G6 PRC

    Can anyone provide or point me to a sample of code that gets the Parent Community ID from the current community using the G6 PRC? I can find samples of doing this in this discussion, but they appear to reference older versions of the EDK. Ideally, given the current community ID, I would like to walk backwards through the hierarchy until I find the root community (the community with no parent ID).
    Thanks in advance,Jeff

    Have you thought about using pt:standard.tree instead of rolling your own?
    Chris Bucchere | bdg | [email protected] | www.bdg-online.com

  • How to get a Sum of rows, when i use the property max. rows p. page ?

    Hi all.
    I've got a query and get a lot of rows (amounts) back.
    Now i want to have max. 21 rows per page.
    So, first i used the property "max. rows p. page"=21.
    But i want a have Sum-Field p.page too, which shows the sum of the amount p. page at a >fixed place (bottom, left) at the page.
    this didnt work well....
    Because when i have 30 rows, then the sum will shown at the second page (because the sum-field its after the repeating frame).
    ...Now i forgot the property and placed a function and two placeholder in the query like this:
    Function:
    :cp_row:=:cp_row +1;
    if (mod (:cp_row,21)=0)) then :CP_pagenr:=:CP_pagenr+1;
    Placeholders: cp_row, cp_pagenr
    Now i want to use :CP_pagenr to change the group - but Report Builder says: I cant... because placeholder are not allowed to change a group.
    So.. perhaps anyone can give me a hint how i can do this ?
    Thanks a lot...

    hello.
    that sound to me as you wanted a running total. check out the metalink knwoledge base and search for running total and you will find a note on how to do that.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Increase the size of the cache using the cache.size= number of pages ?

    Hi All,
    I am getting this error when I do load testing.
    I have Connection pool for Sybase database that I am using in my JPD. I am using Database control of weblogic to call the Sybase Stored procedure.
    I got following exception when I was doing load testing with 30 concurrent users.
    Any idea why this exception is coming ?
    thanks in advance
    Hitesh
    javax.ejb.EJBException: [WLI-Core:484047]Tracking MDB failed to acquire resources.
    java.sql.SQLException: Cache Full. Current size is 2069 pages. Increase the size of the cache using the cache.size=<number of pages>
         at com.pointbase.net.netJDBCPrimitives.handleResponse(Unknown Source)
         at com.pointbase.net.netJDBCPrimitives.handleJDBCObjectResponse(Unknown Source)
         at com.pointbase.net.netJDBCConnection.prepareStatement(Unknown Source)
         at weblogic.jdbc.common.internal.ConnectionEnv.makeStatement(ConnectionEnv.java:1133)
         at weblogic.jdbc.common.internal.ConnectionEnv.getCachedStatement(ConnectionEnv.java:917)
         at weblogic.jdbc.common.internal.ConnectionEnv.getCachedStatement(ConnectionEnv.java:905)
         at weblogic.jdbc.wrapper.Connection.prepareStatement(Connection.java:350)
         at weblogic.jdbc.wrapper.JTSConnection.prepareStatement(JTSConnection.java:479)
         at com.bea.wli.management.tracking.TrackingMDB.getResources(TrackingMDB.java:86)
         at com.bea.wli.management.tracking.TrackingMDB.onMessage(TrackingMDB.java:141)
         at com.bea.wli.management.tracking.TrackingMDB.onMessage(TrackingMDB.java:115)
         at weblogic.ejb20.internal.MDListener.execute(MDListener.java:370)
         at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:262)
         at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:2678)
         at weblogic.jms.client.JMSSession.execute(JMSSession.java:2598)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)

    hitesh Chauhan wrote:
    Hi All,
    I am getting this error when I do load testing.
    I have Connection pool for Sybase database that I am using in my JPD. I am using Database control of weblogic to call the Sybase Stored procedure.
    I got following exception when I was doing load testing with 30 concurrent users.
    Any idea why this exception is coming ?
    thanks in advance
    Hitesh Hi. Please note below, the stacktrace and exception is coming from the
    Pointbase DBMS, nothing to do with Sybase. It seems to be an issue
    with a configurable limit for PointBase, that you are exceeding.
    Please read the PointBase configuration documents, and/or configure
    your MDBs to use Sybase.
    Joe
    >
    javax.ejb.EJBException: [WLI-Core:484047]Tracking MDB failed to acquire resources.
    java.sql.SQLException: Cache Full. Current size is 2069 pages. Increase the size of the cache using the cache.size=<number of pages>
         at com.pointbase.net.netJDBCPrimitives.handleResponse(Unknown Source)
         at com.pointbase.net.netJDBCPrimitives.handleJDBCObjectResponse(Unknown Source)
         at com.pointbase.net.netJDBCConnection.prepareStatement(Unknown Source)
         at weblogic.jdbc.common.internal.ConnectionEnv.makeStatement(ConnectionEnv.java:1133)
         at weblogic.jdbc.common.internal.ConnectionEnv.getCachedStatement(ConnectionEnv.java:917)
         at weblogic.jdbc.common.internal.ConnectionEnv.getCachedStatement(ConnectionEnv.java:905)
         at weblogic.jdbc.wrapper.Connection.prepareStatement(Connection.java:350)
         at weblogic.jdbc.wrapper.JTSConnection.prepareStatement(JTSConnection.java:479)
         at com.bea.wli.management.tracking.TrackingMDB.getResources(TrackingMDB.java:86)
         at com.bea.wli.management.tracking.TrackingMDB.onMessage(TrackingMDB.java:141)
         at com.bea.wli.management.tracking.TrackingMDB.onMessage(TrackingMDB.java:115)
         at weblogic.ejb20.internal.MDListener.execute(MDListener.java:370)
         at weblogic.ejb20.internal.MDListener.onMessage(MDListener.java:262)
         at weblogic.jms.client.JMSSession.onMessage(JMSSession.java:2678)
         at weblogic.jms.client.JMSSession.execute(JMSSession.java:2598)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)

  • Hi.  I am planning a valentines day party for 7 people, I used the "Event Card" format on pages.  It only gave me two cards, I do not know how to get more cards.  Thanks!

    Hi.  I am planning a valentines day party for 7 people, I used the "Event Card" format on pages.  It only gave me two cards, I do not know how to get more cards.  Thanks!

    Newest compared to what?
    There is a reason we don't say use the "latest" or "best" methods to complete tasks, because they are vague ill defined terms.
    Could you return us the favor and tell us exactly what version of Pages on what version of OSX.
    The answer varies.
    Peter

  • I'm unable to access my yahoo email account using updated firefox browser, i keep getting error page when I use the mail link on yahoo pages

    Since updating Firefox browser, i am unable to gain access to my yahoo email account. I can access the email with Interent Explorer with no trouble. Whenever I click on a mail link on the yahoo sites to check my mail, I get rerouted to an error page ..... "Sorry, we can't find "ca.mg4.mail.yahoo.com/dc/launch?.gx=1". Please check the spelling of the web address." is what is said at top of page whenever I click on any mail links.

    This is how I fixed it on my new iPhone 5S. Using the standard yahoo setting on my phone.
    You will have to access  "managing your app passwords" on your account profile for yahoo. Generate password for your app. For example: "My iPhone 5S'
    Go to your Iphone and set up your yahoo mail account on your phone the normal way and you have to use the generated password.  instead of the yahoo account password.
    source:
    http://virtualizeme.net/iphone-5-yahoo-mail-server-unavailable-fix/
    I hope this helps,
    cheers

  • How can I use the scroll wheel to move page by page

    I have Adobe Acrobat 8 and I would like to be able to use the scroll wheel in my mouse to move page by page instead of the page icons in the tool bar.  I recently had my computer updated from Windows XP to Windows 7 and I used to be able to do that in XP.  I do a lot of moving around in documents and it's easier to move page by page if I don't have to be moving the cursor all the time.
    Any help would be greatly appreciated as I don't want to everything else (like Office 2007 Word) to move whole pages with the scroll wheel, just Acrobat.

    Make sure that View - Page Display - Single Page View is selected in
    Acrobat.

  • How to use the SCOM 2012 Web Reporting page

    Hello all-
       We are on SCOM 2012 SP1.  I just have a general question about reporting.  I know there is a "Reporting" tab in the real, locally installed, SCOM Operations Console software.  That part I get.  I see that there
    are many pre-made reports the for me to run.  For example under Microsoft Server 2008 Operating System (Monitoring) folder there is a
    Performance History report.  When I double click on it, it takes me to the report window where I can click
    Add Object and add a server and then click
    Run.  
    This is pretty simple in concept.   BUT very few people at my company have the full Operations Console installed on their machine.  And as I'm sure you know, the SCOM Web Console does not have a Reporting Tab.  So they have to use the
    SCOM Reporting website to run such reports.  I found that you can get to this page at the url:
    http://<reporting server>/Reports                       
    This does bring up the Reporting console.  On the list I do see a Report.Windows.Server.2008.PerformanceHistory listed. So this surely seems to be the equivalent from my screenshot above.   However, it's not even close to user friendly like
    the Reporting area in the SCOM operations console software. There's multiple fields at the top. All of which are required, and almost none of which have dropbox or other ways to help you fill them in. I have no idea what to put into these boxes or the format
    to use.
    What am I missing here?  Is there a more user friendly interface anywhere?  In an ideal world, I'd really love to have a user interface where I can post the links to a few popular reports, like CPU and Disk Space for example.  Then ideally
    all the user would have to do is select their servers and the time frame and that's all.   Which really is what you do in the Operations Console software.   So isn't is it that easy in the web reporting tool?  Is there a guide or how-to
    section somewhere I'm missing?  Or just a more friendly looking way to get at this information?

    Well, my first screen shot above is squished, so you really can't see it.  But what I'm saying is that the same report in the SCOM software has the level of configuration I want on it.   It allows you to pick the date range and add objects
    to it, then you can click on Run.     However when I access the same report on the reporting console, it has all these extra fields.  None of which I know how to fill in properly.
    I would ultimately like my customers to be able to do exactly that in the web version.  Pick their server and their date range and run it.   There are not likely going to be too many reports like you're mentioning which I can completely configure
    before hand, so they just click on the link to have it run.  Most times I'd like my users to at least be able to select a server name.
    Any idea how I would simplify the web version of the report?  Or why they look so very different?

  • Using the "star" to bookmark a page but is not saving it to bookmarks??

    I click on the star to bookmark a page but when I go to find it under Bookmarks it is not there. It does show under "recent bookmarks" in the drop down menu but is not in my permanent bookmarks??
    This just started happening after I updated Firefox to 29.0.1 - it was not doing this before and worked fine.
    Windows 8
    Please help!

    * If you click the ★ Star Icon once, the bookmark ends up in the Unsorted Bookmarks folder.
    * If you double-click the ★ Star Icon, you get to pick where to place the bookmark.
    * If you press Ctrl+D (Mac: Command+D), the bookmark ends up in the Bookmarks Menu folder and you get to pick where to place it.
    The following add-on makes bookmarking easier in various ways. Among other things, it's able to remember the last used folder.
    * https://addons.mozilla.org/firefox/addon/add-bookmark-here-2/

  • How do i use the text highlighter on web pages

    I want to highlight some small print on a banking web page to email. The print is too small and will be missed if not highlighted. I have installed the text highlight add on in my tool bar but don't know how to use it.

    Hi Trease,
    Check to make sure that is it is not disabled in the about:addons page of your browser window.
    There are a few addons with that name, but I would also take a look at the description on its addons.mozilla.org page if you still have it.

  • Cannot save beans in a session OR use the same beans in multiple pages

    Hi all I use these code to my jsp file to create a session and store a bean.
    Unfortunately, the session cannot store the beans so that I can use them in the next page.What did I omit? Regardless the session scope, can I use request scope beans and with jsp:forward use them in multiple page? (I have tried it but it doesn't work).
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@page session="true"%>
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
    <%
    String nextPage = request.getParameter("np");
    if(nextPage.equalsIgnoreCase("checkDate")){
    %>
      <jsp:useBean id="checkDate" scope="request" class="essex.kkarad.beans.checkDateBean" />
      <jsp:setProperty name="checkDate" property="*"/>
    <%
        checkDate.validate();
    %>
    <jsp:forward page="Availability.jsp"></jsp:forward>
    <%
    } else if(nextPage.equalsIgnoreCase("checkRooms")) {
    %>
    <jsp:useBean id="checkRooms" scope="request" class="essex.kkarad.beans.checkRoomsBean" />
    <jsp:setProperty name="checkRooms" property="*"/>
    <%
       if(!checkRooms.validate()){
    %>
    <jsp:forward page="Availability.jsp"></jsp:forward>
    <%
    %>
    <%
    %>

    You should also be encoding the URL so that you don't have to worry about loosing the session if the user has cookies turned off:
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@page session="true"%>
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
    <%
      String nextPage = request.getParameter("np");
      String availabilityPage = response.encodeURL("Availability.jsp");
      if(nextPage.equalsIgnoreCase("checkDate")){
    %>
      <jsp:useBean id="checkDate" scope="session" class="essex.kkarad.beans.checkDateBean" />
      <jsp:setProperty name="checkDate" property="*"/>
    <%
        checkDate.validate();
    %>
    <jsp:forward page="<%=availabilityPage%>"></jsp:forward>
    <%
      } else if(nextPage.equalsIgnoreCase("checkRooms")) {
    %>
    <jsp:useBean id="checkRooms" scope="session" class="essex.kkarad.beans.checkRoomsBean" />
    <jsp:setProperty name="checkRooms" property="*"/>
    <%
       if(!checkRooms.validate()){
    %>
    <jsp:forward page="<%=availabilityPage%>"></jsp:forward>
    <%
    %>
    <%
    %>

  • Firefox stops working when I use the password manager on certain pages

    Hey.
    When I visit certain pages, Firefox will consistently crash. One of these pages for example is:
    betabrand.com
    The moment the password manager window jumps up, the window hangs and Firefox stops. It also happens randomly on other pages including
    gmail.com
    Sometimes, though not always, a script error will appear that says that googletag has stopped working. I don't know what that is and have tried debugging, stopping the script and just continuing. No real effect. Firefox still crashes after trying each in turn.
    Firefox will also crash if I try to access the options window.
    I have tried:
    1. uninstalling firefox and reinstalling fresh. No result.
    2. disabling all addons (addons I use are: addblock plus 2.6.5 - Clean Links 2.6.1.0 - Myibidder 1.3.7 and Web Of Trust 20131118). Firefox will function without crashing once I do this but I cannot identify whcih addon is causing the problem because it functions well on each occassion when I cycle through and disable them one by one.
    My system specs are:
    i7 @ 3.4g
    4gig ram
    Win7 32
    FF crashed while terying to install the troubleshooter addon.
    Thanks for any help.

    Do you have an ad blocker, firewall, or antivirus installed that may be blocking the google tag?
    [http://www.google.com/tagmanager/]
    We're sorry to hear that Firefox is crashing. In order to assist you better, please follow the steps below to provide us crash IDs to help us learn more about your crash.
    #Enter ''about:crashes'' in the Firefox address bar and press Enter. A Submitted Crash Reports list will appear, similar to the one shown below.
    #Copy the '''5''' most recent Report IDs that start with '''bp-''' and then go back to your forum question and paste that into the "Post a Reply" box. (Please don't take a screenshot of your crashes, just copy and paste the ID's. The below image is just an example of what your Firefox screen should look like)
    [[Image:aboutcrashesFx29|width=520]]
    <br><br>
    Thank you for your help!
    More information and further troubleshooting steps can be found in the [[Firefox crashes - Troubleshoot, prevent and get help fixing crashes]] article.

  • Can I use the same class as a page backing bean and a lifecycle listener

    Hi everyone
    I have code in a backing bean that executes as a value change listener. What I want to do is have this code execute on first page load. So what I am asking is:
    if I implement the PagePhaseListener interface on the backing bean class, will I be able to access the #{bindings} object during the beforePhase() and afterPhase() methods.
    Thanks in advance
    Thanassis

    Hi,
    yes, and it is documented here
    http://download-uk.oracle.com/docs/html/B25947_01/bcdcpal005.htm#sthref831
    Frank

  • How do I use the same css style but different attributes, Without affecting another page.

    Hey everyone,
    I am using the "NivoSlider", for my dreamweaver page but I am not sure how to tell styles that one page has one attribute and the other one will have a different attribute.
    For example: in my "about us" I have a small slideshow with its own pictures. I then put  a gallery page with its own pictures, yet, I want to make that slideshow box larger without affecting the other small slideshow.
    I am using just one Style.CSS for the slideshow.
    Anyways, is their a way to tell tell the code that one page is going to be a different width then the other?
    Thank you!

    Embedded CSS rules take priority over styles in external style sheets.   So you can add page specific rules between your document's <head> tags and after all other links to external CSS files.
    <style>
         page specific rules here....
    </style>
    Nancy O.

Maybe you are looking for

  • Which iPad would be suitable for me?

    NEED HELP CHOOSING! Hi, I am currently a student in school and I plan to get the iPad to use it as a file holder and an enterntainment device. I have a laptop and I was planning on using it as a desktop, while using the iPad to hold word files and di

  • Where to post about solution to Trial CS4?

    I have downloaded the trial for CS4 but canno t ind it. I have a new machine and when I put PS 7.0 on it gives me an error. Downloaded the CS4 trial, cannot even find it. Open PS& and get the same error. Where do I find info or help about  this probl

  • Re: Navigation in adobe captivate not working?

        I am facing an issue with adobe captivate swf generation.......     I have generated an swf presentation using Adobe Captivate 4.     The generated swf looks as in the above image.     I searched the in the internet,  but couldnt find a proper so

  • Dynamically adding pages

    Is it possible to create a "add page" button that will dynamically add a fillable form to a pdf?  Also, can this button keep adding pages?

  • Adobe muse cc tablet not redirected well, kind of

    Hello, I am having a real weird issue with a new site. Once published, the site works OK on desktop + iphone. On the tablet version, The site has 8 pages. Once  published, it is redirected with the right format.  The home page and page 7(????) work o