Wscompile does not seem to be generating a client stub

When I run the wscompile tool on a WSDL file generated using gSoap the wscompile tool does not generate the client stub. Instead it reports the following errors:
warning: ignoring port "finsvc": no SOAP address specified
warning: Service "finsvc" does not contain any usable ports
The WSDL file and the config file is shown below (please note that the IP address has been changed to 255.255.255.255 in this example but when we ran wscompile it was a valid one):
<?xml version="1.0" encoding="UTF-8"?>
<definitions name="finsvc"
targetNamespace="http://www.xxxxxxxx.com/abcd/finsvc"
xmlns:tns="http://www.xxxxxxxx.com/abcd/finsvc"
xmlns:SOAP-ENV="http://www.w3.org/2003/05/soap-envelope"
xmlns:SOAP-ENC="http://www.w3.org/2003/05/soap-encoding"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:nsfinsvc="http://www.xxxxxxxx.com/abcd/finsvc"
xmlns:SOAP="http://schemas.xmlsoap.org/wsdl/soap12/"
xmlns:MIME="http://schemas.xmlsoap.org/wsdl/mime/"
xmlns:DIME="http://schemas.xmlsoap.org/ws/2002/04/dime/wsdl/"
xmlns:WSDL="http://schemas.xmlsoap.org/wsdl/"
xmlns="http://schemas.xmlsoap.org/wsdl/">
<types>
<schema targetNamespace="http://www.xxxxxxxx.com/abcd/finsvc"
xmlns:SOAP-ENV="http://www.w3.org/2003/05/soap-envelope"
xmlns:SOAP-ENC="http://www.w3.org/2003/05/soap-encoding"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:nsfinsvc="http://www.xxxxxxxx.com/abcd/finsvc"
xmlns="http://www.w3.org/2001/XMLSchema"
elementFormDefault="unqualified"
attributeFormDefault="unqualified">
<import namespace="http://www.w3.org/2003/05/soap-encoding"/>
<complexType name="getFinStatusRequest">
<sequence>
<element name="lswebcmn-dept" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
<element name="lswebcmn-opr" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
<element name="lswebcmn-pwd" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
<element name="lswebcmn-func" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
<element name="lswebcmn-action" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
<element name="lswebcmn-option" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
<element name="lswebcmn-sessid" type="xsd:int" minOccurs="1" maxOccurs="1"/>
<element name="ltnum" type="xsd:int" minOccurs="1" maxOccurs="1"/>
</sequence>
</complexType>
<complexType name="getFinStatusRspLtdet">
<sequence>
<element name="ltnum" type="xsd:int" minOccurs="1" maxOccurs="1"/>
<element name="ltnum1" type="xsd:int" minOccurs="1" maxOccurs="1"/>
<element name="ltnum2" type="xsd:int" minOccurs="1" maxOccurs="1"/>
<element name="ltname" type="xsd:string" minOccurs="0" maxOccurs="1" nillable="true"/>
</sequence>
</complexType>
<complexType name="ArrayOfgetFinStatusRspLtdet">
<complexContent>
<restriction base="SOAP-ENC:Array">
<sequence>
<element name="item" type="nsfinsvc:getFinStatusRspLtdet" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attribute ref="SOAP-ENC:arrayType" WSDL:arrayType="nsfinsvc:getFinStatusRspLtdet[]"/>
</restriction>
</complexContent>
</complexType>
</schema>
</types>
<message name="getFinStatus">
<part name="p-in" type="nsfinsvc:getFinStatusRequest"/>
</message>
<message name="getFinStatusRsp">
<part name="lswebcmn-status" type="xsd:int"/>
<part name="lswebcmn-statusmsg" type="xsd:string"/>
<part name="ptrLtdet" type="nsfinsvc:ArrayOfgetFinStatusRspLtdet"/>
</message>
<portType name="finsvcPortType">
<operation name="getFinStatus">
<documentation>Service definition of function nsfinsvc__getFinStatus</documentation>
<input message="tns:getFinStatus"/>
<output message="tns:getFinStatusRsp"/>
</operation>
</portType>
<binding name="finsvc" type="tns:finsvcPortType">
<SOAP:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="getFinStatus">
<SOAP:operation style="rpc"/>
<input>
<SOAP:body use="encoded" namespace="http://www.xxxxxxxx.com/abcd/finsvc" encodingStyle="http://www.w3.org/2003/05/soap-encoding"/>
</input>
<output>
<SOAP:body use="encoded" namespace="http://www.xxxxxxxx.com/abcd/finsvc" encodingStyle="http://www.w3.org/2003/05/soap-encoding"/>
</output>
</operation>
</binding>
<service name="finsvc">
<documentation>gSOAP 2.7.6d generated service definition</documentation>
<port name="finsvc" binding="tns:finsvc">
<SOAP:address location="http://255.255.255.255:18083"/>
</port>
</service>
</definitions>
And the config file used with the wscompile is as below:
<configuration xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/config">
<wsdl location="./FINSVC.wsdl"
packageName="com"/>
</configuration>

Thanks for the reply...
C:\JavaProgFiles\jwsdp-2.0\jaxrpc\bin>wscompile -version
JAX-RPC Standard Implementation (1.1.3, build R1)
C:\JavaProgFiles\jwsdp-2.0\jaxrpc\bin>wscompile -verbose config.xml
error: no mode was specified, please use one of -import/-define/-gen
Usage: wscompile [options] configuration_file
Use "wscompile -help" for a detailed description of options.
C:\JavaProgFiles\jwsdp-2.0\jaxrpc\bin>wscompile -verbose -gen config.xml
warning: ignoring port "finsvc": no SOAP address specified
warning: Service "finsvc" does not contain any usable ports
[ServiceInterfaceGenerator: creating service interface: com.Finsvc]
[ServiceGenerator: creating service: com.Finsvc_Impl]
[SerializerRegistryGenerator: creating serializer registry: com.Finsvc_SerializerRegistry]
Since then we discovered the following:
When I change the following line in the WSDL it works:
From:
xmlns:SOAP="http://schemas.xmlsoap.org/wsdl/soap12/"
To:
xmlns:SOAP="http://schemas.xmlsoap.org/wsdl/soap/"
It looks like wscompile (v1.1.3) works with Soap 1.1 WSDL only.
When using wsimport instead all seems to work fine provided we change from rpc/encoded to document/literal.
I guess that's the way to go...for Soap 1.2

Similar Messages

  • Having a variety of crashes with the new version of Firefox. There does not seem to be a pattern

    Several things have happened since the installation of the latest version of FireFox:
    1. Intermittent opening of the browser from the desktop.
    a) Opens in safe mode no problem provided shift key is used.
    b) Opens sometimes and remains open
    i) Sometimes page switches cause the browser to close
    ii) Sometimes page switches continue as expected
    c) Opens then closes a few seconds later
    2. Intermittent opening of project pages from BOINC
    a) Sometimes opens and allows browsing of the science projects website
    b) Opens then immediately closes
    c) Opens and page switches cause the browser to close
    There does not seem to be a discernible pattern to what is going to happen each time the browser is opened.
    The only crash report I have was submitted November 2010. I am not aware of any crash reports that have been generated for the current problems on my system.
    '''System info:'''
    OS Name Microsoft Windows XP Professional
    Version 5.1.2600 Service Pack 3 Build 2600
    OS Manufacturer Microsoft Corporation
    System Name FASTERMACHINE
    System Manufacturer Gigabyte Technology Co., Ltd.
    System Model GA-MA770T-UD3
    System Type X86-based PC
    Processor x86 Family 16 Model 10 Stepping 0 AuthenticAMD ~3322 Mhz
    BIOS Version/Date Award Software International, Inc. F8, 10/18/2010
    SMBIOS Version 2.4
    Windows Directory C:\WINDOWS
    System Directory C:\WINDOWS\system32
    Boot Device \Device\HarddiskVolume1
    Locale United States
    Hardware Abstraction Layer Version = "5.1.2600.5512 (xpsp.080413-2111)"
    User Name FASTERMACHINE\Greg
    Time Zone GMT Daylight Time
    Total Physical Memory 4,096.00 MB
    Available Physical Memory 1.90 GB
    Total Virtual Memory 2.00 GB
    Available Virtual Memory 1.96 GB
    Page File Space 4.59 GB
    Page File C:\pagefile.sys

    My observation so far is that if you just type keywords, Mail wants to search everything.  The reason for the missing results, I think, is because the email is not getting indexed properly.  If you rebuild, then things get indexed correctly.
    I tried your idea with the quote.  Now, no matter what I type, I always get a set of options.  But I cannot tell if that was enabled by the quote or if it was already going to do that, because now I don't need the quote to get a list of various options.  The first, which I've always gotten is "message contains", but now I'm seeing subject suggestions and such.
    Very confusing.  I'm wondering if spotlight hasn't been doing some incremental work in the background that we don't know about, and some things will just magically start working now.

  • I recently purchased a Canon 7D. I own Adobe Photoshop/Bridge CS5. I cannot open my raw images in Bridge. I have tried to download the plug in but does not seem to work. Please Help, I need to be able to open my raw images in Bridge ASAP. I do not want to

    I recently purchased a Canon 7D. I own Adobe Photoshop/Bridge CS5. I cannot open my raw images in Bridge. I have tried to download the plug in but does not seem to work. Please Help, I need to be able to open my raw images in Bridge ASAP. I do not want to upgrade to CS6 at this time.

    If you had given us sensible information, I could look it up for you if your efforts fail.
    Right now, I don't even know if you are on a Mac or on a Windows box.
    BOILERPLATE TEXT:
    If you give complete and detailed information about your setup and the issue at hand, such as your platform (Mac or Win), exact versions of your OS, of Photoshop and of Bridge, machine specs, what troubleshooting steps you have taken so far, what error message(s) you receive, if having issues opening raw files also the exact camera make and model that generated them, etc., someone may be able to help you.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • JDO Query does not seem to be executed at all

    I have the following JDO query and it returns empty collection but it
    should return some records. I set "SQL=TRACE" in kodo.properties file and
    traced the log file. This query does not seem to generate SQL statement
    at all. Other JDO method generates SQL statements.
    Kodo version: 3.1.2
    J2SE: 1.4.1_05
    Database: MS SQL Server 2000
    // Get endorsement rule type
    String ruleType = getEndorsementRuleType();
    Query qry = pm.newQuery(EndorsementRule.class);
    try {
    qry.declareParameters("String ruleType");
    qry.setFilter("this.ruleType == ruleType");
    log.info("*** EXECUTE RULE QUERY ***");
    Collection c = (Collection)qry.execute(ruleType);
    log.info("*** qrysize=" + c.size());
    finally {
    qry.closeAll();
    Log file: There is not SQL statement generated for the JDO query.
    [junit] INFO: Get endorsement rule type
    [junit] Jun 7, 2004 12:39:01 PM EndorsementRuleEngine
    getEndorsementRuleType
    [junit] INFO: *** JDO EXECUTE BEGIN ***
    [junit] 16366 TRACE [main] kodo.jdbc.SQL - <t 3969559, conn 18096534> [0
    m
    s] executing prepstmnt 20731151 SELECT t0.EndtType, t0.EndtId FROM EndtHe
    aderItem t0 WHERE t0.EndtId = ? [params=(int) 6137330] [reused=0]
    [junit] Jun 7, 2004 12:39:01 PM EndorsementRuleEngine
    getEndorsementRuleType
    [junit] INFO: *** JDO EXECUTE END ***
    [junit] Jun 7, 2004 12:39:02 PM EndorsementRuleEngine getRules
    [junit] INFO: *** EXECUTE RULE QUERY ***
    +++ WHERE IS SQL statement for JDO Query ? +++
    [junit] Jun 7, 2004 12:39:02 PM EndorsementRuleEngine getRules
    [junit] INFO: *** qrysize=0
    [junit] Jun 7, 2004 12:39:02 PM mytest.EndtRuleTestCase setComplete
    Thanks,
    Andy

    Please ignore this post. The error was caused by the file merge done by
    StarTeam.

  • Ant autotype does not seem to recognize xsd:include

    Hi
    I am currently using WebLogic 7.0. I was trying to use ant autotype to generate
    java classes based on a schema. I ran into a problem that the autotype does not
    seem to include the other schema files listed with xsd:include. I could only get
    around the problem by literally copy and paste the complex types definition into
    the calling schema file. Below are the two schemas that illustrate the problem.
    x.xsd includes y.xsd but however the EmployeeBean listed in y.xsd results in a
    unresolve type with autotype. Problem only goes away if EmployeeBean definition
    is listed in x.xsd.
    Any help is much appreciated.
    ==========================================================
    x.xsd
    ==========================================================
    <?xml version="1.0" encoding="utf-8" standalone="no"?>
    <xsd:schema xmlns:ofx="http://ofx.net/v3.0"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://ofx.net/v3.0">
    <xsd:include schemaLocation="y.xsd" />
    <xsd:complexType name="Company">
    <xsd:sequence>
    <xsd:element name="XYZ" type="ofx:EmployeeBean" />
    </xsd:sequence>
    </xsd:complexType>
    </xsd:schema>
    ==========================================================
    y.xsd
    ==========================================================
    <?xml version="1.0" encoding="utf-8" standalone="no"?>
    <xsd:schema targetNamespace="http://ofx.net/v3.0"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:ofx="http://ofx.net/v3.0">
    <xsd:complexType name="EmployeeBean">
         <xsd:sequence>
         <xsd:element name="name"
              type="xsd:string"
              nillable="true"
              minOccurs="1"
              maxOccurs="1">
         </xsd:element>
         <xsd:element name="id"
              type="xsd:int"
              minOccurs="1"
              maxOccurs="1">
         </xsd:element>
         </xsd:sequence>
    </xsd:complexType>
    </xsd:schema>
    =============================================================

    Actually imports will work in most cases, though some bug fixes have
    been made since and will show up in future releases.
    --Scott
    In article <[email protected]>,
    Bruce Stephens <[email protected]> wrote:
    Hello,
    At the moment, we handle wsdl imports as done by SOAPBuilders Round
    3, but not schema imports. Look for this in the upcoming release;
    Contact Michael Bamford ([email protected]) if you would like
    to be on the Beta.
    Thanks,
    Bruce
    Sooleng Lau wrote:
    Thank you for the response and info. What about schema import, is
    it handled by weblogic 7.0 at the moment ? What is the upcoming
    release, is it WebLogic 7.1 ?
    Thank you.
    Soo Leng
    Bruce Stephens <[email protected]> wrote:
    Hello,
    Schema include is a known problem that will be corrected in the upcoming
    release.
    The workaround at this point is the cut and paste :-( you described.
    Bruce
    Sooleng Lau wrote:
    Hi
    I am currently using WebLogic 7.0. I was trying to use ant autotypeto generate
    java classes based on a schema. I ran into a problem that the autotypedoes not
    seem to include the other schema files listed with xsd:include. I couldonly get
    around the problem by literally copy and paste the complex types definitioninto
    the calling schema file. Below are the two schemas that illustratethe problem.
    x.xsd includes y.xsd but however the EmployeeBean listed in y.xsd resultsin a
    unresolve type with autotype. Problem only goes away if EmployeeBeandefinition
    is listed in x.xsd.
    Any help is much appreciated.
    ==========================================================
    x.xsd
    ==========================================================
    <?xml version="1.0" encoding="utf-8" standalone="no"?>
    <xsd:schema xmlns:ofx="http://ofx.net/v3.0"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    targetNamespace="http://ofx.net/v3.0">
    <xsd:include schemaLocation="y.xsd" />
    <xsd:complexType name="Company">
    <xsd:sequence>
    <xsd:element name="XYZ" type="ofx:EmployeeBean" />
    </xsd:sequence>
    </xsd:complexType>
    </xsd:schema>
    ==========================================================
    y.xsd
    ==========================================================
    <?xml version="1.0" encoding="utf-8" standalone="no"?>
    <xsd:schema targetNamespace="http://ofx.net/v3.0"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:ofx="http://ofx.net/v3.0">
    <xsd:complexType name="EmployeeBean">
    <xsd:sequence>
    <xsd:element name="name"
    type="xsd:string"
    nillable="true"
    minOccurs="1"
    maxOccurs="1">
    </xsd:element>
    <xsd:element name="id"
    type="xsd:int"
    minOccurs="1"
    maxOccurs="1">
    </xsd:element>
    </xsd:sequence>
    </xsd:complexType>
    </xsd:schema>
    =============================================================

  • I have a late 2012 iMac running osx 10.8.5.  I keep losing access to my internal hard drive.  I can reboot and regain access and it will last for a few minutes or hours.  Disk utility does not seems to help.

    I have a late 2012 iMac with an I5 precessor running OSX 10.8.5 and a 1tb internal hard drive.  I keep losing access to the internal hard drive/startup disk.
    I can reboot and everything operates as normal for a few minutes or hours but then I lose all access again to anything on the hard drive.  The computer is still up and running but no files can be accessed and certain websites cannot be acessed even though internet access appears to be normal.  Disk utility can only find permission errors related to iTunes which can be repaired only to come back at the next scan (I would not think permission errors would have anything to do with the hard drive crashing).  It does not seem to matter what program I am using at the time access is lost and it can lose access sometimes right after reboot when no program is running.

    You will need to boot into the Recovery Volume (command - R on a restart or hold down the option/alt key during restart and select it) to run Disk Utility/Disk Repair.

  • HT1384 My ipod nano 3rd generation, when connected by usb, does not show up in itunes, does not show up on my computer, does not seem to charge by the wall charger. It just has a black screen. Any ideas for me?

    My ipod nano 3rd generation, when connected by usb, does not show up in itunes, does not show up on my computer, does not seem to charge by the wall charger. It just has a black screen. Any ideas for me?
    I've run diagnostics. Can't find device. I've tried resetting. The toggle has been turned on and off.

    Cable works fine on my other iPod. Reset by pressing menu and center button together for 6-10 seconds. Left it to charge for many hours. Started acting up while running. Suddenly the music stopped playing but my Nike + was still working for the rest of my run. Took it straight it home and plugged it in to the wall to recharge since the battery was fairly low. Looked like it recharged ok but then screen went blank and now does it not show up on iTunes, does not seem to recharge by the wall charger (apple wall charger plugged into a surge protector in India). I have turned the hold switch off and on many times.
    Sounds like a repair issue, which is not easy to do in India :(

  • HT4623 When i click on general settings, the software update does not seem to come up? It wont let me download any apps.

    When i click on general settings, the software update does not seem to come up? It wont let me download any apps.
    I Want to download i0s 5
    i have ipod touch 3rd gen

    You need to connect your iPod to iTunes on a computer and update from there.
    Before updating, I recommend that you create a backup first, using : http://support.apple.com/kb/ht1766
    Please note that iPod 3d generation only goes up to iOS 5.1.1
    To update the iPod, use: http://support.apple.com/kb/ht4623
    scroll down to the part that's about updating with iTunes.
    Good luck
    Stijn
    Message was edited by: jesterwylde

  • I had upgraded to FF 4.0.1 a while ago. Last night I got a bubble telling me that FF 4.1.0 was available and I should download and install. This version does not seem to exist. What is this about?

    I had installed FF 4.0.1 and have been using it for a while. I am running Win XP Pro, SP2. Last night a messge came up informing me that FF 4.1 was now available and that it would be advisable to download and install it. I did this and everything seemed to work fine but when I look at the 'About Firefox' info under 'Help' it still tells me that I am running 4.0.1. Everything still seems to be functioning well but this disturbs me as it does not seem to have been a FF message. Can you please tell me if such a message was sent out, and if so, why, seeing as the version does not seem to have changed?

    To ensure that no malicious software has been installed, try running several malware scanners. It is best to run several as each will pick up things that the others miss. Some scanners you can try are:
    * Malwarebytes - http://www.malwarebytes.org/mbam.php
    * SuperAntiSpyware - http://www.superantispyware.com
    * Ad-Aware - http://www.lavasoft.com/products/ad_aware_free.php
    * Windows Defender - http://www.microsoft.com/windows/products/winfamily/defender/default.mspx
    * Spybot S&D - http://www.safer-networking.org/en/home/index.html

  • Just upgraded to an iPhone 4s but can't get it to sync with my Outlook Calender I have downloaded iCloud but that does not seem to have helped/

    Can anyone help I have just taken an iPhone4s but can't get it to sync with my Outlook calender I have downloaded to my PC the iCloud software but that does not seem to have helped at all?
    Thanks Bazzer50

    Do you see your Outlook calendar on the iCloud website?
    Do you see your iCloud calendar on your iPhone?
    This Apple article is a good place to start -> iCloud: Troubleshooting iCloud Calendar

  • Dynamic hyperlink does not seem to work

    Hi,
    It looks like this same issue came up before in <
    Dynamic hyperlink in Word 2003 but it does not appear that anyone ever responded.
    My customer has created a dynamic hyperlink using {VM_URL} but when the template saves if you mouse over the hyperlink, you see a reference to the current location example:
    file:///E:\temp\%7bVM_URL%7d
    The xml data template looks like the following:
    <?xml version="1.0" encoding="UTF-8"?>
    <ContractDetails>
    <kid>238335</kid><usr>[email protected]</usr>
    <LIST_HDR>
    <HDR>
    <USER_PWD>4</USER_PWD>
    <USER_SSO>[email protected]</USER_SSO>
    <VM_URL>http://ora-apps-phnx-1.vmware.com:8000/oa_servlets/oracle.apps.fnd.sso.AppsLogin?requestUrl=APPSHOMEPAGE&amp;cancelUrl=http%3A%2F%2Fora-apps-phnx-1.vmware.com%3A8000%2Foa_servlets%2Foracle.apps.fnd.sso.AppsLogin</VM_URL>
    The hyperlink in the pdf then becomes the original path to the document:
    E:\tmp
    I have found a couple of issues in WebIV, one was a position loop problem and another was an absolute xpath issue, but this does not seem to fit either. I played a little with the link and url setting, but no luck.
    Tried in 5.6.3 and Word 2k2
    Any help would be appreciated.
    Thank You,
    Dale

    I am facing the same problem,
    Please can anyone give pointers to this?
    Regards,
    Amit Deshpande

  • HT204350 I have a Mac Book Pro with 10.6.8 and want to back up my files using a flash drive.  It says I did it but when I tried to check on my other Mac - an I Mac with 10.5.8, thedata does not seem to be there.  I cant see photos, etc.

    I have a Mac Book Pro with 10.6.8 and want to back up my files using a flash drive.  It says I did it but when I tried to check on my other Mac - an I Mac with 10.5.8, thedata does not seem to be there.  I cant see photos, etc..  It shows the backup as a file and shows various system info.  but there are no photos or other files shown.
    Thanks for any advise.
    Mike

    A PowerPC Mac, if that's what it is, won't be able to see an Intel Mac's formatted data.  Also ExFat formatting is not supported by 10.6.3 or earlier.  I would try viewing the backup on another Intel Mac with at least 10.6.4.  If it isn't there, then the backup never really took place.  I much profer a hard drive with Carbon Copy Cloner.

  • HT1338 My mac is becoming too slow. It takes long to open word documents, pdf files or excel documents or even safari. Can anybody suggest something? I have tried to reduce the number of open applications, but does not seem to work.

    My mac is becoming too slow. It takes long to open word documents, pdf files or excel documents or even safari. Can anybody suggest something? I have tried to reduce the number of open applications, but does not seem to work.

    Hi ...
    Checked to see how much free space there is on the startup disk lately?
    Right or control click the MacintoshHD icon. Click Get Info. In the Get Info window you will see Capacity and Available. Make sure there's a minimum of 15% free disk space.
    Freeing Up Hard Disk Space - Mac GuidesFreeing Up Hard Disk Space - Mac Guides
    If disk space is not the issue, booting in Safe Mode deletes system caches that may help.
    A Safe Mode boot takes longer then a normal boot so be patient.
    Once you see the Desktop, click the Apple menu icon top left corner of the screen.
    From the drop down menu click Restart.
    See if that makes a difference ...

  • Blog summary does not seem to update online

    I've just updated a blog I've created for a musician friend of mine; it's been done on iweb 3.0.2 & published via ftp using godaddy: http://lauramoodymusic.com/lmm/news/news.html
    However, the main blog summary which is correct on iweb, and the version published to a local folder, is not updating online. The new blogs are visible if you go to the archive, and by clicking on the RSS feed, but not from this front page... I've tried to republish all the relevant pages again, manually, but this doesn't seem to have worked either.
    Help urgently needed.
    thank you.

    +Noticing how disorganised the iTunes Lib is, I spent a lot of time today adding and editing mp3 tag data so that iTunes would look more logical.+
    +However it does not seem to pull in or update to what I have on my hard drive!+
    iTunes does not read the tags until you select/play a track. It stores the tag information in its library file and this will not reflect changes made to tags with an external editor until iTunes looks at the track.
    You can force iTunes to re-read all the tags by selecting all the tracks in your library, right clicking in the selection and choosing get info.
    It is essential that you do nothing except click "OK" as any change you make would be applied to every track in your library.
    Depending on the size of your library iTunes may take a while to complete the task.
    It is always advisable to have your library backed up in case you make a mistake.

  • My iPhoto library has suddenly disappeared from my computer. When i click on iPhoto it tells me to choose my library or create a new one. However no library option appears. I have searched the computer for the library but it does not seem to exist

    My iPhoto library has suddenly disappeared from my computer.
    When i click on iPhoto it tells me to choose my library or create a new one. However no library option appears. I have searched the computer for the library but it does not seem to exist anymore. I did not have time machine set up, so there is no back up. Is there any way i can retrieve my library?
    Here is a picture of what appears when i click on iPhoto:

    In terms of searching i have searched for photos on my finder. However, none of the photos that appear are from my iPhoto Library.
    Search with FindAnyFile. You can download it here:   http://apps.tempel.org/FindAnyFile/index.php
    Search for any file with "ThumbJPGSegment" in the name. If you added at least one image to your library, the library should contain a file with this name, see OldToad's post: Re: Since I updated to iPhoto 9.5.1, my library is not listed or available. How can I find it? Can I use the time machine to restore it?

Maybe you are looking for

  • Applications tab doesn't work - apps won't sync

    I'm starting to go a bit bonkers. It's been a while since I updated iTunes, and the Applications tab still doesn't work right. Is it just me? I can't click on anything/manipulate anything in that part of iTunes. And when I download new apps through t

  • Has anyone integrated OIM 9.1.0.2 with ORM 10.1.4.2

    Hi, Has anyone integrated OIM 9.1.0.2 with ORM 10.1.4.2 on Oracle WebLogic Server. Manju

  • Select option in time using oracle

    i attach an excel file in oracle, i have a time field in my table, i give the select option in time ie, i select the time 4:00:00 - 6:00:00 in that time period data will display, for example html format ie, output format.

  • Putting Content in frame

    I have created a simple web page with three tables. The top one has a logo; the second a set of menus generated using PopMenu Magic by PVII. The third contains the content, and with incredible brilliance, has the id "content." I would like to make th

  • Clusterware 10.2.0.4 on windows server 2008, runcluvfy error out

    I am installing oracle clusterware 10.2.0.4 on windows server 2008. I got the following error when I ran runcluvfy stage -post hwos -n node1,node2 Path "C:\temp\" does not exist and cannot be created on nodes This meessage is happening after Checking