Having problem access the EJB 3 from Web Component

Hi ,
I have an EJB 3 entity AuctionItem and a session ItemProcessor only implements the local interface IItemProcessor, then I use a servlet to access the findAll method in the ItemProcessor. I've created a Enterprise Applicaiton project to contain the ejb jar and the war file, but after I deploy the ear successfully, I couldn't access to my servlet through http://localhost:8080/AuctionWeb/AuctionServlet, it keeps giving me error like follwoing. Do you know why, your help will be very appreciated !
HTTP Status 500 -
type Exception report
message
description The server encountered an internal error () that prevented it from fulfilling this request.
exception
java.lang.NullPointerException
     at web.AuctionServlet.doGet(AuctionServlet.java:43)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
     at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:397)
     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:278)
     at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536)
     at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:240)
     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:179)
     at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
     at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:73)
     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:182)
     at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
     at com.sun.enterprise.web.VirtualServerPipeline.invoke(VirtualServerPipeline.java:120)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:137)
     at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:566)
     at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:536)
     at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:939)
     at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:231)
     at com.sun.enterprise.web.connector.grizzly.ProcessorTask.invokeAdapter(ProcessorTask.java:667)
     at com.sun.enterprise.web.connector.grizzly.ProcessorTask.processNonBlocked(ProcessorTask.java:574)
     at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:844)
     at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:287)
     at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:212)
     at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:252)
     at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:75)
My code sample:
public class AuctionServlet extends javax.servlet.http.HttpServlet implements javax.servlet.Servlet {
      @EJB
         private IItemProcessor itemProcessor;
     public AuctionServlet() {
          super();
     protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
          response.setContentType("text/html;charset=UTF-8");
        PrintWriter out = response.getWriter();
        out.println("<html>");
        out.println("<head>");
        out.println("<title>Servlet AuctionServlet</title>");
        out.println("</head>");
        out.println("<body>");
        out.println("<h1>Servlet AuctionServlet at " + request.getContextPath () + "</h1>");
        List items = itemProcessor.findAll();
       for (Iterator it = items.iterator(); it.hasNext();) {
        AuctionItem elem = (AuctionItem) it.next();
       out.println(" <b>"+elem.getItemid()+" </b><br />");
       out.println(elem.getTitle()+"<br /> ");
        out.println("</body>");
        out.println("</html>");
.....And the session bean is :
package sessions;
import javax.annotation.Resource;
import javax.ejb.Local;
import javax.ejb.Stateless;
import javax.persistence.*;
import javax.sql.DataSource;
import java.util.List;
import entities.AuctionItem;
@Stateless(name = "ItemProcessor")
public class ItemProcessor implements sessions.IItemProcessor {
     @PersistenceContext
     EntityManager entityManager;
     public Long createItem(String title, Double value, String description,
               String status) {
          AuctionItem item = new AuctionItem();
          item.setTitle(title);
          item.setValue(value);
          item.setDescription(description);
          item.setStatus(status);
          entityManager.persist(item);
          return item.getItemid();
     public String findItemByKey(Long id) {
          AuctionItem item = entityManager.find(AuctionItem.class, id);
          return item.getTitle();
     public List findAll() {
        return  entityManager.createQuery("select object(o) from AuctionItem as o").getResultList();
}

The most common reason for this failure is if your web.xml does not refer to the latest web application
.xsd :
<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http
://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/x
ml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
Otherwise, the web application is considered to be a J2EE 1.4 application and annotations
are not processed. If that's not the case you can also run the application through the
verifier to see if it identifies any issues.

Similar Messages

  • Problem while accesing EJB DC from Web Dynpro DC - Help Needed.

    Hello All,
    I am trying to acces an EJB from a Web Dynpro, can you please suggest what I could have done wrong I have added all the required jar file, can you please suggest what could be wrong:
    Dec 25, 2006 1:56:04 AM /userOut/Development Component (com.sap.ide.eclipse.component.provider.listener.DevConfListener) [Thread[ModalContext,5,main]] ERROR: john/wd: Build failed for sap.com/john/wd(MyComponents) in variant "default":
    The Build terminated with errors
    ------------------------------------- Build log ------------------------------------------------------
    Build Plugin Version: 1.6.3 (630_REL) from 03 November 2004 12:47:57
    Start: 25.12.2006 01:56:03
    Temp dir: C:Documents and Settingsjohn.dtcLocalDevelopmentt73950E79E943BFC31907C47C958D3CA9
    prepare:
        [mkdir] Created dir: C:Documents and Settingsjohn.dtcLocalDevelopmentDCssap.comjohnwd_compgendefaultdeploy
        [mkdir] Created dir: C:Documents and Settingsjohn.dtcLocalDevelopmentt73950E79E943BFC31907C47C958D3CA9gwdpackages
    gen:
        [ddgen]
        [ddgen] [Info]    Property deployment is true: Deployment information is provided!
        [ddgen] [Info]    Property sourcepath: C:Documents and Settingsjohn.dtcLocalDevelopmentDCssap.comjohnwd_compsrc/packages
        [ddgen] [Info]    Property targetpath: C:Documents and Settingsjohn.dtcLocalDevelopmentt73950E79E943BFC31907C47C958D3CA9/gdd
        [ddgen] [Info]    Property archivename: sap.com~john~wd
        [ddgen] [Info]    Property vendor: sap.com
        [ddgen] [Info]    Property dcname: john/wd
        [ddgen] [Info]    Property language: Available languages are automatically determined!
        [ddgen] [Info]    Property addpaths ...
        [ddgen] [Info]       SapMetamodelDictionaryContent.zip - C:/Program Files/SAP/JDT/eclipse/plugins/com.sap.tc.ap/comp/SAP_BUILDT/DCs/sap.com/tc/bi/mm/_comp/gen/default/public/def/lib/model
        [ddgen] [Info]       SapMetamodelWebdynproContent.zip - C:/Program Files/SAP/JDT/eclipse/plugins/com.sap.tc.ap/comp/SAP_BUILDT/DCs/sap.com/tc/bi/mm/_comp/gen/default/public/def/lib/model
        [ddgen] [Info]       SapMetamodelWebdynproContent.zip - C:/Program Files/SAP/JDT/eclipse/plugins/com.sap.tc.ap/comp/SAP_JTECHS/DCs/sap.com/tc/wdp/metamodel/content/_comp/gen/default/public/default/lib/java
        [ddgen] [Info]       SapMetamodelDictionaryContent.zip - C:/Program Files/SAP/JDT/eclipse/plugins/com.sap.tc.ap/comp/SAP_JTECHS/DCs/sap.com/tc/ddic/metamodel/content/_comp/gen/default/public/default/lib/java
        [ddgen] [Info]    Destination directory C:Documents and Settingsjohn.dtcLocalDevelopmentt73950E79E943BFC31907C47C958D3CA9gdd does not exist
        [ddgen] [Info]    Destination directory C:Documents and Settingsjohn.dtcLocalDevelopmentt73950E79E943BFC31907C47C958D3CA9gdd is created
        [ddgen] [Info]    Initialize generation templates from configuration jar:file:/C:/Program Files/SAP/JDT/eclipse/plugins/com.sap.tc.ap/comp/SAP_BUILDT/DCs/sap.com/tc/bi/dict/_comp/gen/default/public/def/lib/java/SapDictionaryGenerationCore.jar!/DictionaryGenerationConfigurationCompiled.xml
        [ddgen] [Info]    Generating dbtables/sdmDeployDd.xml
        [ddgen] [Info]    Generation finished (0 seconds)
        [ddgen]
        [wdgen]
        [wdgen] [Info]    Property deployment is true: Deployment information is provided!
        [wdgen] [Info]    Property sourcepath: C:Documents and Settingsjohn.dtcLocalDevelopmentDCssap.comjohnwd_compsrc/packages
        [wdgen] [Info]    Property targetpath: C:Documents and Settingsjohn.dtcLocalDevelopmentt73950E79E943BFC31907C47C958D3CA9gwd
        [wdgen] [Info]    Property archivename: sap.com~john~wd
        [wdgen] [Info]    Property vendor: sap.com
        [wdgen] [Info]    Property dcname: john/wd
        [wdgen] [Info]    Property language: Available languages are automatically determined!
        [wdgen] [Info]    Property addpaths ...
        [wdgen] [Info]       SapMetamodelDictionaryContent.zip - C:/Program Files/SAP/JDT/eclipse/plugins/com.sap.tc.ap/comp/SAP_BUILDT/DCs/sap.com/tc/bi/mm/_comp/gen/default/public/def/lib/model
        [wdgen] [Info]       SapMetamodelWebdynproContent.zip - C:/Program Files/SAP/JDT/eclipse/plugins/com.sap.tc.ap/comp/SAP_BUILDT/DCs/sap.com/tc/bi/mm/_comp/gen/default/public/def/lib/model
        [wdgen] [Info]       SapMetamodelWebdynproContent.zip - C:/Program Files/SAP/JDT/eclipse/plugins/com.sap.tc.ap/comp/SAP_JTECHS/DCs/sap.com/tc/wdp/metamodel/content/_comp/gen/default/public/default/lib/java
        [wdgen] [Info]       SapMetamodelDictionaryContent.zip - C:/Program Files/SAP/JDT/eclipse/plugins/com.sap.tc.ap/comp/SAP_JTECHS/DCs/sap.com/tc/ddic/metamodel/content/_comp/gen/default/public/default/lib/java
        [wdgen] [Info]    Initialize generation templates from configuration jar:file:/C:/Program Files/SAP/JDT/eclipse/plugins/com.sap.tc.ap/comp/SAP_BUILDT/DCs/sap.com/tc/bi/wd/_comp/gen/default/public/def/lib/java/SapWebDynproGenerationCore.jar!/WebDynproGenerationConfigurationCompiled.xml
        [wdgen] [Info]    TextView DefaultTextView: UIElement does not have a label
        [wdgen] [Info]    Generating packages/myCompany/wdp/IPrivateMyAppView.java
        [wdgen] [Info]    Generating packages/myCompany/MyAppView.java
        [wdgen] [Info]    Generating packages/myCompany/wdp/InternalMyAppView.java
    Warning: searching view element definition for TransparentContainer RootUIElementContainer
    Warning: searching view element definition for FlowLayout Layout
    Warning: searching view element definition for TextView DefaultTextView
    Warning: searching view element definition for FlowData DefaultTextView_layoutdata
        [wdgen] [Info]    Generating packages/myCompany/wdp/IPublicMyApp.java
        [wdgen] [Info]    Generating packages/myCompany/wdp/IPrivateMyApp.java
        [wdgen] [Info]    Generating packages/myCompany/MyApp.java
        [wdgen] [Info]    Generating packages/myCompany/wdp/InternalMyApp.java
        [wdgen] [Info]    Generating packages/myCompany/wdp/IPublicMyAppInterfaceCfg.java
        [wdgen] [Info]    Generating packages/myCompany/wdp/IExternalMyAppInterfaceCfg.java
        [wdgen] [Info]    Generating packages/myCompany/wdp/IPrivateMyAppInterfaceCfg.java
        [wdgen] [Info]    Generating packages/myCompany/MyAppInterfaceCfg.java
        [wdgen] [Info]    Generating packages/myCompany/wdp/InternalMyAppInterfaceCfg.java
        [wdgen] [Info]    Generating packages/myCompany/MyAppInterfaceCfg.wdcontroller
        [wdgen] [Info]    Generating packages/myCompany/wdp/IPublicMyAppWinInterfaceView.java
        [wdgen] [Info]    Generating packages/myCompany/wdp/IPrivateMyAppWinInterfaceView.java
        [wdgen] [Info]    Generating packages/myCompany/MyAppWinInterfaceView.java
        [wdgen] [Info]    Generating packages/myCompany/wdp/InternalMyAppWinInterfaceView.java
        [wdgen] [Info]    Generating packages/myCompany/wdp/IPublicMyAppInterface.java
        [wdgen] [Info]    Generating packages/myCompany/wdp/IExternalMyAppInterface.java
        [wdgen] [Info]    Generating packages/myCompany/wdp/IPrivateMyAppInterface.java
        [wdgen] [Info]    Generating packages/myCompany/MyAppInterface.java
        [wdgen] [Info]    Generating packages/myCompany/wdp/InternalMyAppInterface.java
        [wdgen] [Info]    Generating packages/myCompany/MyAppInterface.wdcontroller
        [wdgen] [Info]    Generating packages/myCompany/wdp/IMessageMyApp.java
        [wdgen] [Info]    Generating configuration/Components/myCompany.MyApp/MyApp.xml
        [wdgen] [Info]    Generating packages/myCompany/wdp/ResourceMyApp.properties
        [wdgen] [Info]    Generating configuration/Applications/myCompany.MyApp/MyApp.xml
        [wdgen] [Info]    Generating portalapp.xml
        [wdgen] [Info]    Generating wd.xml
        [wdgen] [Info]    Generating application.xml
        [wdgen] [Info]    Generating application-j2ee-engine.xml
        [wdgen] [Info]    Generating PublicPartFileList.properties
        [wdgen] [Info]    Generating PublicPartFileList.xml
        [wdgen] [Info]    Generation finished (0 seconds)
        [wdgen]
        [mkdir] Created dir: C:Documents and Settingsjohn.dtcLocalDevelopmentt73950E79E943BFC31907C47C958D3CA9classes
        [javac] Compiling 22 source files to C:Documents and Settingsjohn.dtcLocalDevelopmentt73950E79E943BFC31907C47C958D3CA9classes
    C:Documents and Settingsjohn.dtcLocalDevelopmentt73950E79E943BFC31907C47C958D3CA9gwdpackagesmyCompanyMyApp.java:121: cannot access javax.ejb.EJBHome
    file javaxejbEJBHome.class not found
              SimpleSession mySessionBean = myBeanHome.create();
                                                            ^
    C:Documents and Settingsjohn.dtcLocalDevelopmentt73950E79E943BFC31907C47C958D3CA9gwdpackagesmyCompanyMyApp.java:123: cannot access javax.ejb.EJBObject
    file javaxejbEJBObject.class not found
              String x = mySessionBean.businessMethod();
                                            ^
    2 errors
    Build with ERRORS
    file:C:/Documents and Settings/john/.dtc/LocalDevelopment/DCs/sap.com/john/wd/_comp/gen/default/logs/build.xml:58: Compile failed; see the compiler error output for details.
    End: 25.12.2006 01:56:04 (Duration: 1 second)
    Message was edited by:
            John Bray

    have a look _
    Using EJBs in Web Dynpro (20)
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/a11ba7c8-0401-0010-23b5-f5d2394c0ac0">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/a11ba7c8-0401-0010-23b5-f5d2394c0ac0</a>

  • Having problems downloading the Netflix app from App Store

      I am currently using my computer but I could not download the Netflix App from the App Store, and it also asked me for a service code to initiate the download what is service code?

    Thanks R.W.R but what I was saying was that I did get 10.10.3 installed using the standalone download instead of the app store. Because I tried using the app store several times to do the update, I know have 10.10.3 showing up five times in the updated in the last 30 days section. I guess after 30 days it will go away, I just didn't know if there was a way to clear some of the duplicates out before then.
    On the bright side, the 10.10.3 seems to have fixed the folder action issue. I can now use folder actions again which I really missed. I compared the folder action plist now with the older plist and noticed they are handling the folder actions differently now. They are now using osa scripts and dispatcher ticks to run the action. So far it seems to be behaving itself and not trying to gobble up all the memory in the system.

  • Is anyone having problems accessing the iTunes Store?

    I can't log onto the iTunes Store but my internet connection is working.  Anyone else having this problem?

    Yep me too. Both iPad and iphone.. Mail from Apple support didn't really helped

  • I am having problems setting the gain programatically from Labview 6, using the Hardware Config vi, for a PCI6110E DAQ board.

    NB: This has also been posted to High Speed Digitizers forum.
    Changing the "gain" (part of the "alternate input limits" cluster) appears to affect the group settings, but when I pass a signal outside the supposed new voltage range, the signal doesn't clip as I would expect. This doesn't happen when I use MAX (where clipping is clearly visible), but unfortunately that is not an acceptable long-term solution. Any thoughts? I am only using allowable gain settings for the 6110E.
    Additionally, I am saving my data in hsdl format, and to get the actual true voltage from the binary numbers (after uncompressing and converting back to standard binar
    y format) I need to multiply the final number by the gain. Should this be correct? I thought the "scale multiplier" (part of "group settings cluster") compensated for "gain", but it doesn't seem to do so. Is this part of the same problem?

    Thanks Spencer. I do call Hardware Config.vi in several different places, so maybe its the multiple calls that is stuffing things up. I will investigate further.
    As for the multiplier, which bit sounds correct? The fact that I have to multiply by the gain, or that it should take this into account automatically and therefore not have to muliply by the gain (which is what the default hsdl code does). What do you do to convert from binary to real?
    Thanks for your help,
    Jo

  • Anyone else having problems accessing  the boards?

    Hello! For the last couple of weeks I've been having "slowness" in going from one topic to another and I don't know if it's from all the construction around here or if the boards are just slow. Thanks, Tom

    Hi Tom,
    Today has been the best day for this forum as far as speed and errors.
    With that said, <imho> it has not been the same for almost 6 months. Way back when, this forum would become "unavailable" at 12ish and again at 7ish daily, almost like clockwork, it would be down for 30 minutes or so. But when it came back up it was fast fast fast... Now, no downtime or much less, but it hardly works the way it should.
    A couple of tricks I've learned along the way to speed things up. Reload a page and then go to next link will usually do the trick. When I post, I usually need to reload the reply page and it will finally post my message. I've found w/o doing the reload/refresh thing, it could sit there for an eternity with an error page at the end.
    It's much better today - Rick
    iMac G5 iSight 20" - 30G iPOD & Hot Pink Nano 4G - WD 500G FW - Mac OS X (10.4.8) - HP Pav 15" WS and Toshiba Sat 17" WS LP's - Canon 20D & A620 Kodak P880
    Message was edited by: JMEH
    It's working so good today, I didn't even need to refresh/reload page. WOW

  • Adobe Camera Raw in CS3 is having problems with the RAW files from my Canon 5D Mark II

    Adobe Bridge will import the CS2 raw files from the camera card in m Canon 5D Mark II but it will not create thumbnails nor will it convert them to DNG. I want to update the raw reading software but the update page indicates that it only updates into CS4. Will I have to upgrade to CS4 before I can import from my new camera?
    ML

    The dng converter does indeed work but it adds an extra step to the workflow. Raw files from my Canon 40D are exported and converted to dng in Bridge in one step. Now I must add the extra step of using dng converter. Can I upgrade Adobe Bridge's raw capacity so that I can import from my new camera in the same efficient way? I would prefer to do this without buying CS4.
    thank you -- ML

  • How can i access the EJB from a Webdynpro

    Dear all,
    How can i access the ejb , from a webdynpro?.
    Is there any way to do that?.
    I want to write the entire code (business functions) within the EJB and i wan to access the entire methods from a WebDynpro Application.This is the situation.
    Please help me to , resolve this problem.(Here im using JDBC Connection .. etc.).
    I want to do the basic connection setting's and data retrieval part within the EJB and use that within the WebDynpro..
    how can i seperate this two(i mean, i want to seperate the JDBC connections and WebDynpro,i dont want to hard code any connection parameters within the webdynpro code)
    So that i want use that saet of particular function's in many webdynpro applications..
    (i dont need any help regarding webservice way.)
    If anyone can , please help me..
    I tried that javabean class , manifest file , that way (importing javabean model).
    but im getting errors.
    I cant properly utilize that..
    So please help me with steps regarding that,,
    for javabean
    and if any , for EJB also..
    with regards
    Kishor.G

    HI,
    Since webdynpros follows Model View Controller Architecture You can access EJBs in webdynpro(views/frontend) infact to connec to database uding JDBC you have to utilise EJB ( opening connection to database closing, and other Business functionality).See this link
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/unkown/web dynpro tutorial and sample applications.faq#q-7
    <b>How to access the Car Rental Web Service?</b>
    Regards,
    RK

  • I have a MacBook Air with OS X and am having trouble accessing the ADT Pulse Home Security System cameras.  The mobile (iPhone and iPad) apps allow access no problem, but I can't get a picture on the MacBook.  Have tried Safari and Firefox browsers.

    I have a MacBook Air with OS X and am having trouble accessing the ADT Pulse Home Security System cameras.  The mobile (iPhone and iPad) apps allow access no problem, but I can't get a picture on the MacBook.  Have tried Safari and Firefox browsers.  Anyone have any ideas?  Thanks.

    From a Catherine to Katherine -- Had the exact same problem!!  I had to enable Java twice - both in Safari and then on the MacBookAir itself.

  • I am currently having problems accessing a network connection.  I have reset my IPAD network connections and am still having a problem.  I know that it is not my network because I can access the internet on my laptop computer.

    I am having problems opening any email or apps on my IPAD 2.  It says there is no network connection but I don't have any problems accessing the internet on my laptop.

    In any event, if your OS X version is 10.7.x, download and install AirPort Utility 5.6 for Lion:
    Lion: AirPort Utility 5.6.
    If your OS X version is 10.5.x or 10.6.x, download and install AirPort Utility 5.5.3:
    Leopard, Snow Leopard: AirPort Utility 5.5.3.
    After you install the appropriate version of AirPort Utility, open it. The program will be located in your Utilities folder, which in turn is found in your Applications folder.
    To open the Utilities folder, go to the Finder and select "Utilities" from the Go menu:
    AirPort Utility 5.6 looks like this:
    ... but make sure you use the version of AirPort Utility you just downloaded.
    Launch AirPort Utility and select your Time Capsule. Click Manual Setup, then the Guest Menu tab, then you can elect to disable the guest network, or to establish whatever security settings you want.
    The window looks somewhat like this:
    If your version of AirPort Utility does not look anything like that, you are probably not using the one you just downloaded. Find it and start over.
    When you are finished configuring your Time Capsule, click Update and allow the Time Capsule to restart.

  • I am having problems accessing my airport utilities, the area which allows me to alter settings is all greyed out. Can anyone help?

    I am having problems accessing my airport utilities, the area which allows me to alter settings is all greyed out. Can anyone help?

    Using the same Ethernet cable that is used to connect the modem to the AirPort Extreme, disconnect the Ethernet cable from the AirPort Extreme and connect it directly to your Mac as a test for 4-6 hours.
    Be sure to power off the modem for 5-10 minutes when you do this, so that it will associate with the new device that it "sees".
    Does the connection drop when you connect this way? If yes, then replace the Ethernet cable and run the test again for 4-6 hours.
    If the connection still drops, you likely have a defective modem or a line problem on the cable service....despite what the cable company might say.
    If the connection remains solid when you run the "test", then you know that the modem and Ethernet cable are working correctly.
    If you have performed a factory default reset on the AirPort Extreme a few times, and connection still drops, then you should take the AirPort to an Apple Store....if you have one near you..... to let them take a look, or contact Apple Support directly.
    http://www.apple.com/support/contact/

  • I recently had to swap out my iphone 4s and I am having problems restoring photos and videos from icloud.  I get a message on my phone that says " the URL you are requesting is not found on this server".  Pics and videos have been deleted too.

    I recently had to swap out my iphone 4s and I am having problems restoring photos and videos from icloud.  When I restored my phone from icloud, half of my pics and videos have been deleted, the pics that were restored on my phone are very blurry, and the videos won't play.  I get a message on my phone that says " the URL you are requesting is not found on this server".  I have erased and reset my phone twice, but every time I do it, more pics and videos are deleted.  I have backed up to icloud and iphoto, however, some of the pics are no longer on iphoto either.  Is there someway to get the videos to play on my phone again?  Make the photos not as blurry as they are now and to restore the pics and videos that have been lost?  I really would love to have them back, this phone is supposed to be the best and right now it doesn't seem to be.  Please help if you can.

    I too have noticed that once i restored from iCloud. Pictures blurry and videos wont play!
    Need help too!!

  • I am having problems exporting my time lapses from quick time pro i need to save my files as photo jpegs but the standard video compression window will not open fully,

    i am having problems exporting my time lapses from quick time pro i need to save my files as photo jpegs but the standard video compression window will not open fully, it just keeps my mac (old 1.6Ghz 2.5 GB sdram G5 still good for most stuff i need) spinning for ever but i can see compression type H.264 selected and the other setting but i can not select any other options as it still thinking but never opens! why is this happening how do i get round it?
    my work flow is: 300 images shot on a 5d mark II medium jpegs opened in Light Room cropped to 16:9 then exported and opened in quick time i can save a .mov H264 giving me files sizes of 14 mb for a 16 second time lapse, mp4 9 mb. the only way i can get large files is saving as a self contained movie then i get 300mb files.
    i need to save my files 1920 x 1080 photo jpeg codec as i want HD quality.
    i am sure there is a simple way round this?
    thanks guys!

    It is very difficult to offer troubleshooting suggestions when the "os version" you are using is unknown as each os has their own troubleshooting solutions. 
    How large is your hard drive and how much hard drive space do you have left? 

  • TS1424 HELLO! whenever i try to access the itunes store from the itunes on my laptop i get this message: ITUNES HAS STOPPED WORKING a problem caused the program to stop working correctly. windows will close the program and notify if a solution is availabl

    for a few weeks i have not been able to access the itunes store from the itunes on my laptop. every time i click on it it tells me it cannot access the store...not sure why. and says this: ITUNES HAS STOPPED WORKING a problem caused the program to stop working correctly. windows will close the program and notify if a solution is available.

    I had this exact same problem.  I found this fix and it worked for me. 
    Step 1:
    Browse to C:\Program Files (x86)\Common Files\Apple\Apple Application Support and copy the filen named QTMovieWin.dll. 
    Step 2:
    Browse and past that file into C:\Program Files (x86)\iTunes.
    Hope this helps you.  I wish I could remember where I saw this originally so I could thank them.
    Good Luck.
    Anthony

  • I am trying to connect my Sony DCR-TRV350 to iMovie so that I can make DVD's from family videos.  I am having problems getting the video camera connected.  Any advice on how to do this?

    I am trying to connect my Sony DCR-TRV350 to iMovie so that I can make DVD's from family videos.  I am having problems getting the video camera connected.  Any advice on how to do this?

    What happens when, after you connect your cam, you go to File > Import Media?
    But before that, does your cam require you to export your video files upon USB connection? I have a JVC Everio HD and I have to "Export to Library" from the cam's menu first-thing. This was true even in prior iMovie versions.

Maybe you are looking for