Stuck making JSF 2.0 work with MyFaces

Hi everybody,
I'm trying to solve the file upload lack in JSF 2.0 using MyFaces. I'm trying with a very simple example:
<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:t="http://myfaces.apache.org/tomahawk">
<body>
<h:form enctype="multipart/form-data" id="myForm">
firstName : <h:inputText value="#{user.firstName}" />
lastName : <h:inputText value="#{user.lastName}" />
pic : <t:inputFileUpload id="file" storage="file" accept="image/*" styleClass="myStyle" value="#{user.file}"/>
<h:commandButton action="#{user.createUser}" value="Create user"/>
</h:form>
</body>
</html>
The problem is that the page does not get transformed. In the browser I get the exact same code above, not the XHTML code expected.
Please tell me, how can I solve this?

that's standard notation for JSF 2.0, which uses XHTML, which is XML. U should upgrade.
The problem is that MyFaces Tomahawk has not been yet upgraded to work with JSF 2.0

Similar Messages

  • Generated javascript by JSF doesn't works with IE

    Hi Everyone!!!
    I Have a big problem, the jaavascript code generated by JSF doesn't
    works using IE, I used a h:commanLink with actionListener to a funciton
    in the backing bean, and I use two f:params to send the parameter of an
    specific element to show its details, the problem is taht the
    javascript code generated shows an error: "
    'documents.forms.form.form:_idcl' is null or is not an object " or "
    'elements.idVar' is null or is not an object ". I'm not using MyFaces,
    or something similar because the application has a part built in
    ArcgisServer, and it 's not compatible with Myfaces, so I needed to use
    JSf only...
    Please I hope an answer, it has a big problem!!!
    it is the code of the jsp
    <code><h:commandLink actionListener="#{consultaEstadisticasMB.detalleEstadistica}">
    <f:param name="idVar" value="#{consultaEstadisticasMB.idColumna3}"/>
    <f:param name="idMun" value="#{registro[0]}" />
    <h:outputText title="#{consultaEstadisticasMB.columna3}" id="itColumna3" value="#{registro[2]}" />
    </h:commandLink>
    </code>

    Minor nit: MyFaces is JSF, an implementation at least, as is Mojarra, which I assume is what you mean. :)ye, MyFaces is an implementation... but at this time, we�re using "JSF 1.1.02 - Reference Implementation"...
    Now, I have noticed that is a problem of jsf implementation so i have tried to do the work in another way, usign outputLink, nad creating a new backing bean for the details page.. altough I'm having problems, this is what i'm trying to do:
    <h:outputLink value="/ConsultaEstadisticasGeo/detalleEstadisticas.jsf?idVar=#{consultaEstadisticasMB.idColumna3}">
              <h:outputText title="#{consultaEstadisticasMB.columna3}"id="itColumna3" value="#{registro[2]}" />
    </h:outputLink>but it shows me an error...
    GRAVE: Servlet.service() para servlet Faces Servlet lanz� excepci�n
    java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
    And I don't kwon why. If you could help me, I would been so grateful

  • Making JSF 1.0 Work

    Today I took the time to go through and make JSF work, and after some finding out I made it fly. Luckily I only needed to patch various deployment descriptors... [diffs included]
    Perhaps other people can benefit from these expperiences;
    1. I needed to patch the TLD's for the scriptfree and permittedTaglibs
    libraries, as they are not conforming; and so I couldn't deploy them
    with a validating parser.
    2. The TLD for the demo-components includes reference to a non-existing
    tag, components.taglib.AreaSelectedTag. Again, our pedantic deployment
    tool wouldn't allow deployment.
    3. In the provided web.xml (inside jsf-components.war, for example),
    there is no reference to the ConfigureListener, and so nothing
    worked until I added that.
    BTW, congrats on the release; good work!
    Kresten
    Who's at JAOO?
    http://www.jaoo.dk
    Apple-Mail-719489557
    Content-Transfer-Encoding: 7bit
    Content-Type: application/octet-stream;
         x-unix-mode=0644;
         name="demo-components.jar:META-INF:components.tld"
    Content-Disposition: attachment;
         filename="demo-components.jar:META-INF:components.tld"
    --- components.tld~     Sat Mar 13 15:57:59 2004
    +++ components.tld     Sat Mar 13 16:05:43 2004
    @@ -170,38 +170,6 @@
    <tag>
    - <name>area_selected</name>
    - <tag-class>components.taglib.AreaSelectedTag</tag-class>
    - <body-content>empty</body-content>
    - <description>
    - Register an AreaSelectedListener, of the class specified by the
    - type attribute, with the parent MapComponent in which we are nested.
    - </description>
    - <attribute>
    - <name>binding</name>
    - <required>false</required>
    - <rtexprvalue>false</rtexprvalue>
    - <description>
    - Component reference expression for this component.
    - </description>
    - </attribute>
    - <attribute>
    - <name>type</name>
    - <required>true</required>
    - <rtexprvalue>false</rtexprvalue>
    - <description>
    - Fully qualified name of a JavaBean class (which must implement
    - components.components.AreaSelectedListener) to be registered.
    - </description>
    - </attribute>
    - </tag>
    - <tag>
    <name>data_repeater</name>
    <tag-class>components.taglib.DataRepeaterTag</tag-class>
    <body-content>JSP</body-content>
    Apple-Mail-719489557
    Content-Transfer-Encoding: 7bit
    Content-Type: application/octet-stream;
         x-unix-mode=0644;
         name="standard.jar:META-INF:permittedTaglibs.tld.diff"
    Content-Disposition: attachment;
         filename="standard.jar:META-INF:permittedTaglibs.tld.diff"
    --- permittedTaglibs.tld~     Sat Mar 13 15:42:51 2004
    +++ permittedTaglibs.tld     Sat Mar 13 15:43:48 2004
    @@ -3,22 +3,26 @@
    <taglib 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 web jsptaglibrary_2_0.xsd"
    + "http://java.sun.com/xml/ns/j2ee web-jsptaglibrary_2_0.xsd"
    version="2.0">
    <description>
    Restricts JSP pages to the JSTL tag libraries
    </description>
    + <display-name>permittedTaglibs</display-name>
    <tlib-version>1.1</tlib-version>
    - <jsp-version>2.0</jsp-version>
    <short-name>permittedTaglibs</short-name>
    <uri>http://jakarta.apache.org/taglibs/standard/permittedTaglibs</uri>
    - <display-name>permittedTaglibs</display-name>
    <validator>
    <validator-class>
         javax.servlet.jsp.jstl.tlv.PermittedTaglibsTLV
    </validator-class>
    <init-param>
    + <description>
    + Whitespace-separated list of taglib URIs to permit. This example
    +     TLD for the Standard Taglib allows only JSTL 'el' taglibs to be
    +     imported.
    + </description>
    <param-name>permittedTaglibs</param-name>
    <param-value>
         http://java.sun.com/jsp/jstl/core
    @@ -26,11 +30,6 @@
         http://java.sun.com/jsp/jstl/sql
         http://java.sun.com/jsp/jstl/xml
    </param-value>
    - <description>
    - Whitespace-separated list of taglib URIs to permit. This example
    -     TLD for the Standard Taglib allows only JSTL 'el' taglibs to be
    -     imported.
    - </description>
    </init-param>
    </validator>
    </taglib>
    Apple-Mail-719489557
    Content-Transfer-Encoding: 7bit
    Content-Type: application/octet-stream;
         x-unix-mode=0644;
         name="standard.jar:META-INF:scriptfree.tld.diff"
    Content-Disposition: attachment;
         filename="standard.jar:META-INF:scriptfree.tld.diff"
    --- scriptfree.tld~     Sat Mar 13 15:42:51 2004
    +++ scriptfree.tld     Sat Mar 13 15:45:46 2004
    @@ -3,51 +3,50 @@
    <taglib 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 web jsptaglibrary_2_0.xsd"
    + "http://java.sun.com/xml/ns/j2ee web-jsptaglibrary_2_0.xsd"
    version="2.0">
    <description>
    Validates JSP pages to prohibit use of scripting elements.
    </description>
    <tlib-version>1.1</tlib-version>
    - <jsp-version>2.0</jsp-version>
    <short-name>scriptfree</short-name>
    <uri>http://jakarta.apache.org/taglibs/standard/scriptfree</uri>
    <validator>
    + <description>
    + Validates prohibitions against scripting elements.
    + </description>
    <validator-class>
         javax.servlet.jsp.jstl.tlv.ScriptFreeTLV
    </validator-class>
    <init-param>
    - <param-name>allowDeclarations</param-name>
    - <param-value>false</param-value>
    <description>
    Controls whether or not declarations are considered valid.
    </description>
    + <param-name>allowDeclarations</param-name>
    + <param-value>false</param-value>
    </init-param>
    <init-param>
    - <param-name>allowScriptlets</param-name>
    - <param-value>false</param-value>
    <description>
    Controls whether or not scriptlets are considered valid.
    </description>
    + <param-name>allowScriptlets</param-name>
    + <param-value>false</param-value>
    </init-param>
    <init-param>
    - <param-name>allowExpressions</param-name>
    - <param-value>false</param-value>
    <description>
    Controls whether or not top-level expressions are considered valid.
    </description>
    + <param-name>allowExpressions</param-name>
    + <param-value>false</param-value>
    </init-param>
    <init-param>
    - <param-name>allowRTExpressions</param-name>
    - <param-value>false</param-value>
    <description>
    Controls whether or not expressions used to supply request-time
    attribute values are considered valid.
    </description>
    + <param-name>allowRTExpressions</param-name>
    + <param-value>false</param-value>
    </init-param>
    - <description>
    - Validates prohibitions against scripting elements.
    - </description>
    </validator>
    </taglib>
    Apple-Mail-719489557
    Content-Transfer-Encoding: 7bit
    Content-Type: application/octet-stream;
         x-unix-mode=0644;
         name="web.xml.diff"
    Content-Disposition: attachment;
         filename=web.xml.diff
    --- web.xml~     Sat Mar 13 15:42:05 2004
    +++ web.xml     Sat Mar 13 18:19:09 2004
    @@ -88,6 +88,11 @@
    </description>
    </context-param>
    + <!-- make JSF load the configuration -->
    + <listener>
    + <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
    + </listener>
    +
    <!-- Faces Servlet -->
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    Apple-Mail-719489557--

    The fact that you need a reference to ConfigureListener means there's a bug in the servlet engine you're using - a proper Servlet 2.3 & JSP 1.2 engine would automatically load that listener. So that ain't a bug in JSF.
    The other things look like bugs in the demo parts of JSF - not problems with the core of the JSF RI.
    -- Adam Winer (EG member)

  • Making a DVD that works with surroung Sound

    I am trying to make a DVD that works on surround a sound system (DTS system) There are 2 front speakers, 2 rear, and a sub woofer. I imported several film clips into iMovie (I believe what I did is called "down mixing") then created a Quicktime file that I imported into DVD Studio Pro. I created the disc, but the audio did not sound good. So I have been fooling around with Compressor to try to turn the audio into the correct format, and I still have not found the right combination to get the audio to sound correct. What can I do to get the disc sounding clear when I play it on the DTS system. I am assuming that there are certain steps I must make in both Compressor AND DVD Studio Pro (version 3) - I would be very appreciatvie to the person who can give me the magic formula to get everything sounding right. Thanks!

    The answers posted don't fully address your question, since they are talking about AC-3, not DTS which is what you indicate you want.
    First, you can use iMovie to edit the visuals, but you won't be able to use it (easily) to create the 5+1 tracks you'll need for surround encoding.
    This is more a job for an actual multi-channel mixer, like BIAS Deck....
    http://bias-inc.com/products/deck/
    Basically, once you have each of your audio channels edited and mixed, you export each channel as an individual mono track. These are then imported into the audio encoder and assigned to the appropriate channels.
    Apple does not provide a DTS encoder, so you'll need a third party encoder.
    DTS sells their own...
    http://tinyurl.com/6xvlb
    And Surcode has one as well...
    http://www.surcode.com/
    DTS has a good document re: authoring surround discs...
    http://tinyurl.com/kzsbx
    If you can live with Dolby Digital, then you can use A.pack which is included with DSP.
    -David

  • MAking a DVD that works with surround Sound

    I am trying to make a DVD that works on surround a sound system (DTS system) There are 2 front speakers, 2 rear, and a sub woofer. I imported several film clips into iMovie (I believe what I did is called "down mixing") then created a Quicktime file that I imported into DVD Studio Pro. I created the disc, but the audio did not sound good. So I have been fooling around with Compressor to try to turn the audio into the correct format, and I still have not found the right combination to get the audio to sound correct. What can I do to get the disc sounding clear when I play it on the DTS system. I am assuming that there are certain steps I must make in both Compressor AND DVD Studio Pro (version 3) - I would be very appreciatvie to the person who can give me the magic formula to get everything sounding right. Thanks!

    You posted the same question in DVDSP forum; look for the answers:
    http://discussions.apple.com/thread.jspa?threadID=583692&tstart=0
    You can use A.Pack (look for it into your apps. folder) to generate the Dolby AC3 files.

  • Making my MX860 fax work with OOMA Linx on dedicated number

    My Canon MX860 fax will not fax send or receive through the OOMA Linx.  Fax has dedicated number and direct line to Linx.  When we changed to OOMA Telo fax would not send or receive, it did at first then quit, so when Linx came out it was touted as a good adjunct to Telo and could be used as the fax line, but no go.  OOMA tech spent all AM testing Linx and it works fine, but still not faxing.

    Hello ajcreek.
    Unfortunately, we can only support our fax machines with direct connections to standard land line outlets.  Please connect a phone cord from the 'L' jack of the printer into a land line jack on your wall in order to send or receive faxes with the unit.
    I apologize for any inconvenience this may cause.
    This didn't answer your question or issue? Find more help at Contact Us.
    Did this answer your question? Please click the Accept as Solution button so that others may find the answer as well.

  • Making an internet dongle work with Snow Leopard

    Can anybody tell me why my Swisscom usb internet 'dongle' (Unlimited Connection Manager) no longer works since I installed Snow Leopard? It still works perfectly on a PC - from where I am forced to send this message.
    Upgrading to Snow Leopard has given me nothing but suprise problems in times of stress and was positively the worse move I ever made with Apple. My MacSpeech dictate has also just given up the ghost. I suspect it needs a software upgrade but as I can no longer access the internet ... grrrr

    Barrold wrote:
    I wish Apple had advised in advance that this kind of thing would happen - and provided some support - before urging everyone to upgrade.
    Having been a longtime Mac user, I've always taken that responsibility on myself. Given that many Mac sites publish compatibility reports ([like this one|http://snowleopard.wikidot.com>) at every upgrade, I imagine that is the case for many Mac users.
    Apple provides developers with a stable feature set far in advance of the actual release so that they can identify and fix any problems. I expect developers to do their part. If developers aren't up to that task, I find and support other developers that are.
    Hardware like yours has always had problems with updates and they are slow to fix them. They don't seem to put much effort into the software to drive them. If they even make Mac drivers, they usually cause problems.
    Message was edited by: Barney-15E

  • Making Dell MFP 1600n work with my MacBook Air

    I have a MacBook Air and a Dell MFP 1600n printer that doesn't come with a Mac OS driver. Generic printer drivers nor PLC printer drivers can get this printer to work. Neither the Xerox PE120/120i driver does the trick. Is there anyone that can help me with this? Thanks very much!

    AFAIK, there are no print drivers that are compatible with OSX Lion for that printer or its Xerox counterpart.  You'll probably have to ditch it and get another printer.

  • ADF Demo on Tomcat 5 with MyFaces

    Hi all
    I'm trying to make the JSF ADF Demo work with MyFaces 1.0.9 JSF Implementation. I've got troubles when I start the server (Tomcat 5), the container is still looking for the ConfigureListener, even if I have configured properly the listener in the web.xml. I'm like stucked.
    Any idea would be appreciated.
    Thanks
    Sébastien Vidon

    try posting on the JDeveloper forum - where ADF Faces support is provided.

  • JSF Visual Editor does not work with Tomahawk 1.1.3

    hi,
    i am using JDeveloper 10.1.3.0.4 (SU4) with tomahawk 1.1.3 and myfaces-core 1.1.3.
    All Tomahawk components that need the extensions filter to be rendered properly cannot be displayed
    in the UI Designer anymore (e.g. Calendar). More painfully: all compontents in the container that comes after the component
    that failed rendering will not be rendered too.
    I have enabled JSP Visual Editor Preferendes 'Show Design Time Messages in Log' and got the following
    exception:
    Error exercising tag : h:panelGrid
    java.lang.IllegalStateException: ExtensionsFilter not correctly configured. JSF mapping missing. JSF pages not covered. Please see: http://myfaces.apache.org/tomahawk/extensionsFilter.html
         at org.apache.myfaces.renderkit.html.util.AddResourceFactory.throwExtensionsFilterMissing(AddResourceFactory.java:371)
         at org.apache.myfaces.renderkit.html.util.AddResourceFactory.checkEnvironment(AddResourceFactory.java:333)
         at org.apache.myfaces.renderkit.html.util.AddResourceFactory.getInstance(AddResourceFactory.java:288)
    But the ExtensionsFilter is configured correctly - all works fine when running the page.
    A little help was to disable the ExtensionsFilter Check in web.xml
    <context-param>
    <param-name>org.apache.myfaces.CHECK_EXTENSIONS_FILTER</param-name>
    <param-value>false</param-value>
    </context-param>
    So only the components that need the extensions filter will not be rendered - others will not be affected.
    But this is not really satisfying (btw. all worked fine with myfaces 1.1.1)
    Has anyone else got the same expirience?
    thanks

    hi,
    to work with myfaces-1.1.1 and the newer versions in jdeveloper i have changed the tlib-versionS for myfaces-impl-1.1.3 and tomahawk-1.1.3 so that they differ from the 1.1.1 libs.
    then i registered the JSP libraries tomahawk.tld from tomahawk-1.1.3.jar, myfaces_html.tld and myfaces_core.tld from myfaces-impl-1.1.3.jar
    then i have created a user library containing myfaces-api-1.1.3.jar and myfaces-impl-1.1.3.jar
    on a new created JSF i allways have to manually remove the jsf-impl.jar from WEB-INF/lib directory because it conflicts with myfaces.
    i hope this helps

  • Tomcat 5.5 issues, has anyone got JSF working with tomcat 5.5 yet?

    Hi,
    Firstly I'm wondering if anyone has got JSF 1.1 working with tomcat 5.5 yet.
    I'm trying to move from tomcat 5.0.25 to 5.5.4 and my JSF webapps have not liked the move at all.
    The classpath doesn't seem to be a problem as I have all the .jars that are required in the classpath of tomcat just like before.
    I see the error log in stdout.log (catalina.out on linux) have been reduced to only show the precise error. Or at least is seems at lot easier to read.
    My error is simply
    SEVERE: Error listenerStart
    SEVERE: Context startup failed due to previous errors
    I reverted back to using the examples provided like jsf-guessNumber and the car-demo but neither of these will start-up.
    This issue seems to have occurred to lots of other people previously but I couldn't find a particular fix or direct compatability issue with tomcat.
    Has anyone encountered this before?

    Back again,
    Allright well after a little thought I concluded that this issue had to be some to do with the classpath and the changes between the two tomcat versions.
    I had a look at
    http://jakarta.apache.org/tomcat/tomcat-5.5-doc/RELEASE-NOTES.txt
    and noticed that tomcat 5.5 leaves out some important .jar as they are only needed for java 1.4.
    -------------------- EXTRACT ------------------------
    Installing the compatibility package will add the following to the list, which are
    needed when running on J2SE 1.4:
    * jmx.jar (Java Management Extensions API 1.2 or later)
    * xercesImpl.jar (Xerces XML Parser, version 2.6.2 or later)
    --------------------END EXTRACT ------------------------
    Therefore I tried putting xercexImpl.jar back onto the tomcat classpath and JSF works once again.
    Ah what a relief.

  • Which format is optimal to work with?

    hey there,
    I've only used Final Cut Pro a few times, so I'm very much a novice but have a rough grasp of things...
    I've recently been given 5 different DV captures - in fact, they are 5 cameras on the same thing - so I want to cut in and out of each of them, and so on.
    When I import the first one, it's displayed RED and Unrendered - making it impossible to work with....
    should I convert them to a different format to work with it, or am I already in the correct one?
    Thanks!

    OK,
    Did they capture it on a Mac with FCP? If so, find out from them exactly what they did. This will help in this process.
    In the browser, Ctrl-click on a clip and find the Properties (I think, I am away from my editing machine at the moment) look at all of the info there. You need to know the codec and audio info to move forward.
    I'm using FCP 5.
    Makes the auto setup in the FCP 6 look inviting doesn't it?
    K

  • Problem with MyFaces

    Hi guys! I`m working with myfaces libraries but i have the following problem:
    when i define a validator or phaseListener in faces-config.xml ... their not being invoked... Any suggesstions?

    Did you solve this issue? I'm struggling with the same issue for the past few days.

  • Will Canon's PIXMA iP5000 Photo Printer work with Mavericks 10.9.5?

    Canon's PIXMA iP500 Photo Printer is not listed in the printers supported by OS X Maverick.  Does this mean a user has to opt for another printer, or is there a way of getting around this issue?

    Finally received a reply from Dymo support. It's self-explanatory:
    Good Morning Dana,
    My name is Jesse and I will be happy to assist you today. I apologize for the delay in our response. A systems upgrade and technical issues prevented us from doing so until now. Yes, the 450 Twin Turbo will continue to work after updating to Mac 10.9.5, and our developers are making sure they will work with Mac 10.10 when it is released.
    The Twin Turbo (the dual bay printer that just says ”Twin Turbo” on the front without a preceding number) requires a component included with Mac 10.9.3 and earlier that Apple has taken out of 10.9.4 and all subsequent releases, rendering the printer not able to be used. All other 400 series printers, as well as the 450 series printers work with Mac 10.9.4 and up. Our developers are working on the issue to see if a workaround can be implemented. I'm sorry for any inconvenience this may cause.
    If you should need further assistance, please do not hesitate to respond to this e-mail or contact tech support by phone at 1-877-724-8324.
    Kind regards, 
    Jesse L.
    DYMO Consumer Technical Support

  • Does Dymo Twin Turbo 450 work with Mavericks 10.9.5?

    I'm running 10.9.4 on an iMac now and the printer works. But I'm reluctant to upgrade the iMac to 10.9.5 until I know that the printer will continue to work!
    For background see my earlier Dymo-related posts...

    Finally received a reply from Dymo support. It's self-explanatory:
    Good Morning Dana,
    My name is Jesse and I will be happy to assist you today. I apologize for the delay in our response. A systems upgrade and technical issues prevented us from doing so until now. Yes, the 450 Twin Turbo will continue to work after updating to Mac 10.9.5, and our developers are making sure they will work with Mac 10.10 when it is released.
    The Twin Turbo (the dual bay printer that just says ”Twin Turbo” on the front without a preceding number) requires a component included with Mac 10.9.3 and earlier that Apple has taken out of 10.9.4 and all subsequent releases, rendering the printer not able to be used. All other 400 series printers, as well as the 450 series printers work with Mac 10.9.4 and up. Our developers are working on the issue to see if a workaround can be implemented. I'm sorry for any inconvenience this may cause.
    If you should need further assistance, please do not hesitate to respond to this e-mail or contact tech support by phone at 1-877-724-8324.
    Kind regards, 
    Jesse L.
    DYMO Consumer Technical Support

Maybe you are looking for

  • Adobe Premiere Elements 11 problems

    I was just downloading this program, and went online to get my serial number. I received the number and went to type it in to install it. It kept telling me that my serial number was invalid. I tried the chat on Adobe.com, and I called customer servi

  • HP 6500 E709n won't print black...attempts to align have failed.

    My HP 6500 E709n suddenly stopped printing black. I've cleaned the cartridges and cleaned the print head. Two attempts at alignment resulted in the message, "Alignment failed." Did the unplug/wait/plug back in game, held down the # and 3 keys while p

  • Folders locked in Time Machine after changing hard drive

    2008 iMac running Lion 10.7.5 I have had a larger hard drive installed on my iMac and all the data migrated to the new drive. Time Machine has done a complete new backup but I can't access any of the older backups on Time Machine from the old hard dr

  • Services WEB in version 7.0

    Hi all!! Im using the version 7.0 of BW. I have this question; how can on the services web?? In the version 3.5 was in the transaction SICF; but I dont know if is the same. Some people tell me that is automatically, but I can see the queries in WEB.

  • Show message using uix:pageLayout

    In UIX forums,"Oracle Technology Network > Forums " is shown on the pageLayout. Can I show some message on the same position using <uix:pageLayout>?