JSF 2.0 commandLink link, outputLink, etc

I have a paragraph like below
Nowis the time for all good men to come to the aid of their country. If
they don'e it could be the end of us
I want to put a command link in this paragraph for say "good men" so it looks like this
Nowis the time for all good men to come to the aid of their country. If
they don'e it could be the end of us
When I use the <h:commandLink action="#{mybean.clickLink}" value="good men"/>, the link works just fine, but renders like this on the page
Nowis the time for all
good men
to come to the aid of their country. If they don'e it could be the end of us
Is there anyway to keep the <tr></tr> from rendering around the link when it's turned into HTML? Is there another tag that will still let me use action="#{mybean.clickLink}"???? This link MUST go back through the server.
Thanks,
Doug

I found the problem and a solution :-) The missing piece of the puzzle was the id attribute for the form tag. After some debugging of the JSF JavaScript I found the solution.
The JavaScript function response(request, context) is invoked to handle the server response. Inside this function the doUpdate(element, context) is invoked.
The doUpdate() function is doing the modification of the DOM. The function doUpdate() is two times invoked for a response. The first time the html elements are updated.
The second time the view state hidden field is updated or created but only under the following condition:
Comment in the JavaScript source code of the jsf.js
//Now set the view state from the server into the DOM
//but only for the form that submitted the request.If the forms of the both side haven't the same id the form can't be found on the second page.
In the following way it is working:
page1.xhtml
<h:form id="myform">
        <h:commandLink value="Go to page 2" action="page2">
            <f:ajax render="@all" execute="@all"/>
        </h:commandLink>
</h:form>
.....page2.xhtml
<h:form id="myform">
            <h:commandLink value="Go to page 1" action="page1">
                <f:ajax render="@all" execute="@all"/>
            </h:commandLink>
</h:form>So always set an explicit id for each JSF tag.

Similar Messages

  • When I click to open anything I get a box saying open link in new window, open link in new tab, download linked file etc.  When I go to close anything I get hide toolbar, customize toolbar.  It takes  3-5 clicks and it will finally close.

    When I click to open anything I get a box saying open link in new window, open link in new tab, download linked file etc.  When I go to close anything I get hide toolbar, customize toolbar.  It takes  3-5 clicks and it will finally close.

    In Firefox Options / Privacy be sure "Remember download history" is checked. To see all of the options on that panel, "Firefox will" must be set to "Use custom settings for history".
    To find your OS information, on your Windows desktop, right-click the My Computer icon, choose Properties, under System on that small window is info about your OS.
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • EL expression in JSF with a4j:commandLink

    hallo:
    I have a very strange problem with a el-expression. i need your help, thanks.
    i develop a project with JSF-RI,
    <rich:datascroller align="left" for="ein_post" page="#{alMessageHandler.scrollerPage}"
                        renderIfSinglePage="false" reRender="sc2" id="sc1" />
    <rich:dataTable width="985" headerClass="form_background peTable"
                             sortMode="single" id="ein_post" rows="#{alMessageHandler.pageSize}"
                             value="#{alMessageHandler.pagedListDataModel}" var="recivedMsg"
                             rowKeyVar="index">
    <rich:column width="75px" id="outbox6">
        <a4j:commandLink action="#{alMessageHandler.writeReplyMsg}"
         actionListener="#{alMessageHandler.catchMessageIdForReplay}"
         rendered="#{alMessageHandler.senders[index-(alMessageHandler.scrollerPage-1)*alMessageHandler.pageSize].activated}">
           reply
         <f:param value="#{receivedMsg.message.id}" id="receivedMessageIdForReplay"  name="receivedMessageIdForReplay"/>                              
        </a4j:commandLink>
    </rich:column>
    </rich:dataTable>i use a PagedListDataModel, which extends DataModel. in each message i have a link 'reply'.
    On the first page(the first page of rich:datascroller) i click reply link, then call the methode "catchMessageIdForReplay" then "writeReplyMsg", well done.
    but after i click the seconde page then cklick "reply" link. it would not work. it can not call method "catchMessageIdForReplay" then "writeReplyMsg".
    it returned to the first page. that is to say, it is only useful on the first page.
    watching: if i write the code like this "rendered="true". then no problem
    that's mean el-expression "rendered="#{alMessageHandler.senders[index-(alMessageHandler.scrollerPage-1)*alMessageHandler.pageSize].activated}"" on the seconde page can not working.
    Strange: i can dispaly the value of #{alMessageHandler.senders[index-(alMessageHandler.scrollerPage-1)*alMessageHandler.pageSize].activated}", the value is 'true'. but 'render' did not know the el-expression on the seconde page
    anybody can tell me why, and how to solve the problem ? thanks.
    Edited by: zlzc2000 on Oct 27, 2009 4:09 AM

    I am not very sure about your problem, but it might be releated to the bean state if your bean is in request scope. Trying using a4j:keepAlive in your jsp and see if it works. These type of problems happen sometimes with rendered and disbled attributes.
    regards,
    nirvan.

  • Passing object as parameter in JSF using h:commandLink tag

    Hi ,
    I have a scenario in which i need to pass objects from one jsp to another using h:commandLink. i read balusC article "Communication in JSF" and found a basic idea of achieving it. Thanks to BalusC for the wonderful article. But i am not fully clear on the concepts and the code is giving some error. The code i have is
    My JSP:
    This commandlink is inside a <h:column> tag of <h:dataTable>
    <h:commandLink id="ol3"action="ManageAccount" actionListener="#{admincontroller.action}" >
                   <f:param id="ag" name="account" value="#{admincontroller.account}" />
                   <h:outputText id="ot3" value="Manage Account" rendered="#{adminbean.productList!=null}" />
                   </h:commandLink>
    Also a binding in h:dataTable tag with the  binding="#{admincontroller.dataTable}"
                      My Backing Bean:
    public class CompanyAdminController {
              private HtmlDataTable dataTable;
              private Account account=new Account();
    public HtmlDataTable getDataTable() {
            return dataTable;
    public Account getAccount() {
             return this.account;
    public void setAccount(Account account) {
              this.account = account;
          public void action(){
                account= (Account)this.getDataTable().getRowData();
           } faces-config.xml
    <navigation-rule>
        <from-view-id>/compadmin.jsp</from-view-id>
        <navigation-case>
          <from-outcome>ManageAccount</from-outcome>
          <to-view-id>/manageAccount.jsp</to-view-id>
        </navigation-case>
      </navigation-rule>
    <managed-bean>
              <managed-bean-name>admincontroller</managed-bean-name>
              <managed-bean-class>com.forrester.AdminController</managed-bean-class>
              <managed-bean-scope>request</managed-bean-scope>
              <managed-property>
                   <property-name>account</property-name>
                   <property-class>com.model.Account</property-class>
                   <value>#{param.account}</value>
             </managed-property>
         </managed-bean>My account object:
    public class Account {
    string name;
      public String getName()
        return this.name;
      public void setName(String name)
           this.name=name;
      }I need to display #{admincontroller.account.name} in my forwarded jsp. But I am not sure whether the code i wrote in commandlink is correct. I get an error if i use <f:setActionListener> . No tag "setPropertyActionListener" defined in tag library imported with prefix "f"
    Please advise.
    Edited by: twisai on Oct 18, 2009 11:46 AM
    Edited by: twisai on Oct 18, 2009 11:47 AM
    Edited by: twisai on Oct 18, 2009 11:48 AM

    Yes.. iam removed the managedproperty from faces-config. But still i get the null pointer exception on main jsp itself and i am taken to second jsp manageaccount.jsp. Did you find anything wrong in my navigation case in the action method??
                                     public String loadAccount(){
               Account account = (Account)this.getDataTable().getRowData();
                return "ManageAcct";And also can you please answer this question i have
    The AdminController is the backing bean of 1st JSP and manageAccontController is the backing bean of forwarded JSP .
    Can i put this action method and dataTable binding in a 2nd manageAccontController backing bean instead of AdminController. But if i do that way dataList binding in h:dataTable tag will be in first JSP backing bean and dataTable binding to 2nd JSP. Not sure how to deal with this.
    {                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Display of Table Of Contents, links, diagrams etc....

    Hi,
    My Table Of Contents and other stuffs like diagrams, links etc.... are not getting displayed properly in my Woord files and are being shown as below:
    { EMBED Visio.Drawing.11 } - this is for a Visio drawing that I have in a file.
    { TOC \o "2-3" \h \z \t "Heading 1,1,Heading 4,4" } - This is for Table Of Contents.
    { HYPERLINK "mailto:[email protected]" } - This is for a mail address that I have in my word file.
    I want to remove all these and go back to the normal way of storing a Word file without any of the above ones.
    Please advise how this can be changed back to normal viewing of Word files.
    Thanks....Karthik.

    Alt-F9 should display the field results rather than the field codes that you are currently seeing.
    Peter Jamieson

  • Was changed app behavior for JSF 1.1 (commandLink action)

    I use very simple navigation approach. Inside commandLink tag I have set action property (new_patient):
    <h:panelGrid id="ACTION" columns="6" styleClass="entity-action" columnClasses="entity-action-column">
    <h:form>
    <h:commandLink styleClass="jclink" action="new_patient" >
    <h:outputText value="New Entity" />
    </h:commandLink>
    </h:form>
    And I have the navigation rule:
    <navigation-rule>
    <from-view-id>/pages/EntityListLayout.jsp</from-view-id>
    <navigation-case>
    <from-outcome>new_patient</from-outcome>
    <to-view-id>/pages/EntityDetailLayout.jsp</to-view-id>
    </navigation-case>
    </navigation-rule>
    I don't use any action listeners and backing beans to navigate from this place.
    It worked fine for JSF 1.0 and doesn't work for JSF 1.1 (I have javascript assertion: document.forms._id15... is null or not an object). What was changed? May be I miss something? Or from 1.1 I should use some bean method with return "new_patient"?
    Thanks a lot.

    2. there is bug in datatable - immediate command reset
    interface component submited value to benas value
    Is it fixed ?
    Can you please help me reproduce this bug? Can you perhaps post a JSP
    fragment that shows the problem?example ;
    <f:form>
    <h:dataTable value="tData.model" var="data" .... >
    <h:inputText value="data.field" ... />
    </h:dataTable>
    <h:commandButton immediate="true" action="action" />
    </f:form>
    begin value for field is for instance '1' (from bean data)
    I type '2' and click Button (with immediate and value be leave unchanged)
    JSF return value from field to '1' (from bean)
    Button can be in <h:dataTable> - it is same
    When i try this with simple component (without <h:dataTable> )value leave '1'
    myfaces work fine
    regards

  • JSF Renderer encoding html link to call bean

    I have custom renderer. I would like to write out links in the same that when clicked will call a backing mean method.
    For example, suppose the backing bean method has a method foo(), I would like to be able to call that in my decode method and make it forward to a jsp. How can I accomplish this?
    Thanks in advance

    Thank you for reply, after making few chages by taking your suggestion i am still struggling to get the desired result in my jsp. please into the code below
    public class Database {
            public List calToDatabase;
         public static void initialCalToList()
              System.out.println("Contents in the List#########");
              List al=new ArrayList();
              al.add("JAya");
              al.add("chandra");
              al.add("raheem");
              al.add("balu");
              System.out.println("Contents in the List"+al);
              Database db= new Database();
              db.setCalToDatabase(al);  // calling the setter with list as an argument
    public List getCalToDatabase() {
              return calToDatabase;
         public void setCalToDatabase(List calToDatabase) {
              this.calToDatabase = calToDatabase;
         }I have also made changes in success.jsp
    <%@ page contentType="text/html"%>
    <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    Login Successful
    <html>
    <f:view>
       <h:form id="result">
         <p>
               <c:forEach var="x" items="#{Database.getCalToDatabase}" >
                     ${x}
                   </c:forEach>
         </p>
       </h:form>
    </f:view>
    </html>

  • Desktop links, folders etc appearing in DW CS4 Local Files - please help

    Hi
    I have a lot of web 'sites' in folders on my desktop which I use to test things out like forms, lightboxes etc. None of them are live. I wanted to tidy up the desktop so created a new folder with the idea of moving all the dummy sites folders into it.
    I moved one folder but when I moved the second, I got the message:
    "The root folder you have chosen is the same as the folder for site 'ContactTest'. This may cause some operations, such as synchronization, to work incorrectly. Proceed anyway?".
    As the folder I was transferring wasn't terribly important, I thought I would see what happened so ok'd it. I had a message about cache which I ok'd.  I don't remember the message.  When I tried the site, it wouldn't work so I decided to move it back out to the desktop.
    When I did this I was asked again about the cache which I ok'd.  The result is that all my desktop links, web 'site' folders etc are now showing in the dummy website folder as files and sub folders?!  If I delete the links, they are deleted from the desktop.
    I have no idea how to put everything back to the way it was.  Can anyone help me please?

    I've just replicated my steps, and the cache message I received was:
    "The cache will now be recreated because the name, root folder, HTTP address of cloaking settings of the site have been changed."
    Can anyone help me with this please?

  • How to open a jsf page on a link with a record . Link is in email

    Respected Friends ,
    I am facing a need for sending a email link to users for opening a form for processing a record . I have created a servlet for forwarding the user to the desired page on which we need to render a perticualr record. The servlet forwards the user to the required page but when the page is rendered it gives
    java.lang.NullPointerException     at iffco.wf.view.servlets.UserLinkRedirectServelt.getApplicationModule(UserLinkRedirectServelt.java:143)     at iffco.wf.view.servlets.UserLinkRedirectServelt.doPost(UserLinkRedirectServelt.java:125)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:712)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:369)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:865)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:447)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:215)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)     at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)     at com.evermind[Oracle Containers for J2EE 10g (10.1.3.1.1) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)     at java.lang.Thread.run(Thread.java:595)
    Please help me ,
    I want to know how i can load a page from a link with a perticular record .
    I am using jdeveloper 10.1.3 . Also when i acess the current application module from the servlet it gives me the null pointer exception.
    Thanks in advance

    HI FRANK THANKS FOR THE QUICK REPLY I AM PASTING THE CODE OF MY SERVLET..
    frank can you please provide me how to pass parametres along with jspx link and how to acess them in the managed bean .this will also solve my problem.
    package iffco.wf.view.servlets;
    import java.io.IOException;
    import java.io.PrintWriter;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import iffco.wf.view.backing.LoginPageBean;
    import iffco.wf.view.utils.ADFJSFUtils;
    import oracle.jbo.ApplicationModule;
    import oracle.jbo.ViewObject;
    import oracle.jbo.client.Configuration;
    import iffco.wf.model.wf_servicesImpl;
    import javax.faces.context.FacesContext;
    import javax.faces.el.ValueBinding;
    import oracle.adf.controller.v2.context.LifecycleContext;
    import oracle.adf.controller.v2.lifecycle.PageController;
    import oracle.adf.model.BindingContext;
    import oracle.adf.model.binding.DCDataControl;
    public class UserLinkRedirectServelt extends HttpServlet {
        private static final String CONTENT_TYPE = "text/html; charset=windows-1252";
        public void init(ServletConfig config) throws ServletException {
            super.init(config);
        /**Process the HTTP doGet request.
        public void doGet(HttpServletRequest request,
                          HttpServletResponse response) throws ServletException,
                                                               IOException {
            String var0 = "";
            String var1 = "";
            String var2 = "";
            response.setContentType(CONTENT_TYPE);
            PrintWriter out = response.getWriter();
            out.println("<html>");
            out.println("<head><title>UserLinkRedirectServelt</title></head>");
            out.println("<body>");
            out.println("<p>The servlet has received a GET. This is the reply.</p>");
            out.println("</body></html>");
            out.close();
            System.out.println("Inside doget method of servlet");
            LoginPageBean LoginBeanInstance = new LoginPageBean();
            System.out.println("Login bean initiated--->" + LoginBeanInstance );
            String nextJSP = "/faces/LoginPage.jspx";
            RequestDispatcher dispatcher = getServletContext().getRequestDispatcher(nextJSP);
            dispatcher.forward(request,response);
        /**Process the HTTP doPost request.
        public void doPost(HttpServletRequest request,
                           HttpServletResponse response) throws ServletException,
                                                                IOException {
            String var0 = "";
            String var1 = "";
            String var2 = "";
            response.setContentType(CONTENT_TYPE);
            PrintWriter out = response.getWriter();
            out.println("<html>");
            out.println("<head><title>UserLinkRedirectServelt</title></head>");
            out.println("<body>");
            out.println("<p>The servlet has received a POST. This is the reply.</p>");
            out.println("</body></html>");
            out.close();
            System.out.println("Inside post method of servlet");
            LoginPageBean LoginBeanInstance = new LoginPageBean();
            System.out.println("Login bean initiated--->" + LoginBeanInstance );
            String        amDef = "iffco.wf.model.wf_services";
            String        config = "wf_servicesLocal";
            wf_servicesImpl service = (wf_servicesImpl)Configuration.createRootApplicationModule(amDef,config);
            System.out.println("service created --> "+ service);
            ViewObject vo=service.getLoginVO();
            System.out.println(vo);
            vo.setNamedWhereClauseParam("p_personal_no","109128");
            vo.setNamedWhereClauseParam("p_password","abc");
            vo.executeQuery();
            System.out.println("View Object has -->"+vo.getEstimatedRowCount()+" Rows");
            ADFJSFUtils newHelperClass = new ADFJSFUtils();
            System.out.println("New Helper Class Initated -->"+newHelperClass);
            ApplicationModule currentAM = newHelperClass.getDataControlApplicationModule("wf_servicesDataControl");
            System.out.println("Current AM is -->"+currentAM);
            ViewObject vo = currentAM.findViewObject("LoginVO");
            System.out.println(vo);
            vo.setNamedWhereClauseParam("p_personal_No","109128");
            vo.setNamedWhereClauseParam("p_password","abc");
            vo.executeQuery();
            System.out.println("View Object has -->"+vo.getEstimatedRowCount()+" Rows");
            System.out.println("Before method");
            wf_servicesImpl wfser=getApplicationModule();
            System.out.println("after method value got-->"+wfser);
            String nextJSP = "/faces/LoginPage.jspx";
            RequestDispatcher dispatcher = getServletContext().getRequestDispatcher(nextJSP);
            dispatcher.forward(request,response);
        public wf_servicesImpl getApplicationModule() { 
                 FacesContext context = FacesContext.getCurrentInstance(); 
                 System.out.println("context --"+context);
                 ValueBinding vb = context.getApplication().createValueBinding("#{data}"); 
                 BindingContext bc = (BindingContext) vb.getValue(context); 
                 DCDataControl dc  = bc.findDataControl("wf_servicesDataControl"); 
                 return (wf_servicesImpl) dc.getDataProvider(); 
        private void redirect(
            ResponsePage aDestinationPage, HttpServletResponse aResponse
          ) throws IOException {
            String urlWithSessionID = aResponse.encodeRedirectURL(aDestinationPage.toString());
            aResponse.sendRedirect( urlWithSessionID );
          private void forward(
            ResponsePage aResponsePage, HttpServletRequest aRequest, HttpServletResponse aResponse
          ) throws ServletException, IOException {
            RequestDispatcher dispatcher = aRequest.getRequestDispatcher(aResponsePage.toString());
            dispatcher.forward(aRequest, aResponse);
    }

  • Want to list Folders and Documents in Browse of Link, Attachement, etc

    Dear friends,
    Configured KM with 5 Query Based Taxonomies .
    My requirements is that, i want to create a Link to a Document from different taxonomies or in a same taxonomy.
    Let me explain you clearly.
    When i try to create a Link (Not external), it gives a new window asking target.  Clicking on Browse button of Target popups a new window asking the source with Favorites, Personal Documents, Recently Used, Common Folders, Public Documents, More... and the list of Documents/Folders available on where i tried to create Link.
    But clicking on folders listed i.e. Favorites, Personal Documents, Recently Used, Common Folders, Public Documents, More... gives only the Folders. No documents will be listed.  I want both Folders and Documents should be listed, while doing this operation.
    This feature is required in Email Attachment, Moving Document, Copying Document, ... many other places.
    Please any body help me
    Thankx in Advance.
    Regards
    Lakshmikanthaiah

    Hi Lakshmikantha,
    As far as what ive understood from your problem, Ive tried to create a link to a document and it worked.
    Would send you a document showing the same tomorrow.
    Warm Regards,
    Ritu

  • H:outputLink etc strange URL encoding

    If I have an h:outputLink with a value containing spaces, it is rendered with the spaces converted to +.
    It seems to me that if it is going to convert this at all, it should do so correctly, i.e. to %20. Alternatively it should leave it alone and let it fail as originally supplied.
    Am I missing something here?
    I have a legacy content database where the document index provides URLs contain spaces. I can change that, and probably will, but maybe this is a bug and will get fixed the way I would like?
    Comments welcome, especially from @Ed Burns :-)

    Hm, it must be tied to the usage of URLEncoder under the hood.
    http://download.oracle.com/javase/6/docs/api/java/net/URLEncoder.html
    Quote:
    The space character " " is converted into a plus sign.
    Note: this is an assumption on my part that URLEncoder is used; I didn't see any code. But say I am correct, the question would really become: why does URLEncoder do it? Is there even really a problem that + is used over %20?

  • Control of drawing rectangle (links, cropping, etc.)

    For some reason, I don't have precise control over drawing rectangles (for adding links or cropping) to PDF documents in Acrobat 9.0 Pro. I used to!
    I can still create these boxes, but they are much more rigid control-wise, almost like a "snapping" feature is activated. If links are close together on the PDF, it's hard to make them so they don't overlap.
    Does this make sense? Advice?

    Under View make sure Snap to grid is turned off.

  • Since updating I can't click on horizontally placed links, buttons etc have uninstalled and reinstalled still doing it. Cant even see how to get an older version that did work and have run a virus check. explorer works

    Firefox was automatically updated to 7 and now all the websites I go on the horizontal active things you would click on will not do anything. eg in ebay I can't access "My ebay" and in facebook can't click on my profile or messages, in Flickr I can't click on "Your Photostream" which means I can't use it. I tried explorer and all these work so it has to be firefox. I uninstalled and reinstalled and ran a complete system virus check on top of the active ongoing one and nothing no change. I am at a loss what to do now. A relative suggested downloading an older version that worked but I can't even see how to do that. I would appreciate help so I could use firefox as in the meantime I am stuck with exporer which I hate. Thanks

    This issue can be caused by the Yahoo! Toolbar extension
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Hello!! I am interested in learn all about Cloud Computing Technology. What information resources do you recommend: link, books, etc?

    Whats books are the betters to learn about Cloud Computing?

    Hi,
    Glad to see you want to come aboard the cloud computing ship
    If you didn't read it already, I would start with the Wikipedia article: http://en.wikipedia.org/wiki/Cloud_computing
    This pdf is also very good and it exlpains Oracle's cloud computing strategy: http://www.oracle.com/us/technologies/cloud/oracle-cloud-computing-wp-076373.pdf
    You can also take a look at the product specific ebooks available on https://cloud.oracle.com/ , for example https://cloud.oracle.com/_downloads/eBook_Platform_Java_File/Oracle_Java_Cloud_Service.pdf
    There are a lot of other resources, but these should get you up and running in no time.
    Good luck!

  • Link to .chm file in JSF application

    Hello,
    I'm working on JSF , i have to link .chm (help file-user manual) to application using commandLink.
    Location of help file i.e .chm file will be in application.
    Requirements are , click on link , .chm file has to be opened in popup.
    If any one knows how to do this, pls do reply.
    Thank you,

    Hello,
    Thanks for reply, i working on '*jboss-4.0.5.GA* ', and i've placed .chm file where i've place jsp pages.
    This is code used to open word file in application .
    <h:commandLink onclick="javascript:openPopupWindow('help/Test.doc','650','300','yes');return false;" styleClass="label" style="color:white" value="#{str['label.help']}" tabindex="5" />
    And its working fine for word .doc. This code is not working for rest of the different file formats ..
    For .chm file
    <h:commandLink onclick="javascript:openPopupWindow('help/Test.chm','650','300','yes');return false;" styleClass="label" style="color:white" value="#{str['label.help']}" tabindex="5" />
    The popup will be shown but the contents of file are not same as original , look and feel and rest .
    Please check this code .
    Thank you,

Maybe you are looking for

  • "Unable to load network list"

    My wife & I have two identical Verizon iPhone 5's fully updated.  We traveled to Mexico, & I noticed my phone sending me offer messages from the local carrier Movistar on which it was locked & roaming for voice only, data/SMS turned off.  I checked m

  • After updating Apple TV from 1.1 to 2.0, no longer shows up in iTunes 7.6

    My Apple TV was working fine with sw ver 1.0 and then 1.1. After updating it to sw ver 2.0, it no longer shows up in my iTunes 7.6 on my Powermac, running the latest Tiger updates, 10.4.11 I've been following the trouble shooting guide, and have powe

  • Mac HD doesnt appear after bootcamp Windows installation

    Hey guys, I just installed Windows on Bootcamp on my Macbook Air 13, and after the installation, when I press option to switch the OS, no Macintosh HD appears, I dont know whats going on. I created a 18 GB partition, but no Mac Hd appears. if you guy

  • How to detect potential CPU patch conflict in advance.

    Hi, Is there any way to report the CPU patch conflicts before applying the patch. I found this syntax: opatch apply -silent -no_bug_superset -report in http://www.oracle.com/technetwork/topics/security/cpu-whitepaper-129885.pdf However it doesn't wor

  • Upgrade BPC 7.0 MS to 7.5 MS or 10.0 MS

    Good day, We're currently using BPC 7.0 MS and are looking at long range plans.  In that regard, we're trying to determine if it makes sense to upgrade to 7.5 MS or go straight to 10.0 MS.  (Can we go straight to 10.0 or must we do 7.5 first?) Also h