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 !!!

Similar Messages

  • 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

  • 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?

  • 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

  • Is 4/4 time the only time signiture available and what audio file type can will import using the media browser?

    Is 4/4 time the only time signiture available and what audio file type can will import using the media browser?

    latela33 wrote:
    Is 4/4 time the only time signiture available
    so far, yes, if you want more, be sure to let Apple know:
    http://www.bulletsandbones.com/GB/GBFAQ.html#sendfeedback
    (Let the page FULLY load. The link to your answer is at the top of your screen)
    latela33 wrote:
    what audio file type can will import using the media browser?
    44.1k/16-bit AIFF, WAV, or Caf files

  • What video types can be imported and played on my iPhone?

    I was able to import videos to i Tunes however I was unable to sync them. I received an error message stating that the video will not sync because it cannot be played on my iPhone. Most of the videos I tried to sync are Quicktime videos so I am wondering if there is a certain type or types that can only be played on iPhone

    i convert my videos into the mp4 format and have no problems uploading them to the phone.

  • What Clip File Types can be imported??

    I have some clips I imported on a windows machine (AVI, MPEG2, etc.) Which ones are documented as supported on iMovie??

    read Jon's reply in this thread ..
    https://discussions.apple.com/thread/1891778?start=0&tstart=0
    keep in mind: avi nor mov are 'formats', just media wrappers = box of chocolate, you'lll never know ...
    stay within normal video standards, such as 1080i or 720p, 25/29.97fps ... mov encoded with h264 should be fine.
    and avoid fancy stuff such as surround, Dolby 5.1., 3D ........

  • Can't import iTunes backup disc onto 2nd PC - error code (-69)

    Hi, I've taken a data file backup CD from iTunes on my desktop and tried to import it into iTunes on my laptop. Have done this successfully before but this time I get "unkown error (-69)" in iTunes on the laptop and the CD won't open in iTunes. Both PCs are running the same version of iTunes (6.0.4.2); I can read the CD in Windows Explorer on the laptop, and the CD opens in iTunes on the desktop wihout any problem.
    Any further info required?
    Thanks in advance for your help
    Asus A6B00U   Windows XP  
    Asus A6B00U   Windows XP  

    I re-burned the backup disk using a brand new CD and iTunes on the laptop has opened it OK.

  • I can't install Itunes because of Windows installer package error, please help!

    I tried installing Itunes for a long time on my desktop, I'm running Vista. Everytime I try to install Itunes it runs for a bit, then gives me this message
    " There is a problem with Windows Installer package. A program required for this install to complete could not be run. Contact your support personnel or package vendor."
    I went through many posts on how to solve this problem, I uninstalled and deleted all the files from this thread : http://support.apple.com/kb/HT1923
    and tried to reinstall Itunes, didn't work, same error message.
    After i tried to install Itunes in Clean boot still didn't work.
    I also downloaded MicrosoftFixit.Program which apperantly fixed this problem for some people, not for me.
    Then I extracted Itunes and tried to install all the components seperately, everything installed correctly, however when I tried to install Apple Software update
    I got the same error message, i think it is the Apple software update that is causing this problem but I have no idea how to solve this problem.
    How do I solve this, any thoughts or suggestions???

    Go to Microsoft website to fix install and Unistall problems. Click "Run now" from Fix it to remove all iTunes & related installer files:
    http://support.microsoft.com/mats/Program_Install_and_Uninstall
    Be aware that Windows Installer CleanUp Utility will not remove the actual program from your computer. However, it will remove the installation files so that you can start the installation, upgrade, or uninstall over.
    Now, uninstall Bonjour from Control Panel.

  • Cisco AnyConnect can't be installed on my machine (installation package error)

    Hi,
    for quite some time I've had problems installing AnyConnect on my machine. It has worked fine on my colleagues' hardware-wise identical machines. During installation I get two error popups:
    I have tried installing several versions, and the latest one I tried is: anyconnect-win-3.1.05152-pre-deploy-k9. I have tried through the administrator login, turning off antivirus, clearing the registry etc. etc. etc. From what I read when Googling this might have something to do with network interfaces? But I really don't know how to proceed, and I really need the program.
    I am using Windows 7 Enterprise SP1 on a Dell Latitude.
    Thank you for any help

    HI,
    While installing Cicso any connect "anyconnect-win-3.1.05160-web-deploy-k9", i have an error "there is a problem with this windows installer package a program run as part of the setup" could some one help me out.
    Mail ID: [email protected]
    Regards,
    Giri M

  • RRAS issue - only one client can connect?

    Hello, I have set up my server 2012 standard server and set it up as a DC and RRAS server, the VPN works perfectly but only one user can use it, the second user will always get error 800. there are enough IP slots in the LAN and it is correctly assigning
    a new IP address to each new user that connects, but only one can connect at a time without error - I have searched around and couldnt find anything conclusive - is this a licensing or configuration issue?
    Thank you very much for your time and consideration,
    Larry

    Hi Larry,
    As far as I know, it’s not recommended to install RRAS server role on DC, since it would make the DC multi-homed.
    I suggest you install RRAS server role on another server.
    Here is a related blog below for you:
    Multihomed DCs with DNS, RRAS, and/or PPPoE adapters
    http://blogs.msmvps.com/acefekay/2009/08/17/multihomed-dcs-with-dns-rras-and-or-pppoe-adapters/
    If there is any RRAS/VPN related query, please refer to Network Infrastructure Servers forum below to get more efficient support:
    https://social.technet.microsoft.com/Forums/en-US/home?forum=winserverNIS
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Can't Import WMV Files - Header Error?

    Hello, talented and attractive Adobe Forum.  Weird problem with Premier Pro CS5 - when I try to import an AVI file I'm getting a message telling me that it can't import the file because of a header error.  Can anyone tell me what that means, exactly?  These AVI files were converted from MTS files using a freeware program, HD Converter, by Coyote.  I've used this app before without a problem and the guy who's using my old software (CS3) is using these files without a problem.  Any reason why CS5 might be having this issue with them?
    Any advice or suggestions welcome and appreciated.
    Thanks!

    thanks.
    after reading about movie headers, i have come to believe that adobe could support wmv formats. but simply chooses not to do it.
    apparently a lot of other software providers have made the same decision.
    here is the really funny thing....i tried to make a dvd from the wmv files using microsoft's own dvd maker program
    that they ship w windows 7. guess what - that does not work either!!!
    apparently no-one, including microsoft, likes the proprietary microsoft format and don't feel like taking the time
    to figure it all out. i cannot blame them.
    what would be great - if adobe would just let you know that they do not support it, instead of the cryptic error message
    about not being able to read the header. but then, adode is like that. they are so obtuse.  they remain commited to
    providing an incoherent user experience.
    in the meantime, you just have to convert these formats.
    I found a great shareware program called Hamster. It is totally free and has a lot of great reviews. It is easy to use. you
    can get it on cnet.com.
    I converted the WMV to AVI, which loaded into Premiere Pro and I was able to finish my video.
    rob

  • An event in one of my libraries no longer has the event icon next to it's name just the name only. I can't view the clips in the event or import new clips. I've tried deleting the event and nothing.

    an event in one of my libraries no longer has the event icon next to it's name in the browser just the name only. I can't view the clips in the event or import new clips. I've tried deleting the event and nothing. After control clicking the event it shows all the media that has been previously imported. But it does not allow anything to be done to the event including deleting. This showed up at the beginning of a normal import session. This is fortunately the back-up evant.

    Did you perhaps mess with the contents of the library in the Finder?
    You may try the solution suggested in this thread:
    https://discussions.apple.com/message/24915790#24915790

  • How can i import my e-mail contacts? i don´t want to type one at a time.  Is there a way to import all at once?

    How can i import my e-mail contacts? i don´t want to type one at a time.  Is there a way to import all at once?

    Sync your old address book with the one on the iPod.  You may have to import them into an intermediate address book like Google contacts since that can be done by importing a file you should be able to export for your address book.  Without know your old address book that is all I can say.

Maybe you are looking for

  • [SOLVED] XFCE Install Failure

    Proceed with installation? [Y/n] libsoup                  105.1K  117.3K/s 00:00:01 [#####################] 100% gnome-keyring            154.7K  130.0K/s 00:00:01 [#####################] 100% error: failed retrieving file 'db4.1-4.1.25-1.pkg.tar.gz'

  • Inserting Logos into Signatures

    Hi, I'm a newbie to Mac (less than 5 days old) .... looking for a little help. I've managed to create an email signature and dragged my company logo from my stick into the window but I can't resize it. Is there someway I can do this easily???

  • Satellite A660 - cannot see saved files

    The problem is with a game that I have. I can see a file that I downloaded from the net to play, but those files from the game that I have saved do not show up when I look for them they don't show up. But when I view compatibility files they show, bu

  • How to display the same field more than once in  report with diff. filters

    Hello, I have an RTF template I built out. There is a 1:M relationship of an opportunity:deal point. I want the user to be able to pass the opportunity and then see a report including all the deal points. The report looks something like this: Date: D

  • Why are calendar event colors being changed?

    Something (and it appears to be iCloud related) changed calendar colors on my calendars (not on shared calendars from other accounts). Ideas? I've seen this before. I cannot remember how it got resolved. I updated one of my Macs to the "new" 10.8.5.