Extended Class doesn't work in Apps, but works in JDeveloper

Hi,
I extended the controller class. Tested in JDeveloper, everythings works good. I ftp the controller .class file to unix box and using personalization, updated the controller class path to the new class path file. Bounced the apache server.
Now when I test the page, by clicking the button, nothing happens. The page remains same. What might be the issue. Any idea.
Thanks,
HP

HP
First try to check About this Page link and confirm that your page is accessing new controller.If it is accessing new only then i would suggest try to add some Logs to your extended controller like
Debug.log(pageContext,"ControllerclassName","message " ,1);or use
pageContext.writeDiagnostics(this,"message",2)Finally enable the FND debug as mentioned in below link
http://oracleanil.blogspot.com/2009/04/favourite.html
Thanks
AJ

Similar Messages

  • Generate SDO classes doesn't work in JDeveloper

    Hi,
    What I would like to do: I would like to call a Java service from a BPEL process.
    The way I do it is by encapsulating my java service in a stateless session EJB which I try to expose through an SDO interface. Like that, I expect to be able to use this service with the EJB adapter in BPEL.
    I have an issue with JDeveloper to generate my SDO interfaces.
    If I have 2 simple classes :
    <pre>public class User {  
    private String name;
    public void setName(String name) {
    this.name = name;
    public String getName() {
    return name;
    }</pre>
    and
    <pre>public class UserAccess {
    public User getUserById(int id) {
    return new User();
    }</pre>
    I use the Create Service Interface... feature on UserAccess, and I doesn't generate the class UserSDO... Why is that ? Can you help please ?
    Laurent

    Hi,
    As a general rule, whenever using an operator where the query window comes from a table rather than a constructor, try using the ordered hint and put the table that contains the query window (the second geometry in the operator) first in the from clause. You are right in that the table associated with the first geometry must be indexed. This query might be changed to:
    SELECT /*+ ordered */
    v.nom ENS_NOM, v.adresse_numero, v.adresse_rue,
    c.code_insee , c.nom COM_NOM , b.code_centre,
    MDSYS.SDO_NN_DISTANCE(1) DIST
    FROM TEMPGEOMDATA v, limadm_commune c, batsp_cis b
    WHERE v.code_insee = c.code_insee
    AND SDO_NN(b.geometrie, v.geometrie, 'sdo_num_res=1', 1) = 'TRUE' ;
    Hope this helps,
    Dan

  • Hi, I am trying to install 4 Adobe apps onto a new iMac but Apps in Creative Cloud doesn't list any apps but says there is a download error and to contact customer support.

    Hi, I am trying to install 4 Adobe apps onto a new iMac but Apps in Creative Cloud doesn't list any apps but says there is a download error and to contact customer support.
    I can sign in fine with my username and password.
    Rick

    Hi daveforrestaid,
    Please refer to the threads below where this issue has been addressed:
    1. Creative Cloud "Download Error" message
    2. Creative Cloud - Download error - stubborn error
    Regards,
    Sheena

  • Since update extended wifi doesn't work

    I updated my express extreme as required. Since my airport express that I use to extend my wifi doesn't work anymore. I did a reset and when I try to configuration it keeps telling me that an error has occurred and that I should try again.

    I reset modem and router.  Still have the same issue.  I have a laptop connected to the network as well as a PS3.  Both are working great.  Did a Speedtest app test on iphone.  With 3g it was working good.  When i switched to wifi, it was trying to get the ping test accomplished, and could not.  it was stuck in the ping test at 0% for a long time and never progress. 

  • Extended desktop doesn't work with 2 monitors and Yosemite

    The desktop doesn't extend across the two screens now that I've upgraded to Yosemite. How can this be fixed?

    What version of OS X were you on prior to Yosemite?  I was on Maverick and a window couldn't span over two monitors on Maverick either. I haven't had a need to span a window over multiple displays in a while so I wasn't missing it.  But now that you mention it, it would be nice to have that ability back for the few times when it does come in very handy and I'd like to use it.

  • Extending HttpServletResponseWrapper doesn't work in WLS 7...

    Well, at least not in what I'm trying to do.
              I have the following class so that I can get access to the content
              type being set in the response. However, the code for setContentType
              is never called in WLS 7.01. Since I'd rather not extend
              weblogic.servlet.internal.ServletResponseImpl to accomplish this I'd
              REALLY like a suggestion for how to accomplish this.
              Thanks.
              public class HeaderInfoResponseWrapper
              extends HttpServletResponseWrapper {
              private String content=null;
              public void setContentType(String parm1) {
              content=parm1;
              super.setContentType(parm1);
              public HeaderInfoResponseWrapper (HttpServletResponse
              servletResponse) {
              super (servletResponse);
              public String getContentType() {
              return content;
              

    Hi,
              Did you find a solution to this problem?
              Thanks,
              -Richard
              "David Orriss, Jr." <[email protected]> wrote in message
              news:[email protected]..
              > Well, at least not in what I'm trying to do.
              >
              > I have the following class so that I can get access to the content
              > type being set in the response. However, the code for setContentType
              > is never called in WLS 7.01. Since I'd rather not extend
              > weblogic.servlet.internal.ServletResponseImpl to accomplish this I'd
              > REALLY like a suggestion for how to accomplish this.
              >
              > Thanks.
              >
              > public class HeaderInfoResponseWrapper
              > extends HttpServletResponseWrapper {
              >
              >
              > private String content=null;
              >
              > public void setContentType(String parm1) {
              > content=parm1;
              > super.setContentType(parm1);
              > }
              >
              > public HeaderInfoResponseWrapper (HttpServletResponse
              > servletResponse) {
              > super (servletResponse);
              > }
              >
              > public String getContentType() {
              > return content;
              > }
              >
              > }
              >
              >
              

  • HELP!! Command Q doesn't Quit any App but rather Opens up Mail

    Hi Guys,
    I guess the subject title says it all. It seems that when hitting the "Command + Q" keys, none of my applications Quit but rather opens up the Mail app.
    Any fixes for this?
    Thank you!!

    My mistake!! For some reason, it got programs in Max Menus.. Hmmm.

  • Mapviewer demo mapinit.jsp with svg doesn't work with jdeveloper

    hi ng,
    i tried the source code for the svg-sample in jdeveloper and first of all jdeveloper dislikes the line "<embed id="map" src="<%= mv.getGeneratedMapImageURL() %>...". after "embed" a green line is to be seen.
    When i start the sample the map looks okay, but when i want to hide a theme (or zoom), i get the internet_explorer-message "error on the page".
    "themeVisibleArray[idx]='false';" goes right but the next line occurs the error: "map.window.hideTheme(theme) ;"
    map is not known at this place, it seems to me.
    who can help (please)?
    greetings
    thomas

    hi,
    i still have a problem. i can work on an existing svg-map but not on a just generated svg-map. zoomin2 works.
    here's the code:
    <%@ taglib uri="http://xmlns.oracle.com/j2ee/jsp/tld/spatial/mvtaglib.tld" prefix="mapviewer"%>
    <%@ page contentType="text/html;charset=UTF-8"%>
    <%@ page import="java.io.*"%>
    <%@ page import="java.net.*"%>
    <%@ page import="java.util.*"%>
    <%@ page import="oracle.lbs.mapclient.*"%>
    <%@ page import="oracle.lbs.mapcommon.MapResponse"%>
    <%@ page import="java.awt.Dimension"%>
    <%
    String sizeStr = request.getParameter("initsize") ;
    String scaleStr = request.getParameter("scale") ;
    String cxStr = request.getParameter("centerX") ;
    String cyStr = request.getParameter("centerY") ;
    String baseMap = request.getParameter("basemap");
    String _width = request.getParameter("width") ;
    String _height = request.getParameter("height") ;
    String _infoon = request.getParameter("infoon") ;
    String action = request.getParameter("action");
    boolean infoon = false;
    boolean recenter = false ;
    boolean zoomin = false ;
    boolean zoomin2 = false ;
    int width = 600 ;
    int height = 400 ;
    if(_width!=null && _height!=null)
    try
    width = Integer.parseInt(_width) ;
    catch(Exception e){}
    try
    height = Integer.parseInt(_height) ;
    catch(Exception e){}
    if(baseMap==null) baseMap = "demo_map";
    double size = 0.2 ;
    try
    size = Double.parseDouble(sizeStr) ;
    catch(Exception e){}
    double scale = 2 ;
    try
    scale = Double.parseDouble(scaleStr) ;
    catch(Exception e){}
    double cx = -122.2615 ;
    try
    cx = Double.parseDouble(cxStr) ;
    catch(Exception e){}
    double cy = 37.5266 ;
    try
    cy = Double.parseDouble(cyStr) ;
    catch(Exception e){}
    String dataSrc = request.getParameter("datasrc");
    boolean newSession = false;
    // retrieve mapviewer client handle from session
    MapViewer mv = (MapViewer) session.getAttribute("mvhandle");
    boolean sessionExpired = false ;
    if(mv==null || request.getParameter("initflag")!=null)
    if(request.getParameter("initflag")==null)
    sessionExpired = true ;
    else
    //initializes MapViewer bean instance
    newSession = true;
    String mvURL = request.getParameter("mvurl");
    // create a new mapviewer client handle
    mv = new MapViewer(mvURL);
    mv.setDataSourceName(dataSrc);
    mv.setImageFormat(MapResponse.FORMAT_SVGZ_URL);
    /* the javascript function svgClicked will be called when the svg map
    is clicked. svgClicked is defined in this page, it recenters or zoomins
    the map. */
    mv.setSVGOnClick("svgClicked") ;
    /* initial themes (from an existing base map) */
    mv.addThemesFromBaseMap(baseMap);
    mv.setSVGZoomLevels(3);
    /* disable the builtin navigation bar */
    mv.setShowSVGNavBar(false) ;
    mv.setMapTitle(" MAP TITLE ");
    mv.setMapLegend(
    "<legend bgstyle=\"fill:#ffffff;stroke:#ff0000\" profile=\"MEDIUM\" position=\"SOUTH_EAST\">"+
    " <column>"+
    " <entry text=\"Map Legend\" is_title=\"true\" />"+
    " <entry style=\"M.CITY HALL 3\" text=\"cities\" />"+
    " <entry style=\"M.CITY HALL 4\" text=\"big cities\" />"+
    " <entry style=\"L.PH\" text=\"interstate highway\" />"+
    " </column></legend>");
    mv.setDeviceSize(new Dimension(width, height));
    session.setAttribute("mvhandle", mv); // keep client handle in the session
    String themes[] = new String[0] ;
    if(!sessionExpired)
    themes = mv.getThemeNames() ;
    mv.setCenter(cx, cy);
    mv.setSize(size);
    mv.setSVGZoomRatio(scale) ;
    mv.setSVGShowInfo(infoon);
    String[] checkedThemes = request.getParameterValues("_mthemev_");
    if(checkedThemes!=null && checkedThemes.length>0)
    Hashtable checked = new Hashtable(30) ;
    for(int i=0; i<checkedThemes.length; i++)
    checked.put(checkedThemes, checkedThemes[i]) ;
    for(int i=0; i<themes.length; i++)
    if(checked.get(themes[i])!=null)
    mv.setThemeVisibleInSVG(themes[i], true);
    else
    mv.setThemeVisibleInSVG(themes[i], false) ;
    mv.run() ;
    %>
    <html>
    <head>
    <title>untitled</title>
    <%-- <embed id="map" name="map" src="<%= mv.getGeneratedMapImageURL() %>" width="<%= width %>" height="<%= height %>"></embed> --%>
    <%-- src="images/omsmap3_56.svgz" --%>
    <%-- src="<%= mv.getGeneratedMapImageURL() %>" --%>
    <%-- <object name="map" data="images/test_svg.svgz" type="image/svg+xml" width="800" height="600" standby="Warte noch ein Weilchen..."> --%>
    <%-- </object> --%>
    <script type="text/javascript">
    var mapSize = <%= size %> ;
    var scale = <%= scale %> ;
    var width=<%= width%> ;
    var height=<%= height%> ;
    var rcx = <%= cx %> ;
    var rcy = <%= cy %> ;
    var cx = <%= width/2%> ;
    var cy = <%= height/2%> ;
    var disabled = true ;
    // var themeVisibleArray = ...
    var info = <%= infoon %> ;
    var legend = false ;
    var clickZoomin = <%= zoomin %> ;
    var clickRecenter = <%= recenter %> ;
    function zoomin()
    map.window.setZoomRatio(1.1);
    function zoomin2()
    map2.window.setZoomRatio(1.1);
    </script>
    </head>
    <body>
    <P>
    <form method="GET" action="test2.jsp">
    <P>Name:
    <input type="text" size="60" name="name" value="<%= mv.getGeneratedMapImageURL() %>"/>
    <input type="text" size="60" name="datasrc" value="<%= request.getParameter("datasrc") %>"/>
    <input type="text" size="60" name="basemap" value="<%= request.getParameter("basemap") %>"/>
    <input type="text" size="60" name="centerX" value="<%= request.getParameter("centerX") %>"/>
    <input type="text" size="60" name="centerY" value="<%= request.getParameter("centerY") %>"/>
    <input type="text" size="60" name="initsize" value="<%= request.getParameter("initsize") %>"/>
    <input type="text" size="60" name="width" value="<%= request.getParameter("width") %>"/>
    <input type="text" size="60" name="height" value="<%= request.getParameter("height") %>"/>
    <input type="text" size="60" name="type" value="<%= request.getParameter("type") %>"/>
    </P>
    <P>
    <input type="SUBMIT" value="Submit"/>
    </P>
    </form>
    </P>
    <table>
    <tr>
    <td colspan="2">
    <I>URL</I>[<B><%=mv.getGeneratedMapImageURL()%></B>]
    </td>
    </tr>
    </table>
    <%-- images/test_svg.svgz --%>
    <embed src="<%= mv.getGeneratedMapImageURL() %>" name="map" id="map" width="500" height="500" type="image/svg+xml" />
    <embed src="images/test_svg.svgz" name="map2" id="map2" width="500" height="500" type="image/svg+xml" />
    <%-- <embed id="map" src="<%= mv.getGeneratedMapImageURL() %>" width="<%= width %>" height="<%= height %>"></embed> --%>
    <FORM name="form" action="test2.jsp" method="GET" >
    <input type="radio" name="action" value="zoomin" <%= zoomin?"checked":"" %> onclick="zoomin()" ><B>Zoom In</B>
    <input type="radio" name="action2" value="zoomin2" <%= zoomin2?"checked":"" %> onclick="zoomin2()" ><B>Zoom In2</B>
    <input type="hidden" name="width" value="<%=width%>"/>
    <input type="hidden" name="height" value="<%=height%>"/>
    <input type="hidden" id="cx" name="centerX" value=""/>
    <input type="hidden" id="cy" name="centerY" value=""/>
    <input type="hidden" id="size" name="initsize" value=""/>
    <input type="hidden" id="scale" name="scale" value=""/>
    <input type="hidden" id="infoon" name="infoon" value="<%=(infoon?"yes":"no")%>" />
    </FORM>
    <br>
    <P> 
    </P>
    </body>
    </html>

  • JSTL comparision doesn't work with jdeveloper 10.1.2.2.0

    Hi,
    can somebody explain me why comparision are not working with JSTL. I quess reason is the type of the variables, but how can I solve it?
    Is the anyway to cast to same object-type?
    I try also compare directly with bindings, but didn't work either. That why I use temporary page scope variables.
    <c:set var="comp2" value="${bindings.Organisation}" scope="page" />
    <!-- prints "-203-", which is correct -->
    <tr><td> </td><td>
    -<c:out value="${comp2}"/>-
    </td></tr>
    <!-- loop over possible values -->     
    <c:forEach var="RowTL" items="${bindings.OrganisationCode.rangeSet}" >
    <c:set var="comp1" value="${RowTL.KarvTunnusnumero}" scope="page" />
         <!-- print "-203-11" when reach correct item which should match -->
    <tr><td> </td><td>
    -<c:out value="${comp1}"/>-<c:out value="${RowTL.KarvKoodiarvo}"/>
         <!---- true always with fixed value - not reasonable -->
    <c:if test="${comp2 == '203' }">
    <c:out value="11111111"/>
    </c:if>
         <!---- true with correct item, with fixed value - not reasonable -->
    <c:if test="${comp1 == '203' }">
    <c:out value="22222222"/>
    </c:if>
         <!---- false always althouhg printed values with correct item are "203" = "203" -->
    <c:if test="${comp1 == comp2 }">
    <c:out value="33333333"/>
    </c:if>
         <!---- false always althouhg printed values with correct item are "203" = "203" -->
    <c:if test="${comp2 == comp1 }">
    <c:out value="4444444"/>
    </c:if>
    </td></tr>
    </c:forEach>
    thanks PLa

    Works fine, thanks,
    Now it is comparing wtih string values I guess.
    Do you know any good source where can I read about those object types of bindings? I tried also debugger to investicate the structure of object, but debugger didn't show anything.

  • RegisterFont when running local doesn't work.

    Hi guys anybody knows why Font.register(class) doesn't work when i run from my local machine?
    the fonts.swf is loaded from a server loading fires a complete event so that should be fine.
    However when i load the fonts.swf also from local machine then it works fine.
    Anybody any idea?
    Regards Iason

    You can use network or local

  • SetIgnoringElementContentWhitespace() doesn't work

    The setIgnoringElementContentWhitespace() method of the DocumentBuilderFactory class doesn't work. I get white space nodes no matter whether I set true or false in it.
    I'm using java_xml_pack-summer-02 with JDK 1.4. Is this a bug in this release?
    How can I get my DOM to ignore white space?

    This functionnality is defined in DOM API. That doesn't mean it's implemented in your parser ... Perhaps that's the cause of your problem.

  • The wifi at my school isn't very good. And I can't send iMessages through it. It works for some apps like score center and my radar app, but doesn't work for other apps like clash of clans and iMessage. How can I get it to work on that  wifi network

    The wifi at my school isn't very good. And I can't send iMessages through it. It works for some apps like score center and my radar app, but doesn't work for other apps like clash of clans and iMessage. How can I get it to work on my school wifi. I have an iPhone 4S on AT&T and iOS 7.04

    In a roaming network, your "main" router is the device that would require port mapping/forwarding to be configured in order to access the IP camera from the Internet. This router is also the one that would be provide the private IP address for the camera which you will want to be a static one.
    So as you described your network, the IP cameras should be getting an IP address or you assigned it a static one and this is the address that you would enter in the Private IP address (or equivalent depending on the router used) field when setting up port mapping.
    If you are not able to access this camera from the local network, then this should be troubleshot first.

  • I had to change my Apple ID and password in itunes. Now my icloud doesn't work and I can't update my apps on my iPhone. I have looked at suggestions on the community pages and apple suggestions but none of them are relevant to iOS 8.1.2  icloud just

    I had to change my Apple ID and password in itunes. Now my icloud doesn't work and I can't update my apps on my iPhone. I have looked at suggestions on the community pages and apple suggestions but none of them are relevant to iOS 8.1.2
    icloud just keeps bringing up my old email address & asking for my old password which doesn't exist anymore and when I try to sign out of icloud it wants my old password, when I tried to change my primary email back to the old one it wants me to verify it through an email address that doesn't exist. Please can you help me sort out this nightmare.

    Hi skippy2012trev,
    Welcome to the Apple Support Communities!
    I understand that you updated your Apple Id and password but now you are being prompted for the old information in iCloud. You are on the right track by changing the Apple ID back to the previous email address temporarily so that you can sign out. You should not need to verify the email address. After you edit the Apple ID back to the old email address and then sign out of iCloud on your iPhone, edit the Apple ID back to the address you would currently like to use. There is no need to change the password again, only the email address, unless you prefer to update the password again.
    If you're asked for the password to your previous Apple ID when signing out of iCloud - Apple Support
    Change your Apple ID temporarily
    If signing out and back in to iMessage or FaceTime didn't help, try these steps:
    Change your Apple ID to the Apple ID you used previously. You shouldn't need to verify the email address.
    Tap Settings > iCloud. Complete these steps only if the Find My [Device] setting is turned on:
    Scroll down and tap Sign Out, then tap Sign Out to confirm. If you're using iOS 7 or earlier, tap Delete Account, then tap Delete to confirm.
    Tap Keep on My [Device] or Delete from My [Device]. In either case, your data remains in iCloud and will be updated on your device when you sign in to iCloud again.
    Enter the password for your previous Apple ID.
    Change your Apple ID to the new email address that you want to use. You'll need to verify the email address.
    Return to Settings > iCloud and sign in with your new Apple ID.
    Cheers,
    Joe

  • HT4259 I have been trying for hours to extend my Extreme Gen 5 network with an Express Gen 2.  But no matter what I do or try, it doesn't work.  What does happen is my internet gets block somehow when the Express looks like it's set up and 'green' - no in

    I have been trying for hours to extend my Extreme Gen 5 network with an Express Gen 2.  But no matter what I do or try, it doesn't work.  What does happen is my internet gets blocked somehow when the Express is online and looks like it's set up perfect and 'green' - but no internet connection for anything even though the Extreme is green and the modem is good.  Once I disconnect the Express, everything is good again.
    I've tried LAN, WAN, though a switch, direct connect, Extreme set to Extend the network, the Express set to be an extension.  Most of the time I get an error trying to update the Express.  But when it seems to be set up perfect, the entire house can't get to the internet.  Just when it looks right, it is so wrong.
    If anyone can give me exact steps (e.g., "...from the Base Station menu, select the Restore Default Setting option" vice "...just restore the defaults..."), I would greatly appreciate it.  I'm left to the conclusion that the Express is faulty.  I've been using Airport Utility 6.2 from Mountain Lion on one computer and Airport Utility 5.6.1 from Snow Leopard on another computer (the latter give more control while the former just want you to 'forget' the Express).

    I finally got it working.  I was trying to set it up ethernet.  My biggest mistake was when the new Express came on, I did not select 'Continue' - I went straight to manual thinking that I would get the most setup options in manual mode.  So everything I initially tried always resulted in 'wireless'.  Even when I would update or restore default settings, the Express would not completely restart. Or sometimes I would get an error. So most of the time I had to unplug it.  So when it came back up, none of my changes were retained. But there were a lot of times when everything was green and appeared to be fine. But anytime the ethernet cable was plugged in, no more internet.
    So here's the weird part.  When I finally tried 'continue' (vice manual), I would get 4 options.  One would be 'ethernet' extended.  So I would select it, it gave me green lights, all looked good, and still the same problem.  This is when I got frustrated.  I thought I had exhausted all possible combinations.
    But somehow when trying continue again after another restore, I only got 3 options.  One was the same ethernet extended option (can't remember what the missing 4th one was).  And this time it worked - it gave me the big green circle with the checkmark saying it was successful.  I don't know what I did different, but I know now that it won't work if 4 options come up to choose from.  It will work if only 3 options come up.  And success if only verified by the big checkmark.  Had anyone anywhere said the checkmark declaring success is validation, then maybe I wouldn't have gone down so many rabbit holes thinking it should have been successful.
    As for which Airport Utility I prefer, 6.2 looks nice, but it would just ignore the Express and would want me to 'forget' it and would not let me edit it.  Airport Utility 5.6.1 was the one that I ended up using the most and finally had success with.  It still strikes me as odd that there is no manually way to pick ethernet, it can only be choosen following a 'restore defaults', and only from the 3-option list (the 4-option list had the same ethernet choice, but it no worky).
    Thanks for the response.  I really do appreciate it.
    Aiport Extreme Gen5 - internet access and router
    Airport Express Gen2 - connected via ethernet, extending my wireless
    - configured while connect directly to the Extreme, but now on a switch (16-port hub)
    Using Airport 5.6.1
    1) Restore Defaults from Base Station menu
    2) Following restart, Select Continue
    3) Of the 3 option presented, select 'ethernet.... extend network...'
      - if 4 options are present, may not work
    4) Wait for the green circle with the big white checkmark.
    5) Connected Express to the switch where a cable went to other end of house - works.
    Dead-zone went from 2mbps to 24mbps.
    I probably spent 4 hours chasing my tail in anger.  The correct way took about 5 minutes total.
    Thanks again.

  • Purchased used 4th g it has a lot of glitches sound is not working at all, shutting it off it automaticlly turns back on in 1 min, camera works but camcorder doesn't, all game apps work fine, did freeze when on app store but reset and it seemed to work.

    my ipod touch 4th g is running ios 6.0.1 but is very glitchy.  there is no sound and if I plug in earphones it freezes up.  camera does work but freezes when i try to use Camcorder.  App store was acting up but after reseting it multiple times it is working again.  When I turn it off with the slidder it reboots after one minute.  It is also hard to put into dfu mode and take back out holding consecutive buttons doesn't work....Was stuck in recovery mode for quite awhile till I used a program to kick it out.  I did find youtube vidio that showed how to restore audio by deleating a file but of course this takes a little work and don't know if it would work with this ios. Was just wondering what I can try now.  Would realy like sound.  not so worried about camcorder.  Did check settings and no apps are blocked.

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup. See:
    iOS: How to back up
    - Restore to factory settings/new iOS device.
    iOS: How to back up your data and set up as a new device
    - Make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar

Maybe you are looking for

  • 96 KHZ Project. IS IT REALLY POSSIBLE?

    Hi! I use a G5 dual 1.8, 2Gb RAM, a second SATA Drive (used to audio and sample files), and a Lacie Big 400 (used to Ivory and DFH library), M-Audio Midisport 8X8 USB Interface, and MOTU 24 I/O audio interface. For the first time, I tried out a 96Kz

  • Any Info On A Server?

    Well I Run A Website And My Host's Partner Didnt Pay Bill And Probably Won't What I'm Wondering Is If It Would Be Better To Just Buy My Own Server. I Was Looking At These 3 On BestBuy.com 1 Tb Hp Mediasmart Server 1.5 Tb Hp Mediasmart Server Seagate

  • Red line rendering

    I keep getting a red line in the rendering bar every time i put a clip into the timeline, after reading the manual i was instructed to make sure that the clip and sequence settings were matching so i did this, but nothing has changed, i still can't p

  • I cant get mms on my 3gs

    I can not get mms to show on my phone, this have never been a problem been a before? Help

  • Adjusting length of audio regions during playback causes pops..

    ... and complete audio dropout, until I stop and restart. It's a real pain when comping vocal takes. Happened about a dozen times on the trot, then crashed. Just my system, or anybody else got this?