Getting error message "Only a type can be imported-" when trying to execute jsp page

I get the error: "Only a type can be imported. com.adobe.cq.TestServiceImpl resolves to a package in adobe day cq5
I have created one bundle and installed in felix console. The status of the bundle is also Active. And also it is available in both service and component console.
Here is my TestServiceImpl class in com.adobe.cq bundle
package com.adobe.cq;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Service;
import org.osgi.framework.BundleContext;
import org.osgi.service.component.ComponentContext;
import javax.jcr.RepositoryException;
import org.apache.felix.scr.annotations.Property;
import org.apache.felix.scr.annotations.Properties;
//src.component
//declares the class component. This will provide a wrapped ManagedService component in the OSGI container.
//src.service interface="SampleService"
//declares the service we are offering. Actually, the interface attribute is superflous, as by default, all implemented Interfaces are used.
@scr.component
@scr.service interface="testService"
@Component(immediate = true, metatype = true)
@Service
@Properties( {
@Property(name = "service.description", value = "abcd"),
@Property(name = "label", value = "myLabel") })
public class TestServiceImpl implements TestService {
public String sayHello() {
     return "Hello World!";
Here is my jsp code
<%@include file="/libs/foundation/global.jsp"%><%
%><%@include file="/apps/mine/includes/functions.jsp"%><%
%><%@ page import="com.adobe.cq.TestServiceImpl,
org.apache.sling.api.SlingHttpServletRequest,
                java.util.List"%><%
%><%
SlingHttpServletRequest r = (SlingHttpServletRequest)request;   
                TestServiceImpl testService = sling.getService(TestServiceImpl.class);
                out.println("testService:::"+testService);
%>
<div id="te-nav" style="display:block !important;">
</div>
Is it because of am using annotation in TestServiceImpl class?
Could you please tell me how to fix it?
Regards,
Anderson

Hi Pawan,
Thanks for your information. It was problem with my pom.xml It started to work after changing my POM.xml
I am not able to get sling service for TestServiceImpl. But I am only able to create TestService which is my interface. I need to get reference for TestServiceImpl class not for TestService interface. Please help me to make it.
i have created TestServiceImpl and TestService class for testing whether my bubdle is crating all the folder structure or not.
But my requirement is like assume class A has some methods like getMenuLink, setMenuLink.. And In class B i am calling some methods in class A and doing some manipulation in createLink method.
Here class B does not have any interface. Not implementing  any interface. But I need to get class B refererence via sling.getService.
I know that if we are using maven SCR plugin..we need to have @component, @service. And All java classes are not services. Will it work if I add activate, deactivate method in class B?
Could you please tell me how to proceed next?
Thanks,
Anderson

Similar Messages

  • HT4993 getting error message could not activate cellular data network when trying to access the internet without using wifi.  what do i need to do?  i have already restore the phone.

    getting error message could not activate cellular data network when trying to access the internet without using wifi.  what do i need to do?  i have already restore the phone.

    contact your phone carrier as they handle cellular network.

  • HT1595 Apple TV loses complete internet connection every 5 minutes.  Tried restarting.  Tried unplugging the router, unplugging the modem, and unplugging Apple TV and it still does't work.  Get error message 22 saying it can't connect when I put in my pas

    It only connects for minutes at a time.  I have not changed my router, modem, or placement of my apple tv, modem, or router.  It just suddenly stopped working.  Any suggestions?

    Mine is doing the exact same problem!
    Ever since I rented a movie from itunes with the ATV connected to the internet via wireless (strong signal) from an airport extreme connected to my modem from charter communications (with about 30Mbps speed) it will suddenly stop and by stop I mean it leaves the movie completely and says YOUR APPLE TV IS NOT CONNECTED TO THE INTERNET.
    So if I go to my network in the apple tv menu, sure enough my wireless network is missing. But the ipad is finding it, and the imac on wireless is finding it, and it is working. So we hit restart on the apple tv. When it comes back all is good. Then maybe the movie runs ten minutes and it does it again.
    In some cases the wireless network reappears but if I select it it still says I'm not connected to the internet.
    I have to restart everytime or it will not properly reconnect to the internet or find my wireless net work and actually work and connect.
    It has been connected in the same place for a year and never had an issue.
    Nothing has changed..... I have not added a wall to cause interference....
    My iPad and iPhone show FULL strength.
    Please help!

  • I purchased the TV FRIENDS in HD on iTunes (the iTunes store stated with every HD purchase you get the SD version as well) and want to download on my I Pod Classic and get error message the I POD can play this video.  How do I download?

    I purchased the TV FRIENDS in HD on iTunes (the iTunes store stated with every HD purchase you get the SD version as well) and want to download on my I Pod Classic and get error message the I POD can not play this video.  How do I download?

    I see there's no answer.
    This issue has ****** me off for a long time, and I am fed the **** up with it.
    I DO NOT WANT TO DOWNLOAD the Movies and TV shows to every *^&%^$%# Apple device, ONLY the MUSIC!!!
    COme on Apple!!!  FIx this!!!

  • Only a type can be imported. MyClass.anyclass resolves to a package error

    I know there's been many posts with this problem, however, I haven't been able to fix mine.
    I have an app that uses JSP's, java libraries with Tomcat and MySQL. The app works fine, however, since I migrate to a new server, I start getting this error.
    The funny thing here is that JSP's that are located in the root directory (public_html) works fine, while all the other JSP's throw this exception:
    "Only a type can be imported. MyClass.anyclass resolves to a package error"
    If I move any JSP from "public_html/any_directory" to "public_html", then that very same JSP works fine.
    The java libraries are located in a jar file, in WEB-INF/lib, and it's classpath is perfectly written.
    Altough, I know there's nothing wrong with the code of the JSP's, here it is, in case that helps. I'm sure that this error is caused by some Tomcat's configuration, however, I haven't been able to find it.
    <%@ page import="Solutio.AdminRH.Entity.ICatalogosAdminDB" %>
    <%!
         private ICatalogosAdminDB theObj = null;
         public void jspInit() {
              try {
                   theObj = new ICatalogosAdminDB();
              } catch (Exception ex) {
                   System.out.println(ex);
         public void jspDestroy() {
              theObj = null;
    %>
    <html>
    Any help will be really appreciated.
    Thank you.

    I haven't solved this problem yet. Here's some extra information about the same problem:
    1 - As you know, Tomcat compiles JSP's the first time they're executed, so I checked the java code generated for:
    /public_html/my_JSP.jsp
    and
    /public_html/any_folder/my_JSP.jsp
    both codes are exactly the same, however, as I mentioned before, only the one located in /public_html/ works.
    It seems to be a problem with Tomcat's classpath, but I haven't been able to fix it yet.
    2 - In the Tomcat's conf file "server.xml", I found this, and it looks just fine, in the older server, I had exactly the same conf and it used to work.
    <Host name="axtl.com" appBase="/home/axtlccom/public_html">
    <Alias>www.axtl.com</Alias>
    <Context path="" reloadable="true" docBase="/home/axtlccom/public_html" debug="1"/>
    <Context path="/manager" debug="0" privileged="true"
    docBase="/usr/local/jakarta/tomcat/server/webapps/manager">
    </Context>
    </Host>
    have anyone experieced something like this, PLEASE HELP !!!

  • Have not used Itunes in a while and I cant access Itunes Store with out downloaded new version but I keep getting error message with download. Can I just access the Istore without downloading new version?

    Have not used Itunes in a while and I cant access Itunes Store with out downloaded new version but I keep getting error message with download. Can I just access the Istore without downloading new version?

    downloaded new version but I keep getting error message with download.
    What does the error message say, andrea? (Precise text, please.)

  • Only a type can be imported. package.Class resolves to a package

    Hi,
    I made a class for database connection named ConnectionClass.class.
    The JSPs in public_html directory working fine with import and session variables.
    but JSPs under public_html/subdirectory are unable to import this Class and also unable to access session variables.
    I have deploy this class under public_html/WEB-INF/classes/ directory.
    and also in a jar file vidyabharti.jar under public_html/WEB-INF/lib directory
    I am importing it in JSPs like
    <%@ page import="vidyabharti.ConnectionClass, java.sql.*" %>
    but i am getting following error
    An error occurred at line: 6 in the generated java file
    Only a type can be imported. vidyabharti.ConnectionClass resolves to a package
    An error occurred at line: 110 in the jsp file: /welcome.jsp
    ConnectionClass cannot be resolved to a type
    109: <%
    110: ConnectionClass cs=null;
    An error occurred at line: 115 in the jsp file: /welcome.jsp
    ConnectionClass cannot be resolved to a type
    cs=new ConnectionClass();
    i am using Tomcat 5.5.28.
    please help me.

    Hello,
    It's a possible issue whith the JDT compiler version of your tomcat distribution.
    You know that jasper is the engine that transform jsp to classes and to achive this goal uses a jdt compiler or the ant task javac compiler.
    First check that the JDT compiler class is present in the trace of the exception you have.
    If this is the case follow the steps of the tomcat documentation in order to use the ant compiler.
    http://tomcat.apache.org/tomcat-5.5-doc/jasper-howto.html
    Apache Ant, which was used in previous Tomcat releases, can be used instead instead of the new compiler by simply removing the common/lib/jasper-compiler-jdt.jar file, and placing the ant.jar file from the latest Ant distribution in the common/lib folder. If you do this, you also need to use the "javac" argument to catalina.sh.
    If you check the code of the tomcat compilation context seems that you can do the same, without removing any file, by setting the compile parameter of the JspServlet to an arbitrary value diferent from null.
    Try this other alternative by editing the file %TOMCAT_HOME%\conf\web.xml
    and set the compiler attribute as follow
        <servlet>
            <servlet-name>jsp</servlet-name>
            <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
            <init-param>
                <param-name>fork</param-name>
                <param-value>false</param-value>
            </init-param>
            <init-param>
                <param-name>xpoweredBy</param-name>
                <param-value>false</param-value>
            </init-param>
            <init-param>
                <param-name>compiler</param-name>
                <param-value>Ant</param-value>
            </init-param>
            <load-on-startup>3</load-on-startup>
        </servlet>If this works for your problem we can check the jdt code and perhaps make a patch.
    Best reggards,

  • Only a type can be imported. x.y.z.Utility resolves to a package.. HELP!!!

    anyone help me.. pls..
    the class exists properly in the package folder.
    No error found as I compiled it.
    Tomcat5.5 + JDK-1.5.0_06 + JBoss-4.0.2...with a Struts framework.
    the error is really special for me. I tried all opinions to sort it out.
    I changed import file to the other at 1 line. the same error occurred, though.
    ex) <@ page import="x.y.z.Test" %> or <@ page import="x.y.z.AnyClass" %> --> ERROR: Only a type ~~~
    if delete that line, 404 error is showed. stuck~~~~~
    other jsp pages are good. Only the type's page below causes the error. weird~
    what's problem? Had anyone had a same problem?
    aa.jsp---------------------------------------------------------
    <@ page import="x.y.z.Utility" %>
    <jsp:forward page="/servlet/MypageManager">
    <jsp:param name="ACT" value="main">
    </jsp:forward>
    2009. 5. 6 ¿ÀÈÄ 2:03:59 org.apache.catalina.core.StandardWrapperValve invoke
    ½É°¢: Servlet.service() for servlet jsp threw exception
    org.apache.jasper.JasperException: Unable to compile class for JSP
    Generated servlet error:
    Only a type can be imported. x.y.z.Utility resolves to a package
         at org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:84)
         at org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:328)
         at org.apache.jasper.compiler.JDTCompiler.generateClass(JDTCompiler.java:414)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:297)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:276)
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:264)
         at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:563)
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:305)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
         at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:541)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
         at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:833)
         at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:639)
         at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1285)
         at java.lang.Thread.run(Thread.java:595)

    aaa.jsp
    <%@ page contentType="text/html; charset=euc-kr" import = "kr.co.gen128.common.Utility" %>
    <jsp:forward page="/servlet/MypageManager">
        <jsp:param name="ACT_TP" value="MYPAGE_MAIN" />
        <jsp:param name="TOP_MENU" value="MYPAGE" />
        <jsp:param name="CENTER_TITLE" value="MYPAGE_MAIN" />
    </jsp:forward>aaa_jsp.java
    package org.apache.jsp.mypage;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import javax.servlet.jsp.*;
    import kr.co.gen128.common.Utility;         
    public final class index_jsp extends org.apache.jasper.runtime.HttpJspBase
        implements org.apache.jasper.runtime.JspSourceDependent {
      private static java.util.List _jspx_dependants;
      public Object getDependants() {
        return _jspx_dependants;
      public void _jspService(HttpServletRequest request, HttpServletResponse response)
            throws java.io.IOException, ServletException {
        JspFactory _jspxFactory = null;
        PageContext pageContext = null;
        HttpSession session = null;
        ServletContext application = null;
        ServletConfig config = null;
        JspWriter out = null;
        Object page = this;
        JspWriter _jspx_out = null;
        PageContext _jspx_page_context = null;
        try {
          _jspxFactory = JspFactory.getDefaultFactory();
          response.setContentType("text/html; charset=euc-kr");
          pageContext = _jspxFactory.getPageContext(this, request, response,
                         null, true, 8192, true);
          _jspx_page_context = pageContext;
          application = pageContext.getServletContext();
          config = pageContext.getServletConfig();
          session = pageContext.getSession();
          out = pageContext.getOut();
          _jspx_out = out;
          out.write('\r');
          out.write('\r');
          out.write('\n');
          if (true) {
            _jspx_page_context.forward("/servlet/MypageManager" + (("/servlet/MypageManager").indexOf('?')>0? '&': '?') + org.apache.jasper.runtime.JspRuntimeLibrary.URLEncode("ACT_TP", request.getCharacterEncoding())+ "=" + org.apache.jasper.runtime.JspRuntimeLibrary.URLEncode("MYPAGE_MAIN", request.getCharacterEncoding()) + "&" + org.apache.jasper.runtime.JspRuntimeLibrary.URLEncode("TOP_MENU", request.getCharacterEncoding())+ "=" + org.apache.jasper.runtime.JspRuntimeLibrary.URLEncode("MYPAGE", request.getCharacterEncoding()) + "&" + org.apache.jasper.runtime.JspRuntimeLibrary.URLEncode("CENTER_TITLE", request.getCharacterEncoding())+ "=" + org.apache.jasper.runtime.JspRuntimeLibrary.URLEncode("MYPAGE_MAIN", request.getCharacterEncoding()));
            return;
        } catch (Throwable t) {
          if (!(t instanceof SkipPageException)){
            out = _jspx_out;
            if (out != null && out.getBufferSize() != 0)
              out.clearBuffer();
            if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
        } finally {
          if (_jspxFactory != null) _jspxFactory.releasePageContext(_jspx_page_context);
    }Two types of error occurred randomly.
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Unable to compile class for JSP
    Generated servlet error:
    Only a type can be imported. kr.co.gen128.common.Utility resolves to a package
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:512)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    org.apache.jasper.JasperException: Unable to compile class for JSP
    Generated servlet error:
    Only a type can be imported. kr.co.gen128.common.Utility resolves to a package
         org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:84)
         org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:328)
         org.apache.jasper.compiler.JDTCompiler.generateClass(JDTCompiler.java:414)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:297)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:276)
         org.apache.jasper.compiler.Compiler.compile(Compiler.java:264)
         org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:563)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:305)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.20 logs.
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: Unable to load class for JSP
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:512)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:377)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    org.apache.jasper.JasperException: Unable to load class for JSP
         org.apache.jasper.JspCompilationContext.load(JspCompilationContext.java:598)
         org.apache.jasper.servlet.JspServletWrapper.getServlet(JspServletWrapper.java:147)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:317)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    java.lang.ClassNotFoundException: org.apache.jsp.mypage.index_jsp
         java.net.URLClassLoader$1.run(URLClassLoader.java:200)
         java.security.AccessController.doPrivileged(Native Method)
         java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         org.apache.jasper.servlet.JasperLoader.loadClass(JasperLoader.java:133)
         org.apache.jasper.servlet.JasperLoader.loadClass(JasperLoader.java:65)
         org.apache.jasper.JspCompilationContext.load(JspCompilationContext.java:596)
         org.apache.jasper.servlet.JspServletWrapper.getServlet(JspServletWrapper.java:147)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:317)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    note The full stack trace of the root cause is available in the Apache Tomcat/5.5.20 logs.Thanks a lot.
    Any other you need to see?

  • Help in JSP : Only a type can be imported x.y resolves to a package

    I have a strange problem,
    I have two domains
    http://client.spry-forms.com (login using demo/demo)
    http://spry-forms.com/ClientAdmin (login using demo/demo)
    The server is setup with only tomcat 6.0.18.0
    Both the above domains are mapped to tomcat/webapps/ClientAdmin.
    When some one logs in from the second url, the link CREATE NEW FORM at page http://www.spry-forms.com/ClientAdmin/forms.jsp works fine but
    when some one logs in from the first url (client.spry-forms.com) the link 'CREATE NEW FORM' at page http://client.spry-forms.com/forms.jsp produces this error
    org.apache.jasper.JasperException: Unable to compile class for JSP:
    An error occurred at line: 7 in the generated java file
    Only a type can be imported. view.DemoConnection resolves to a package
    An error occurred at line: 12 in the jsp file: /formeditor.jsp
    DemoConnection cannot be resolved to a type
    9: response.sendRedirect("../Authenticate.do?status=logoff");
    10: return;
    11: }
    12: DemoConnection con = (DemoConnection) request.getSession().getAttribute("dbconnection");
    13: String formid = request.getParameter("formid");
    14: String grpid[] = (String[]) request.getAttribute("groupArray");
    15: //String groupArry [] = (String[])request.getAttribute("groupArr");
    Can anyone give me a hint as to what is happening??

    evnafets wrote:
    http://spry-forms.com/ClientAdminThe "/ClientAdmin" bit is not part of a domain. Are you sure it is what you think it is?
    So do you import this class DemoConnection?
    What is the layout of your web application?
    How do you do the multiple domain config -> web application?Thank you for your reply and
    Sorry for my late response
    Ok the /ClientAdmin is not a domain, but it is a directory in the spry-forms.com
    I import the DemoConnection.java like this
    <%@ page import="java.sql.*,view.DemoConnection,java.util.*"%>I did not do the domain config, as I am not the administrator, The admin wants me to resolve this.
    I think the problem is caused because tomcat cannot find the DemoConnection.class.
    By layout I think you are asking about the direcotry tree structure
    It is like this
    Tomcat
        webapps
            ClientAdmin
                jsp files
                WEB_INF
                    web.xml
                    lib
                    classes
                        poolman.xml
                        folders
                        view
                            DemoConnection.class
                            some more classesDo you think the problem is with the domain configuration....?
    Edited by: Sonu611 on Feb 26, 2009 9:53 PM

  • Installed itunes update 10.5.0.142 and now get the error message "Disc Burner or Software Not Found" when trying to burn playlist to disc.

    Installed itunes update 10.5.0.142 and now get the error message "Disc Burner or Software Not Found" when trying to burn playlist to disc.  Windows 7

    Hello queenabs,
    It sounds like you are trying to burn a playlist to a disc in iTunes, but you are getting the error, "disc burner or software not found."  I found a couple of resources that I think might help with an error like this.
    I recommend starting with the steps in this article:
    iTunes for Windows: Optical drive is no longer recognized, or "Disc burner or software not found" alert after install
    http://support.apple.com/kb/TS2308
    If you are still having trouble with burning a disc after following the steps in that article, I recommend following the steps in this article:
    iTunes for Windows: Additional troubleshooting tips for burning issues
    http://support.apple.com/kb/TS1374
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • What do I do when I get the message "Your Apple ID has been disabled" when trying to purchase songs?

    What do I do when I get the message "Your Apple ID has been disabled" when trying to purchase songs? How do I enable it again so that I can purchase songs again?

    Enter "Apple ID disabled" in the search box at the top of this page.
    http://support.apple.com/kb/TS2446

  • TS1424 I keep getting a message that my ID has been disabled when trying to download an app. I have changed password I with apple. Any ideas what is wrong?

    I keep getting a message that my ID has been disabled when trying to download an app. I have changed password with apple. Any ideas what is wrong?

    If you've changed your password and it still shows disabled then try logging out of your account on the iPad by tapping on your id in Settings > iTunes & App Stores and then log back in and see if that 'refreshes' the account on it
    If that doesn't fix it then you might need to contact iTunes Support :  http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page

  • I have recently upgraded to Yosemite and when launching PS I get error message 150:30.  Can anyone tell me what this means?

    I have recently upgraded to Yosemite and when trying to launch PS I get an error message 150:30.  Can anyone help me out with this please?

    Yes. The upgrade broke your CS4 install. You have to reinstall.
    Easiest way to fix this is to download the installer Download CS4 products and have your serial number at the ready.
    Then you will need to download and install the updates for Photoshop, Camera Raw, and Bridge here: Product updates
    There is a Terminal fix, but you have to be familiar with Terminal and running the python license Repair script. You will need the bash shell on your user account. If that makes sense to you, we can try that.
    Gene

  • Get error message that server could not be found when sending email thru iPhoto

    I have established a icloud/mobile me account.  Trying to use iphoto to send photos with emails and always get error message that server coule not be found.

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • Error message stating that my phone is disconnected when trying to backup to iMac

    I am unable to back up my iPhone 6 to computer (iMac) keep getting error message saying that my phone is disconnected.  The phone syncs with iTunes on iMac but I am unable to back up without getting the error message saying that the phone is disconnected.  I can back up to iCloud but not to iMac.
    Any suggestions?  I was able to back up for about a week and now this message appears every time.
    Help?
    thank you.

    This means that someone has attempted to guess the passcode too many times.
    See here:
    http://support.apple.com/kb/HT1212
    If you are unable to restore, place the device into recovery mode and then restore:
    http://support.apple.com/kb/HT1808

Maybe you are looking for

  • Can not do anything on the app store ( need to update my payment method)

    Ok, so i got my ipad about a year ago, and for the first three months, i have been using itunes cards to download stuff from the app store. Soon after this, i realised that since i dont really go out, it could be a bit of an inconvenience for me, so

  • How do i install  a cd rom on my mac mini

    former windows guy here I have this CD-rom for my Sony voice recorder i inserted the cd,drug it to the Macintosh HD but it still wont work I need to do something to get my mac to pull the files off my recorder so i can store them on the mac. when i c

  • Cover Flow on one monitor?

    Any way to get the Cover Flow to work on one of two monitors? Have two 20"ers and would be nice to have a screen to work on too:)

  • ACS Solutions 4.2.1 15-2

    I am having authorization issues with ACS Release 4.2(1) Build 15 Patch 2 for Windows.  I have certain devices that I can authentication and pass authorization.  However, on the 4900m routers (vrf enabled) and 3750 I can authenticated but fail author

  • When i save to jpeg on photoshop the colors are dulled out and "depth" is lost (screen caps)

    i am so frustrated i have been working with images about 27in wide and ever since every time i save an image the colros are washed out i can attach any information needed evevn pass on the psd its self pelase help! Rite is photoshop file left is jpeg