Authentication failed, ADFFacesContext had not been properly released

hi,
I setup Login page through ADF security wizard in jdev 10.1.3.2 and set error page to be the same Login page. The rest of login process is same as in SRDemo: index page redirects to Welcome page, user press Start button etc.
But if the user enters wrong credentials and after he is presented with Login page again (wirh message Invalid username and password) this time enters correct credentials he is dispatched to Welcome page but connectedUser from userInfo bean is not shown on the page. I noticed this warning about ADFFacesContext not properly released on earlier request. How can I properly release this context after user enters wrong credentials?
SEVERE:           [RealmLoginModule] authentication failed
Jul 24, 2007 1:26:34 PM oracle.adfinternal.view.faces.application.ViewHandlerImpl _checkTimestamp
INFO: ADF Faces is running with time-stamp checking enabled. This should not be used in a production environment. See the oracle.adf.view.faces.CHECK_FILE_MODIFICATION property in WEB-INF/web.xml
Jul 24, 2007 1:26:35 PM oracle.adfinternal.view.faces.webapp.AdfFacesFilterHelperImpl startFilter
WARNING: AdfFacesContext had not been properly released on earlier request.

Hi,
this seems to be a bug in ADF Security. However it should work if you set the authentication as in SRDemo, in that the first page requires authentication (protecting the root / virtual path).
ADF Security in 10.1.3.2 does allow users to work with anonymous accounts to achieve public pages (to defer authentication). So if public pages are not needed then the work around mentioned above should work
I'll try and reproduce the defect you see in JDev 10.1.3.3 and file a bug if it reprduces
Frank

Similar Messages

  • [SOLVED] AdfFacesContext had not been properly released ... & Security

    Hi,
    While evaluating version 10.1.3.2.49 of JHeadstart some warning messages appears in the log window :
    23 oct. 2007 08:56:53 oracle.adfinternal.view.faces.webapp.AdfFacesFilterHelperImpl startFilter
    ATTENTION: AdfFacesContext had not been properly released on earlier request
    I just made a very basic application, generated it and got the messages when running it.
    The problem seems to be the filter mappings section of the web.xml generated by JHeastart which is :
        <filter-mapping>
            <filter-name>adfFaces</filter-name>
            <url-pattern>*.jsp</url-pattern>
        </filter-mapping>
        <filter-mapping>
            <filter-name>adfFaces</filter-name>
            <url-pattern>*.jspx</url-pattern>
            <dispatcher>REQUEST</dispatcher>
            <dispatcher>FORWARD</dispatcher>
        </filter-mapping>
        <filter-mapping>
            <filter-name>adfBindings</filter-name>
            <url-pattern>*.jsp</url-pattern>
        </filter-mapping>
        <filter-mapping>
            <filter-name>adfBindings</filter-name>
            <url-pattern>*.jspx</url-pattern>
            <dispatcher>REQUEST</dispatcher>
            <dispatcher>FORWARD</dispatcher>
        </filter-mapping>
        <filter-mapping>
            <filter-name>adfBindings</filter-name>
            <servlet-name>ordDeliverMedia</servlet-name>
        </filter-mapping>When I change these mapping in flavor of :
        <filter-mapping>
            <filter-name>adfFaces</filter-name>
            <servlet-name>Faces Servlet</servlet-name>
        </filter-mapping>
        <filter-mapping>
            <filter-name>adfBindings</filter-name>
            <url-pattern>*.jsp</url-pattern>
        </filter-mapping>
        <filter-mapping>
            <filter-name>adfBindings</filter-name>
            <url-pattern>*.jspx</url-pattern>
        </filter-mapping> then I get no error.
    BUT when I keep these settings and try to use security features, I get :
    500 Internal Server Error
    java.lang.NullPointerException
         at oracle.adfinternal.view.faces.renderkit.AdfRenderingContext.getTranslatedString(AdfRenderingContext.java:70)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.jsLibs.GlobalVariablesScriptlet.outputScriptletContent(GlobalVariablesScriptlet.java:49)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.jsLibs.Scriptlet.outputScriptletImpl(Scriptlet.java:111)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.jsLibs.Scriptlet.outputScriptlet(Scriptlet.java:52)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.XhtmlUtils.addLib(XhtmlUtils.java:166)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.jsLibs.Scriptlet.outputDependency(Scriptlet.java:144)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.jsLibs.AliasedScriptlet.outputScriptletImpl(AliasedScriptlet.java:112)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.jsLibs.Scriptlet.outputScriptlet(Scriptlet.java:52)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.XhtmlUtils.addLib(XhtmlUtils.java:166)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.jsLibs.Scriptlet.outputDependency(Scriptlet.java:144)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.jsLibs.DefaultTimeZoneScriptlet.outputScriptletImpl(DefaultTimeZoneScriptlet.java:41)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.jsLibs.Scriptlet.outputScriptlet(Scriptlet.java:52)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.XhtmlUtils.addLib(XhtmlUtils.java:166)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.HeadRenderer._writeCookieScript(HeadRenderer.java:124)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.HeadRenderer.encodeBegin(HeadRenderer.java:72)
         at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeBegin(CoreRenderer.java:149)
         at oracle.adf.view.faces.component.UIXComponentBase.encodeBegin(UIXComponentBase.java:593)
         at javax.faces.webapp.UIComponentTag.encodeBegin(UIComponentTag.java:613)
         at oracle.adf.view.faces.webapp.UIXComponentTag.encodeBegin(UIXComponentTag.java:108)
         at javax.faces.webapp.UIComponentTag.doStartTag(UIComponentTag.java:500)
         at oracle.adf.view.faces.webapp.UIXComponentTag.doStartTag(UIXComponentTag.java:85)
         at _security._pages._Login_jspx._jspService(_Login_jspx.java:62)
         [/security/pages/Login.jspx]
    ...and in the embedded OC4J log window :
    23 oct. 2007 09:52:00 oracle.adf.view.faces.webapp.AdfFacesFilterHelper verifyFilterIsInstalled
    ATTENTION: The AdfFacesFilter has not been installed.  ADF Faces requires this filter for proper execution.
    23 oct. 2007 09:52:00 oracle.adfinternal.view.faces.application.ViewHandlerImpl _checkTimestamp
    INFO: ADF Faces is running with time-stamp checking enabled. This should not be used in a production environment. See the oracle.adf.view.faces.CHECK_FILE_MODIFICATION property in WEB-INF/web.xml
    09:52:00 DEBUG (oracle.jheadstart.controller.jsf.lifecycle.JhsPageLifecycle) -Executing prepareRender, page=/security/pages/Login.jspx, pagedef=null
    09:52:00 DEBUG (oracle.jheadstart.controller.jsf.lifecycle.JhsPageLifecycle) -Locale fr set on current JSF page
    23 oct. 2007 09:52:01 oracle.adfinternal.view.faces.renderkit.core.CoreAdfRenderingContext _initializeSkin
    ATTENTION: There is no SkinFactory
    23 oct. 2007 09:52:01 oracle.adfinternal.view.faces.renderkit.core.StyleContextImpl _getDefaultStyleProvider
    GRAVE: Could not get stylesheet cache
    java.lang.IllegalArgumentException: No Skin specified.
         at oracle.adfinternal.view.faces.skin.SkinStyleProvider.getSkinStyleProvider(SkinStyleProvider.java:51)
         at oracle.adfinternal.view.faces.renderkit.core.StyleContextImpl._getDefaultStyleProvider(StyleContextImpl.java:89)
         at oracle.adfinternal.view.faces.renderkit.core.StyleContextImpl.<init>(StyleContextImpl.java:31)
         at oracle.adfinternal.view.faces.renderkit.core.CoreAdfRenderingContext.getStyleContext(CoreAdfRenderingContext.java:176)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.StyleSheetRenderer.encodeAll(StyleSheetRenderer.java:74)
         at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.delegateRenderer(CoreRenderer.java:281)
         at oracle.adfinternal.view.faces.renderkit.core.xhtml.HeadRenderer.encodeBegin(HeadRenderer.java:70)
         at oracle.adfinternal.view.faces.renderkit.core.CoreRenderer.encodeBegin(CoreRenderer.java:149)
         at oracle.adf.view.faces.component.UIXComponentBase.encodeBegin(UIXComponentBase.java:593)
         at javax.faces.webapp.UIComponentTag.encodeBegin(UIComponentTag.java:613)
         at oracle.adf.view.faces.webapp.UIXComponentTag.encodeBegin(UIXComponentTag.java:108)
         at javax.faces.webapp.UIComponentTag.doStartTag(UIComponentTag.java:500)
         at oracle.adf.view.faces.webapp.UIXComponentTag.doStartTag(UIXComponentTag.java:85)
         at _security._pages._Login_jspx._jspService(_Login_jspx.java:62)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:59)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:462)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:594)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:518)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:713)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:370)
         at com.evermind.server.http.ServletRequestDispatcher.unprivileged_forward(ServletRequestDispatcher.java:259)
         at com.evermind.server.http.ServletRequestDispatcher.access$100(ServletRequestDispatcher.java:51)
         at com.evermind.server.http.ServletRequestDispatcher$2.oc4jRun(ServletRequestDispatcher.java:193)
         at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:283)
    ...The workaround is to always call the Login.jspx page. But that's a major issue since I can't count on container redirection.
    Do you know any other combination that would allow me to get rid of the warning message and use security as it should be ?
    Thanks,
    Seb.

    Ok, I found how to correctly configure the filter mapping section.
    Here is what works for me :
        <filter-mapping>
            <filter-name>adfFaces</filter-name>
            <servlet-name>Faces Servlet</servlet-name>
            <dispatcher>FORWARD</dispatcher>
            <dispatcher>REQUEST</dispatcher>
        </filter-mapping>
        <filter-mapping>
            <filter-name>adfBindings</filter-name>
            <url-pattern>*.jsp</url-pattern>
        </filter-mapping>
        <filter-mapping>
            <filter-name>adfBindings</filter-name>
            <url-pattern>*.jspx</url-pattern>
        </filter-mapping>  Seb.

  • WARNING AdfFacesContext had not been properly released on earlier request.

    To remove the warning
    WARNING The AdfFacesFilter has not been installed. ADF Faces requires this filter for proper execut
    I've modified my web.xml like this:
    <filter-mapping>
    <filter-name>adfFaces</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
    <!--<url-pattern>*.jsp</url-pattern>-->
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfFaces</filter-name>
    <servlet-name>Faces Servlet</servlet-name>
    <!--<url-pattern>*.jspx</url-pattern>-->
    </filter-mapping>
    now, I get this new warning:
    WARNING AdfFacesContext had not been properly released on earlier request.
    any idea?

    I can't post my file but I will try to summarize things I changed.
    1) I use Spring which I moved to the top in a <listener> tag. I originally had my <filter> tag first.
    2) I moved my <context-param> tags after my <listener> tag.
    3) I listed my <filter> tags next. See below for filter tag listing.
    4) The ending order: <servlet>, <servlet-mapping>, <welcome-file-list>, <mime-mapping>.
    Here are my filter elements (I don't use the ADFBindingFilter):
    <filter>
    <filter-name>UserContextFilter</filter-name>
    <filter-class>servlet.filter.UserContextFilter</filter-class>
    <init-param>
    <param-name>ErroPage</param-name>
    <param-value>start.jsp</param-name>
    </init-param>
    </filter>
    <filter>
    <filter-name>adfFaces</filter-name>
    <filter-class>oracle.adf.view.faces.webapp.AdfFacesFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>UserContextFilter</filter-name>
    <servlet-name>faces</servlet-name>
    </filter-mapping>
    <filter-mapping>
    <filter-name>UserContextFilter</filter-name>
    <servlet-name>*.jsp</servlet-name>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfFaces</filter-name>
    <servlet-name>faces</servlet-name>
    </filter-mapping>
    <filter-mapping>
    <filter-name>adfFaces</filter-name>
    <servlet-name>start.jsp</servlet-name>
    </filter-mapping>
    <servlet>
    <servlet-name>faces</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>faces</servlet-name>
    <url-pattern>*.faces</url-pattern>
    </servlet-mapping>
    I hope this helps.

  • AdfFacesContext had not been properly released on earlier request.

    Hi, I am getting this warning message at runtime. is there anybody came across this before? Thank you for your advice!
    PS: I am using JDeveloper 10.1.3.2.0, i got this warning while I am using <af:inputFile>
    May 6, 2008 11:41:45 AM oracle.adf.share.config.ADFConfigFactory findOrCreateADFConfig
    INFO: oracle.adf.share.config.ADFConfigFactory No META-INF/adf-config.xml found
    May 6, 2008 11:41:47 AM oracle.adfinternal.view.faces.webapp.AdfFacesFilterHelperImpl startFilter
    WARNING: AdfFacesContext had not been properly released on earlier request.

    Hi,
    nothing you can do because the AdfFacesContext is not handled by you. You can however start posting 10.1.3 questions to the correct forum: JDeveloper and ADF
    Frank

  • Why "RequestContext had not been properly released on earlier request"?

    Hi all,
    When looking at the server logs, it shows this line: <Warning> <org.apache.myfaces.trinidadinternal.config.GlobalConfiguratorImpl> <BEA-000000> <RequestContext had not been properly released on earlier request.>. What could be the cause for this warning and what's the implication when this occurs?
    I found in one post (http://comments.gmane.org/gmane.comp.jakarta.myfaces.devel/35325) that it mentioned possible reasons: Is the filter exectured twice ? Or do you have multiple Trinidad JARs (two -impl or so) on the classpath ?
    Which filter is it talking about in web.xml?
    Thanks,
    Shawn
    Edited by: shawn_abc on Jul 10, 2012 8:11 AM

    Shawn,
    wihtout knowing your exact jdev version nobody can tell. Read your post and you see that we can't answer any of your quetsions whithout knowing much more about your app and your environment.
    do you have the exact same error as in the link you provided? I don't think so.
    Timo

  • Provider client software has not been properly installed on this server

    Hi All,
    I am in a process of setting up the DR for the SAP R/3 4.7 system, which is on Windows and SQL 2000 SP3.
    While installing the SPA on the DR Server, i am facing the below attached problem in the DB Instance installation. the CI Installation goes through fine. but it stop in the Database Load section. with the screen showing Running 3 and waiting 0.
    Details:
    E:\usr\sap\GRP\SYS\exe\run/R3load.exe: START OF LOG: 20080220124003
    E:\usr\sap\GRP\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/620/src/R3ld/R3load/R3ldmain.c#6 $ SAP
    E:\usr\sap\GRP\SYS\exe\run/R3load.exe: version R6.20/V1.2
    E:\usr\sap\GRP\SYS\exe\run/R3load.exe -ctf I I:\EXPORT6/DATA/SAPAPPL0.STR I:\EXPORT6/DB/DDLMSS.TPL C:\SAPinst MSSQL SAPINST/SAPAPPL0.TSK MSS -l C:\SAPinst MSSQL SAPINST/SAPAPPL0.log
    E:\usr\sap\GRP\SYS\exe\run/R3load.exe: job completed
    E:\usr\sap\GRP\SYS\exe\run/R3load.exe: END OF LOG: 20080220124003
    E:\usr\sap\GRP\SYS\exe\run/R3load.exe: START OF LOG: 20080220124039
    E:\usr\sap\GRP\SYS\exe\run/R3load.exe: sccsid @(#) $Id: //bas/620/src/R3ld/R3load/R3ldmain.c#6 $ SAP
    E:\usr\sap\GRP\SYS\exe\run/R3load.exe: version R6.20/V1.2
    E:\usr\sap\GRP\SYS\exe\run/R3load.exe -dbcodepage 1100 -i C:\SAPinst MSSQL SAPINST/SAPAPPL0.cmd -l C:\SAPinst MSSQL SAPINST/SAPAPPL0.log -loadprocedure fast
    DbSl Trace: OpenOledbConnection : CoCreateInstance failed. rc: REGDB_E_CLASSNOTREG.
    DbSl Trace: OpenOledbConnection : Provider client software has not been properly installed on this server.
    DbSl Trace: OpenOledbConnection : CoCreateInstance failed. rc: REGDB_E_CLASSNOTREG.
    DbSl Trace: OpenOledbConnection : Provider client software has not been properly installed on this server.
    DbSl Trace: OpenOledbConnection : CoCreateInstance failed. rc: REGDB_E_CLASSNOTREG.
    DbSl Trace: OpenOledbConnection : Provider client software has not been properly installed on this server.
    DbSl Trace: failed to establish conn. 0
    (DB) ERROR: db_connect rc = 256
    DbSl Trace: OpenOledbConnection : CoCreateInstance failed. rc: REGDB_E_CLASSNOTREG.
    DbSl Trace: OpenOledbConnection : Provider client software has not been properly installed on this server.
    DbSl Trace: OpenOledbConnection : CoCreateInstance failed. rc: REGDB_E_CLASSNOTREG.
    DbSl Trace: OpenOledbConnection : Provider client software has not been properly installed on this server.
    DbSl Trace: OpenOledbConnection : CoCreateInstance failed. rc: REGDB_E_CLASSNOTREG.
    DbSl Trace: OpenOledbConnection : Provider client software has not been properly installed on this server.
    DbSl Trace: failed to establish conn. 0
    (DB) ERROR: DbSlErrorMsg rc = 29
    E:\usr\sap\GRP\SYS\exe\run/R3load.exe: job finished with 1 error(s)
    E:\usr\sap\GRP\SYS\exe\run/R3load.exe: END OF LOG: 20080220124040
    The same error come in a lot of other scripts of DB Load.
    I have installed the SQL Server 2000 SP3 with Hot fix 929.
    Could some one help me to get the same fixed
    Thanks a lot in advance.
    Best Regards
    Mahendra K
    +91 9867183370

    I have this problem too on an ASUS windows 8.1 PC.
    Since installing itunes 11.1.5
    Problem seems to be that the AMDS Apple Mobile Device Support does not install.
    I also tried all options on this forum....
    Who can help???
    Thnx
    Oscar

  • HT5622 I am the owner of my iPhone 4 and it had not been updating and allowing me to download apps. So I decided to do factory setting, before doing so I had backed up my phone on my computer then I had erased everything from my iphone. But now I want to

    I am the owner of my iPhone 4 and it had not been updating and allowing me to download apps. So I decided to do factory setting, before doing so I had backed up my phone on my computer then I had erased everything from my iphone. But now I want to start everything from the beginning, and on my setting my Apple ID is present however when I put my password in it doesn't let me log in. The message that I receive says that I would have to remove my Apple ID  as it will not let me log in with that I'd even though I am the original owner, I have tried  everything on find my iPhone as well, even there my Apple ID not showing on the devise.
    If anyone has had a similar experience could you please advise me on what to do,
    Thanks

    You must have the credentials that were used to turn on Find my iPhone on the device. Without them, you can not get past the activation lock.

  • My iTunes card won't redeem and when I try to it comes up with this "The gift certificate or prepaid card code you entered has not been properly activated. Please contact iTunes Store costumer support for assistance" can anyone help me?

    My iTunes card won't redeem and when I try to it comes up with this "The gift certificate or prepaid card code you entered has not been properly activated. Please contact iTunes Store costumer support for assistance" can anyone help me?

    Is the store that you bought the card from nearby so that you can try going back and asking if they can activate the card properly ? If it's not, or if they can't/won't activate, then you will need to do as the message says and contact iTunes Support (these are user-to-user forums) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then iTunes Cards And Codes (you will probably need to give them images of the front and back of the card, and possibly its receipt)

  • My digitizer is not responding however i have loads of imessages. I tried to go onto my ipod touch to look at them but when i updated to ios7 it had not been signed in to imessage. Is there a way i can get imessages sent to iphone to load on my ipod?

    My digitizer is not responding however i have loads of iMessages which i can see because the lcd screen is visible but touchscreen is brokenI tried to go onto my ipod touch to look at them but when i looked it had not been signed in to iMessage which was after i received the iMessage on my iPhone . Is there a way i can get imessages sent to iPhone which i currently cannot access due to the touchscreen being unresponsive  to load on my iPod iMessage which is connected to my phone number as well as my email?

    maggielou wrote:
    I thought that I had backed up my pictures to icloud, but when I looked online at icloud, I don't see pictures listed.  However, a few of the recent pictures have shown up on my phone.
    IHow could I get these from my MacBook to my phone?
    Thanks again.
    When you log into you icloud account on your computer you are viewing data that you sync to icloud not the backups.  You can't view the backups.
    Look at the two links I provided.
    You still didn't answer any of my two questions I asked.

  • I am trying to activate new itunes card. I am getting error message: The code you have entered has not been properly activated. Does this mean the store did something wrong or me?

    I am trying to activate new itunes card. I am getting error message: The code you have entered has not been properly activated. Does this mean the store did something wrong or me?

    Yes, the store didn't properly activate the card. If the store is nearly then you could try going back and asking them to do so, if it isn't (or if they can't/won't help) then try contacting iTunes Support (you will probably need to give them images of the front and back of the card, and possibly its receipt) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then iTunes Cards And Codes

  • I got an iTunes card as a gift and when I enter the code to redeem it I get a message that says "the code you entered has not been properly activated. Please contact iTunes..." Please advice.

    I got an iTunes card as a gift and when I enter the code to redeem it I get a message that says "the code you entered has not been properly activated. Please contact iTunes..." Please advice.

    what did itunes say when you contacted them?

  • I bought a redeem card and it wont work is says that the gift certificate or prepaid card you entered has not been properly activated

    I bought a redeem card and it wont work is says that the gift certificate or prepaid card you entered has not been properly activated

    You will need to contact the iTunes Store.

  • TS1292 itunes says my itunes card "has not been properly activated" when i enter the code.  this is not the "invalid" message related to entering the code improperly.

    itunes says my itunes card "has not been properly activated" when i enter the code.  this is not the "invalid" message related to entering the code improperly.

    Are you able to go back to the store that you bought it from and ask them to activate it properly ? If not then you will need to try contacting iTunes Support (you will probably need to give them images of the front and back of the card, and possibly its receipt) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then iTunes Cards And Codes

  • How can I fix the text in my photo book that reads"your default text had not been edited. Printed books will not include this text?"

    How can I fix the text in my photo book that reads"your default text had not been edited. Printed books will not include this text?"

    You will get this warning, if your book includes textboxes that still include the default text, like "Insert Title". You need to find these boxes and add your own text.  Look for boxes like this:
    Make a PDF-preview of your book and look, where the preview differs from what you are seeing in iPhoto.
    iPhoto, Aperture: Previewing an order in iPhoto or Aperture

  • Error message indicating that iTunes card has not been properly activated. Please help.

    I tried to redeem an iTunes card but an error message pops up indicating that it has not been properly activated.
    What should I do?
    Please help.
    Thanks in advance

    What you normally should do when you have an iTunes card that has not been activated is go back the retailer from whom you purchased the card and discuss the problem with them. They should either correctly activate the card or give you a new one. If they refuse to help, as some retailers do, or you don't know or can't get to the retailer, go here:
    iTunes Support
    and follow the instructions to report the issue to the iTunes Store. They will ask for a scan of the front and back sides of the card as well as a scan of the receipt
    Regards.

Maybe you are looking for

  • How to I delete all the contacts on my iphone?

    I sync my iphone with my computer at work and at home. I now have over a thousand contacts and many are duplicates (like the same name 10 times)and I would like to erase all the contacts in one action and resync with only my home computer. My "person

  • Account Suspended even though nothing is due????

    So much fun Just got back into town a few days ago, ran up to verizion to pay my bill since i was out of state, paid it in full, was told in an hour or so phones will be back online, 12 hours later still nothing. Am i missing a step here somewhere?

  • ACARD AEC-6860M PCI RAID ATA 66 card not showing connected hard drives

    I just installed an ACARD AEC-6860M PCI card in my G4 (Quicksilver 2002) and am having some difficulty getting Disk Utility to recognize the drives. I know other people in these forums have used this particular card before (Related thread: http://dis

  • Re: Satellite A660-12P - can't find the right display driver for Win XP

    Hey everyone, i need some help with this one: I just made a dual boot Win7 (x64)/XP (x86) on my laptop, but i can't find the right display drivers for the video controller VGA compatible on XP. Does someone know where i can find them? Many thanks,

  • Data Controls

    Hello, is it possible to create mutiple datacontols in adf application ? OR is it always only one. thx