JSF and Support

Can you please provide some road map into future development, I'm especially interested in finding out if there is going to be any out of the box JSF support coming out and when

Hi, we don't have any explicit plans for JSF, but I'm curious what things you would look for in terms of supporting JSF? Are you talking about component output caching for example? We'd appreciate any suggestions and comments that you have on this topic.
Peace,
Cameron Purdy
Tangosol, Inc.
Coherence: Clustered JCache for Grid Computing!

Similar Messages

  • JSP, JSF, and ADF

    I've just started playing around with this and was looking for samples/tutorials to help. Of the tutorials/samples I've seen, they appear to fall short of explaining an end-end example and stick mostly to JSF and the backing bean - usually displaying static data within a JSP and navigation. I'm a bit confused on how to call custom methods in my business services (application modules) and in turn use the view objects to fetch data from my database and display the results within a JSP using the JSF components.
    I realize the latest preview JDeveloper is without ADF but while I had time I was hoping to play around with ADF Faces to hit my development database. Guess I'm trying to make sense of how JSP, JSF, Business components, and my db connection all play together in order to set up a decent starting point for an app.

    You could use Jdeveloper 10G and play around with ADF Faces, look at the demos, and the sources behind them.
    There are a couple of papers on OTN like...
    Working with ADF Faces in JDev 10g:
    http://www.oracle.com/technology/products/jdev/howtos/10g/adfjsf/how-to-adf-faces-10gjdev.htm
    Roadmap for ADF Faces:
    http://www.oracle.com/technology/products/jdev/collateral/papers/9.0.5.0/adfuix_roadmap/adfuix_roadmap.html
    And many more... as I could find upon search...
    http://www.oracle.com/ultrasearch/wwws_otn/searchotn.jsp?p_Action=Search&p_Query=adf+faces
    The visual editing support for 'The ADF Model access through ADF Faces bindings' is under development (hence no tutorials), and will be available in future release (could be post 10G release).
    -Udupa

  • JSF and Character Sets (UTF-8)

    Hi all,
    This question might have been asked before, but I'm going to ask it anyway because I'm completely puzzled by how this works in JSF.
    Let's begin with the basics, I have an application running on an OC4J servlet container, and am using JSF 1.1 (MyFaces). The problems I am having with this setup, is that it seems that the character encodings I want the server/client to use are not coming across correctly. I'm trying to enforce the application to be UTF-8, but after the response is rendered to my client, I've magically been reverted to ISO-8859-1, which is the main character set for the netherlands. However, I'm building the application to support proper internationalization; which means I NEED to use UTF-8.
    I've executed the following steps to reach this goal:
    - All JSP files contain page directives, noting the character set:
    <%@ page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %>I've checked the generated source that comes from the JSP's, it looks as expected.
    - I've created a servlet filter to set the character set directly on the request and response objects:
        public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain) throws IOException, ServletException {
            // Set the characterencoding for the request and response streams.
            req.setCharacterEncoding("UTF-8");
            res.setContentType("text/html; charset=UTF-8");       
            // Complete (continue) the processing chain.
            chain.doFilter(req, res); 
        }I've debugged the code, and this works fine, except for where JSF comes in. If I use the above situation, without going through JSF, my pages come back UTF-8. When I go through JSF, my pages come back as ISO-8859-1. I'm baffled as to what is causing this. On several forums, writing a filter was proposed as the solution, however this doesn't do it for me.
    It looks like somewhere internally in JSF the character set is changed to ISO. I've been through the sources, and I've found several pieces of code that support that theory. I've seen portions of code where the character set for the response is set to that of the request. Which in my case coming from a dutch system, will be ISO.
    How can this be prevented? Can anyone give some good insight on the inner workings of JSF with regards to character sets in specific? Could this be a servlet container problem?
    Many thanks in advance for your assistance,
    Jarno

    Jarno,
    I've been investigating JSF and character encodings a bit this weekend. And I have to say it's more than a little confusing. But I may have a little insight as to what's going on here.
    I have a post here:
    http://forum.java.sun.com/thread.jspa?threadID=725929&tstart=45
    where I have a number of open questions regarding JSF 1.2's intended handling of character encodings. Please feel free to comment, as you're clearly struggling with some of the same questions I have.
    In MyFaces JSF 1.1 and JSF-RI 1.2 the handling appears to be dependent on the raw Content-Type header. Looking at the MyFaces implementation here -
    http://svn.apache.org/repos/asf/myfaces/legacy/tags/JSF_1_1_started/src/myfaces/org/apache/myfaces/application/jsp/JspViewHandlerImpl.java
    (which I'm not sure is the correct code, but it's the best I've found) it looks like the raw header Content-Type header is being parsed in handleCharacterEncoding. The resulting value (if not null) is used to set the request character encoding.
    The JSF-RI 1.2 code is similar - calculateCharacterEncoding(FacesContext) in ViewHandler appears to parse the raw header, as opposed to using the CharacterEncoding getter on ServletRequest. This is understandable, as this code should be able to handle PortletRequests as well as ServletRequests. And PortletRequests don't have set/getCharacterEncoding methods.
    My first thought is that calling setCharacterEncoding on the request in the filter may not update the raw Content-Type header. (I haven't checked if this is the case) If it doesn't, then the raw header may be getting reparsed and the request encoding getting reset in the ViewHandler. I'd suggest that you check the state of the Content-Type header before and after your call to req.setCharacterEncoding('UTF-8"). If the header charset value is unset or unchanged after this call, you may want to update it manually in your Filter.
    If that doesn't work, I'd suggest writing a simple ViewHandler which prints out the request's character encoding and the value of the Content-Type header to your logs before and after the calls to the underlying ViewHandler for each major method (i.e. renderView, etc.)
    Not sure if that's helpful, but it's my best advice based on the understanding I've reached to date. And I definitely agree - documentation on this point appears to be lacking. Good luck
    Regards,
    Peter

  • [ANNOUNCE] Exadel's Max Katz talks about JSF and AJAX

    Hello,
    I'm pleased to announce that JSF Central has just published an interview with Exadel senior systems engineer Max Katz. In the interview, Max talks about the key value and benefits of JSF, how it compares to other frameworks, why it is such a good fit for AJAX, and support for JSF technology at Exadel.
    Here's a quote:
    KM: What do you think is the key value of JSF?
    MK: It's definitely the component-based approach to building web applications, and that it's a standard. JSF has introduced a new paradigm to web application development�building applications out of components. It allows developers to concentrate on application business logic rather than on little details of HTML and other plumbing that is common to all web applications.
    Being a standard is very important for the community, and it helps vendors like Exadel create advanced visual tools. The component-based approach also gave rise to vendors building web components, which also benefits developers. Instead of spending two weeks on integrating a calendar feature into your application, you can now get a calendar component and concentrate on the business problem you're trying to solve.
    KM: Let's talk about AJAX for a moment. What do you think makes JSF such a good fit for AJAX?
    MK: It's the component approach that makes AJAX such a good fit for JSF. You develop your application out of JSF components that provide AJAX functionality. This approach hides all the complexity of JavaScript and XML. Developers don't need to work with error-prone JavaScript making sure it works in all browsers. The AJAX JSF components are tested, ready-to-use components. From the developer perspective, there is really no difference between using the commandButton standard component and using the JSF AJAX drag-and-drop components. The AJAX component is simply a lot more sophisticated in what it does. You can add AJAX functionality in a matter of minutes by using such components. It's very powerful.
    To see the rest of the article, visit
    http://www.jsfcentral.com/articles/katz-06-16-06.html.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Kito D. Mann
    Author, JavaServer Faces in Action
    http://www.virtua.com - JSF/Java EE consulting, training, and mentoring http://www.JSFCentral.com - JavaServer Faces FAQ, news, and info

    The posted link led to a *404*.
    I think I found the podcast and transcript under [article on JSFCentral.com|http://www.jsfcentral.com/listings/R2925?link] . Kito: is this the correct location?

  • JSF and SSL

    I am kind of a new guy to JSF and i have never used SSL or anything similar so forgive me if my question sounds stupid
    I searched the forums for using https in JSF pages but there is no HOw-to guide or something.
    Can anyone let me know what i need in order to make online web application use SSL (import libraries? edit xml?)
    For the record i am currently using Netbeans with a Glassfish server
    Thank you

    SSL is not front-end/web-app dependent, it is application server dependent. Some application server comes out of the box with SSL support, such as Tomcat and Glassfish. For configuring SSL in Glassfish, just read its documentation.
    Here are some pointers: http://www.google.com/search?q=glassfish+ssl

  • Buling a new Web Application using JSF and Ajax.

    Hello Group,
    I am a building a new web application using JSF and AJAX. Planning to use Myfaces Tomahawk, Dojo for Ajax, Hibernate, Spring,Eclipse IDE and Jetty Server.Can some one please suggest me will this be a right one for
    building complex UI and will it support for using the jsf features and would like to know any other free open
    source framework, ide, tools which support the best way for an agile project..?. There is restriction like i have to use java1.4

    jaisheela wrote:
    Hello Friends,
    I am also in the same situation.
    I am a building a new web application using JSF and AJAX.
    Requirement is I need to use IBM version of DOJO and JSF but I need to develop the whole application using Eclipse 3.3,2 and Tomcat 5.5.
    With IBM version of DOJO and JSF, will Eclipse and Tomcat help to speed up the development or do you suggest me to go for Rational Application Developer and WebSphere Application Server.
    If I need to go with RAD and WAS, then I am new to RAD and WAS, is it easy to use RAD and WAS for this kind of application and implement web applicaiton fast.
    Any feedback will be great help.Those don't sound like requirements of the system to me. They sound more like someone wants to improve their CV/resume
    From what I've read recently, if it's just fast you want, look at Ruby on Rails

  • Issue in using JSF and tiles

    Hai,
    I am using JSF and tiles in my application along with richfaces 3.2 jar but the suggestion box does not work when i use incorporate tiles to the jsp page,Please help me out.Here is my code
    Content Page
    <%@ taglib prefix= "f" uri="http://java.sun.com/jsf/core"%>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core"  prefix="c"  %>
    <%@ taglib uri="http://java.sun.com/jsf/core"   prefix="f"  %>
    <%@ taglib uri="http://java.sun.com/jsf/html"   prefix="h"  %>
    <%@ taglib uri="http://jakarta.apache.org/tiles"  prefix="tiles"  %>
         <f:view >
             <link href="<%=request.getContextPath()%>\styles\Form.css" rel="stylesheet" type="text/css"/>
             <link href="<%=request.getContextPath()%>\styles\Menu.css" rel="stylesheet" type="text/css"/>
             <link href="<%=request.getContextPath()%>\styles\Header.css" rel="stylesheet" type="text/css"/>
             <title><h:outputText value="Brand"/></title>
             <h:form id="testForm">
                 <tiles:insert definition="test_create" flush="false"/>
             </h:form>
         </f:view>JSP
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://richfaces.ajax4jsf.org/rich" prefix="rich"%>
    <%@ taglib uri="https://ajax4jsf.dev.java.net/ajax" prefix="a4j"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>Insert title here</title>
    </head>
    <f:subview id="come">
    <body>
    <h:form>
    <h:outputText value="Provider:" styleClass="SubTitle" />
    <h:inputText value="#{testMBean.property}" size="25" id="dpiSuggest" styleClass="SubTitle">
        <a4j:support event="onkeyup" />
    </h:inputText>   
    <rich:suggestionbox for="dpiSuggest" suggestionAction="#{testMBean.suggest}" height="180" width="180" var="suggest">
    <h:column>
    <h:outputText value="#{suggest.countryName}" />
    </h:column>
    <h:column>
    <h:outputText value="#{suggest.countryCode}" />
    </h:column>
    </rich:suggestionbox>
    </h:form>
    </body>
    </f:subview>
    </html>
    *tiles.xml*
    <tiles-definitions>
        <definition name="header-menu-content" path="/layout/basicLayout.jsp">
            <put name="gridClass"           value="headerMenuContent"/>  
            <put name="headerClass"         value="HeaderBgcolor"/>
            <put name="menuColumnClass"     value="MenuBorder"/>
            <put name="contentColumnClass"  value="BodyBgColor"/>
        </definition>
        <definition name="home" extends="header-menu-content">
            <put name="header"  value="/common/header.jsp"/>
            <put name="menu"    value="/common/menu.jsp"/>
            <!--<put name="buttonBar" value="/common/buttonBar.jsp"/>-->
            <put name="content" value="/common/home.jsp"/>     
        </definition>
        <definition name="error" extends="header-menu-content">
            <put name="header"  value="/common/header.jsp"/>
            <put name="menu"    value="/common/menu.jsp"/>
            <!--<put name="buttonBar" value="/common/buttonBar.jsp"/>-->
            <put name="content" value="/common/error.jsp"/>     
        </definition>
            <definition  name="test_create" extends="header-menu-content">
                 <put name="header" value="/common/header.jsp" />
                 <put name="menu" value="/common/menu.jsp" />
                 <!-- <put name="buttonBar" value="/common/buttonBar.jsp"/>-->
                 <put name="content" value="/test.jsp" />
             </definition>
        <tiles-definitions>
    *web.xml*
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
        <session-config>
            <session-timeout>
                30
            </session-timeout>
        </session-config>
        <welcome-file-list>
            <welcome-file>welcome.jsp</welcome-file>
            </welcome-file-list>
             <context-param>
        <param-name>com.sun.faces.verifyObjects</param-name>
        <param-value>false</param-value>
      </context-param>
      <context-param>
        <param-name>com.sun.faces.validateXml</param-name>
        <param-value>true</param-value>
      </context-param>
      <context-param>
        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
        <param-value>client</param-value>
      </context-param>
      <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
      </servlet>
      <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.faces</url-pattern>
      </servlet-mapping>
    <context-param>
      <param-name>org.richfaces.SKIN</param-name>
      <param-value>blueSky</param-value>
      </context-param>
    <filter>
      <display-name>RichFaces Filter</display-name>
      <filter-name>richfaces</filter-name>
      <filter-class>org.ajax4jsf.Filter</filter-class>
      </filter>
    <filter-mapping>
      <filter-name>richfaces</filter-name>
      <servlet-name>Faces Servlet</servlet-name>
      <dispatcher>REQUEST</dispatcher>
      <dispatcher>FORWARD</dispatcher>
      <dispatcher>INCLUDE</dispatcher>
      </filter-mapping>
            <servlet>
          <servlet-name>Tiles Servlet</servlet-name>
          <servlet-class>org.apache.tiles.servlets.TilesServlet</servlet-class>
          <init-param>
             <param-name>definitions-config</param-name>
             <param-value>/WEB-INF/tiles.xml</param-value>
          </init-param>
          <load-on-startup>2</load-on-startup>
       </servlet>
        </web-app>
    *facesconfig.xml*
    <?xml version="1.0" encoding="UTF-8"?>
    <faces-config version="1.2"
                  xmlns="http://java.sun.com/xml/ns/javaee"
                  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                  xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd">
        <navigation-rule>
                <navigation-case> <!-- Displayes the screen to add data -->
                <from-outcome>test</from-outcome>
                <to-view-id>/testContent.jsp</to-view-id>
                <redirect/>
            </navigation-case>
        </navigation-rule>
        <managed-bean>
            <managed-bean-name>testMBean</managed-bean-name>
            <managed-bean-class>testMBean</managed-bean-class>
            <managed-bean-scope>session</managed-bean-scope>
        </managed-bean>
      </faces-config>Edited by: SreeramIyer on May 29, 2008 4:50 AM

    Are you dead set on using tiles? I can see tiles including JSF but JSF including tiles? Not sure if that will work.
    My suggestion is to use Trinidad. It has the concept of Regions which is very "tiles" like and you will be far more successful.

  • Jsf and richfaces version compatibility issue

    Hi,
    I am using JRE 1.5 , jsf 1.2 , richfaces 3.3.3 and deployed in Tomcat 6.0.18. I am getting following error.
    javax.servlet.ServletException: /allocator.xhtml @30,163 <rich:tree> Tag Library supports namespace: http://richfaces.org/rich, but no tag was defined for name: tree
         javax.faces.webapp.FacesServlet.service(FacesServlet.java:321)
    root cause
    javax.faces.view.facelets.TagException: /allocator.xhtml @30,163 <rich:tree> Tag Library supports namespace: http://richfaces.org/rich, but no tag was defined for name: tree
         com.sun.faces.facelets.compiler.CompilationManager.pushTag(CompilationManager.java:289)
         com.sun.faces.facelets.compiler.SAXCompiler$CompilationHandler.startElement(SAXCompiler.java:228)
         com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.startElement(Unknown Source)
         com.sun.org.apache.xerces.internal.impl.dtd.XMLDTDValidator.startElement(Unknown Source)
         com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.scanStartElement(Unknown Source)
         com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
         com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
         com.sun.org.apache.xerces.internal.parsers.XML11Configuration
    Thanks,
    BPradhan

    In my development box , I can use any version of jre, tomcat.
    But, we have our department dev and prod server configured with jre 1.5 and tomcat 6.0.18
    Some other applications are running in those environment with jre 1.5 and tomcat 6.0.18. I cannot upgrade just for new application.
    when tomcat6 was downloaded in our department dev and prod server , they are installed with jre5. Subsequently servers are upgraded with jre6 but it seems like tomcat recognises jre5 not jre6. Let me know if i am wrong about jre version tomcat is trying to use.
    Also, can you help me with the environment I have and problems i am encountering with jsf and richfaces.
    Thanks,
    BPradhan
    Edited by: user618018 on Feb 1, 2013 5:03 PM

  • HP Live Photo FAQ, Help, and Support

    HP LIVE PHOTO
    HP Live Photo app - available on iOS and Android devices
    Make your photos come to life with HP Live Photo!  HP Live Photo is a free, fun, and easy app for iOS and Android that lets you share your experiences with friends and family by creating photos that launch short personal videos on a smartphone or tablet.  
    Share your Live Photos with friends and family by printing, ordering prints from Snapfish (US only), and via Facebook or email. 
    For more information on HP Live Photo you can:
     1. Watch this short video
     2.  visit the HP Live Photo app page.
    To install the app:
    iOS: App Store link  Look in the Apple App Store for HP Live Photo.  Available in English only at this time.    Supports iOS 6.0 and above.
    The app is designed for the iPhone, and can be run on the iPad2 and above and iPad Mini in 2X mode, and on the iPod Touch 5th generation.   If you want to install the app on your iPad2 or above, do not filter for apps that are designed for the iPad in the app store. 
    Android: Google Play Store link.  Available in English only at this time.  Supported at this time only on the following devices:
    HTC One
    HTC OneX
    Nexus 4
    Samsung Galaxy S2
    Samsung Galaxy S3
    Samsung Galazy S3 Mini
    Samsung Galaxy S4
    Samsung Galazy S4 Mini
    Samsung Galaxy Nexus
    Samsung Galaxy NoteII
    Sony Experia Z
    You'll find the following Help and Support information below: 
    FAQ - Frequently Asked Questions
    Help Printing Live Photos
    Troubleshooting Help for Creating, Sharing, and Viewing Live Photos
    How to get more Support 
     FAQ
    Can I see an example of what the app does?
    Yes.  Watch this short video, and the HP Live Photo also app includes a video and an example Live Photo you can print and view from the Live Photo app.  Go to Settings and scroll down to the Tools section and select “Print a Sample” to print the sample Live Photo and then view it with the app. 
    If I have a question about my Snapfish Live Photo order, who should I talk to? (US only)
    When you place a Snapfish order from the Live Photo app, you will receive an order confirmation from Snapfish to your email address.  Review that email to confirm your order and contact Snapfish if your order appears to be late or does not arrive, or you have questions about the quantities you receive after your order arrives.   Check your spam folder if you don't see the Snapfish order confirmation email in your inbox.  If you need assistance from Snapfish and cannot find your confirmation email, here is the US Snapfish Help and Support page.   
    What iOS devices support Live Photo?
    The iPhone, iPad2 and later, and iPad Mini, and iPod Touch 5th generation on iOS 6.0 and above.   The app runs in 2X mode on iPad devices.  Currently, HP Live Photo is supported in the US in English only.  
    Do I need an iOS or Android device to both create and view Live Photos?
    Yes.  Currently Live Photos may only be created and viewed on iOS or Android devices at this time.
    Can I use any video in Live Photo?
    You may use any video recorded on your mobile device using the video function, up to 45 seconds in length.  If the video is longer than 45s, the HP Live Photo app will allow you to select a 45 second or less segment from the video.
    Where are the Live Photo videos saved when I create a Live Photo?
    The videos for your Live Photos are saved over the internet to the cloud.  The original video on your device is not affected or modified in any way.  HP Live Photo is not a video backup solution, so be sure to save images and videos using your own storage solutions.   The live photo videos are not saved to your Facebook account. 
    When I share a Live Photo via email or Facebook is the video included in the email or post?
    No.  Only the Live Photo is included in the email or Facebook post.  The video is only accessed from the cloud when the HP Live Photo app is used to scan a Live Photo. 
    If I print a Live Photo to give to family/friends, how will the recipient know how to view it?
    The HP Live Photo app allows you to choose between printing just the Live Photo itself, or printing the Live Photo and a set of simple instructions for your recipient on 4x6 or 5x7 photo paper.  The instructions explain how to install the HP Live Photo app and view the Live Photo.
    Can I share my Live Photos with anyone? 
    Yes.  You can share with any friends/family using a live photo nametag.  Even easier, if you log into Facebook from the Live Photo app your Facebook friends are automatically enabled to view any live photos you share with them without having to enter your Live Photo nametag. 
    What is a Live Photo Nametag? 
    A Live Photo nametag allows you to share live photos with friends and family who are not a Facebook friend.   The Live Photo app will prompt you to create your own custom nametag. This nametag allows Live Photo users who are not your Facebook friends to view  your live photos. 
    Your nametag is printed on the bottom right corner of all your live photos.  When you share your live photo with someone who is not a Facebook friend, they can simply enter your nametag in the nametag field on the View screen of the Live Photo app, and then view any of your live photos you share with them.  This is a one-time operation - once your friend or family member enters your live photo nametag they will be able to view any of your live photos.  Anyone who is a Facebook friends can view your live photos w/out having to enter your nametag.  
    How do I print a Live Photo from an iOS device?
    You can print Live Photos from the Live Photo app on your iOS device in the same way you print other photos on iOS, using the built-in iOS Airprint feature. Airprint supports a range of printers from HP and other companies.  If you need help with Airprint, follow the steps in “How do I send a print job using Apple AirPrint?” section in these instructions. 
    How do I print a Live Photo from an Android device?
    Printing from Android devices is supported via the HP ePrint app, and is currently only enabled for HP printers. (See the next section for printing to non-HP printers or printers not supported by the HP ePrint app.)  The ePrint app must be installed separately from the Live Photo app, and supports all web-connected HP printers released in the past several years and many legacy HP printers.  If the HP ePrint app is not installed on your Android device you will be prompted to install it when you select the Print option in the Live Photo app.  For more information see the HP ePrint app in the Google Play store.
    Note on HP ePrint app Activation: After the HP ePrint app completes installing you will be prompted by the HP ePrint app to Activate it.  You do not have to complete the “Activation” step in the HP ePrint app to print to your local wi-fi connected HP printers.  HP ePrint app Activation is only required if you wish to print to HP web-connected printers on your HP Connected or HP ePrintCenter account, over an internet connection.
    Once the HP ePrint app is installed, when you select Print from the Live Photo app the HP ePrint app will be automatically launched w/the live photo displayed and ready to print.  All you have to do is select an HP printer on your wi-fi network, ensure you have photo paper inserted, and hit print.
    Can I print from my Android device to non-HP printers and HP printers that the ePrint app does not support?
    Yes.  There are some third-party printing apps available for Android devices in the Google Play store (one example is Printershare).  If your HP printer is not supported by the HP ePrint app, or if your HP printer compatible is not compatible with the HP ePrint app, you may be able to use a third-party print app to print your HP live photos.
    Send the photo to yourself via the Share via email option from Live Photo.  Then open the email on your phone and tap on the photo when it displays after downloading. Select the Android Menu option and choose Share. Your print app should appear on the Share list.  Select the print app and complete your print as you normally do using that app.
    Can I print Live Photos from my computer?
    Yes.  Simply share your photo via email from the Live Photo app to your own email address and then open the email and print the live photo as you normally do from your computer. You can print live photos from your computer to any printer you have attached to it that supports photo printing.
    Can I print Live Photos on plain paper?
    Always print Live Photos on photo paper to provide the necessary color, saturation, and depth for the best Live Photo experience.  You may have success printing on plain paper, but results will be much less predictable.
    Do I need a Facebook account to use HP Live Photo?
    Viewing: No. A Facebook account is not required to view live photos using the Live Photo app. 
    Creating: No.  A Facebook account is not required to create Live Photos.  You can create and share them using your Live Photo Nametag.  However:  If you create live photos without logging into Facebook, we cannot make your live photos available to you in the Live Photo app on other devices.  Any live photos you create on a device using just a Live Photo nametag will be added to your Live Photo gallery and available on other devices if you sign into the app using Facebook. 
    Do I need an internet connection to use this app? 
    Yes, HP Live photo requires an internet connection for launch/use. 
    I played the introduction video in the app but why is there no sound – what’s wrong?
    Make sure that you have sound enabled on your iOS device...if you are set to virbrate mode you will not hear audio with the video. 
    How can I provide feedback on Live Photo features that I’d like added or changed?
    In the HP Live Photo app, select Settings and scroll down to the Send Feedback option.  We would love to hear from you!  Note that this option is for feedback and is not monitored for support questions.  For support questions see the
    Printing Live Photos, Troubleshooting, and Support sections below.
    I am having an issue with the HP Live Photo app – where can I get help? 
    See the Printing Live Photos and Troubleshooting sections below.  If you can’t find what you need and would like to contact HP Live Photo support, see the Support section below. 
    PRINTING LIVE PHOTOS 
    Always print Live Photos on photo paper to provide the necessary color, saturation, and depth for the best Live Photo experience. 
    You can print from your iOS device on 4x6 or 5x7 photo paper using Airprint if you have an Airprint compatible printer.
    You can print from your Android device on 4x6 or 5x7 photo paper via the HP ePrint app if you have an HP wireless/Ethernet connected printer.
    Printing Live Photos shared via email on an iPhone/iPad using Airprint:   
    Long-press on the image in the email and select “Save Image” from the pop-up list of options and select the Save option.
    Go to your Camera Roll and open the image.
    Ensure you have 4x6 or 5x7 photo paper in your printer’s photo paper tray, or main tray if you do not have a separate photo paper tray, select the Action icon and choose the Print option. 
    If you need help with Airprint, follow the steps in “How do I send a print job using Apple AirPrint?” section in these instructions  
    More information on Airprint:
    - HP Airprint support forum discussion thread: Click here. 
    - All Airprint enabled printers:  http://support.apple.com/kb/HT4356
    Printing Live Photos shared via email on an Android device (requires HP printer):
    Tap on the image in the email to open the image.
    While viewing the image, select Menu>Share
    Select the HP ePrint app as the share target, or another print app that you prefer to use if you have one installed. If you select another print app, complete the print as you normally do.
    If you select the HP ePrint app it will open displaying the image – select Print in the HP ePrint app to print the image. Ensure you have 4x6 or 5x7 photo paper in your printer’s photo paper tray, or main tray if you do not have a separate photo paper tray, and select either 4x6 or 5x7 print size in the HP ePrint app settings.
    More information on the HP ePrint mobile app.
    HP ePrint mobile app FAQs:  http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&​lc=en&dlc=en&docname=c01923321
    Printing Live Photos shared via email on PC and Mac:
    You can also use the Email option to send a Live Photo to yourself, open the email on your computer and save and print the photo as you normally print photos on your computer. 
    On a PC, right-click on the photo in the email and select the Save option.  
    On a Mac, see this information. 
    If you need additional help printing photos from your PC, Click here.
    Printing Live Photos shared via Facebook:
    It’s usually easiest to save the photo from Facebook and then print it on your computer or device.
    Computer: Select the photo and select “Options>Download” to save the photo to your computer. 
    Mobile: Long-press on the photo and select “Save Photo” to save the photo to your device.
    After saving the Live Photo print it as you normally print on your computer or device.  
    Printing Photos Directly from Facebook on Your Computer:
    You may also want to try the HP Facebook Photo and Album printing option to print live photos from Facebook shares. 
    However, it may be simpler to save and print the photo from your computer or device using a process that you are more familiar with.
    https://apps.facebook.com/hpprint/
    TROUBLESHOOTING
    Create:
    Can I change the images that the app pulled from the video for the Live Photo?
    It is not possible to directly select a specific frame of the video to print as the Live Photo.  You can try the refresh button in the upper-right corner of the “Choose Image” screen to re-scan your video.
    What can I do if the HP Live Photo app is unable to find an image in my video for the Live Photo?
    The most likely reason for not finding an appropriate image to print for the Live Photo is that the content of the video does not provide enough contrast.  For example, a video of a white dog walking on the sidewalk, or black dog walking on asphalt.  The best way to try to resolve this issue is to shoot the video with more lighting to increase the contrast.  You can also try to include a few “still shots” in the video where camera and subject movement is minimized. 
    What if I don’t want to share the entire video?
    After you select your video, you can use standard iOS video trim functions within the HP Live Photo app to choose your desired begin and end points. 
    What if my video is longer than 45 seconds?
    The HP Live Photo app will display the video trim controls automatically with a 45 second segment selected so you can choose what portion of the video to include.
    Can I use a video from another source?
    HP Live Photo currently only supports videos created on your iOS device.
    It’s taking a very long time to save my Live Photo project.  What can I do to speed it up?
    Saving the project requires uploading both the video clip and the photo, and completing several tasks in the cloud to link the Live Photo to the video. Depending on the length of your video and the speed of your internet upload connection (which can vary significantly over time), this can take several minutes. 
    If you are on Wi-Fi and the save is taking more than five minutes or not completing, try changing to 3G or 4G, which usually have faster upload speeds than home or public Wi-Fi connections.  (Data charges may apply.)  You can also try using a shorter video clip.   (If you are interested, you can use services like www.speedtest.net to test your Wi-Fi and 3G/4G upload speeds.)
    How do I view or share Live Photos I’ve already created?
    Select the Live Photos option (icon looks like a small stack of photos) in the Live Photo app to view the Live Photos you have created.  Select one of them to view the photo and choose a print or share option. 
    How do I delete a Live Photo from my list of saved Live Photos?
    iOS:  Go to the Live Photo tab and slide your finger left-to-right on the Live Photo you want to delete.  A “Delete” button will appear – select it to delete the photo.
    Android: Select the Live Photo icon (at the top of the Live Photo app, looks like a stack of photos) to view your live photos.  Long press on a live photo a context menu will appear with Delete and Share options.  Select the Delete option.
    Share
    I’m having problems printing a Live Photo that was shared to me.   
    See the Printing Live Photos section above for general information and assistance with printing HP Live Photos.
    Can I use the app to view a Live Photo on my computer screen?
    Yes.  If you share the Live Photo via email or Facebook, recipients can use the HP Live Photo app to view the Live Photo on screen and see the video.  Results can be affected by the monitor display resolution and type, as well as ambient lighting.  
    My friend doesn’t have an iOS or Android device.  Can I share my Live Photo with her?
    At this time an iOS or Android device is required to view the videos associated with your Live Photos. 
    I just need the viewing instruction sheet – how can I print that?
    Go into app Settings and scroll down and select the “Print Instructions” option.  If you prefer not to print the instructions on 4x6 or 5x7 media, remove photo media from the photo tray before you send the print. 
    View:
    I have a Live Photo that does not play when I view it through the HP Live Photo app.  What’s wrong?
    Below are some reasons why this could occur:
    The photo is not an HP Live Photo.  Look for the small blue icon of a bird in the lower-right corner of the photo to confirm it is a Live Photo.
    The person who created the Live Photo must be either one of your Facebook friends, or you must connect to them by entering their nametag (printed on the bottom-right of the live photo) in the View screen in the Live Photo app.  
    The Live Photo needs to be printed on photo paper for best results.
    Ensure sufficient light is available for viewing, and minimize any glare or shadows on the photo.
    The creator of the Live Photo may have deleted the Live Photo project from their app.  Contact them to confirm it is still available.
    An internet connection that is too slow/unstable.
    Can I view Live Photos with other augmented reality apps?
    No.  HP Live Photo requires the HP Live Photo app to view the images and display the video.
    SUPPORT
    If you are unable to find an answer to your question in the FAQ, Printing Live Photos, and Troubleshooting sections above, you can get support via email for the HP Live Photo application at the following email address:
    [email protected]
    To ensure a quick resolution of your support question, please provide:
    A clear subject line - e.g., “Live Photo – printing problem”
    A complete description of your problem – what you are trying to do and what is going wrong.
    What iOS mobile device you are using
    Your printer make/model
    Note that we do not have the necessary information to provide support for photo printing on non-HP printers. 
    I am an HP employee.

    Connybelle wrote:
    My HP Photosmart 5514 is set up on wireless.  It will not let me print a picture from my computer.  No matter what I do, it tells me to insert a memory card.  I want to print what is in my pictures on the computer.  Any ideas?
    If you're trying to print from your computer to your printer via wireless, you have a basic printing question...You can get help for those types of questions in this forum:
    http://h30434.www3.hp.com/t5/Printing-Issues-Troub​leshooting/bd-p/PostPrint
    I am an HP employee.

  • What is up with the Help and Support Section for Business Catalyst?

    It has been very difficult for my customers and myself to access the help and support section of the site for Business Catalyst issues as we are constantly diverted to non-related Abode issues. The portal for support on Business Catalyst issue needs to be ISOLATED from ADOBE's main support section. It is bad enough that there are so many issues to deal with, but to add all the issues for all the applications is simply impossible to decipher and discover a solution.
    Before the Adobe integration on the Cloud services it was much more simpler, wiith a much more efficient and cleaner layout, now every page looks like its generated by a bot that doesn't understand what I am looking for. Even the actual URL of the page is hidden so I can't even book mark it without opening the frame in a new window. My clients will not know how to do that.
    Simplify plesase!
    Teejay

    Teejay,
    Yes we are looking into this very thing and hope to improve this very soon.  Not only making things a bit clearer but also a central location for all your BC support needs. 
    Kind regards,
    -Sidney

  • Unable to open "Help and support"

    When i click on help and support i get the error message:
    "Internet explorer cannot download / from help"
    How do i fix this?

    Ahh.. i know how to solve that.. This problem happens when the default application which is assigned for .xml files is replaced with another one (which is trying to downlod help files, obviously). Download this reg key that will restore default values in your registry.
    http://www.sendspace.com/file/xmrpjn
    Goodluck!

  • Building a Simple JSF and Web Services App in JDeveloper 10.1.3 Preview

    Hi
    I was trying out this example of JSF and webservices at:
    http://www.oracle.com/technology/products/jdev/101/howtos/jsfws/index.html
    Has anyone tried it before? I'm getting the following error:
    calling http://216.200.21.157:9090/soap
    WARNING: Unable to connect to URL: http://216.200.21.157:9090/soap due to java.security.PrivilegedActionException: oracle.j2ee.ws.saaj.ContentTypeException: Not a valid SOAP Content-Type: text/html
    java.rmi.RemoteException: ; nested exception is:
         HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: oracle.j2ee.ws.saaj.ContentTypeException: Not a valid SOAP Content-Type: text/html
         at com.minc.ws.stockquery.proxy.runtime.NetXmethodsServicesStockquoteStockQuoteBinding_Stub.getQuote(NetXmethodsServicesStockquoteStockQuoteBinding_Stub.java:96)
         at com.minc.ws.stockquery.proxy.NetXmethodsServicesStockquoteStockQuotePortClient.getQuote(NetXmethodsServicesStockquoteStockQuotePortClient.java:40)
         at com.minc.ws.stockquery.proxy.NetXmethodsServicesStockquoteStockQuotePortClient.main(NetXmethodsServicesStockquoteStockQuotePortClient.java:29)
    Caused by: HTTP transport error: javax.xml.soap.SOAPException: java.security.PrivilegedActionException: oracle.j2ee.ws.saaj.ContentTypeException: Not a valid SOAP Content-Type: text/html
         at oracle.j2ee.ws.client.http.HttpClientTransport.invokeImpl(HttpClientTransport.java:142)
         at oracle.j2ee.ws.client.http.HttpClientTransport.invoke(HttpClientTransport.java:118)
         at oracle.j2ee.ws.client.StreamingSender._sendImpl(StreamingSender.java:175)
         at oracle.j2ee.ws.client.StreamingSender._send(StreamingSender.java:112)
         at com.minc.ws.stockquery.proxy.runtime.NetXmethodsServicesStockquoteStockQuoteBinding_Stub.getQuote(NetXmethodsServicesStockquoteStockQuoteBinding_Stub.java:79)
         ... 2 more
    Any ideas?
    Thanks
    Alex

    I'm not using 10.1.3 preview. I was using 10.1.3.1 production. I just copied the title of the tutorial as my subject. sorry for the confusion!! :)
    I used the HTTP analyzer and this is what I got in the header:
    <HTML><HEAD><TITLE>TCP Packet Monitor Error</TITLE></HEAD><BODY>JDeveloper TCP Packet Monitor encountered an error retrieving<P><pre>POST http://216.200.21.157:9090/soap HTTP/1.1
    Host: 216.200.21.157:9090
    Proxy-Connection: Keep-Alive
    Connection: TE
    TE: trailers, deflate, gzip, compress
    User-Agent: Oracle HTTPClient Version 10h
    SOAPAction: "urn:xmethods-delayed-quotes#getQuote"
    Accept-Encoding: gzip, x-gzip, compress, x-compress
    Content-type: text/xml; charset=UTF-8
    Content-length: 680
    <env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns0="urn:xmethods-delayed-quotes"><env:Header><wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" env:mustUnderstand="1"/></env:Header><env:Body><ns0:getQuote env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><symbol xsi:type="xsd:string">orcl</symbol></ns0:getQuote></env:Body></env:Envelope></pre><P>The error was :<P><pre>IOException retrieving the response: java.net.ConnectException: Connection refused: connect</pre><P></HTML>
    It looks like I'm getting connection refused error... Hmmm.. wonder why?
    I'll download 10.1.3.2 and see if that helps..
    Thanks for looking into this!
    Alex

  • All of a sudden, my ipod touch will only recognize/play purchased items. I then have to completely reset the ipod and re-sync. I've had to do this 6 times, and support has been no help.

    All of a sudden, my ipod touch will only recognize/play purchased items. I then have to completely reset the ipod and re-sync. I've had to do this 6 times, and support has been no help.

    So you also rebooted your router correct?  Does the iPod still connect okay to other networks? 
    B-rock

  • An error ocurred during the installation of assembly 'Microsoft. VC80.crt,type="win32", version="8.0.50727.4053".publickKeyToken="1fc8b3b9a1e18e3b".processorArchitectu re="amd64".Please refer to help and support for more information. HRESULT: 0x80071A30

    An error ocurred during the installation of assembly 'Microsoft. VC80.crt,type="win32", version="8.0.50727.4053".publickKeyToken="1fc8b3b9a1e18e3b".processorArchitectu re="amd64".Please refer to help and support for more information. HRESULT: 0x80071A30
    Instale iTunes perfectamente, conecte mi iPone y me dijo que necesitaba otra version que borrase la actual y instalase la nueva, borre la que tenia, y al instalar la nueva me salia esto y no tengo forma de instalarla. Ya hice los tutoriales de la pagina, y nada.

    OK.  If both of you are Windows 7.  Make sure you go to Windows update (START button, type in Windows Update). Check for updates and update whatever that are available. (especially Microsoft .NET Framework 4 )
    After that see if you still get this error message.
    The last resort would be to unistall and reinstall the whole thing.
    Follow the steps below:
    1. Go to Microsoft website to fix install and Unistall problems. Click "Run now" from Fix it to remove all iTunes & related installer files:
    http://support.microsoft.com/mats/Program_Install_and_Uninstall
    Be aware that Windows Installer CleanUp Utility will not remove the actual program from your computer. However, it will remove the installation files so that you can start the installation, upgrade, or uninstall over.
    2. You should remove all instances of iTunes and the rest of the components listed below:
    it may be necessary to remove all traces of iTunes, QuickTime, and related software components from your computer before reinstalling iTunes.
    Use the Control Panel to uninstall iTunes and related software components in the following order:
    iTunes
    QuickTime
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support (iTunes 9 or later)
    Follow the instructions from Apple article listed here: http://support.apple.com/kb/HT1923 to remove all components
    3. Reboot your computer. Next, download iTunes from here:http://www.apple.com/itunes/download/ and install from scratch

  • ITunes Installation error: "Microsoft VC80.CRT.TYPE="win 32".version=8.0.50727.6195".publicKeyToken='1fc8b3b9a1e18e3b".processorArchitec ture "x86"".Please refer to help and support for more information. HRESULT:0X800700C1

    Hi!
    I am trying to install iTunes on my laptop that runs Windows 8.1
    I have tried several solutions discussed in similar questions but none worked
    -uninstalled and reinstalled
    -cleaned C drive for all Apple products
    -tried to install security update’ Microsoft Visual C++ 2005 Service Pack 1 Redistributable Package ATL Security Update’ but the same error appeared
    -Windows module installer is enabled
    I always get this error
    an error occured during the installation fo assembly "Microsoft.VC80.CRT.type="win32", version="8.0.50727.6195, public key token=,1fc8b3b9a1e18e3b", processor architecture="x86", please refer to help and support for more information. HRESULT: 0x80070422
    If i ignore and proceed another error appears
    Service 'Apple Mobile device' failed to start. Verify that you have sufficient privileges to start system services
    If i ignore one more time, itunes is installed but when i try to run it
    Apple application support was not found. Apple Application Support is required to run iTunes Helper- please uninstall iTunes and then install itunes again-error 2
    Can someone help me please? Thank you!

    Hi M2i7guel,
    Welcome to Apple Support Communities.
    It sounds like there is an issue installing iTunes and other Windows updates on your PC. The article linked below provides troubleshooting suggestions that will resolve most issues like the one that you've described.
    Issues installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/HT1926
    I hope this helps.
    -Jason

Maybe you are looking for

  • Metadata repository contain

    I know that all the BI content (delivered by SAP) that I activate goes to the metadata repository, but what happen with my own BI objects that I create? I mean: i build my custom infocube for costcenter, if I activate it , is this stored in metadata

  • MacBook Reinstall - What to do with iPhone?

    Hey guys. Very straight forward question. My MacBook definitely needs to be reinstalled. It came with Tiger and later upgraded to Leopard. Office 2004 upgraded to 2008 and so on. So now, things are definitely messed up and a reinstall, clean one from

  • CiscoSecure ACS 3.3 with Linux PAM?

    Hi. We have two new console servers (not Cisco products) and I'm trying to authenticate using our TACACS+ servers. Per the documentation I have found, I have put the appropriate commands in the pam.conf file. I have the communciation unencrypted. The

  • McAfee Anti-virus Program

    Where do I find the link to reload the free McAfee anti-virus program?  My current application has corrupted after 3-4 years of working properly. 

  • My 3G iphone seems to use slow GPRS rather than wifi, how come?

    I know my wifi works fine as my pc is running of it, and my iphone was using the wifi up until a few days ago. Now my iphone seems to be using a slow GPRS connection which sometimes jumps to 3G. It's really annoying as it's slower than wifi. It says