Building the site structure for a dynamic website with JSF

Hi,
I am still a JSF-beginner.
I try to build a fully-functional base-demo-application with a fix and a dynamic part.
Fix part for menu, dynamic part for site-content.
At the moment, the JSF-hyperlinks of the main menu work, but any JSF-parts in the included documents of the dynamic part are not shown. I guess, this is dued to inclusion of subviews, but I cannot find any similar examples in the web to come one step further.
Here my complete demo:
faces-config.xml:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.0//EN"
"http://java.sun.com/dtd/web-facesconfig_1_0.dtd">
<faces-config xmlns="http://java.sun.com/JSF/Configuration">
<navigation-rule>
<from-view-id>*</from-view-id>
<navigation-case>
<from-outcome>site1</from-outcome>
<to-view-id>/site1.jsp</to-view-id>
<redirect>
</redirect>
</navigation-case>
</navigation-rule>
<navigation-rule>
<from-view-id>*</from-view-id>
<navigation-case>
<from-outcome>site2</from-outcome>
<to-view-id>/site2.jsp</to-view-id>
<redirect>
</redirect>
</navigation-case>
</navigation-rule>
</faces-config>
web.xml:
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4" 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">
<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>*.jsf</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
     <welcome-file>
index.jsp
</welcome-file>
</welcome-file-list>
</web-app>
index.jsp:
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<% response.sendRedirect("/jsfportal/site1.jsf"); %>
site1.jsp:
<?xml version="1.0" encoding="UTF-8" ?>
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<% String site = "1"; %>
<%@ include file="base.jsp" %>
dynamic_site1.jsp:
<h1>Welcome to site 1</h1>
Have fun visiting our portal
site2.jsp:
<?xml version="1.0" encoding="UTF-8" ?>
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<% String site = "2"; %>
<%@ include file="base.jsp" %>
dynamic_site2.jsp:
<h1>Welcome to site 2</h2>
Go to site 1: *<!-- And this is the JSF-link that is NOT shown: -->*
<f:view>
<h:form>
<h:panelGrid border="0" columns="0">
<h:commandLink id="p1" action="site1" value="Site 1" />
</h:panelGrid>
</h:form>
</f:view>
base.jsp:
<%@ page language="java" %>
<%@ page import = "java.io.*" %>
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<%
String title = "";
int siteInteger = 0;
String dynamic_site = "";
if ( site != null )
if (
( site.length ( ) > 0 )
( site.length ( ) <= 30 )
if ( isNumeric ( site ) )
siteInteger = Integer.valueOf ( site ).intValue ( );
switch ( siteInteger )
case 2: title = "Site 2";
dynamic_site = "dynamic_site2.jsp";
break;
default:
title = "Site 1";
dynamic_site = "dynamic_site1.jsp"; // Start page
%>
<html xmlns="http://www.w3.org/1999/xhtml"
lang="de" xml:lang="de">
<head>
<title>
<%= title %>
</title>
<meta name="description" content="test site" />
<meta name="keywords" content="test site" />
</head>
<body>
<div width="100%" style="text-align:left">
<table width="970" border="0" cellspacing="0" cellpadding="0" style="background-color:#ffffaa;margin-top:25px;">
*<!-- this is not good style putting CSS directly into HTML but it is a demo now ;) -->*
<colgroup>
<col width="970" />
</colgroup>
<tr>
<td valign="top" align="left" style="padding:25px;">
+<h1>+
JSF portal
+</h1>+
</td>
</tr>
</table>
<table width="970" border="2" cellspacing="0" cellpadding="0" style="background-color:#f5f5f0">
<colgroup>
<col width="270" />
<col width="700" />
</colgroup>
<tr>
<td valign="top" align="left" style="padding:25px; padding-left:40px;padding-bottom:320px;">
<f:view>
<h:form>
<h:panelGrid border="0" columns="0">
<h:commandLink id="p1" action="site1" value="Site 1" />
<h:commandLink id="p2" action="site2" value="Site 2" />
</h:panelGrid>
</h:form>
</f:view>
</td>
<td valign="top" align="justify" class="haupttext" style="padding:24px;">
<p align="justify">
<f:subview id="subview1">
<jsp:include page="<%= dynamic_site %>" flush="true">
<jsp:param name="" value="" />
</jsp:include>
</f:subview>
</p>
</td>
</tr>
</table>
</div>
</body>
</html>
<%!
public boolean isNumeric ( String myInput )
if (myInput == null || myInput.length() < 1)
return false;
int start = 0;
if (myInput.charAt(0) == '-')
start = 1;
for(int i = start; i < myInput.length(); i++)
if (!Character.isDigit(myInput.charAt(i)))
return false;
return true;
%>
Who can name me that code positions responsible for that the JSF link in the dynamic part is not shown?
It is not that it does not work it is not shown. The JSF tree seems to be cut because of wrong use of view and subview etc.
(To put view tags in site1.jsp and site2.jsp does not help.)
(Once having afforded an example it should go... (*Then* with JSTL, external CSS, etc. ;) )
Dynamical site structure with include files is the big problem at the moment.)
bye, Maik

I found your following suggestions for such cases (seems you are the only profound JSF freak in the world...? :-) )
Switch between subviews in one main page
http://balusc.blogspot.com/2007/01/dynamic-jsf-subviews.html
But the main problem for me is that I never find complete examples, but always fragments and it would be important for a beginner to have at least once a complete JSF example over a few subviews, especially here where it is very easy to corrupt the internal tree.
(Some examples use the subview tags in the calling JSP, some in the called e.g.... Does not matter where to put it? Some use verbatim tags for HTML code outside JSF, some don't... and so on)
Can anyone give me an URL for a complete example of a JSF site (with all files as possible, I am not very patient, too, but in this case it makes sense to have it entire ;-) ) with dynamic switches of subviews as preferentially used for bigger portal sites?

Similar Messages

  • Error  while building the default domain for intigrated weblogic server

    Hi,
    An error occurred while building the default domain for integrated weblogic server
    log file contains fallowing details about error
    "C:\Oracle\Middleware\oracle_common\common\bin\wlst.cmd" "C:\Oracle\Middleware\jdeveloper\MyWork\system11.1.1.5.38.61.26\o.j2ee.adrs\CreateDefaultDomain.py"
    Process started
    wlst >
    wlst > CLASSPATH=C:\Oracle\Middleware\patch_wls1035\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\Middleware\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\Middleware\jdk160_24\lib\tools.jar;C:\Oracle\Middleware\wlserver_10.3\server\lib\weblogic_sp.jar;C:\Oracle\Middleware\wlserver_10.3\server\lib\weblogic.jar;C:\Oracle\Middleware\modules\features\weblogic.server.modules_10.3.5.0.jar;C:\Oracle\Middleware\wlserver_10.3\server\lib\webservices.jar;C:\Oracle\Middleware\modules\org.apache.ant_1.7.1/lib/ant-all.jar;C:\Oracle\Middleware\modules\net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar;;C:\Oracle\Middleware\oracle_common/modules/oracle.jrf_11.1.1/jrf-wlstman.jar;C:\Oracle\Middleware\oracle_common\common\wlst\lib\adf-share-mbeans-wlst.jar;C:\Oracle\Middleware\oracle_common\common\wlst\lib\adfscripting.jar;C:\Oracle\Middleware\oracle_common\common\wlst\lib\applcore-diagnostics-wlst.jar;C:\Oracle\Middleware\oracle_common\common\wlst\lib\mdswlst.jar;C:\Oracle\Middleware\oracle_common\common\wlst\resources\auditwlst.jar;C:\Oracle\Middleware\oracle_common\common\wlst\resources\igfwlsthelp.jar;C:\Oracle\Middleware\oracle_common\common\wlst\resources\jps-wlst.jar;C:\Oracle\Middleware\oracle_common\common\wlst\resources\jrf-wlst.jar;C:\Oracle\Middleware\oracle_common\common\wlst\resources\oamap_help.jar;C:\Oracle\Middleware\oracle_common\common\wlst\resources\oamAuthnProvider.jar;C:\Oracle\Middleware\oracle_common\common\wlst\resources\ossoiap.jar;C:\Oracle\Middleware\oracle_common\common\wlst\resources\ossoiap_help.jar;C:\Oracle\Middleware\oracle_common\common\wlst\resources\ovdwlsthelp.jar;C:\Oracle\Middleware\oracle_common\common\wlst\resources\sslconfigwlst.jar;C:\Oracle\Middleware\oracle_common\common\wlst\resources\wsm-wlst.jar
    wlst >
    wlst > PATH=C:\Oracle\Middleware\patch_wls1035\profiles\default\native;C:\Oracle\Middleware\patch_jdev1111\profiles\default\native;C:\Oracle\Middleware\wlserver_10.3\server\native\win\32;C:\Oracle\Middleware\wlserver_10.3\server\bin;C:\Oracle\Middleware\modules\org.apache.ant_1.7.1\bin;C:\Oracle\Middleware\jdk160_24\jre\bin;C:\Oracle\Middleware\jdk160_24\bin;;C:\Oracle\Middleware\wlserver_10.3\server\native\win\32\oci920_8
    wlst >
    wlst > Your environment has been set.
    wlst >
    wlst > CLASSPATH=C:\Oracle\Middleware\patch_wls1035\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\Middleware\patch_jdev1111\profiles\default\sys_manifest_classpath\weblogic_patch.jar;C:\Oracle\Middleware\jdk160_24\lib\tools.jar;C:\Oracle\Middleware\wlserver_10.3\server\lib\weblogic_sp.jar;C:\Oracle\Middleware\wlserver_10.3\server\lib\weblogic.jar;C:\Oracle\Middleware\modules\features\weblogic.server.modules_10.3.5.0.jar;C:\Oracle\Middleware\wlserver_10.3\server\lib\webservices.jar;C:\Oracle\Middleware\modules\org.apache.ant_1.7.1/lib/ant-all.jar;C:\Oracle\Middleware\modules\net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar;;C:\Oracle\Middleware\oracle_common/modules/oracle.jrf_11.1.1/jrf-wlstman.jar;C:\Oracle\Middleware\oracle_common\common\wlst\lib\adf-share-mbeans-wlst.jar;C:\Oracle\Middleware\oracle_common\common\wlst\lib\adfscripting.jar;C:\Oracle\Middleware\oracle_common\common\wlst\lib\applcore-diagnostics-wlst.jar;C:\Oracle\Middleware\oracle_common\common\wlst\lib\mdswlst.jar;C:\Oracle\Middleware\oracle_common\common\wlst\resources\auditwlst.jar;C:\Oracle\Middleware\oracle_common\common\wlst\resources\igfwlsthelp.jar;C:\Oracle\Middleware\oracle_common\common\wlst\resources\jps-wlst.jar;C:\Oracle\Middleware\oracle_common\common\wlst\resources\jrf-wlst.jar;C:\Oracle\Middleware\oracle_common\common\wlst\resources\oamap_help.jar;C:\Oracle\Middleware\oracle_common\common\wlst\resources\oamAuthnProvider.jar;C:\Oracle\Middleware\oracle_common\common\wlst\resources\ossoiap.jar;C:\Oracle\Middleware\oracle_common\common\wlst\resources\ossoiap_help.jar;C:\Oracle\Middleware\oracle_common\common\wlst\resources\ovdwlsthelp.jar;C:\Oracle\Middleware\oracle_common\common\wlst\resources\sslconfigwlst.jar;C:\Oracle\Middleware\oracle_common\common\wlst\resources\wsm-wlst.jar;C:\Oracle\Middleware\utils\config\10.3\config-launch.jar;C:\Oracle\Middleware\wlserver_10.3\common\derby\lib\derbynet.jar;C:\Oracle\Middleware\wlserver_10.3\common\derby\lib\derbyclient.jar;C:\Oracle\Middleware\wlserver_10.3\common\derby\lib\derbytools.jar;;
    wlst >
    wlst > Initializing WebLogic Scripting Tool (WLST) ...
    wlst >
    wlst > Welcome to WebLogic Server Administration Scripting Shell
    wlst >
    wlst > Type help() for help on available commands
    wlst >
    wlst > Creating Default Domain
    wlst > Reading template: /C:/Oracle/Middleware/wlserver_10.3/common/templates/domains/wls.jar
    wlst > Setting Name to 'DefaultServer'
    wlst > Setting ListenAddress to ''
    wlst > Setting ListenPort to 7101
    wlst > Setting domain administrator to 'FAAdmin'
    wlst > Setting domain password.
    wlst > Problem invoking WLST - Traceback (innermost last):
    wlst > File "C:\Oracle\Middleware\jdeveloper\MyWork\system11.1.1.5.38.61.26\o.j2ee.adrs\CreateDefaultDomain.py", line 59, in ?
    wlst >      at com.oracle.cie.domain.script.jython.WLSTSecurityPrincipal.set(WLSTSecurityPrincipal.java:70)
    wlst >
    wlst >      at com.oracle.cie.domain.script.jython.WLSTSecurityUser.setPassword(WLSTSecurityUser.java:33)
    wlst >
    wlst >      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    wlst >
    wlst >      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    wlst >
    wlst >      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    wlst >
    wlst >      at java.lang.reflect.Method.invoke(Method.java:597)
    wlst >
    wlst >
    wlst > com.oracle.cie.domain.script.jython.WLSTException: com.oracle.cie.domain.script.jython.WLSTException: java.lang.Exception: The password must be at least 8 alphanumeric characters with at least one number or special character.
    wlst >
    rohit

    Hi,
    you see that message: "The password must be at least 8 alphanumeric characters with at least one number or special character." ?
    The password: The weblogic password you provide when prompted
    must be at least: minimal condition for secure passwords enforced on WLS by default
    at least 8 alphanumeric characters: no 7 but eight or more characters
    with at least one number or special character: password should have a number in it or an "@" "-" or similar
    E.g.
    weblogic1
    is one password option that would meet that requirement
    Frank

  • Does anyone know the pricing structure for Digital Marketing Suite?

    Does anyone know the pricing structure for Digital Marketing Suite? I asked for info but no one ever got back to me. I don't want to waste anyones time if it's too expensive so I'd like to know up front what the fees/package rates are.
    Thanks.
    Peter Marino
    Owner of an
    SEO Comapny in NYC

    This is the top story at this writing at AppleInsider:
    Like the updated mid-2014 13-inch MacBook Pro with Retina display, Apple's latest 15-inch notebook brings slightly speedier Intel processors. But with memory, graphics and design all carried over from last year, the most substantial change is a $100 price cut.
    http://appleinsider.com/articles/14/09/07/review-apples-mid-2014-15-inch-macbook -pro-with-retina-display

  • Set up the Organizational structure for MSS scenario

    Hi!
    I would like to set up the Organizational structure for MSS scenario within SAP Portal.
    Question:
    1) How to set up/map real user from SU01 to Manager? (tcode, report)
    2) How to mark them as 'Chief' (tcode, report)
    3) How to be sure that PA & OM are configured correctly and the integration switch is on?
    Which SAP course or SDN blog describes this?
    Thank you very much!
    regards
    Jürgen

    How to be sure that PA & OM are configured correctly and the integration switch is on?
    Check It000 and IT0001 here u will get objects from OM and PA  (position ID , Job Key, organisational Key)
    and integration switch
    check plogi orga , plogi plogi , plogi perli  in V_T77s0
    Edited by: Sikindar on Feb 10, 2009 6:53 PM

  • Where does a sharepoint admin find the site settings for a mysite site collection?

    We are using sp 2010 service pack 2.
    When I look at another user's mysite, logged in as an admin (spsadmin2 is my daily admin type account), I don't seem to have access to the site settings.
    However, if I log in as the fundamental farm admin account (spfarm), I do see the site settings drop down.
    The site settings I see are not the site settings for a specific user's site collection. It is, instead, the settings for "mysites" in general.
    So, how can I look at the site settings for a specific user's site collection?
    I wanted to be able to look at their site collection recycle bin to see if something deleted was still there.
    Thank you!

    So, our mysites are associated with a web application separate from our other sharepoint sites.
    The mysites root site collection has our SharePoint admins listed as full control owners.
    The SharePoint admins also are listed as Farm admins.
    Because there is only 1 secondary site collection owner permitted, if that is the means by which someone gets access to the site collection settings and permissions, then it seems like we would have to keep changing the secondary owner quite frequently.
    You mentioned being able to set permissions on "the group" to have rights.
    Which group? The Personal Sites Owners group of our mysites web app? Or another group?
    Thank you for your help!

  • I have and existing web site and domain name. I'd like to know how to import into iweb. I currently use Yahoo's sitebuilder to build my site but Sitebuilder is not compatible with the iMac

    I have and existing web site and domain name. I'd like to know how to import into iweb. I currently use Yahoo's sitebuilder to build my site but Sitebuilder is not compatible with the iMac

    Chapter 2.3 on the iWeb FAQ.org site has tips on using some of the existing files, image, audio, video, etc., from the published site in the creation of the new site with iWeb.
    OT

  • Step by step process in configuring the enterprise structure for MM in IDES

    Can any one give the Step by step process in configuring the enterprise structure for MM in IDES.

    check below link for enterprise structure in MM.
    http://www.docstoc.com/docs/10940744/SAP-MMWM-Configuration-Doc
    If you are new to material management please refer to below thread which will be very useful.
    New to Materials Management / Warehouse Management?

  • What is the folder structure for iTunes for Ver. 11.0.5

    What is the folder structure for iTunes for Ver. 11.0.5 since I have iTunes on an external drive at the moment but want to move it back to the HD temporary so as to back it up to TM, the problem is that it seems that the files are some what disarranged and I'm not sure where and how iTune reads them.

    Time Machine will back up connected external drives as long as they are not on the exclude list.
    Connect the drive with your iTunes library > System Preferences > Time Machine > Options > if the external drive with the iTunes library is listed, select it and click the minus sign then run the Time Machine backup

  • What's the best method for a nav menu with image rollover for all visitors?

    Hi.
    First, thanks for reading this.
    What's the best method for a nav menu with image rollovers for all visitors, including PDAs? I've used JavaScript rollovers for years because the majority of my customers' visitors use some version of IE (past 7.0) but I'm building a new site that has to display properly for the widest range of visitors imaginable. (I also know that I need to use a more modern method for everyone and this is my excuse to start).
    Finally, using images is critical. I apologize ahead of time to anyone I offend, but I have never seen a nav menu without images that doesn't look just plain terrible.
    Thanks.
    Fitz21

    If you want the best menus possible for Dreamweaver look no further than Project Seven:
    http://projectseven.com/
    They have all kinds of menus and other extensions available for purchase.  Easy to use and they work as advertised.  I personally use Pop Menu Magic and Tab Panel magic myself.  I could go on and on, but I guarantee that if others respond they will echo the same sentiment for Project Seven.

  • Can Oracle be forced to use the spatial index for sdo_filter in combination with an or clause? Difference between Enterprise and SE?

    We’re seeing the following issue: sql - Can Oracle be forced to use the spatial index for sdo_filter in combination with an or clause? - Stack Overflow (posted by a colleague of mine) and are curious to know if this behaviour is due to a difference between standard and enterprise, or could we doing something else wrong in our DB config.?
    We have also reproduced the issue on the following stacks:
    Oracle SE One 11.2.0.3 (with Spatial enabled)
    Redhat Linux 2.6.32-358.6.2.el6.x86_64 #1 SMP Thu May 16 20:59:36 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
    11.2.0.3.0 Standard Edition and 11.2.0.4.0 Standard Edition (both with Spatial enabled)
    Microsoft Windows Server 2003R2 Standard x64 Edition
    However, the SQL works fine if we try it on Oracle 11.2.0.3.0 *Enterprise* Edition.
    Any help or advice would be much appreciated.
    Kindest Regards,
    Kevin

    In my experience sdo_filter ALWAYS uses the spatial index, so that's not the problem. Since you did not provide the explain plans, we can't say for sure but I think yhu is right: Standard Edition can't use the bitmap operations, and thus it'll take longer to combine the results of the two queries (because the optimizer will surely split this OR up in two parts, then combine them).
    BTW: when asking questions about queries here, it would be nice if you posted the queries here as well, so that we do not have to check another website in order to see what you are doing. Plus it will probably get you more answers, because not everyone can be bothered to click on that link. It would also have been nice if you had posted your own answer on the other post here as well, because my recommendation would have been to use union all - but since you already found that out for yourself my recommendation would have been a little late.

  • Is there an add-on program, which assumes the directory structure of a Windows PC with subfolders?

    Hi all,
    Is there an add-on program, which assumes the directory structure of a Windows PC with subfolders?
    So that the playlists are created with all the directories and subdirectories.
    I would like the Music folder
    and all its subdirectories
    drag into iTunes.
    Then should the songs in iTunes and in the Iphone geanu be designed with the same directory wiht subdirectories structure.
    Example:
    G:\1 wav+mp3\1 Alles\2 Deutsches\Die Prinzen\Album Die Prinzen - Das Leben ist grausam\AlbumArtSmall.jpg
    G:\1 wav+mp3\1 Alles\2 Deutsches\Die Prinzen\Album Die Prinzen - Das Leben ist grausam\Betriebsdirektor - Das Leben Ist Grausam - die Prinzen - 05 - .mp3
    G:\1 wav+mp3\1 Alles\2 Deutsches\Die Prinzen\Album Die Prinzen - Das Leben ist grausam\Blaues Blut - Das Leben Ist Grausam - die Prinzen - 07 - .mp3
    G:\1 wav+mp3\1 Alles\2 Deutsches\Die Prinzen\Album Die Prinzen - Das Leben ist grausam\desktop.ini
    G:\1 wav+mp3\1 Alles\2 Deutsches\Grönemeyer\Zwölf\Herbert_Grönemeyer_-_12_[2007]_-brandneu-_[found-on-www-bitreactor-to].to rrent
    G:\1 wav+mp3\1 Alles\2 Deutsches\Grönemeyer\Zwölf\Lied 01 - Ein Stück vom Himmel.mp3
    G:\1 wav+mp3\1 Alles\2 Deutsches\Grönemeyer\Zwölf\Lied 02 - Kopf hoch,tanzen.mp3
    G:\1 wav+mp3\1 Alles\2 Deutsches\Grönemeyer\Zwölf\Lied 03 - Du bist die.mp3
    G:\1 wav+mp3\1 Alles\2 Deutsches\Hannes Wader\ Dass nichts bleibt wie es war\Rohr im Wind - Dass nichts bleibt wie es war - Hannes Wader - 07.mp3
    G:\1 wav+mp3\1 Alles\2 Deutsches\Hannes Wader\ Dass nichts bleibt wie es war\Schon so lang - Dass nichts bleibt wie es war - Hannes Wader - 02.mp3
    G:\1 wav+mp3\1 Alles\3 Song\Allerlei
    G:\1 wav+mp3\1 Alles\3 Song\Allerlei\(Everything I Do) I Do It For You - Bryan Adams - Best of Me (Ecopac) - 10.mp3
    G:\1 wav+mp3\1 Alles\3 Song\Allerlei\(Sittin' on) the dock of the bay - Otis Redding - (Sittin' on) the Dock of the Bay - 01.mp3
    G:\1 wav+mp3\1 Alles\3 Song\Allerlei\~ Change Is Gonna Come - The Neville Brothers - Yellow Moon - 01.mp3
    G:\1 wav+mp3\1 Alles\3 Song\Boney M. - Daddy Cool\Baby, Do You Wanna Bump - Daddy Cool - Boney M. - 06.mp3
    G:\1 wav+mp3\1 Alles\3 Song\Boney M. - Daddy Cool\Barbarella Fortuneteller - Daddy Cool - Boney M. - 15.mp3
    G:\1 wav+mp3\1 Alles\3 Song\Boney M. - Daddy Cool\Belfast - Daddy Cool - Boney M. - 04.mp3
    G:\1 wav+mp3\1 Alles\3 Song\Elvis Presley - Definitive Country Album
    G:\1 wav+mp3\1 Alles\3 Song\Elvis Presley - Definitive Country Album\AlbumArtSmall.jpg
    G:\1 wav+mp3\1 Alles\3 Song\Elvis Presley - Definitive Country Album\Always On My Mind - Definitive Country Album - Elvis Presley - 03.mp3
    G:\1 wav+mp3\1 Alles\3 Song\Elvis Presley - Definitive Country Album\Burning Love - Definitive Country Album - Elvis Presley - 09.mp3
    G:\1 wav+mp3\1 Alles\3 Song\Elvis Presley - Definitive Country Album\Don't Cry Daddy - Definitive Country Album - Elvis Presley - 15.mp3
    G:\1 wav+mp3\1 Alles\3 Song\Flying Pickets\Every Little Thing She Does-Flying Pickets - Flying Pickets.mp3
    G:\1 wav+mp3\1 Alles\3 Song\Flying Pickets\Folder.jpg
    G:\1 wav+mp3\1 Alles\3 Song\Flying Pickets\goodnight sweethart - flying pickets - flying pickets .mp3
    G:\1 wav+mp3\1 Alles\3 Song\Flying Pickets\Groovin'-Flying Pickets - Flying Pickets.mp3
    G:\1 wav+mp3\1 Alles\3 Song\Flying Pickets\I Got You Babe - Flying Pickets - Flying Pickets.mp3
    G:\1 wav+mp3\1 Alles\4 Instrumental\Allerlei\Classical - Franz Liszt - Liebestraum piano - Franz Liszt - Liebestraum piano.mp3
    G:\1 wav+mp3\1 Alles\4 Instrumental\Allerlei\Classical Guitar - Greensleeves - Greensleeves.mp3
    G:\1 wav+mp3\1 Alles\4 Instrumental\Allerlei\Classique - Schumann - Carnaval, Chopin - Schumann - Carnaval, Chopin.mp3
    G:\1 wav+mp3\1 Alles\4 Instrumental\Allerlei\Crown Chakra - Tony O'Connor - Tony O'Connor.mp3
    G:\1 wav+mp3\1 Alles\4 Instrumental\Allerlei\Dallas - TV 70's & 80's.mp3
    usw.
    Is there a program led?
    Thank you very much
    frank

    deggie wrote:
    No, as there is no such file management system in iOS.
    I do not understand this..
    In iTunes I can create folders and subfolders.
    Please look.
    I would like to drag the folder "1 All" in iTunes.
    There should also then the folder structure are taken
                       iTunes                                                 Windows 7 Explorer
                    Folder in Folder                                        Folder in Folder
    Thank you very much
    Frank

  • I need the Adobe Flash Player version 11.1.102.64plug in on my MacAir to view Ustream videos. Adobe message says the version is for Intel-based Macs with Safari; also says that I "may have to temporarily disable antivirus software. is it safe to download?

    I need the Adobe Flash Player version 11.1.102.64plug in on my MacAir to view Ustream videos. Adobe message says the version is for Intel-based Macs with Safari; also says that I "may have to temporarily disable antivirus software. is it safe to download?

    Your MacBook Air is an Intel-based system. To download the current version (11.2.202.228),  go to http://get.adobe.com/flashplayer/ and download it from there.
    If there is still a Flash issue, you can try the Google Chrome browser, which has the current Flash built into it, to see if it works any differently with the videos. It's available from https://www.google.com/chrome

  • None of the fact sources for [column] are compatible with the detail filter

    Hi Experts,
    I am using obiee 11.1.1.7.
    Getting below error when i add a filter of non conformed dimension column.
    Below is the error
    Error Details
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P 
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 43119] Query Failed: [nQSError: 14023] None of the fact sources for [column] are compatible with the detail filter
    Please help in solving an issue.
    Regards,
    NN

    Hi NN
    You need to follow steps in below link to model your BMM layer for the report to work with non confirmed dimensions.
    http://obibb.wordpress.com/2010/05/31/multiple-fact-reporting-on-non-conforming-dimensions/
    Once you have followed these steps you can use the non confirmed dimension in the reports.When you see the logs to see the query generated by obiee,it generated 2 queries 1 with confirmed dimension and other with non conformed dimension.When you filter using non confirmed dimension you will now not notice any error but the results will not be filtering out because the filter will be applied only in 1 query which is valid
    Now for this to work what you can do is ,instead of using the filter drag the column you like to filter as a prompt in your view.default it to the value you need using the case statement and hide it.This is one of the work around.
    There may be many other work arounds for this but you need to understand that for you requirment to work you need to tweek OBIEE to generate 1 query instead of 2  queries.

  • I bought the Mac version of Premiere Elements, can I get the Windows version for free or cheap with my serial number?

    I bought the Mac version of Premiere Elements, can I get the Windows version for free or cheap with my serial number? I'm about to migrate back to PC soon and I'd love to not have to buy the program again since I just bought it. Under my order history though it only shows it for Mac so I wanted to make sure.

    ihavea4
    The boxed packaging is not sold by Adobe direct. If you want to explore that type of purchase which offers the perk of a Windows and a Mac installation disc, you need to purchase from an authorized reseller who is not going to offer you "upgraded pricing". The seller would be its own entity with its own pricing and own return/refund policy. Sometimes the authorized reseller price may be less than the Adobe"upgraded pricing".
    Did you purchase your Premiere Elements 13 Mac from Adobe direct and are within 30 days of purchase? If so, you can contact Adobe Chat Orders to ask for return/refund. And, then you can explore the authorized resellers for pricing and availability of the box packaging. Maybe check out the pricing all around before making any final decisions.
    Please review and consider.
    Thank you.
    ATR

  • I downloaded the new software for mac book pro with retina and the office doesn't work

    I downloaded the new software for mac book pro with retina and the office doesn't work

    cynthia alia wrote:
    I downloaded...
    ... but did you INSTALL it?
    Office::2008 was drag & drop, but Office::2011 has an installer you need to run.

Maybe you are looking for

  • ITunes cannot Location many songs even though they have not moved

    I recently noticed that, locations of many songs in iTunes is showing up incorrectly, due to which its playcount, ratings etc. don't sync with my iPhone/iPad. For example When location of original song is in folder "/Users/SiMac/Music/iTunes/iTunes M

  • G5 randomly shuts down

    lately my computer has randomly shut down. i just moved from boston to nebraska. i moved my computer in its original box and thought it was pretty safe. everything seems to be working fine except for this. the computer can be on for hours or not even

  • New Emails flagged but not showing up?

    Hi all, I'm using Mac mail in Leopard. I've got some problems with Mail, but the main thing I'm wondering now is whether Mac support ongoing development of Mail for G5? Probably not hey? Mail has the little red flag (or circle) telling me there 1 new

  • Accounts in COA location in drawer is always resetting

    *Hi Experts,* *Our chart of account is very long and it will take time to arrange it.  Accounts are arranged such that each child account is attached to their respective mother account.  Unexpectedly, without knowing what we did and we did not even e

  • SPA3102 - Answer Reversal Detection

    Hi All, I have a problem with the SPA3102 and Answer Reversal Detection. I suspect that the device does not support this feature, however, maybe I've missed an option or something like that. The SPA3102 is used as an FXO device. All works fine except