I know it is a silly question But unable to get HelloWorldServlet to work!

          Hello Everybody,
          I've downloaded the weblogic server today and thought of testing it with HelloWorld servlet. I made directory structure and copied under mydomain/applications/
          So finally my directory structure is mydomain/applications/myWebAPP/WEB-INF/classes/examples/servlets/HelloWorldServlet.class.
          Just onle one Hello World servlet and web.xml file which has the following entries.
          <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
          <web-app>
          <display-name>Reliable Web Application</display-name>
          <servlet>
          <servlet-name>HelloWorldServlet</servlet-name>
          <servlet-class>examples.servlets.HelloWorldServlet</servlet- class>
          </servlet>
          <servlet-mapping>
          <servlet-name>HelloWorldServlet</servlet-name>
          <url-pattern>/HelloWorldServlet/*</url-pattern>
          </servlet-mapping>
          <mime-mapping>
          <extension>html</extension>
          <mime-type>text/html</mime-type>
          </mime-mapping>
          <mime-mapping>
          <extension>htm</extension>
          <mime-type>text/html</mime-type>
          </mime-mapping>
          </web-app>
          I have coded that HelloWorldServlet in my Jbuilder and copied it to that location. Then I started my default admin server, console, and opened a webpage and gave URL like this.....
          http://abcom1:7001/Reliable/HelloWorldServlet.
          Then it I saw the following errors on my default admin server window.
          <Nov 28, 2000 5:48:55 PM CST> <Error> <HTTP> <[WebAppServletContext(3232789,Reli
          able)] Error loading servlet: 'HelloWorldServlet'
          java.lang.NoClassDefFoundError: examples/servlets/HelloWorldServlet (wrong name:
          HelloWorldServlet)
          at java.lang.ClassLoader.defineClass0(Native Method)
          at java.lang.ClassLoader.defineClass(ClassLoader.java:486)
          at java.lang.ClassLoader.defineClass(ClassLoader.java:426)
          at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(Generic
          ClassLoader.java:278)
          at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClass
          Loader.java:146)
          at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAw
          areClassLoader.java:41)
          at java.lang.ClassLoader.loadClass(ClassLoader.java:297)
          at java.lang.ClassLoader.loadClass(ClassLoader.java:253)
          at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubI
          mpl.java:530)
          at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.
          java:293)
          at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
          pl.java:200)
          at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
          rvletContext.java:1107)
          at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
          pl.java:1482)
          at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
          at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
          >
          <Nov 28, 2000 5:48:55 PM CST> <Error> <HTTP> <[WebAppServletContext(3232789,Reli
          able)] Servlet failed with ServletException
          javax.servlet.ServletException: Servlet class: 'examples.servlets.HelloWorldServ
          let' could not be resolved - a class upon which this class depends wasn't found
          at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubI
          mpl.java:544)
          at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.
          java:293)
          at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
          pl.java:200)
          at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
          rvletContext.java:1107)
          at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
          pl.java:1482)
          at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
          at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
          >
          I don't why why it is unable to find my servlet. Any help in resolving this error is highly appreciated.
          Also if want to put package structure in place like myWebApp/WEB-INF/classes/com/company/servlets/*.class
          what changes I need to do for my web.xml file.
          Thanks so much,
          Sri.
          

          Thanks for helping me out Gary. It worked.
          Sri.
          Gary Keim <[email protected]> wrote:
          >
          >
          >When you coded it up in JBuilder, did you declare it to be in package
          >examples.servlets? The exception is indicating that the actual full
          >package name of your servlet is simply "HelloWorldServlet.class" as
          >opposed to the expected "examples.servlets.HelloWorldServlet.class."
          >
          >You should have the following line at the very top of
          >HelloWorldServlet.java:
          >
          >package examples.servlets;
          >
          >You can leave it in the "default package" but then you'll need to change
          >your directory structure and servlet declaration.
          >
          >-Gary
          >
          >sri wrote:
          >
          >> Hello Everybody,
          >> I've downloaded the weblogic server today and thought of testing it with HelloWorld servlet. I made directory structure and copied under mydomain/applications/
          >> So finally my directory structure is mydomain/applications/myWebAPP/WEB-INF/classes/examples/servlets/HelloWorldServlet.class.
          >> Just onle one Hello World servlet and web.xml file which has the following entries.
          >>
          >> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
          >> <web-app>
          >> <display-name>Reliable Web Application</display-name>
          >> <servlet>
          >> <servlet-name>HelloWorldServlet</servlet-name>
          >> <servlet-class>examples.servlets.HelloWorldServlet</servlet- class>
          >> </servlet>
          >> <servlet-mapping>
          >> <servlet-name>HelloWorldServlet</servlet-name>
          >> <url-pattern>/HelloWorldServlet/*</url-pattern>
          >> </servlet-mapping>
          >> <mime-mapping>
          >> <extension>html</extension>
          >> <mime-type>text/html</mime-type>
          >> </mime-mapping>
          >> <mime-mapping>
          >> <extension>htm</extension>
          >> <mime-type>text/html</mime-type>
          >> </mime-mapping>
          >> </web-app>
          >>
          >> I have coded that HelloWorldServlet in my Jbuilder and copied it to that location. Then I started my default admin server, console, and opened a webpage and gave URL like this.....
          >> http://abcom1:7001/Reliable/HelloWorldServlet.
          >> Then it I saw the following errors on my default admin server window.
          >>
          >> <Nov 28, 2000 5:48:55 PM CST> <Error> <HTTP> <[WebAppServletContext(3232789,Reli
          >> able)] Error loading servlet: 'HelloWorldServlet'
          >> java.lang.NoClassDefFoundError: examples/servlets/HelloWorldServlet (wrong name:
          >> HelloWorldServlet)
          >> at java.lang.ClassLoader.defineClass0(Native Method)
          >> at java.lang.ClassLoader.defineClass(ClassLoader.java:486)
          >> at java.lang.ClassLoader.defineClass(ClassLoader.java:426)
          >> at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(Generic
          >> ClassLoader.java:278)
          >> at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClass
          >> Loader.java:146)
          >> at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAw
          >> areClassLoader.java:41)
          >> at java.lang.ClassLoader.loadClass(ClassLoader.java:297)
          >> at java.lang.ClassLoader.loadClass(ClassLoader.java:253)
          >> at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubI
          >> mpl.java:530)
          >> at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.
          >> java:293)
          >> at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
          >> pl.java:200)
          >> at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
          >> rvletContext.java:1107)
          >> at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
          >> pl.java:1482)
          >> at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
          >> at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
          >>
          >> <Nov 28, 2000 5:48:55 PM CST> <Error> <HTTP> <[WebAppServletContext(3232789,Reli
          >> able)] Servlet failed with ServletException
          >> javax.servlet.ServletException: Servlet class: 'examples.servlets.HelloWorldServ
          >> let' could not be resolved - a class upon which this class depends wasn't found
          >> at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubI
          >> mpl.java:544)
          >> at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.
          >> java:293)
          >> at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
          >> pl.java:200)
          >> at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
          >> rvletContext.java:1107)
          >> at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
          >> pl.java:1482)
          >> at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
          >> at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
          >>
          >>
          >> I don't why why it is unable to find my servlet. Any help in resolving this error is highly appreciated.
          >> Also if want to put package structure in place like myWebApp/WEB-INF/classes/com/company/servlets/*.class
          >> what changes I need to do for my web.xml file.
          >>
          >> Thanks so much,
          >> Sri.
          >>
          >>
          >>
          >>
          >>
          >>
          >>
          >
          >
          >
          ><html><head></head><body>When you coded it up in JBuilder, did you declare
          >it to be in package examples.servlets?  The exception is indicating that
          >the actual full package name of your servlet is simply "HelloWorldServlet.class"
          >as opposed to the expected "examples.servlets.HelloWorldServlet.class."<br>
          ><br>
          >You should have the following line at the very top of HelloWorldServlet.java:<br>
          ><br>
          >package examples.servlets;<br>
          ><br>
          >You can leave it in the "default package" but then you'll need to change your directory structure and servlet declaration.<br>
          ><br>
          >-Gary<br>
          ><br>
          >sri wrote:<br>
          ><blockquote type="cite" cite="mid:[email protected]"><pre wrap="">Hello Everybody,<br>I've downloaded the weblogic server today and thought of testing it with HelloWorld servlet. I made directory structure and copied under mydomain/applications/<br>So finally my directory structure is mydomain/applications/myWebAPP/WEB-INF/classes/examples/servlets/HelloWorldServlet.class. <br>Just onle one Hello World servlet and web.xml file which has the following entries.<br><br><!DOCTYPE web-app
          >PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN" <a class="moz-txt-link-rfc2396E" href="http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">"http://java.sun.com/j2ee/dtds/web-app_2_2.dtd"</a>><br><web-app><br> <display-name>Reliable Web Application</display-name><br> <servlet><br> <servlet-name>HelloWorldServlet</servlet-name><br> <servlet-class>examples.servlets.HelloWorldServlet</servlet- class><br> </servlet><br> <servlet-mapping><br>
          > <servlet-name>HelloWorldServlet</servlet-name><br> <url-pattern>/HelloWorldServlet/*</url-pattern><br> </servlet-mapping><br> <mime-mapping><br> <extension>html</extension><br> <mime-type>text/html</mime-type><br> </mime-mapping><br> <mime-mapping><br> <extension>htm</extension><br> <mime-type>text/html</mime-type><br> </mime-mapping><br></web-app><br><br>I have coded
          >that HelloWorldServlet in my Jbuilder and copied it to that location. Then I started my default admin server, console, and opened a webpage and gave URL like this.....<br><a class="moz-txt-link-freetext" href="http://abcom1:7001/Reliable/HelloWorldServlet">http://abcom1:7001/Reliable/HelloWorldServlet</a>.<br>Then it I saw the following errors on my default admin server window.<br><br><Nov 28, 2000 5:48:55 PM CST> <Error> <HTTP> <[WebAppServletContext(3232789,Reli<br>able)]
          >Error loading servlet: 'HelloWorldServlet'<br>java.lang.NoClassDefFoundError: examples/servlets/HelloWorldServlet (wrong name:<br> HelloWorldServlet)<br> at java.lang.ClassLoader.defineClass0(Native Method)<br> at java.lang.ClassLoader.defineClass(ClassLoader.java:486)<br> at java.lang.ClassLoader.defineClass(ClassLoader.java:426)<br> at weblogic.utils.classloaders.GenericClassLoader.findLocalClass(Generic<br>ClassLoader.java:278)<br> at weblogic.utils.classloaders.GenericClassLoader.findClass(GenericClass<br>Loader.java:146)<br>
          > at weblogic.utils.classloaders.ChangeAwareClassLoader.findClass(ChangeAw<br>areClassLoader.java:41)<br> at java.lang.ClassLoader.loadClass(ClassLoader.java:297)<br> at java.lang.ClassLoader.loadClass(ClassLoader.java:253)<br> at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubI<br>mpl.java:530)<br> at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.<br>java:293)<br> at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm<br>pl.java:200)<br>
          > at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe<br>rvletContext.java:1107)<br> at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm<br>pl.java:1482)<br> at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)<br> at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)<br></pre>
          > <pre wrap=""><!----><Nov 28, 2000 5:48:55 PM CST> <Error> <HTTP> <[WebAppServletContext(3232789,Reli<br>able)] Servlet failed with ServletException<br>javax.servlet.ServletException: Servlet class: 'examples.servlets.HelloWorldServ<br>let' could not be resolved - a class upon which this class depends wasn't found<br> at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubI<br>mpl.java:544)<br> at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.<br>java:293)<br>
          > at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm<br>pl.java:200)<br> at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe<br>rvletContext.java:1107)<br> at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm<br>pl.java:1482)<br> at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)<br> at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)<br></pre>
          > <pre wrap=""><!----><br>I don't why why it is unable to find my servlet. Any help in resolving this error is highly appreciated. <br>Also if want to put package structure in place like myWebApp/WEB-INF/classes/com/company/servlets/*.class<br>what changes I need to do for my web.xml file. <br><br>Thanks so much,<br>Sri.<br><br><br><br><br><br><br><br></pre>
          > </blockquote>
          > <br>
          ></body></html>
          >
          

Similar Messages

  • Presario v3702TU trying to setup it up with winxp 64 bit, but unable to get audio to work

    Hi,
    I just installed a old laptop of mine with win xp 64 bit + sp2.
    I am able to get most of the drivers for xp 64 bit, but audio is troubling me.
    I am unable to get exact driver for the below Device ID
    HDAUDIO\FUNC_01&VEN_14F1&DEV_5051&SUBSYS_103C30CD&REV_1000
    which should be connexant smart audio 221.
    I ahve installed the UAA driver, but not able to get exact dirver for xp 64 bit. All the drivers availble on net seem to be off vista/xp -32 bit.
    Please help

    It is really hard to find 64bit driver
    There is one has similar issue.
    http://h30434.www3.hp.com/t5/Desktop-PC-Sound-and-Audio-Reply/Vista-to-XP-downgrade-No-Sound/td-p/26... 
    You can get the driver from the page 2, or get it the skydrive link below:
    http://cid-3f10d7c1771f7efe.office.live.com/self.aspx/Public/Conexant%20SmartAudio%5E_221%5E_XP.zip
    Please note, MS UAA driver must be installed before audio driver.  Try to use the MS UAA driver from the page 1.  If has problem then use the link below:
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?cc=us&lc=en&dlc=en&tmp_geoLoc=true&software...
    Sorry, i don't have unit to do the test for you. Please let me know what the resoult is.
    Cheers
    Although I am an HP Employee, I am speaking for myself and not for HP.
    Make it easier for other people to find solutions, by marking my answer “Accept as Solution” if it solves your problem.

  • I like to use the HP Smart Printing program but unable to get it to work on your desktop

    HP Smart printing is a program that I can select certain items from the internet.or computer and print out only items I want.
    I find when I was using MSN.ca it I had no trouble and it worked great,now I switched to Mozilla Firefox I cant' even get it to appear on your toolbar,and unable to open the program to use it..please advise asap as I need this program and would hate to go back to MSNI

    HP Smart Web Printing doesn't support Firefox 3,6.x versions. Contact HP and request that they start supporting Firefox again, as they did with previous versions.

  • This may be a silly question but how do I get my music from my old ipod to the Ipod touch. when I go to move my music a error pops up saying your music wasn't copied to this ipod because it can not be played on this ipod.  what can I do??

    This may be a silly question but how do I get my music from my old ipod to the Ipod touch. when I go to move my music a error pops up saying your music wasn't copied to this ipod because it can not be played on this ipod.  what can I do??

    You will need to do it using a third-party utility such as Phone to PC. Also, see:
    How to dowload purchased music
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • This is a silly question but how do you close the angle editor in the timeline and go back to my master multicam clip for editing? I'm having a brain **** right now...

    This is a silly question but how do you close the angle editor in the timeline and go back to my master multicam clip for editing? I'm having a brain **** right now...

    Never mind...found the cure  Command-{  ...thanks to a  TWolfsky thread...

  • I am trying to create mobile pages using the steps file new new document page from sample mobile starters jquery mobile (cdn).  When "page from sample" is selected, the subsequent options are not available.  This seems like a silly question, but how do I

    I am trying to create mobile pages using the steps file>new>new document>page from sample>mobile starters>jquery mobile (cdn).  When "page from sample" is selected, the subsequent options are not available.  This seems like a silly question, but how do I acquire these options?

    You can get the latest jQuery Mobile Themes directly from jQuery Mobile's web site.
    https://demos.jquerymobile.com/1.1.0/docs/api/themes.html
    Or roll your own with ThemeRoller
    http://themeroller.jquerymobile.com/
    Nancy O.

  • I want to send a normal pages document as a attachment to someone (non Mac PC). How do I convert the file so they can open it? Silly question but I'm new to Mac.

    I want to send a normal pages document as a attachment to someone (non Mac PC). How do I convert the file so they can open it? Silly question but I'm new to Mac.

    A Pages (.pages) document is only viewable with Apple's Pages application on the Mac, or via Pages for iCloud beta. You should export it to either MS Word (.doc/x) or PDF. The Share menu will let you do this directly into a Mail attachment.

  • This may seem like a silly question but I need it answered plz

    This may seem like a silly question but I am pretty new to
    dreamweaver but I am learning it. The question I have is this. When
    your typing a paragraph and hit enter to make the next line of text
    it goes down 2 spaces. Sometimes I don't want those two spaces. I
    want no space between the two sentences. How do you put one
    sentence below another with no spaces? Thanks in advance. I seems
    to have figured out all the other basic stuff except for this one
    thing lol. Thanks for the help in advance.

    >>>This may seem like a silly question
    There are no silly questions, only stupid answers.
    Alan sorted you, don't be afraid of asking questions.
    Kind Regards
    Paul Dell
    Photography and Web
    www.dellimages.com
    Blog
    www.paul-dell.com
    "ancientone567" <[email protected]> wrote in
    message
    news:fq4is3$mln$[email protected]..
    > This may seem like a silly question but I am pretty new
    to dreamweaver but
    > I am
    > learning it. The question I have is this. When your
    typing a paragraph and
    > hit
    > enter to make the next line of text it goes down 2
    spaces. Sometimes I
    > don't
    > want those two spaces. I want no space between the two
    sentences. How do
    > you
    > put one sentence below another with no spaces? Thanks in
    advance. I seems
    > to
    > have figured out all the other basic stuff except for
    this one thing lol.
    > Thanks for the help in advance.
    >

  • I know this is a stupid question but can u put movies on thi 5G ipod?

    i know this is a stupid question but can u put movies on thi 5G ipod? like longest yard, anchor man, ect.
    Nano 4GB black,Moto RAZR V3 black, PSP, all kinds of cases for nano,radio/remote   Windows XP   <img src="http://i36.photobucket.com/albums/e13/superman5656/s.gif"align="right"</span>

    i dont have one yet i was just wondering i was thinking about it thanks
    Nano 4GB black,Moto RAZR V3 black, PSP, all kinds of cases for nano,radio/remote   Windows XP   <img src="http://i36.photobucket.com/albums/e13/superman5656/s.gif"align="right"</span>

  • This is a silly question, but I cannot fix it! The icons that appear on my photos after I edit them, have gone away. The only way I can see them is in the Grid view. How can I get the icons back on the thumbnail photos of the full gallery that is loaded?

    This is a silly question, but I cannot fix it! The icons that appear on my photos after I edit them, have gone away. The only way I can see them is in the Grid view.
    How can I get the icons back on the thumbnail photos of the full gallery that is loaded? TIA =)

    You have likely dragged the size of the filmstrip thumbnails to a small size that prevents Lightroom from displaying the badges. Using your mouse, mouse over the top line of the filmstrip and then drag it supports to increase the size.

  • This may seem a silly question, but how can I create a new mailbox on my iPad?

    This may seem a silly question, but how can I create a new mailbox on my iPad?

    A new mailbox/folder - you can't, not yet. If you're using an IMAP mail account, you can create a mailbox on the server (either through webmail or desktop mail) and it'll appear on the iPad.
    We've been told the upcoming iOS5 will allow you to do so (I assume, provided you have IMAP).
    Matt

  • Script Language Translation - Very Common Question, but unable to resolve !

    Hi Gurus,
    I know this is very common question, but I am stuck, unable to get this one resolved.
    Need to translate sap script "TEXT SYMBOLS" from "English" to "French".
    Have maintained language translation text symbol values in table TTDTG.
    But when i login through French language, these are still getting printed in English !!
    Any Pointers to resolve this will be of great help.
    Many Thanks,
    Madan

    hi
    1) Copy the Script into FR language and then change the Corresponding ENGLISH text to FRENCH text.
    2) Pass ur logon langauge   in the OPEN_FORM FM  Import parameters
                                                                                    LANGUAGE = sy-langu.
    so that whatever is ur logon langauge it corresponding Form will be called.
    surya

  • HT201335 I have a 2012 MacBook Pro and a brand new Apple TV, therefore I know I have the software needed, but I cannot get my AirPlay Mirroring icon to pop-up. What do I do?

    I have a 2012 MacBook Pro and a brand new Apple TV, therefore I know I have the software needed, but I cannot get my AirPlay Mirroring icon to pop-up. What do I do?

    Is your Mac up to date (10.8.2) ?
    Is your Apple TV up to date (5.2) ?
    http://support.apple.com/kb/HT5404
    http://support.apple.com/kb/TS4215

  • HT1918 don't know one of my security questions, how do i get the info?

    I don't know one of my security questions, how do i get the info?

    Frequently asked questions about Apple ID - http://support.apple.com/kb/HE37 --> Can I change the answers to the security questions for my Apple ID?  --> Yes. You can change the answers to the security questions provided when you originally signed up for your Apple ID. Go to My Apple ID (http://appleid.apple.com/) and click Manage your account.
    Forgotten security questions - https://discussions.apple.com/message/18402551  and https://discussions.apple.com/message/18625296
    More involved forgotten question issues - https://discussions.apple.com/thread/3961813
    Kappy 09/2012 post about security questions - https://discussions.apple.com/message/19569468
    John Galt's tips (09&11/2012) - https://discussions.apple.com/message/19809294 and https://discussions.apple.com/message/20229239
    If none of the above work, contact iTunes Support at http://www.apple.com/support/itunes/contact/ and follow the instructions to report the issue to the iTunes Store.

  • HT4437 The airplay on my i pad works with music and pictures but I cannot get it to work with safari and mirroring.  Does anyone know what I could be doing wrong? Thanks!!

    The airplay on my i pad works with music and pictures but I cannot get it to work with safari and mirroring.  Can someone help me to get things working?  Thanks!

    As an IT person, I can put my hands up to the same difficulty.  Then on double clicking on Home button, find AirTV symbol amongst Music control
    Solved my problem having spent hours looking for a complicated answer.  Well done Apple for hiding it so well.
    Brian

Maybe you are looking for

  • Creating push button on Selection screen application toolbar

    Hi Friends, this is a HR-ABAP report. I have to create a push button on Selection screen. when user clicks on that push button 'MODAL DIALOG BOX' has to be displayed containing some data. plz kindly give some sample code to do this. Regards, Radhika

  • Airplay from ipad 1 gen to ATV 3 gen "an error occurred loading this content try again later"

    Hi everyone!, I just bought a new Apple tv 3 gen which is great. My situation is the next. I have an add hoc wifi which obviously cant connect with my ATV cause ATV doesnt have browser to set user password. This connection is not quite fast, so probl

  • TRAVEL MANAGEMENT and ESS help required

    Hi Can anyone help me how to configure TRAVEL MANAGEMENT and ESS in IMG Please help. Regards Sonu

  • Olap universe date format

    Hello, BW query connected to universe.  BW query holds the date values in some of the characteristics-attributes which is of type 'date'. When this imported to BO universe, the date type characteristics are appearing as 'character'.   This is causing

  • Problem during updating batch master

    Hi All, I am facing problem during batch updation. There is one RF program for creation of goods movement. After material document is created the batch needs to be updated. I have called BAPI_BATCH_CHANGE for updating country of origin, vendor batch