Problems installing Axis with WLS 8.1

I'm having problems installing Apache Axis with WLS 8.1.
I'm totally new to WLS, so this may be at the heart of the problem.
I install Axis as per the installation instructions.
These are the steps I followed:
1. Installed the axis directory to
C:\bea\weblogic81\samples\domains\examples\applications\axis2. Added xml-apis.jar and xercesImpl.jar to the AXISCLASSPATH ( the complete AXISCLASSPATH is
C:\axis-1_2RC2\lib\wsdl4j.jar;C:\axis-1_2RC2\lib\axis-ant.jar;C:\axis-1_2RC2\lib\commons-discovery.jar;C:\axis-1_2RC2\lib\commons-logging.jar;C:\axis-1_2RC2\lib\jaxrpc.jar;C:\axis-1_2RC2\lib\log4j.properties;C:\axis-1_2RC2\lib\log4j-1.2.8.jar;C:\axis-1_2RC2\lib\saaj.jar;C:\axis-1_2RC2\lib\axis.jar;C:\javasoft\javamail-1.3.2\mail.jar;C:\javasoft\javamail-1.3.2\lib\smtp.jar;C:\javasoft\javamail-1.3.2\lib\mailapi.jar;C:\javasoft\javamail-1.3.2\lib\pop3.jar;C:\javasoft\javamail-1.3.2\lib\imap.jar;C:\javasoft\jaf-1.0.2\activation.jar;C:\javasoft\Xerces\xerces-2_5_0\xercesImpl.jar;C:\javasoft\Xerces\xerces-2_5_0\xml-apis.jar)3.Added weblogic.xml file to C:\bea\weblogic81\samples\domains\examples\applications\axis\WEB-INF\weblogic.xmlas per instructions with <prefer-web-inf-classes>true</prefer-web-inf-classes> 4. Started the examples server.
5. I then tried to validate the installation as per intructions using <a href="http://localhost:7001/axis"></a>
Everything looks OK with the Axis start page displayed.
6. I then tried happyaxis.jsp . All needed components are present with saaj.jar being picked up from :
Found SAAJ API (javax.xml.soap.SOAPMessage) at C:\bea\weblogic81\samples\domains\examples\examplesServer\.wlnotdelete\extract\examplesServer__appsdir_axis_dir_axis\jarfiles\WEB-INF\lib\saaj.jar7. I'm missing optional component xmlsec.jar
8. Now the trouble starts!!!
pretty much anything I try now comes back with:
AXIS error
Sorry, something seems to have gone wrong... here are the details:
Exception - java.lang.NullPointerExceptionI get this if I try:
<a href="http://localhost:8080/axis/services/Version?method=getVersion"></a>
or
<a href="http://localhost:7001/axis/services/AdminService?wsdl"></a>
or
<a href="http://localhost:7001/axis/services/Version?wsdl"></a>
So, what's going wrong? I cant think what to do next. Please help! I need this to work fairly urgently.
Nigel
PS. here's the NP exception in detail
java.lang.NullPointerException
        at weblogic.xml.jaxp.ChainingEntityResolver.popEntityResolver(ChainingEn
tityResolver.java:61)
        at weblogic.xml.jaxp.RegistryDocumentBuilder.setEntityResolver(RegistryD
ocumentBuilder.java:168)
        at org.apache.axis.utils.XMLUtils.releaseDocumentBuilder(XMLUtils.java:2
35)
        at org.apache.axis.utils.XMLUtils.newDocument(XMLUtils.java:312)
        at org.apache.axis.utils.XMLUtils.StringToElement(XMLUtils.java:485)
        at org.apache.axis.AxisFault.addFaultDetail(AxisFault.java:654)
        at org.apache.axis.AxisFault.addHostname(AxisFault.java:888)
        at org.apache.axis.AxisFault.addHostnameIfNeeded(AxisFault.java:877)
        at org.apache.axis.AxisFault.initFromException(AxisFault.java:280)
        at org.apache.axis.AxisFault.<init>(AxisFault.java:181)
        at org.apache.axis.AxisFault.makeFault(AxisFault.java:101)
        at org.apache.axis.server.AxisServer.generateWSDL(AxisServer.java:487)
        at org.apache.axis.transport.http.QSWSDLHandler.invoke(QSWSDLHandler.jav
a:62)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:324)
        at org.apache.axis.transport.http.AxisServlet.processQuery(AxisServlet.j
ava:1132)
        at org.apache.axis.transport.http.AxisServlet.doGet(AxisServlet.java:233
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
        at org.apache.axis.transport.http.AxisServletBase.service(AxisServletBas
e.java:301)
        at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
        at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run
(ServletStubImpl.java:1006)
        at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
pl.java:419)
        at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubIm
pl.java:315)
        at weblogic.servlet.internal.WebAppServletContext$ServletInvocationActio
n.run(WebAppServletContext.java:6718)
        at weblogic.security.acl.internal.AuthenticatedSubject.doAs(Authenticate
dSubject.java:321)
        at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:
121)
        at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppSe
rvletContext.java:3764)
        at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestIm
pl.java:2644)
        at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:219)
        at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:178)

I'm doing exactly the same thing (adding the xerces jars to my web-inf/lib), but happyaxis.jsp is saying the jar I'm using is invalid as follows:
Error: Invalid version of SAAJ API found in D:\bea\weblogic81\server\lib\webservices.jar. Make sure that Axis' saaj.jar precedes D:\bea\weblogic81\server\lib\webservices.jar in CLASSPATH.
Axis will not work.
Maybe this worked in a previous release/SP? I'm using 8.1SP3. I've read some other post saying you cannot override stuff in the weblogic.jar, so I've tried to add the jars to the pre_classpath, which resolves the issue but I get a soap fault related to this thread. Any ideas?
Thanks,
Lou
My weblogic.xml looks as follows:
<weblogic-web-app>
<jsp-descriptor>
<!-- Comment the jspServlet param out to go back to weblogic's jspc -->
<jsp-param>
<param-name>jspServlet</param-name>
<param-value>weblogic.servlet.WlwJSPServlet</param-value>
</jsp-param>
<jsp-param>
<param-name>debug</param-name>
<param-value>true</param-value>
</jsp-param>
</jsp-descriptor>
<container-descriptor>
<prefer-web-inf-classes>true</prefer-web-inf-classes>
</container-descriptor>
<url-match-map>
weblogic.servlet.utils.SimpleApacheURLMatchMap
</url-match-map>
</weblogic-web-app>

Similar Messages

  • Problem install PSE11 with a MAC OS disc on MACBook Air

    problem install PSE11 with a MAC OS disc on MACBook Air   I've done the serial number, adobe ID, Option and now install "installation Progess" with a message Please close all of the following applications to continue:  Adobe Bridge CS4, Photoshop Elements (Adobe Photoshop elements)  I've checked to insure those are closed. Yes they are close - press "continue" but nothing happen.  HELP!

    Look in Activity Monitor (Applications>Utilities) to see if there are any adobe processes still running somewhere in the background.
    (Incidentally, just in case you're a new switcher--closing the window doesn't normally close the program on a mac, unlike windows. You must still quit the program itself.)

  • Problem installing apps with iTunes!

    Hello!
    I have a big problem.I can't install apps using iTunes,because it shows me a message saying that the computer isn't authorized.But it is.Even after authorizing again,it shows the message again.If i install apps with appstore on my iphone,they work but as soon as i sync it with itunes the aplications stop working,i'm guessing because they aren't authorized.I tried everything,restoring my iphone,reseting it,uninstalling all my apple software and nothing.What should I do?

    Try these steps:
    The following steps will recreate the SC Info folder if it is unusable.
    Windows Vista or Windows 7:
    1. Open Computer from the Start menu.
    2. From the Organize menu, choose Folder and Search Options.
    3. Click the View tab.
    4. In the "Advanced settings" pane under "Hidden files and folders," make sure that the "Show hidden files and folders" option is selected.
    5. Click OK.
    6. Navigate to the following location by either typing it into the address bar, copying and pasting it into the address bar, or clicking through the folder hierarchy listed:
    C:\ProgramData\Apple Computer\iTunes
    7. Right-click the SC Info folder shown and on the shortcut menu, choose Delete.
    8. Restart the computer.

  • Problems installing PHP5 with oci8

    Hi!
    I know I've probably overlooked something completely obvious, but when following the instructions given in this site to install PHP5 with Oracle and Apache, when it comes to the 'make' command, I get the following error:
    /usr/local/php/php-5.2.4/ext/oci8/oci8.c: In function `php_oci_do_connect_ex':
    /usr/local/php/php-5.2.4/ext/oci8/oci8.c:1360: `OCI_STMT_CACHE' undeclared (first use in this function)
    /usr/local/php/php-5.2.4/ext/oci8/oci8.c:1360: (Each undeclared identifier is reported only once
    /usr/local/php/php-5.2.4/ext/oci8/oci8.c:1360: for each function it appears in.)
    /usr/local/php/php-5.2.4/ext/oci8/oci8.c:1393: `OCI_ATTR_STMTCACHESIZE' undeclared (first use in this function)
    make: *** [ext/oci8/oci8.lo] Error 1
    Obviously I'm missing some declaration, but cannot determine how...any ideas? BTW, I've searched the internet for an answer but have come up empty...
    Regards,
    DadaMungo
    Message was edited by:
    user601918

    Hi! Thanks, but yes, that's in order. A couple of questions, though:
    1. Does PHP5 work with Oracle 9.2? Would I need to upgrade to Oracle 10?
    2. I'm assuming that the definition for OCI_STMT_CACHE is to be found in the oci8 libraries and not in the PHP package. When I make a search for this, I come up empty. I'm wondering if I need to updgrade my oci8 libraries (currently with 9.2 package)?

  • Problem in axis with log4j

    Hi ,
    I am facing one problem in running WS with axis in tomcat. I am new to ws . I have downloaded apache-tomcat-4.1.34(apache-tomcat-4.1.34.zip) and axis-1_4(axis-bin-1_4.zip) from the site. Set Path, Classpath , catalina_home , java_home. I have tested with http://localhost:8080/axis/happyaxis.jsp. That has come ok. Then I have tested http://localhost:8080/axis/HelloServer.jws a simple ws written by me and that also has come ok.
    Problem is when I am running client code it is giving me log4j error message . My client code is also a simple one.
    package samples.userguide.example1 ;
    import org.apache.axis.client.Call;
    import org.apache.axis.client.Service;
    import javax.xml.namespace.QName;
    public class Client1
    public static void main(String [] args) {
    try {
    String endpoint = "http://localhost::8080/axis/HelloServer.jws";
    Service service = new Service();
    Call call = (Call) service.createCall();
    call.setTargetEndpointAddress( new java.net.URL(endpoint) );
    call.setOperationName(new QName("http://soapinterop.org/", "sayHelloTo") );
    String ret = (String) call.invoke( new Object[] { "sayHelloTo" } );
    System.out.println("Sent 'Hello!', got '" + ret + "'");
    } catch (Exception e) {
    System.err.println(e.toString());
    I am getting error in service.createCall();
    Exception in thread "main" java.lang.NoClassDefFoundError: org.apache.commons.logging.LogFactory
    at org.apache.axis.components.logger.LogFactory.class$(LogFactory.java:45)
    at org.apache.axis.components.logger.LogFactory$1.run(LogFactory.java:45)
    at java.security.AccessController.doPrivileged(Native Method)
    at org.apache.axis.components.logger.LogFactory.getLogFactory(LogFactory.java:41)
    at org.apache.axis.components.logger.LogFactory.<clinit>(LogFactory.java:33)
    at org.apache.axis.handlers.BasicHandler.<clinit>(BasicHandler.java:43)
    at org.apache.axis.client.Service.getAxisClient(Service.java:104)
    at org.apache.axis.client.Service.<init>(Service.java:113)
    at samples.userguide.example1.Client1.main(Client1.java:30)
    My classpath is
    C:\axis-1_0\axis-1_4\lib\axis.jar;C:\axis-1_0\axis-1_4\lib\commons-discovery.jar;C:\axis-1_0\axis-1_4\lib\commons-logging.jar;C:\axis-1_0\axis-1_4\lib\jaxrpc.jar;C:\axis-1_0\axis-1_4\lib\saaj.jar;C:\axis-1_0\axis-1_4\lib\log4j-1.2.8.jar;C:\axis-1_0\axis-1_4\lib\xml-apis.jar;C:\axis-1_0\axis-1_4\lib\xercesImpl.jar;C:\Program Files\Java\jdk1.5.0\lib;.;C:\axis-1_0\axis-1_4;
    log4j.properties file is in C:\axis-1_0\axis-1_4\lib directory.
    Can any one help me out.
    Thanks in advance
    Jyoti

    Pls..
    Can anyone help me??
    Thanks again,
    Francesco

  • Problem Installing WAS with com.sap.ip.bi.sdk.dac.connector.odbo

    Hi,
    we are installing the WAS640, and we get the following error:
    Deployment started Tue Mar 15 20:45:09 CET 2005
    ===========================================================================
    Starting Deployment of com.sap.ip.bi.sdk.dac.connector.odbo
    Aborted: development component 'com.sap.ip.bi.sdk.dac.connector.odbo'/'sap.com'/'SAP AG'/:
    Caught exception during module deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException:
    Cannot deploy application sap.com/com.sap.ip.bi.sdk.dac.connector.odbo..
    Reason: Cannot access methods of instance of class "com.sap.ip.bi.sdk.dac.connector.odbo.OdboManagedConnectionFactory".
    If anyone has any ideas.
    Thanks and regards,
    Tomas.
    p.s. the full dump...
    Deployment started Tue Mar 15 20:45:09 CET 2005
    ===========================================================================
    Starting Deployment of com.sap.ip.bi.sdk.dac.connector.odbo
    Aborted: development component 'com.sap.ip.bi.sdk.dac.connector.odbo'/'sap.com'/'SAP AG'/:
    Caught exception during module deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Cannot deploy application sap.com/com.sap.ip.bi.sdk.dac.connector.odbo.. Reason: Cannot access methods of instance of class "com.sap.ip.bi.sdk.dac.connector.odbo.OdboManagedConnectionFactory". Possible reasons: the class is not public and is in another package, the current method does not have access to the appropriate zero-argument constructor or there is no such method.; nested exception is:      com.sap.engine.services.deploy.container.DeploymentException: <--Localization failed: ResourceBundle='com.sap.engine.services.deploy.DeployResourceBundle', ID='com.sap.engine.services.connector.exceptions.BaseDeploymentException: Cannot access methods of instance of class "com.sap.ip.bi.sdk.dac.connector.odbo.OdboManagedConnectionFactory". Possible reasons: the class is not public and is in another package, the current method does not have access to the appropriate zero-argument constructor or there is no such method.
         at com.sap.engine.services.connector.jca.deploy.DeployAdmin.instantiateMCF(DeployAdmin.java:1211)
         at com.sap.engine.services.connector.jca.deploy.ContainerImpl.makeUpdate(ContainerImpl.java:859)
         at com.sap.engine.services.deploy.server.application.UpdateTransaction.makeComponents(UpdateTransaction.java:376)
         at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:379)
         at com.sap.engine.services.deploy.server.application.UpdateTransaction.begin(UpdateTransaction.java:148)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:290)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:323)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:3033)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.update(DeployServiceImpl.java:679)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:926)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:294)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:183)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:119)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    Caused by: java.lang.NoSuchMethodException: com.sap.ip.bi.sdk.dac.connector.odbo.OdboManagedConnectionFactory.setLogonAsUserID(java.lang.String)
         at java.lang.Class.getMethod(Class.java:986)
         at com.sap.engine.services.connector.jca.deploy.DeployAdmin.instantiateMCF(DeployAdmin.java:1187)
         ... 18 more
    ', Arguments: []--> : Can't find resource for bundle java.util.PropertyResourceBundle, key com.sap.engine.services.connector.exceptions.BaseDeploymentException: Cannot access methods of instance of class "com.sap.ip.bi.sdk.dac.connector.odbo.OdboManagedConnectionFactory". Possible reasons: the class is not public and is in another package, the current method does not have access to the appropriate zero-argument constructor or there is no such method.
         at com.sap.engine.services.connector.jca.deploy.DeployAdmin.instantiateMCF(DeployAdmin.java:1211)
         at com.sap.engine.services.connector.jca.deploy.ContainerImpl.makeUpdate(ContainerImpl.java:859)
         at com.sap.engine.services.deploy.server.application.UpdateTransaction.makeComponents(UpdateTransaction.java:376)
         at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:379)
         at com.sap.engine.services.deploy.server.application.UpdateTransaction.begin(UpdateTransaction.java:148)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:290)
         at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:323)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:3033)
         at com.sap.engine.services.deploy.server.DeployServiceImpl.update(DeployServiceImpl.java:679)
         at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:926)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:294)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:183)
         at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:119)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
    Caused by: java.lang.NoSuchMethodException: com.sap.ip.bi.sdk.dac.connector.odbo.OdboManagedConnectionFactory.setLogonAsUserID(java.lang.String)
         at java.lang.Class.getMethod(Class.java:986)
         at com.sap.engine.services.connector.jca.deploy.DeployAdmin.instantiateMCF(DeployAdmin.java:1187)
         ... 18 more
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineSingleModuleOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of com.sap.ip.bi.sdk.dac.connector.odbo finished with Error (Duration 6281 ms)
    Message was edited by: Tomas Altman
    Message was edited by: Tomas Altman

    Hi
    I had this same problem. Fixed it by reading the sp-stack manual.
    I bounced my instance and then stopped the connectors. Thereafter the deploy when through fine.
    Regards

  • Problem installing Ti4200 with k8t neo

    Hi Guys, I just upgraded my motherboard and processor and everything's fine until i try and install the drivers for my gfx card. As soon as i reboot i'm lucky if it stays on for a minute, either the computer reboots as soon as windows loads or it'll stay on for at best a minute then lock up and then reboot a few seconds later. When it comes back i get the message that windows has recovered from a serious error caused by the nvidia drivers and that my card was unable to complete a draw operation. I uninstall the drivers and everythings fine again.
    I've tried the card in another machine and it seemed fine. After reading the board i'm guessing its my 12v line that just isn't up to it. I tried unplugging all my drives except for my main HD but still get the exact same problem.
    I've run memtest and that seemed fine, every thing in my pc has the latest drivers installed(haven't installed service pack 2 because this was causing it to lock up but i'm guessing this was just because the card drivers were getting installed at the same time).
    I just wanna be sure i've tried everything before i go spending £50 on a power supply i might not need. Any ideas?

    Quote
    Originally posted by ste
    Hi Guys, I just upgraded my motherboard and processor and everything's fine until i try and install the drivers for my gfx card. As soon as i reboot i'm lucky if it stays on for a minute, either the computer reboots as soon as windows loads or it'll stay on for at best a minute then lock up and then reboot a few seconds later. When it comes back i get the message that windows has recovered from a serious error caused by the nvidia drivers and that my card was unable to complete a draw operation. I uninstall the drivers and everythings fine again.
    I've tried the card in another machine and it seemed fine. After reading the board i'm guessing its my 12v line that just isn't up to it. I tried unplugging all my drives except for my main HD but still get the exact same problem.
    I've run memtest and that seemed fine, every thing in my pc has the latest drivers installed(haven't installed service pack 2 because this was causing it to lock up but i'm guessing this was just because the card drivers were getting installed at the same time).
    I just wanna be sure i've tried everything before i go spending £50 on a power supply i might not need. Any ideas?
    Hi...I having Microstar GeForce4Ti4200 128MB DDR SDRAM AGP TV-Out DVI Retail version and i can´t get my new computer to start and showing anything at all on my monitor, only "invalid sync" is coming up on the screen and that´s it, i cant get any picture at all on my screen, did you have any problem with that? i allso wondering if the voltage can be wrong ( 3.3v) if so...my motherboard doesnt support 3.3v only 1.5v if i have understand this correct. I have try anything to get this brand new computer to start so i can get into the bios and making my settings, i have try to reset cmos and allso remowing the battery but nothing helps. The only that helps are to buy a newer video card  with 1.5 voltage onboard.

  • Problems installing iTunes with Windows 8

    Hi,
    I have recently purchased a laptop with Windows 8. I have appeared to have installed iTunes but when I open it I get an error message saying the following:
    Apple application support was not found. Apple application support is required to run iTunes. Please uninstall iTunes, then install iTunes again. Error 2 (windows error)
    I have tried installing it and re-installing but this has not helped
    I have seen similar questions (and answers) on this forum but I am totally confused by the answers. Could anyone provide with a very clear, jargon-free solution to this problem?
    Any help is much appreciated
    Ali

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    The section Install missing components has advice on breaking down the iTunes installer into the individual .msi files which might prove useful if a component such as Apple Application Support won't install normally.
    tt2

  • Problem installing Jalopy with WSAD5.1

    Hi,
    I tried to install Jalopy1.0 with WSAd5.1 IDE, by unzipping the Jalopy zip that I�ve downloaded from SourceForge.net in the eclipse/plugins directory.
    But when I restart the IDE, I can�t find any menu related to Jalopy. Can anyone please tell me if we need to do some configuration stuff to make it work?
    Thanks and Regards,
    Rohit

    any answers to this problem?

  • Problems Installing WPSM54G with HP Color Laserjet CP2025DN

    I have been trying to install the WPSM54G for use with my new HP Color Laserjet CP2025DN and cannot seem to get that to work.  Although I have followed several pieces of advice in these posts and elsewhere, those do not seem to do the trick in my case.
    > Checking that authentication is set to WPA and not WPA2
    > Firmware/installer update
    > Manual installation
    > http://www.ehow.com/how_5396340_set-vista-vista-windows-linux.html
    Although the printer is not on the compatibility list, neither was my Canon iPixma 4000, which connected just fine.  Any guidance you can provide will be greatly appreciated!
    Greg Manko

    Connect WPSM54G to the router with the Ethernet cable. Connect the printer to the WPSM.
    Now press the reset button on the print server for 5 seconds. See if you get any print out. If you get the print out, you will find the IP address of the WPSM. Using that IP address open the setup page of the WPSM and check the wireless settings. The wireless settings of your wireless router should match with the wireless settings of the WPSM.
    If you do not get the print out then run the CD that comes with WPS. When you run the CD it will search for the print server and you will find the IP address of the WPS. Once you get the IP address you can exit the setup program and open the setup page of WPS. Check the wireless settings of the router and WPS.
    Once you finish changing the wireless settings of WPS, you can disconnect WPS from the router and power cycle the WPS. Now try to ping the IP address of WPS when it is wireless. If you get replies then your computer is communicating with the WPS.
    Now you will need to add printer port on your computer.
    You can add the printer port using the CD or you can so it manually.
    Run the CD again and go to the option setup computer. Follow the instruction and at the end try to print the test page see if that works.
    You can add printer port manually also.
    Follow this link to add printer port manually on Windows Vista.
    Follow this link to add printer port on Windows XP.

  • Macbook won't startup, problems installing OSX with Firewire

    Hi,
    I have a Macbook that has been unable to startup correctly for several months, and finally got around to taking a look at it. It usually stays at either the blue/grey loading screens, but occasionally it will make it to the login window, where it will then just stop functioning.
    I was able to use a Firewire cable hooked up to my iMac, and when i turned on target disk mode, I was able to browse around some of the folders on my Macbook. Eventually, I will try to get into a folder, only for the connection to be timed out.
    I don't care about the files on the Macbook (I've long forgotten them, and have done fine without whatever they were), so I tried popping in the OSX install CD into my iMac so I can install OSX on my Macbook via Firewire. I can't use the Macbook drive, because it has somehow become sunken into the case, and the slot for the drive is not lined up with the slot on the case.
    I load up the OSX install CD application, hit the button to restart my iMac, and.... nothing. It just retarts itself every 15 seconds. If I pull out the Firewire cable, it still happens. I can't even get to gray Apple startup screen unless I take the install CD out.
    Anyone got any ideas? I'm pretty poor right now, and would like to get this laptop running so i can give it to my sister.

    If you want to use the iMac's DVD drive to reinstall OS X, this is the way to go:
    Insert the install disc into the machine while it is running, then *shut down* the iMac.
    Connect both computers using the Firewire cable.
    Power on the iMac with the T key held down.
    Power on the MacBook with the Option key held down.
    You should see the iMac's hard drive & the OS X install disc as boot options. Choose the install disc.
    From there, you can give reinstalling OS X another try.
    ~Lyssa

  • Problems installing shutter with yaourt *RESOLVED*

    So I'm trying to build shutter since IMO, it's the best linux screen capture software I've ever found.  My other laptop built it without issue (also Arch 64-bit).  However, this one keeps failing:
    Install or build missing dependencies for perl-goo-canvas:
    resolving dependencies...
    looking for inter-conflicts...
    Targets (1): goocanvas1-1.0.0-1
    Total Installed Size: 1.78 MiB
    Proceed with installation? [Y/n]
    (1/1) checking package integrity [#######################] 100%
    (1/1) loading package files [#######################] 100%
    (1/1) checking for file conflicts [#######################] 100%
    (1/1) checking available disk space [#######################] 100%
    (1/1) installing goocanvas1 [#######################] 100%
    ==> Making package: perl-goo-canvas 0.06-2 (Tue May 22 18:18:43 MST 2012)
    ==> Checking runtime dependencies...
    ==> Checking buildtime dependencies...
    ==> Retrieving Sources...
    -> Downloading Goo-Canvas-0.06.tar.gz...
    % Total % Received % Xferd Average Speed Time Time Time Current
    Dload Upload Total Spent Left Speed
    0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
    100 103k 100 103k 0 0 98712 0 0:00:01 0:00:01 --:--:-- 376k
    ==> Validating source files with md5sums...
    Goo-Canvas-0.06.tar.gz ... Passed
    ==> Extracting Sources...
    -> Extracting Goo-Canvas-0.06.tar.gz with bsdtar
    ==> Starting build()...
    sh: pkg-config: command not found
    at Makefile.PL line 52
    *** can not find package goocanvas
    *** check that it is properly installed and available in PKG_CONFIG_PATH
    at Makefile.PL line 52
    ==> ERROR: A failure occurred in build().
    Aborting...
    ==> ERROR: Makepkg was unable to build perl-goo-canvas.
    ==> Restart building perl-goo-canvas ? [y/N]
    As you can see, it installs the goocanvas1 package successfully, then procedes to not see it installed.  Anyone have any ideas how I can fix this?
    Last edited by tlmiller (2012-05-23 02:20:05)

    Thanks much!!  Once I saw that it was part of the base-devel meta package I realized I must never have installed that (could have sworn I had, but apparently not so much), fixed all my issues.  MUCHAS GRACIAS!!

  • Problems installing Windows with Boot Camp

    Hello,
    i am having this strange issue with boot camp. i have my windows 7 install dvd and go through all the standard boot camp procedure's, but once its finished partitioning the disk and restarts it just opens up to the apple logo on a grey screen, no spining logo, no status bar, nothing! ive left it for 6 hours on this screen 2-3 times now and nothing is happening. when i turn off and on again it just goes to a black screen telling me to install a bootable device and press any key. BUT THE INSTAL DISC IS IN!!! its driving me insane!
    windows was burned to a dvd using disc aid and the .iso copied over fine and was verified and everything. the machine im trying to get this to run on is a 15 mbp 2.66 i7. the optical drive has been replaced with a 120gb ssd and there is a 1tb internal sitting in the hdd bay. i dont know if that has any relavance to this issue? i boot osx 10.7 (mountain lion) off the ssd and am trying to boot camp my hdd, but that couldent cause issues could it?
    ive had a look around the other disscussions and fourums for 4 days now and i think i have seen nearly every bootcamp related youtube video there is! AND IT STILL DOSENT WORK!
    if any one has ANY idea or sugesstion on how i can rectify this issue it would be greatly appriceated.
    thanks for your time!
    Harry.

    "You can't do both boot drive and storage drive on the same drive.
    A boot drive requires (all data off first) it to be formatted GUID and OSX Extended Journaled, then OS X installed, then option key at boot to select that HD OS X boot drive, then BootCamp proceedure ran and install into the partition it creates on the HD."
    THANKS AGAIN, i think im getting closer to a solution, i really dident think that simple old bootcamp could become so complicated!.
    so i couldent (boot off the ssd as normal) and then create a seperate partition on the hdd of about 30gb, install osx on it, boot from that (with the optical bay back inside), create a thrid partition on the hdd via bootcamp then instal windows?
    its just that erasing and reformating the hdd sounds a bit scary, its taken months of getting the permissions and fixing rouge ubd processes all right so everything works perfectly and seamlessly together with the ssd+hdd combo
    "You can replace the data back into OS X on the HD and use that as extra storage, but your main use OS X user(s) needs to remain on the boot SSD.
    To do this you need to use Carbon Copy Cloner to clone the OS X boot partition of the SSD to the blank/empty of data HD, this will copy all the Users accounts accuratly so you can access them from the SSD.
    As you can see here, I can access the same user folders of my cloned partition from the original partition, no "-" minus signs on the folders as I'm the exact same user.
    I am currently booted into Macintosh HD and accessing my same named user folder on the clone on Macintosh HD 2.
    So basically OS X on HD will become your new "Storage Drive"
    this is pretty much exactly how im set up at the moment! with the user account and applications on the SSD and libarys like iphoto, itunes etc are on the HDD and i symlinked some others like the downloads off to the hdd aswell.
    thanks for your help again, ive given you some more stars for your time!
    Harry.

  • Problems installing CS6 with software disc

    I just purchased the student/teacher version of CS6 extended and when I insert the disc to install the software, nothing happens. I disabled my firewall and even tried to install it manually by going to setup, but no setup.exe file exists on the disc. I use windows. Please help!

    attach a screenshot showing the main contents of your disc including file extensions.

  • Problems installing plugin with Eclipse Classic

    Here is the complete error log. One thing I notice, when it
    talks about:
    file:\C:\Program Files\Adobe\Flex Builder 3
    Plug-in\com.adobe.flexbuilder.update.site/
    i do not see any folder in Flex Builder 3 Plug-in called
    "com.adobe.flexbuilder.update.site"
    !SESSION 2007-09-04 11:13:05.375
    eclipse.buildId=I20070625-1500
    java.version=1.5.0_11
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=gtk, NL=en_US
    Framework arguments: -application
    org.eclipse.update.core.standaloneUpdate -command install -from
    file:\C:\Program Files\Adobe\Flex Builder 3
    Plug-in\com.adobe.flexbuilder.update.site/ -featureId
    com.adobe.flexbuilder.feature.core -version 3.0.172437
    Command-line arguments: -application
    org.eclipse.update.core.standaloneUpdate -command install -from
    file:\C:\Program Files\Adobe\Flex Builder 3
    Plug-in\com.adobe.flexbuilder.update.site/ -featureId
    com.adobe.flexbuilder.feature.core -version 3.0.172437
    !ENTRY org.eclipse.update.configurator 2007-09-04
    11:13:07.140
    !MESSAGE Could not install bundle
    plugins/org.eclipse.equinox.launcher_1.0.0.v20070606.jar Bundle
    "org.eclipse.equinox.launcher" version "1.0.0.v20070606" has
    already been installed from:
    update@plugins/org.eclipse.equinox.launcher.jar
    !ENTRY org.eclipse.update.core 4 0 2007-09-04 11:13:11.468
    !MESSAGE Featurecom.adobe.flexbuilder.feature.core
    3.0.172437cannot be found onfile:/C:/Program Files/Adobe/Flex
    Builder 3 Plug-in/com.adobe.flexbuilder.update.site/
    or a newer version is already installed.

    Hi clam61
    Please log this bug in the public Flex bugbase at
    http://bugs.adobe.com/flex/
    Thank you!
    -Tanya

Maybe you are looking for