Jsf newbie :: converter and navigation issues

Hi,
Iam facing a problem in my first jsf application.
Iam using jsf 1.1 and tomcat 5.5.7
I have a UserBean with a single attribute userName (which has public getter and setter methods).
* I have an index.jsp that redirects to login.faces.
* I have the appropriate servlet url-mapping in my web.xml that maps *.faces to the FacesServlet
Here's the code for login.jsp
<f:view>
   <h:form>
         <h3>Please enter your name </h3>
     <table>
      <tr>
          <td>Name:</td>
        <td><h:inputText id = "name" value="#{user.userName}"/></td>
     </tr>               
     </table>
     <p><h:commandButton value="Login" action="welcome"/>
     </p>
     </h:form>
   </body>
</f:view>Next I have a welcome.jsp which simply outputs Hello <userName>
<f:view>
  <h:form>
     <h:outputText value="#{user.userName}"></h:outputText>
  </h:form>
</f:view>And this is my faces-config.xml
<?xml version="1.0"?>
<!DOCTYPE faces-config PUBLIC
  "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
  "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
<faces-config>
     <managed-bean>
          <managed-bean-name>user</managed-bean-name>
          <managed-bean-class>com.myjsf.UserBean</managed-bean-class>
          <managed-bean-scope>session</managed-bean-scope>
     </managed-bean>
     <navigation-rule>
          <from-view-id>/index.jsp</from-view-id>
          <navigation-case>
               <from-outcome>welcome</from-outcome>
               <to-view-id>/welcome.jsp</to-view-id>
          </navigation-case>
     </navigation-rule>
</faces-config>Now when I start my application , the index page redirects me to login.faces. I believe the FacesServlet intercepts this call, strips of .faces and forwards to login.jsp. Login.jsp is displayed correctly, so far so good. However from here on, I have all kinds of problems
1. Should the <from-view-id> be /index.jsp (my actual url) or /login.jsp (the url to which index.jsp forwards me to). Actually both seem to work (or not work depending on how you look at it :( )
2. Anyways whatever I set it to, the login.jsp is displayed correctly. The action attribute of the commandButton tag is set to 'welcome' which matches with the <from-outcome> value in navigation rule in faces-config.xml and I would have expected the welcome.jsp to load on form submit.
But the form just reloads itself on clicking submit.
I googled around and discovered that this may be due to validation errors or conversion errors and adding <h:messages/> would indicate the error source. AQccordingly I added it and got this o/p
" "name": " Conversion Error setting value 'Duke' for 'null Converter'. To cut a long agony story short, I found that I have to define a converter for some data types for validation and/or display. But all I have is a String property. Doesnt jsf provide a default Converter ?
3. I couldnt get my app to work when I put my jsps in a folder and access them as /<foldername>/jsp in my faces-config.xml. Isnt this possible ? Should all jsps be under the root folder ?
Will be thankful for any help.
cheers,
ram.
2. Whenever I click on

Thanks for the reference , I shall definitely go through it.
My immediate concern is to get the first program working.
Here is my source code for the bean.
package com.myjsf;
import java.io.Serializable;
public class UserBean implements Serializable {
    private String userName;  
    public String getUserName() {
        return userName;
    public void setName(String userName) {
        this.userName = userName;
}Here's my login.jsp which comes up fine
<f:view>
   <h:form>
     <h:messages/>
         <h3>Please enter your name.</h3>               
             Name: <h:inputText id = "userName" value="#{user.userName}"/><br>
              <h:commandButton value="Login" action="welcome"/>
     </h:form>
  </f:view>Here's my faces-config.xml
<faces-config>
     <managed-bean>
          <managed-bean-name>user</managed-bean-name>
          <managed-bean-class>com.myjsf.UserBean</managed-bean-class>
          <managed-bean-scope>session</managed-bean-scope>
     </managed-bean>
     <navigation-rule>
          <from-view-id>/login.jsp</from-view-id>
          <navigation-case>
               <from-outcome>welcome</from-outcome>
               <to-view-id>/welcome.jsp</to-view-id>
          </navigation-case>
     </navigation-rule>
</faces-config>     And this is the error that I get
"userName": Conversion error occurred. The page gets displayed again. One thing I noticed was that in the html - view source the action attribute of the form tag is set to /myjsf/faces/login.jsp. Shouldnt it be welcome.jsp rather ?
Iam at my wits end. I have decided to write a Converter which may solve my problem, but is it required ?
Please help.
Thanks,
Ram.

Similar Messages

  • Google translation and navigation issue

    I recently created a website for a lawyer.  Instead of creating 2 sites (1 in english and 1 in German) we went the cheaper route and just used Google translation to keep it simple understanding it isn't a perfect translation.  However, when it translates the there is a few tabs in the navigation that get screwed up.  I suspect it is something in my design that I am missing.  Can anyone tell why this would be happening?
    www.petersonlawhawaii.com (click on the german flag and let it translate and you will see the navigation get screwy)
    Thanks!

    90% of browser rendering problems are caused by malformed code.  You have a few errors on your page worth fixing.
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.petersonlawhawaii.com%2F
    To simplify things, you may wish to combine styles into one styles.css file.
    Example, you have this embedded style in your HTML document  between comment tags:
    <!--
    @import url("styles.css");
    #wrapperbackground #outerWrapper #header .clearFloat #links2 {
        color: #FC6;
    #wrapperbackground #outerWrapper #header .clearFloat #links2 h2 marquee {
        font-family: Times New Roman, Times, serif;
    body,td,th {
        font-size: 14px;
    -->
    Why don't you consolidate the green  code into your  style.css like so?
    #links2 {color: #FC6;}
    marquee {font-family: Times New Roman, Times, serif;}
    body,td,th {font-size: 14px;}
    And change the @import URL to a stylesheet link like this:
    <link href="styles.css" rel="stylesheet" type="text/css" media="screen" />
    Oh, yeah. And remove the comment tags b/c you don't need them.
    <!--
    -->
    And when you have a spare moment, take a look at CSS shorthand:
    http://www.456bereastreet.com/archive/200502/efficient_css_with_shorthand_properties/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Window size, and navigation issues with Web Dynpro and GP

    I have a Web Dynpro application which navigates to other Web Dynpro applications.  I also need to integrate this application into a GP.  When I create a process that calls the Web Dynpro app, two things I've noticed are:
    1. The window size presented in the GP process is too small, and there is no way to scroll to see the rest of the app.  How can I change the initial size of the Window to show the entire application?  This is an absolute show stopper...
    2. Other functionality is made available to the Web Dynpro app by navigating to other Web Dynpro applications.  Outside of the GP, this works correctly.  However, from within the application when started via a GP, I get the following error when I try to trigger an action that will lead to a navigation event:
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Cannot navigate via outbound plug CreatePdf of view TestView because there is no navigational link attached to it
        at com.sap.tc.webdynpro.progmodel.view.View.navigate(View.java:541)
        at com.sap.tc.webdynpro.progmodel.view.View.navigate(View.java:462)
    Any ideas? Do I have to manually instantiate the various components when the root Web Dynpro app is called from a GP?

    Update: this was my mistake - I had neglected to configure all the view containers in the WebDynproCO window, which was generated by adding the GP interface to the component.  All is well.

  • FLV and Navigation issue

    I have a lot of videos in the stage, and some of them that
    are loaded within a swf, so the problem is, when i press any button
    of the menu or something to navigate across the interface, the
    video it does not stop playing, it get stuck in the background
    playing.
    I founded a solution but is not scaleable, which when i click
    something, i have to stop the video instanceVideop.stop(), in the
    timeline.
    So i was wondering if there was any way to stop all videos
    that were playing, or something like it.
    The weird thing is when i load a video that is embeded into a
    swf, and remove the swf, with removeChild, the videos doesnt stop
    playing, i thought it was that i only remove it from the stage, but
    it has something that it stays in memory, some instance, or
    something else, i dont really know, im confused whats really
    happening.
    Thx for all the help i can get from you

    I'm very sorry, but that is the way Question slides are designed in CP5: the number of attempts you allow on Question level have to be exhausted while the user is on the slide. Once you leave the slide the question will be blocked. Multiple attempts on Quiz level will still be available if you didn't leave the quiz scope, but this can only be done after finishing the quiz and all answers will then be deleted, correct as well as incorrect ones. This has changed in CP6, where remediation is possible (just answered today such a question in another thread here), and you can indeed jump to a content slide from a question slide, come back and change the answer.
    Your goal in CP5 can only be achieved if you create custom question slides, but then there is the problem that drag&drop is not natively available as you have in the default Sequence Question slide.
    Lilybiri

  • JSF 1.2  and Weblogic 10.3.6 compatibility issue

    Hi All,
    Our application have been developed in JSF 1.2 and spring DAO. We have deployed it on Weblogic 10.3.6 X86 server.
    We are facing an issue like on page load data are populated in the page. Say for example on page load company list getting populated and displayed in the drop down.
    If we do any operation like select a company code or submit the page all the data are flushed out from the pages. After that navigation of pages also doesnot work.
    We neither get any logs nor exception.
    And i am not getting this issue in my local weblogic server - 10.3.5
    We are struggling with this issue for more than 10 days now and its critical time for us to fix it ASAP.
    Thanks,
    Seetha

    Hi kalyan,
    We are not getting any logs. the control is going to javascript but the page get refreshed and all data are just vanishing.
    We have tried to add below entries in weblogic-application.xml
    <wls:prefer-application-packages>
    <wls:package-name>com.sun.facelets.*</wls:package-name>
    <wls:package-name>com.sun.faces.*</wls:package-name>
    <wls:package-name>javax.faces.*</wls:package-name>
    <wls:package-name>javax.servlet.*</wls:package-name>
    </wls:prefer-application-packages>
    No change.
    Tried this
    <wls:library-ref>
    <wls:library-name>jsf</wls:library-name>
    <wls:specification-version>1.2</wls:specification-version>
    <wls:implementation-version>1.2</wls:implementation-version>
    <wls:exact-match>false</wls:exact-match>
    </wls:library-ref>
    No Change.
    tried this
    <wls:prefer-application-resources>
    <wls:resource-name>APP-INF/lib</wls:resource-name>
    </wls:prefer-application-resources>
    No Change
    Anything we missing here. Why it is working in my local server and not in Integration server?
    Kindly help us.
    Thanks,
    Seetha

  • Navigation issue using jsf, tiles, tomahawk  :loosing faces context

    Hi all,
    I enhanced my webapp using tomahawks jscookmenu.
    Triggering 1 menuItem the wanted pages displays correctly but the next click anywhere in the application shows this error:
    org.apache.jasper.JasperException: javax.faces.FacesException: Faces context not found. getResponseWriter will fail. Check if the FacesServlet has been initialized at all in your web.xml configuration fileand if you are accessing your jsf-pages through the correct mapping. E.g.: if your FacesServlet is mapped to  *.jsf (with the <servlet-mapping>-element), you need to access your pages as 'sample.jsf'. If you tried to access 'sample.jsp', you'd get this error-message.The web config is like that:
    <?xml version="1.0"?>
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
         version="2.4">
         <context-param>
              <description>Tiles MyFaces Config</description>
              <param-name>tiles-definitions</param-name>
              <param-value>/WEB-INF/tiles.xml</param-value>
         </context-param>
         <context-param> 
              <param-name>javax.faces.DEFAULT_SUFFIX</param-name> 
              <param-value>.jsp</param-value>
         </context-param>
         <context-param>
              <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
              <param-value>server</param-value>
         </context-param>
         <context-param>
              <param-name>javax.faces.PARTIAL_STATE_SAVING_METHOD</param-name>
              <param-value>off</param-value>
         </context-param>
         <!-- context-params mafaces -->
         <context-param>
              <param-name>org.apache.myfaces.READONLY_AS_DISABLED_FOR_SELECTS</param-name>
              <param-value>true</param-value>
         </context-param>
         <context-param>
              <param-name>org.apache.myfaces.RENDER_VIEWSTATE_ID</param-name>
              <param-value>true</param-value>
         </context-param>
         <context-param>
              <param-name>org.apache.myfaces.STRICT_XHTML_LINKS</param-name>
              <param-value>true</param-value>
         </context-param>
         <context-param>
              <param-name>org.apache.myfaces.CONFIG_REFRESH_PERIOD</param-name>
              <param-value>this is a bug in myfaces</param-value>
         </context-param>
         <context-param>
              <param-name>org.apache.myfaces.ADD_RESOURCE_CLASS</param-name>
              <param-value>org.apache.myfaces.renderkit.html.util.DefaultAddResource</param-value>
         </context-param>
         <context-param>
              <param-name>org.apache.myfaces.RESOURCE_VIRTUAL_PATH</param-name>
              <param-value>/faces/myFacesExtensionResource</param-value>
         </context-param>
         <context-param>
              <param-name>org.apache.myfaces.CHECK_EXTENSIONS_FILTER</param-name>
              <param-value>true</param-value>
         </context-param>
         <context-param>
              <param-name>org.apache.myfaces.ALLOW_JAVASCRIPT</param-name>
              <param-value>true</param-value>
         </context-param>
         <context-param>
              <param-name>org.apache.myfaces.PRETTY_HTML</param-name>
              <param-value>true</param-value>
         </context-param>
         <context-param>
              <param-name>org.apache.myfaces.AUTO_SCROLL</param-name>
              <param-value>true</param-value>
         </context-param>
         <context-param>
              <param-name>org.apache.myfaces.DETECT_JAVASCRIPT</param-name>
              <param-value>false</param-value>
         </context-param>
         <!-- StartupServletContextListener -->
         <listener>
              <listener-class>
                   org.apache.myfaces.webapp.StartupServletContextListener
              </listener-class>
         </listener>
         <!-- Faces MyFacesExtensionsFilter -->
         <filter>
              <filter-name>MyFacesExtensionsFilter</filter-name>
              <filter-class>
                   org.apache.myfaces.webapp.filter.ExtensionsFilter
              </filter-class>
              <init-param>
                   <param-name>uploadMaxFileSize</param-name>
                   <param-value>1m</param-value>
              </init-param>
         </filter>
         <filter-mapping>
              <filter-name>MyFacesExtensionsFilter</filter-name>
              <url-pattern>/faces/*</url-pattern>
         </filter-mapping>
         <filter-mapping>
              <filter-name>MyFacesExtensionsFilter</filter-name>
              <url-pattern>*.jsf</url-pattern>
         </filter-mapping>
         <!-- Faces Servlet -->
         <servlet>
              <servlet-name>Faces Servlet</servlet-name>
              <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
              <load-on-startup>1</load-on-startup>
         </servlet>
         <!-- Faces Servlet Mapping -->
         <servlet-mapping>
              <servlet-name>Faces Servlet</servlet-name>
              <url-pattern>*.jsf</url-pattern>
         </servlet-mapping>
         <welcome-file-list>
              <welcome-file>index.jsp</welcome-file>
         </welcome-file-list>
         <servlet>
              <servlet-name>imageServlet</servlet-name>
              <servlet-class>my.com.xplorer.gui.v.ImageServlet</servlet-class>
         </servlet>
         <servlet-mapping>
              <servlet-name>imageServlet</servlet-name>
              <url-pattern>/image/*</url-pattern>
         </servlet-mapping>
    </web-app>So I lost the faces context using the jscookmenu, I believe.
    My webapp uses tiles, and there is 2 navigation possibilities: tomahawaks jscookmenu and tomahawaks commandNavigation.
    Latter one runs ok, I do use
    <t:panelNavigation id="nav" styleClass="navigation"
         itemClass="navitem" separatorClass="navseparator" 
         activeItemClass="navitem_active" openItemClass="navitem_open">
         <t:commandNavigation action="#{newsHandler.userRequest}" value="#{newsHandler.rss_source_name[0]}">
              <f:param name="navigator"  value="/jsf/news.jsp" />
         </t:commandNavigation>
    </t:panelNavigation>for this kind of navigation I do not use any navigation rules in faces config. To dynamically include the desired faces page I do that:
    <%
         String s = (String)request.getParameter("navigator");
         if (s == null || s.length() == 0 ) {
              s =  "/jsf/explorer.jsp";
    %>
    <jsp:include page="<%=s %>" />That does work.
    Now like I said I did enhance the app by adding tomahawks jscookmenu.
    Therefore I use the following in another tile:
    <t:jscookMenu layout="hbr" theme="ThemeOffice" styleLocation="resources/css">
              <%/* Availaible jscookMenu themes: ThemeIE, ThemeMiniBlack, ThemeOffice, ThemePanel
                 Availaible jscookMenu layout: hbr, hbl, hur, hul, vbr, vbl, vur, vul
                 respect to Heng Yuan http://www.cs.ucla.edu/~heng/JSCookMenu
            */%>
      <t:navigationMenuItem id="nav_0" itemLabel="#{localz.Xplorer}" action="Xplorer" />
    </t:jscookMenu>For this kind of navigation I tried to use navigation rules and the following show the config:
         <navigation-rule>
           <from-view-id>/jsf/*</from-view-id>
            <navigation-case>
                <from-outcome>Xplorer</from-outcome>
                <to-view-id>/jsf/tileMain.jsp?navigator=/jsf/explorer.jsp</to-view-id>
            </navigation-case>
            <navigation-case>
                <from-outcome>Tabs</from-outcome>
                <to-view-id>/jsf/tileMain.jsp?navigator=/jsf/tab.jsp</to-view-id>
            </navigation-case>
         </navigation-rule>That works for the first click. The desired page is shown. The nect click anywhere in the app then show the mentioned error.
    Using tiles I use this view-handler
    <view-handler>org.apache.myfaces.tomahawk.application.jsp.JspTilesViewHandlerImpl</view-handler>One question is: can I use another view-handler on top of the above one? So I could extend com.sun.facelets.FaceletViewHandler and try my luck with this? Or is the solution pointed out just a millisecond from being ok, I just don�t see it?
    Maybe you need to know a bit more on how I use tiles:
    That is the page I start with. It inserts the tile shown underneath.
    <f:view locale="#{userLocale}">
         <f:loadBundle var="localz" basename="my.com.xplorer.gui.v.Lokalization" />
         <f:loadBundle var="bundle" basename="my.com.xplorer.gui.v.messages" />
         <f:subview id="tileMain">
              <h:form id="myJsfForm" styleClass="standard">
                        <tiles:insert definition="template" flush="false" />
              </h:form>
         </f:subview>
         <h:messages />
    </f:view>
    </html>The foolowing is the tile structure.
    The bodi tile is the dynamic part. Above you see that I dynamically load the pages into it.
    <t:htmlTag value="div" styleClass="pageLayout">
         <h:panelGrid columns="2" align="center" styleClass="pageContent">
              <f:facet name="header">
                   <f:subview id="header">
                        <tiles:insert attribute="header" flush="false" />
                   </f:subview>
              </f:facet>
              <t:htmlTag value="div" styleClass="pageMenu">
                   <f:subview id="menu">
                        <tiles:insert attribute="menu" flush="false" />
                   </f:subview>
              </t:htmlTag>
              <t:htmlTag value="div" styleClass="pageContentWoMenu">
                   <f:subview id="bodi">
                        <tiles:insert attribute="bodi" flush="false" />
                   </f:subview>
              </t:htmlTag>
              <f:facet name="footer">
                   <f:subview id="footer">
                        <tiles:insert attribute="footer" flush="false" />
                   </f:subview>
              </f:facet>
         </h:panelGrid>
    </t:htmlTag>Maybe you also need to know the tiles config?
    <tiles-definitions>
       <definition name="template" path="/jsf/tileTemplate.jsp">
              <put name="header"  value="/jsf/header.jsp"/>
          <put name="menu"    value="/jsf/menu.jsp"/>
          <put name="bodi"    value="/jsf/bodi.jsp"/>
          <put name="footer"    value="/jsf/footer.jsp"/>
       </definition>
       <definition name="/jsf/news.tiles" extends="template">
              <put name="bodi"  value="/jsf/news.jsp"/>
       </definition>
       <definition name="/jsf/explorer.tiles" extends="template">
              <put name="bodi"  value="/jsf/explorer.jsp"/>
       </definition>
       <definition name="/jsf/tab.tiles" extends="template">
              <put name="bodi"  value="/jsf/tab.jsp"/>
       </definition>If you have read until here: thanks very much.
    There seems to be a sort of gap regarding jsf navigation documentation.
    I mean the ordinary way is covered everywhere (the book I have covers that too), but jscookmenu seems not to fit in too good. I also tried it with an actionslistener in the jscookmenu but that failed, too. So a link to documents telling the truth on jsf navigation I would appreciate very much.
    Kind regards
    Belle Ile En Mer

    This is the error i am getting into now..
    exception
    org.apache.jasper.JasperException: An exception occurred processing JSP page /welcomeJSF.jsp at line 19
    16: This file is an entry point for JavaServer Faces application.
    17: --%>
    18: <body>
    19: <f:view>
    20: <h3><h:outputText value="CHOULTRY'S IN BANGALORE" /></h3>
    21: <h:form>
    22: <table border="0">
    Stacktrace:
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:505)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:416)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    root cause
    java.lang.RuntimeException: Cannot find FacesContext
         javax.faces.webapp.UIComponentClassicTagBase.getFacesContext(UIComponentClassicTagBase.java:1811)
         javax.faces.webapp.UIComponentClassicTagBase.setJspId(UIComponentClassicTagBase.java:1628)
         org.apache.jsp.welcomeJSF_jsp._jspx_meth_f_005fview_005f0(welcomeJSF_jsp.java:112)
         org.apache.jsp.welcomeJSF_jsp._jspService(welcomeJSF_jsp.java:86)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:717)

  • I own Lightroom 4 and have updated the software however, I am unable to import images taken on the Sony A6000. I have also updated the raw converter and am still having this issue.

    I own Lightroom 4 and have updated the software however, I am unable to import images taken on the Sony A6000. I have also updated the raw converter and am still having this issue.

    You can either upgrade to Lightroom 5.4 or later, or use the free Adobe DNG Converter version 8.6 to convert your RAW photos to DNG, which then will import into Lightroom 4.

  • Z10 Product Improvement Ideas: Peak, Flow and Navigation

    Note sure what the best way to get some ideas across to Blackberry but since I've been using my Z10, there are a few ways that I think that navigation and application access can be improved. Sometimes I feel that you need to perform one too many swipes to get to something, often used features are hidden, navigation techniques are inconsistent (i.e. Accessing the hub, calendar and phone) or you have to make one more button press than necessary.
    I've been a BB fan for years and have had many models. Want to see Blackberry succeed. Own stock. Got the Z10 first day. Got 4 coworkers to get the Z10. Big promoter.
    Here are my suggestions and maybe with enough support, we can get a few adjustments made that improve the overall user experience and make us way more efficient. I also think that Blackberry can retain its innovation in peek and flow while still giving us alternative access that we are used across different devices such as our Ipads, playbooks, Desktops, etc. A couple items will be repeated depending on the suggestion type.  
    1. Calendar needs to be a core feature and should always be open and accessible instantly at a click or a swipe. Access to the calendar is not easy as I think it should be. Four ways that Calendar could be more accessible:
    a) Have a calendar button next to phone, search and camera buttons
    b) Support a swipe action of some sort (perhaps upwards and to the left (opposite of the hub))
    c) Add calendar button to the mini-swipe/scroller menu that is available in the active apps or application screen
    d) It should be clickable and launchable on the hub either on the bottom menu or as a hub filter item. Having upcoming events appear by scrolling to the top of my hub items is convenient but not what I am talking about.
    e) Directly from the lock screen. I should be able to click and hold on the calendar event to launch my calendar.
    2. Phone calling is a core feature and needs to be launchable from the hub, the mini-swipe/scroller bar, the applications pages (as an icon) and also from the lock screen similar to the calendar (ie hold the button down). In the hub you can filter on missed/all calls but it only acts to give you a call log and not any other phone feature. Launching through the hub should provide full features.
    3. Phone and Hub should both be accessible from the applications pages as an application icon. This allows me to access hub and phone in a similar manner to my other applications and also reduces the learning curve for those used to the iphone (easier adoption). I can create logical visual organization of my applications and I can essentially put the calendar, phone and hub next to each other. I really like consistent access and behaviour and this would help.
    4.  Hub should be available in the active applications like everything else is. It is the only feature that isn't.
    5. I dislike the fact that the Hub filter opens and closes after I make a selection. I would like to be able to click on the BBM icon and see my BBM messages, then quickly click on my Texts, then my mails. I think the filters should always stay open in the mini mode unless I shrink it. i.e. Click to open filter mode with icons only, drag again to stretch and see the icons with names (I think most of us know what the icons represent anyway) and click or swipe to close the filters menu. With the menu always open, I can view all content types by themselves very quickly.
    6. Hiding the delete button  in the extended menu is not efficient. If I'm looking at a photo, reading and email, reading a text just let me delete immediately. It is an action that I do enough that it should be as available as the back, forward, reply to all buttons. Save me the additional clicks.
    7. When I launch the phone, I want the number keypad open. I don't want to launch the phone and then have to click again to get to the phone pad. The speed dial screen should not be shared with the missed calls. There should be a new screen with a dedicated button.
    8. I've found that once you set up your speed dial or world clocks, you can't edit the order. This means you are stuck with the order that you added the items and have to start from scratch if you want to re-order. This is frustrating. I don't have the ability to think about order that early. Anyone notice that when you add a phone number to speed dial, it might use a different contact than you selected if that other contact has the same number?
    8. We should be able to shortcut phone numbers to the application pages the same way we can shortcut web pages. This gives me the ability to create folders, organize phone numbers and make calls quickly. Again, learning curve for iphone converts and consistency.  
    9. Alarm needs to be accessible easier. It can be an application icon accessible in the applications menu. Clicking on the alarm clock icon on the top should open the alarm clock, similarly, clicking on the wifi should open wifi menu, battery should give me percentage, and maybe a quick Bluetooth on and off. Potentially support a notifications quick menu too.
    10. We should be able to put the phone to sleep with a long swipe from the top. I don't get why you need to get to sleep mode by first locking with the top button, getting to the lock mode and then swiping down the curtain. Is there a way to do this that I'm missing?
    11. When searching in the hub, I have to clear the search to get back to an unfiltered view. Why not a quick swipe to the right? Why when I'm searching in the hub does the bottom menu disappear? I should be able to interact with those items the same way without opening the items.
    12. On the lock screen, I want quicker access to different things through three swipe actions. A swipe up opens my applications page, a swipe left opens the hub, a swipe right opens my applications page. I need to be able to open the calendar from the lock page (long press on the calendar event) and I need to be able to launch the phone (add an icon for the phone (like the camera)). Long press of the voicemail, notifications, emails, bbm or texts opens those screens.
    13. Why iis there no email or missed calls preview from the lock screen like the good old days of the torch. I want to know if I should even need to unlock the phone for the new events (is this a security issue?).
    14. The mini-swipe/scroller bar should appear in the hub, active applications and application pages (currently it is only on the latter two). It is a cool features. As per above, it should include calendar and phone.
    15. Active applications should allow pinning and re-ordering. i.e. I lock an open application in place and then I can re-order through drag and drop. Pinning isn't my idea but I like it a lot.
    16. Cool idea. If we allow users to save the layout of an active applications page, they can essentially launch 8 applications in one go in the future. i.e. You save a layout with a name and then you close the entire layout and reactivate it when you want through a list. Very powerful.
    That's it for now. Would be super happy to see these adopted and interested in seeing who else has ideas, likes these ideas and hopefully with enough support maybe BB will look at these seriously. Hope they look at them.

    Hi Meredith,
    Thought we had everything solved, however the failure to merge to HDR is solved. But the fix causes many problems. Now you can get to the final HDR picture however making small modifications will slow the computer to a crawl. The hourglass blinked for 5 minutes just to make a small highlight change.
    What were the preferences restored by deleting the preference file and having Photoshop reload the defaults. These are the ones I am sure about.
    my settings                           default
    memory usage was 80-85%   now 49%  (834 -838 mb)
    animated zoom was off            now on
    save in background off             now on
    graphic processor on basic      now off
    cursors others precise            now standard
    transparency grid size small    now medium
    By turning up memory to 50% or higher increase (1% or more) the merge to HDR screen opens as a black picture. Progress bar disappears and reappears as loading but Merge to HDR finishes with exception of black picture to start with. Click on 32 bit and.the picture appears. Local Adaption doesn't work !
    Turned ON graphics card on NORMAL ,..memory back to 49% .  Merge to HDR works and local adaption works. Appears not to be slow (graphics card helping now) Process bar turns on and off during Merging to HDR
    Resetting all my preferences except memory (at 49%  838 MB) Merge to HDR works with the exception of a progress bar that disappears and reappears.
    In conclusion with Windows XP 32bit and 4g installed (windows seeing 3g):
    Memory over 49%+ GPU on =fail and progress bars turns on and off
    Memory 49% + GPU off= black window and Local Adaption fails
    Memory 49% + GPU on = Everything works but process bar turns on and off
    GPU On= process bar failure
    GPU off= process bar works but slow
    Memory over 49%=Merge to HDR failure
    Interesting note is that at a 40% memory setting Merge to HDR failed too
    Thanks,
    Meredith

  • Conditional rendering of JSF page depending on Navigation case

    Hi
    Can we conditionally render the JSF page depending the navigation case, which brought us in that page..
    Lets say that a page A does both Edit and create operations , we have two navigation cases "edit" and "create" directing to this page from main page. can we modify the components in the page depending on the navigation case.
    Thanks in advance
    Pradeep

    Hi Grant,
    your reply was helpful. i got into another scenario :-) where i need to know the navigation case which brought us into the page.
    I have a page flow in adf which can be called by client applications both as a popup or a regular window. the ADF's dialog framework more or less solves my requirement. But to return values from dialog, i have to use "returnFromDialog" method on click of button in the popup window. as i am reusing the page i would write a conditional statement to show diff behaviour when launched as a popup.
    my problem is that i do not want client application to set any parameter in the managed bean (this would get client apps into the implementation issues, causing unnecessary complexity). This again brings me back to the same question ability to KNOW (get handle of) the "navigation case".
    Pradeep

  • (JSF) newbie null reference exception

    error:
    javax.faces.FacesException: #{Login.ValidateLogin}: java.lang.NullPointerException
    I am a Java web development scrub / newbie. I am assuming this is because i did not have an instance of the Login class. However, tutorials that i have seen have done similar tasks without creating an instance (and they are not static classes) so i am confused. Please help me understand why i am getting this error and how to make this simple web application work. Thanks in advance.
    faces configuration:
    <faces-config>
    <managed-bean>
    <managed-bean-name>Login</managed-bean-name>
    <managed-bean-class>Security.Login</managed-bean-class>
    <managed-bean-scope>request</managed-bean-scope>
    </managed-bean>
    <navigation-rule>
    <from-view-id>/Login.jsf</from-view-id>
    <navigation-case>
    <from-action>#{Login.ValidateLogin}</from-action>
    <from-outcome>success</from-outcome>
    <to-view-id>LoginValid.jsf</to-view-id>
    </navigation-case>
    <navigation-case>
    <from-action>#{Login.ValidateLogin}</from-action>
    <from-outcome>fail</from-outcome>
    <to-view-id>LoginInvalid.jsf</to-view-id>
    </navigation-case>
    </navigation-rule>
    </faces-config>
    web.xml file:
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>server</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>*.jsf</url-pattern>
    </servlet-mapping>
    Login.jsp/jsf whatever:
    <f:view>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <title>JSP Page</title>
    </head>
    <body>
    <h:form>
    <table>
    <tr>
    <td><h:outputText value="Username: "/></td>
    <td><h:inputText id="username" value="#{Login.username}" /></td>
    </tr>
    <tr>
    <td><h:outputText value="Password: "/></td>
    <td><h:inputSecret id="password" value="#{Login.password}" /></td>
    </tr>
    <tr>
    <td> </td>
    <td><h:commandButton value="login" action="#{Login.ValidateLogin}" /></td>
    </tr>
    </table>
    </h:form>
    </body>
    </html>
    </f:view>
    Login class definition:
    package Security;
    public class Login {
    private String username;
    private String password;
    public Login() {} // Inline Constructor for Login class
    public String getUsername() { return username; }
    public String getPassword() { return password; }
    public void setUsername(String username) { this.username = username; }
    public void setPassword(String password) { this.password = password; }
    public String ValidateLogin() {
    if(username.equals("ianmcdavid") && password.equals("cole")) {
    return "success";
    else {
    return "fail";
    }

    you are apparently also a Java "newbie", otherwise you would have posted/searched for your best friend in the world: the exception stacktrace. I hope you realize that learning Java web development is a frustrating and confusing thing to do if you don't know proper core Java.
    Lets use some good old fashioned reasoning. See this code:
    if(username.equals("ianmcdavid") && password.equals("cole")) {
    return "success";
    }When the class is created, username and password will be null. Might that perhaps be the cause of the NullPointerException?
    Try this in stead:
    if("ianmcdavid".equals(username) && "cole".equals(password)) {
    return "success";
    }That won't ever cause an NPE while still providing the same functionality.

  • Dynamic List and Security Issue

    Hi
    I have a Dynamic List Wizard for orders, which the user can click on edit to edit or modify the order and if the user choose "Yes" to submit ( the order form has a submit filed which has Yes / No Values)then the EDIT button disappear and the user has no more control on the record(using show if conditional Region server behavior).
    - Now i noticed that when i click on the edit the address bar includes the (www.mysite.com/form.php?order_id=1) now say the order Number 2 is already submitted (still on the list but no Edit button for it) if i write 3 or 4 or any other number instead of 1 at the address bar (www.mysite.com/form.php?order_id=3) the record which has the order number 3 displays on the screen and then you can edit it and when click update the Edit Button becomes Active which destroy the whole concept.
    so, how to fix that?

    Hi Lorie,
    Taking it a step further
    interesting that you´re mentioning this -- because I was just in the middle of finding a workaround for the very same issue ;-)
    I actually did find a pretty easy solution, which basically goes like this:
    1) wrap the whole table *plus* any possibly added hidden fields located below this table in a "Show IF conditional region" behaviour -- but make sure to *not* include the buttons within the "KT_bottombuttons" div in here.
    2) as I assume that your "supplier_name" column holds a numeric value which equals the user´s "kt_login_id" Session Variable (which it should !), define the following conditions for the "Show IF conditional region" behaviour:
    Expression 1: choose "supplier_name" from the tNG recordset
    Condition: ==
    Expression 2: choose Session -> kt_login_id
    3) tick the Has ELSE option
    4) confirm with OK
    5) replace the default "has Else" message with something meaningful like "you can´t edit this record !"
    Switching to Code view and navigating to the very start of your "Show IF conditional region" should display something like this:
    if (@$row_rsqueryname['supplier_name'] == @$_SESSION['kt_login_id']) {
    When viewing the modified Dynamic Form in a browser, you´ll note that this solution will indeed display the form instances for all "authorized" records, whereas those form instances which don´t match the required credentials will be replaced with that "has else" message.
    BUT !! This solution has one major drawback which I haven´t been able to resolve yet :: when the Dynamic Form goes into Insert Record mode
    (means when you click the "add new" link in the Dynamic List), all inner form instances will display that "has else" message.
    The only workaround I currently can come up with is to have the List´s "add new" link point to a separate "add_new.php" page that´s going to insert a single record.
    Cheers,
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • CommandLink and navigation

    Hi, I built a dataTable and put two columns each one with one commandLink with action param. The action methods were not the same and each returned a string. The navigation simply did not executed what I was hoping sometimes openning the first, or the second page configured in the faces-config.
    I changed to commandButton and everything worked fine as expected.

    Hi,
    Here we go.
    The jsf page had
    <h:dataTable width="650" border="0" cellpadding="0" cellspacing="2"
    rowClasses="list-row-odd,list-row-even"
    id="table"
    value="#{sapFormBean.listAP}"
    var="sap">
    <h:column>
    <f:facet name="header">
    <h:outputText value=""/>
    </f:facet>
    <h:commandLink id="imprimeAP"
    action="#{sapFormBean.submitImprimeAPAction}"
    alt="Imprime esta AP">
    <h:graphicImage id="copy" url="bullets/print.gif"/>
    </h:commandLink>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText value=""/>
    </f:facet>
    <h:commandLink id="copiaAP"
    action="#{sapFormBean.submitCopiaAPAction}"
    alt="Gera nova AP a partir desta" >
    <h:graphicImage id="copy" url="bullets/copy.gif"/>
    </h:commandLink>
    </h:column>
    <h:column>
    <f:facet name="header">
    <h:outputText styleClass="celTitulo" value="C�DIGO"/>
    </f:facet>
    <h:outputText id="codigo" value="#{sap.sap_codigo}"/>
    </h:column>
    </h:dataTable>
    I configured the actions to return the strings "imprimir" and "copiar". In the faces-config I put
    <navigation-rule>
         <from-view-id>/lista_default.jsp</from-view-id>
         <navigation-case>
              <from-outcome>imprimir</from-outcome>
              <to-view-id>/imprimir.jsf</to-view-id>
         </navigation-case>
         <navigation-case>
              <from-outcome>copiar</from-outcome>
              <to-view-id>/formulario.jsf</to-view-id>
         </navigation-case>
    </navigation-rule>
    I changed then the commandLink to
    <h:commandButton id="imprimeAP"
    action="#{sapFormBean.submitImprimeAPAction}"
    image="bullets/imprimir.gif"
    alt="Imprime esta AP"/>
    <h:commandButton id="copiaAP"
    action="#{sapFormBean.submitCopiaAPAction}"
    image="bullets/copiar.gif"
    alt="Gera nova AP a partir desta" />
    Thanks...

  • JSF, tiles, xml and xsl

    Good days people, I am employed at an app that wants to integrate JSF, tiles, xml and xsl.
    Basically the app receives information of the user's interfaz, builds an url with the above mentioned information and invokes to a service web that a xml returns with the information. The idea is to generate the exit in format html or wml with an insole(staff) xsl and to send the result in this format to every jsp that is going to form a part of the page that it will generate tiles. at first I understand that it is feasible, i�d like to know if someone already has done it and since it has done it.
    Just now what I have is a managed bean that receives the parameters of the altar frontal and invokes a method of a service, like this:
    public String encuentra(){
    //deja los atributos privados rellenos.
    String mensaje ;
    crearYRellenarBusquedaVO();
    try {
    setResultado(this.getServicio().obtenerResultadosWML(this.getBusquedaVO()));
    mensaje="succesNoJS";
    }catch(java.lang.IllegalArgumentException e){
    mensaje="error";
    }catch(es.yell.frontlite.exceptions.SrvBusquedaNoxtrumServiceException e1){
    mensaje="error";
    }catch(Exception e2){
    mensaje="error";
    return mensaje;
    public String obtenerResultadosWML(es.yell.frontlite.service.impl.BusquedaVO busquedaVO){
    if (busquedaVO == null){
    throw new IllegalArgumentException(
    "obtenerResultadosJSdesactivado(es.yell.frontlite.service.impl.BusquedaVO busquedaVO) - 'busquedaVO' no puede ser nulo.");
    try{
    return this.manejarObtenerResultadosWML(busquedaVO);
    }catch(es.yell.frontlite.exceptions.SrvBusquedaNoxtrumServiceException e1){
    throw new es.yell.frontlite.exceptions.SrvBusquedaNoxtrumServiceException(
    "Error ejecutando el servicio String obtenerResultadosJSdesactivado(es.yell.frontlite.service.impl.BusquedaVO busquedaVO). " + e1.getCause(),e1);
    }catch(Exception e){
    throw new es.yell.frontlite.exceptions.SrvBusquedaNoxtrumServiceException(
    "Error ejecutando el servicio String obtenerResultadosJSdesactivado(es.yell.frontlite.service.impl.BusquedaVO busquedaVO). " + e.getCause(),e);
    //it returns html code!
    protected String manejarObtenerResultadosWML(es.yell.frontlite.service.impl.BusquedaVO busquedaVO)
    throws java.lang.Exception{
    try{
    // xmlOrigen has full xml response from server
    String xmlOrigen = manejarObtenerResultadosJSActivado(busquedaVO);
    Source xmlSource = new StreamSource(new StringBufferInputStream(xmlOrigen));
    Source xsltSource = new StreamSource(SrvBusquedaNoxtrumServiceImpl.class.getResourceAsStream(Constantes.XSL_FILE));
    StringWriter cadenaSalida = new StringWriter();
    Result bufferResultado = new StreamResult(cadenaSalida);
    TransformerFactory factoriaTrans = TransformerFactory.newInstance();
    Transformer transformador = factoriaTrans.newTransformer(xsltSource);
    transformador.transform(xmlSource, bufferResultado);
    System.out.println(cadenaSalida.toString());
    return cadenaSalida.toString();
    }catch(Exception e2){
    throw new es.yell.frontlite.exceptions.SrvBusquedaNoxtrumServiceException (e2.getMessage());
    With this exit in html, since(as,like) how could i forward it towards a jsp especially?
    faces-config.xml
    <navigation-rule>
    <from-view-id>/index.jsp</from-view-id>
    <navigation-case>
    <from-outcome>succesNoJS</from-outcome>
    <to-view-id>/jsDesactivado.jsp</to-view-id>
    </navigation-case>
    <navigation-case>
    <from-outcome>error</from-outcome>
    <to-view-id>/error.jsp</to-view-id>
    </navigation-case>
    </navigation-rule>
    index.jsp
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <f:view>
    <f:loadBundle basename="MessageResources" var="msg"/>
    <head>
    <title>
    ${msg.titulo}
    </title>
    </head>
    <body>
    <h:form id="formulario">
    Que:
    <h:inputText id="campoQue" value="#{yellProxy.campoQue}" />
    Donde
    <h:inputText id="campoDonde" value="#{ yellProxy.campoDonde}" />
    <h:commandButton id="boton" value="Encuentra" action="#{yellProxy.encuentra}"/>
    </h:form>
    </f:view>
    </body>
    </html>
    jsDesactivado.jsp
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%--
    The taglib directive below imports the JSTL library. If you uncomment it,
    you must also add the JSTL library to the project. The Add Library... action
    on Libraries node in Projects view can be used to add the JSTL 1.1 library.
    --%>
    <%--
    <%@taglib uri=" http://java.sun.com/jsp/jstl/core" prefix="c"%>
    --%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    " http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSP Page</title>
    </head>
    <body>
    <h1>JSP Page</h1>
    jsDesactivado!!
    <%--
    This example uses JSTL, uncomment the taglib directive above.
    To test, display the page like this: index.jsp?sayHello=true&name=Murphy
    --%>
    <%--
    <c:if test="${param.sayHello}">
    <!-- Let's welcome the user ${param.name} -->
    Hello ${param.name}!
    </c:if>
    --%>
    <jsp:getProperty name="yellProxy" property="resultado"/>
    </body>
    </html>
    If you could pass me a simple example of use of an app that uses JSF, tiles, xml and xsl, i�be grateful
    regards a lot!

    We too (at Viking Freight) would also be very interested to see if anybody
    has produced such a useful series of classes...
    Frank Lees, Developer
    -----Original Message-----
    From: Amin, Kamran [mailto:kamran.aminframeworkinc.com]
    Sent: Wednesday, January 19, 2000 12:11 PM
    To: 'Forte User'
    Subject: (forte-users) XML and XSL in Forte
    Has anybody integrated an XSL parser with Forte. I know Forte provides us
    with an XML parser but that does not help with parsing XSL. There a lot of
    parsers written in JAVA but that will not integrate well with Forte. We
    need something that will be easy to integrate with Forte. This parser will
    take our XML and XSL to give us a result set. If anybody can comment on the
    subject or share some information I would appreciate it.
    thanks in advance.
    ka
    For the archives, go to: http://lists.sageit.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: forte-users-requestlists.sageit.com

  • Apache and Jserv issues - AppsLogin and AppsLocalLogin not working

    Hi,
    I am trying to understand the Apache and Jserv issues
    Home page - http://11i-tst-02.cisco.com:38901 - working fine
    This confirms that Apache core module is working fine. Does this confirm about the pls module also ?
    Apps local login - http://11i-tst-02.cisco.com:38901/OA_HTML/AppsLocalLogin.jsp - throwing Java Exception
    Request URI:/OA_HTML/AppsLocalLogin.jsp
    Exception:
    java.lang.NoClassDefFoundError
    at oracle.apps.fnd.sso.SSOManager.getAppsServletAgent(SSOManager.java:1727)
    at oracle.apps.fnd.sso.SSOManager.getLoginUrl(SSOManager.java:316)
    at oa_html._AppsLocalLogin._jspService(_AppsLocalLogin.java:410)
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:385)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:259)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:178)
    at oracle.jsp.JspServlet.service(JspServlet.java:148)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
    at org.apache.jserv.JServConnection.run(JServConnection.java:294)
    at java.lang.Thread.run(Thread.java:479)
    Is it related to SSO ? Because error mentions about SSOManager
    But why does AppsLocalLogin need to go thru SSO ?
    Doesn it mean Jserv issues ? I am able to see same message logged in jvm logs ?
    Restarting Apache doesnt help
    Servlet login - http://11i-tst-02.cisco.com:38901/oa_servlets/AppsLogin - throws Internal Server Erorr
    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    Apache log doesnt show any error
    Servlet test works - http://11i-tst-02.cisco.com:38901/servlets/Hello
    Example Apache JServ Servlet
    Congratulations, ApacheJServ 1.1 is working!
    OAM works - http://11i-tst-02.cisco.com:38901/servlets/weboam/oam/oamLogin - Navigating to SSO page for authentication
    AOL test works - http://11i-tst-02.cisco.com:38901/OA_HTML/jsp/fnd/aoljtest.jsp
    FND_WEB.PING works - http://11i-tst-02.cisco.com:38901/pls/QTCSTG/FND_WEB.PING
    Connection test works - http://11i-tst-02.cisco.com:38901/servlets/oracle.apps.icx.common.ConnectionTest
    So, my question is why AppsLogin and AppsLocalLogin are not working - if servlets / AOL / FND / OAM links are working
    Is there issue with Jserv ?
    Can someone please explain the significance of the above tests
    And which tests need to pass for AppsLogin and AppsLocalLogin to work
    Thanks

    Since all the tests work fine as you stated above, I suggest you do the following:
    - Rerun Autoconfig on all tiers
    - rm -rf $OA_HTML/_pages
    - Bounce Apache

  • What sequence setting would you use to edit 1280 x1080 DVCProHD (P2) and 1920 x 1080 AVCHD (Sony) in FCP. Experiencing Quality and rendering issues.

    What sequence setting would you use to edit both 1280 x1080 DVCProHD (P2) and 1920 x 1080 AVCHD (Sony) in a single timeline in FCP. I'm experiencing quality and rendering issues.  I've tried numerous settings but can't seem to figure this one out.  Thanks for your assistance.

    Although you can combine the avchd 1920x1080 material with prores 1920x1080 in the same timeline, you might land up saving time just converting everything to 1920x1080 prores 422.   You'd probably reduce the amount of rendering while you're working and exporting when you're done by a great deal.  This workflow will require much more drive space.

Maybe you are looking for

  • Hard Disk failure (3F0) in HP pavilion P017TU

    Hi, My laptop - HP 15 Pavillion p017tu,is showing some error like this :  Boot Device Not Found Please Install an operating system on your hard disk. Hard Disk (3F0) <Ignore those dashes, just I used to highlight the message> Also, some crackling noi

  • Fields on single-row Form based on Query

    We are implementing a front-end for Oracle Reports using HTMLDB. We have all of our reports and their parameters set up in tables, along with the specification for where to obtain the values to display for the parameters. The tables also specify the

  • Can I break up a video project into smaller projects using prel 10?

    I've created a large video project in prel 10 ( the 0s is win7). I want to break it up into smaller new video projects so I don't lose all my existing assembly and editing work. Can I do this and if so how? Thanks

  • High-level design for business process scenario

    Hi all, I have a business process scenario for which CRM and ECC has to be used. The scenario is like this: There are 2 subsidiaries of a company - A and B, which are into trading of materials. Between A and customer there is sales agreement. Between

  • Itunes / ipad memory / storage issue

    Dear All, Having a major problem with my ipad. I used the camera kit to download some pictures from my camera onto the ipad. (approx 9GB of pictures). Tonight I decided to change my TV shows and movies and noticed this 9gb chunk of photographs. So wh