REST API: Create Deployment throwing error BadRequest (The specified configuration settings for Settings are invalid. Verify that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers.)

Hi All,
We are trying to access the Create Deployment method stated below
http://msdn.microsoft.com/en-us/library/windowsazure/ee460813
We have uploaded the Package in the blob and browsing the configuration file. We have checked trying to upload manually the package and config file in Azure portal and its working
fine.
Below is the code we have written for creating deployment where "AzureEcoystemCloudService" is our cloud service name where we want to deploy our package. I have also highlighted the XML creation
part.
byte[] bytes =
new byte[fupldConfig.PostedFile.ContentLength + 1];
            fupldConfig.PostedFile.InputStream.Read(bytes, 0, bytes.Length);
string a = Encoding.UTF8.GetString(bytes, 0, bytes.Length);
string base64ConfigurationFile = a.ToBase64();
X509Certificate2 certificate =
CertificateUtility.GetStoreCertificate(ConfigurationManager.AppSettings["thumbprint"].ToString());
HostedService.CreateNewDeployment(certificate,
ConfigurationManager.AppSettings["SubscriptionId"].ToString(),
"2012-03-01", "AzureEcoystemCloudService", Infosys.AzureEcosystem.Entities.Enums.DeploymentSlot.staging,
"AzureEcoystemDeployment",
"http://shubhendustorage.blob.core.windows.net/shubhendustorage/Infosys.AzureEcoystem.Web.cspkg",
"AzureEcoystemDeployment", base64ConfigurationFile,
true, false);   
<summary>
/// </summary>
/// <param name="certificate"></param>
/// <param name="subscriptionId"></param>
/// <param name="version"></param>
/// <param name="serviceName"></param>
/// <param name="deploymentSlot"></param>
/// <param name="name"></param>
/// <param name="packageUrl"></param>
/// <param name="label"></param>
/// <param name="base64Configuration"></param>
/// <param name="startDeployment"></param>
/// <param name="treatWarningsAsError"></param>
public static
void CreateNewDeployment(X509Certificate2 certificate,
string subscriptionId,
string version, string serviceName, Infosys.AzureEcosystem.Entities.Enums.DeploymentSlot deploymentSlot,
string name, string packageUrl,
string label, string base64Configuration,
bool startDeployment, bool treatWarningsAsError)
Uri uri = new
Uri(String.Format(Constants.CreateDeploymentUrlTemplate, subscriptionId, serviceName, deploymentSlot.ToString()));
XNamespace wa = Constants.xmlNamespace;
XDocument requestBody =
new XDocument();
String base64ConfigurationFile = base64Configuration;
String base64Label = label.ToBase64();
XElement xName = new
XElement(wa + "Name", name);
XElement xPackageUrl =
new XElement(wa +
"PackageUrl", packageUrl);
XElement xLabel = new
XElement(wa + "Label", base64Label);
XElement xConfiguration =
new XElement(wa +
"Configuration", base64ConfigurationFile);
XElement xStartDeployment =
new XElement(wa +
"StartDeployment", startDeployment.ToString().ToLower());
XElement xTreatWarningsAsError =
new XElement(wa +
"TreatWarningsAsError", treatWarningsAsError.ToString().ToLower());
XElement createDeployment =
new XElement(wa +
"CreateDeployment");
            createDeployment.Add(xName);
            createDeployment.Add(xPackageUrl);
            createDeployment.Add(xLabel);
            createDeployment.Add(xConfiguration);
            createDeployment.Add(xStartDeployment);
            createDeployment.Add(xTreatWarningsAsError);
            requestBody.Add(createDeployment);
            requestBody.Declaration =
new XDeclaration("1.0",
"UTF-8", "no");
XDocument responseBody;
RestApiUtility.InvokeRequest(
                uri, Infosys.AzureEcosystem.Entities.Enums.RequestMethod.POST.ToString(),
HttpStatusCode.Accepted, requestBody, certificate, version,
out responseBody);
<summary>
/// A helper function to invoke a Service Management REST API operation.
/// Throws an ApplicationException on unexpected status code results.
/// </summary>
/// <param name="uri">The URI of the operation to invoke using a web request.</param>
/// <param name="method">The method of the web request, GET, PUT, POST, or DELETE.</param>
/// <param name="expectedCode">The expected status code.</param>
/// <param name="requestBody">The XML body to send with the web request. Use null to send no request body.</param>
/// <param name="responseBody">The XML body returned by the request, if any.</param>
/// <returns>The requestId returned by the operation.</returns>
public static
string InvokeRequest(
Uri uri,
string method,
HttpStatusCode expectedCode,
XDocument requestBody,
X509Certificate2 certificate,
string version,
out XDocument responseBody)
            responseBody =
null;
string requestId = String.Empty;
HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(uri);
            request.Method = method;
            request.Headers.Add("x-ms-Version", version);
            request.ClientCertificates.Add(certificate);
            request.ContentType =
"application/xml";
if (requestBody != null)
using (Stream requestStream = request.GetRequestStream())
using (StreamWriter streamWriter =
new StreamWriter(
                        requestStream, System.Text.UTF8Encoding.UTF8))
                        requestBody.Save(streamWriter,
SaveOptions.DisableFormatting);
HttpWebResponse response;
HttpStatusCode statusCode =
HttpStatusCode.Unused;
try
response = (HttpWebResponse)request.GetResponse();
catch (WebException ex)
// GetResponse throws a WebException for 4XX and 5XX status codes
                response = (HttpWebResponse)ex.Response;
try
                statusCode = response.StatusCode;
if (response.ContentLength > 0)
using (XmlReader reader =
XmlReader.Create(response.GetResponseStream()))
                        responseBody =
XDocument.Load(reader);
if (response.Headers !=
null)
                    requestId = response.Headers["x-ms-request-id"];
finally
                response.Close();
if (!statusCode.Equals(expectedCode))
throw new
ApplicationException(string.Format(
"Call to {0} returned an error:{1}Status Code: {2} ({3}):{1}{4}",
                    uri.ToString(),
Environment.NewLine,
                    (int)statusCode,
                    statusCode,
                    responseBody.ToString(SaveOptions.OmitDuplicateNamespaces)));
return requestId;
But every time we are getting the below error from the line
 response = (HttpWebResponse)request.GetResponse();
<Error xmlns="http://schemas.microsoft.com/windowsazure" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Code>BadRequest</Code>
  <Message>The specified configuration settings for Settings are invalid. Verify that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers.</Message>
</Error>
 Any help is appreciated.
Thanks,
Shubhendu

Please find the request XML I have found it in debug mode
<CreateDeployment xmlns="http://schemas.microsoft.com/windowsazure">
  <Name>742d0a5e-2a5d-4bd0-b4ac-dc9fa0d69610</Name>
  <PackageUrl>http://shubhendustorage.blob.core.windows.net/shubhendustorage/WindowsAzure1.cspkg</PackageUrl>
  <Label>QXp1cmVFY295c3RlbURlcGxveW1lbnQ=</Label>
  <Configuration>77u/PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0NCiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKg0KDQogIFRoaXMgZmlsZSB3YXMgZ2VuZXJhdGVkIGJ5IGEgdG9vbCBmcm9tIHRoZSBwcm9qZWN0IGZpbGU6IFNlcnZpY2VDb25maWd1cmF0aW9uLkNsb3VkLmNzY2ZnDQoNCiAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLg0KDQogICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioNCi0tPg0KPFNlcnZpY2VDb25maWd1cmF0aW9uIHNlcnZpY2VOYW1lPSJXaW5kb3dzQXp1cmUxIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMSIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTA1LjEuNyI+DQogIDxSb2xlIG5hbWU9IldlYlJvbGUxIj4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIyIiAvPg0KICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+DQogICAgICA8U2V0dGluZyBuYW1lPSJNaWNyb3NvZnQuV2luZG93c0F6dXJlLlBsdWdpbnMuRGlhZ25vc3RpY3MuQ29ubmVjdGlvblN0cmluZyIgdmFsdWU9IkRlZmF1bHRFbmRwb2ludHNQcm90b2NvbD1odHRwcztBY2NvdW50TmFtZT1zaHViaGVuZHVzdG9yYWdlO0FjY291bnRLZXk9WHIzZ3o2aUxFSkdMRHJBd1dTV3VIaUt3UklXbkFrYWo0MkFEcU5saGRKTTJwUnhnSzl4TWZEcTQ1ZHI3aDJXWUYvYUxObENnZ0FiZnhONWVBZ2lTWGc9PSIgLz4NCiAgICA8L0NvbmZpZ3VyYXRpb25TZXR0aW5ncz4NCiAgPC9Sb2xlPg0KPC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=</Configuration>
  <StartDeployment>true</StartDeployment>
  <TreatWarningsAsError>false</TreatWarningsAsError>
</CreateDeployment>
Shubhendu G

Similar Messages

  • ChangeConfigurationByName fails with "The specified configuration settings for Settings are invalid."

    Hello,
    I am tryint to update deployment and always have following error
    "The specified configuration settings for Settings are invalid. Verify that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers."
    Have found similar
    thread  and
    stack overflow - without any success. I am not chaning anyting. Just reading deployment configuration and tryint to update with the same settings. I use .net azure sdk  wrappers to generate requests. Code looks like:
    var deployment = client.Deployments.GetByName(location.DataCenter, location.Cluster);var result = client.Deployments.ChangeConfigurationByName(location.DataCenter, location.Cluster, new DeploymentChangeConfigurationParameters{  Configuration = deployment.Configuration});
    Catched request response from fiddler:
    POST https://management.core.windows.net/[subscription-id]/services/hostedservices/[service-name]/deployments/[deployment-name]/?comp=config HTTP/1.1
    x-ms-version: 2013-11-01
    User-Agent: Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/0.9.0.0
    client-tracking-id: 2
    Content-Type: application/xml
    Host: management.core.windows.net
    Content-Length: 544
    Expect: 100-continue
    Connection: Keep-Alive
    <ChangeConfiguration xmlns="http://schemas.microsoft.com/windowsazure">
    <Configuration>PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPiAgPFJvbGUgbmFtZT0ieWF1aGVuLWNjaXMyIj4gICAgPEluc3RhbmNlcyBjb3VudD0iMSIgLz4gIDwvUm9sZT48L1NlcnZpY2VDb25maWd1cmF0aW9uPg==</Configuration>
    <ExtendedProperties />
    </ChangeConfiguration>
    Response
    HTTP/1.1 400 Bad Request
    Cache-Control: no-cache
    Content-Length: 351
    Content-Type: application/xml; charset=utf-8
    Server: 1.0.6198.51 (rd_rdfe_stable.140226-1543) Microsoft-HTTPAPI/2.0
    x-ms-servedbyregion: ussouth
    x-ms-request-id: dcb1c5aedb5872d4aaf90acfede2de0b
    Date: Tue, 04 Mar 2014 13:38:10 GMT
    <Error xmlns="http://schemas.microsoft.com/windowsazure" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><Code>BadRequest</Code><Message>The specified configuration settings for Settings are invalid. Verify
    that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers.</Message></Error>
    the same data returned by operation status. Decoded base-64 encoded string looks like
    <ServiceConfiguration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/ServiceHosting/2008/10/ServiceConfiguration">
    <Role name="yauhen-ccis2">
    <Instances count="1" />
    </Role>
    </ServiceConfiguration>
    Have tried without new line symbols, without xmlns, updating by production. without any success

    Hi,
    The configuration file is a file with extension .cscfg. If you have Visual Studio, the file is automatically generated when you create the project, and automatically updated when you modify the project's properties.
      >> Not sure were could I get content of this file from api?
    It's needed to encode this file's content use base64, and put the result in the body of your request. (Please refer to
    http://msdn.microsoft.com/en-us/library/windowsazure/ee758710.aspx for more information.) 
      >> <ChangeConfiguration xmlns="http://schemas.microsoft.com/windowsazure">
    <Configuration>PFNlcnZpY2VDb25maWd1cmF0aW9uIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zPSJodHRwOi8vc2NoZW1hcy5taWNyb3NvZnQuY29tL1NlcnZpY2VIb3N0aW5nLzIwMDgvMTAvU2VydmljZUNvbmZpZ3VyYXRpb24iPiAgPFJvbGUgbmFtZT0ieWF1aGVuLWNjaXMyIj4gICAgPEluc3RhbmNlcyBjb3VudD0iMSIgLz4gIDwvUm9sZT48L1NlcnZpY2VDb25maWd1cmF0aW9uPg==</Configuration>
    However, may I know how you find the body for your request? (It seems you do a base64 decoding, you find it is a valid configuration file, but it doesn't have any configuration settings.) Actually, the settings defined in csdef needed to
    be contained in the configuration file.
    Best Regards,
    Ming Xu
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Infopath 2013 SOAP Web Service Data Connection - Error: The file is not a valid XML file

    Here are the steps to replicate the issue I’m having when adding lists.asmx or any other SharePoint web service in InfoPath 2013. This web service opens fine in the browser from my desktop. My account is a farm administrator and is added to the
    web application’s User Policy.  I can use these services just fine using Nintex 2013 Workflow.
    Open InfoPath Designer 2013.
    Select Blank Form and click Design Form button.
    Click “Data” tab.
    Click “From Web Service” and select “From SOAP Web Service”
    Enter https://mysiteurl.com/_vti_bin/lists.asmx?WSDL for the web service definition.
    Click Next.
    Windows Security window pops up.
    Enter a credential. I tried both my account and the farm account. My account is a farm admin and is added to the web application’s User Policy with Full Control.
    Click OK. It prompts for credential multiple times.
    I get below this error messages: 
    Sorry, we couldn't open https://mysiteurl.com/_vti_bin/lists.asmx?WSDL
    InfoPath cannot find or cannot access the specified Web Service description.
    The file is not a valid XML file.
    Not enough storage is available to process this command.
    We have a project that is in need of these services using InfoPath so any help is greatly appreciated.

    Hi Brian_TX,
    For your issue, try to the following methods:
    Change your service binding in web.config to:binding="basicHttpBinding". It seems in VS it defaults to wsHttpBinding.
    Replace all instances of "parameters" from the web service wsdl with the name "parameter"
    There are some similar articles about the issue, you can have a look at them:
    http://www.infopathdev.com/forums/t/23239.aspx
    https://social.msdn.microsoft.com/Forums/office/en-US/621929c3-0335-40af-8332-5a0b430901ab/problems-with-infopath-web-service-connection?forum=sharepointcustomizationprevious
    https://social.msdn.microsoft.com/Forums/en-US/5fa5eca8-f8d7-4a2e-81ba-a3b4bdcfe5af/infopath-cannot-find-or-cannot-access-the-specified-web-service-description?forum=sharepointcustomizationlegacy
    Best Regards
    Lisa Chen
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]

  • Error  in validation.xml   file while deploying in server

    Hi friends,
    I am Venkataramana . I am doing one small structs application with Validation . as usual in XML file i wrote validations but when i am deploying in server it is showing error as
    SEVERE: Parse Error at line 2 column 17: Document is invalid: no grammar found.
    org.xml.sax.SAXParseException: Document is invalid: no grammar found.
         at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAXParseException(ErrorHandlerWrapper.java:236)
    and
    Jan 11, 2010 11:57:53 PM org.apache.commons.digester.Digester error
    SEVERE: Parse Error at line 2 column 17: Document root element "form-validation", must match DOCTYPE root "null".
    org.xml.sax.SAXParseException: Document root element "form-validation", must match DOCTYPE root "null".
    Kindly find the validation.xml file for your reference.
    <!DOCTYPE form-validation PUBLIC
    "-//Apache Software Foundation//DTD Commons Validator Rules Configuration 1.1.3//EN"
    "http://jakarta.apache.org/commons/dtds/validator_1_1_3.dtd">
    <form-validation>
    <formset>
    <form name="regFormForm">
    <field property="username"
    depends="required">
    <arg0 key="uname"/>
    </field>
    <field property="password"
    depends="required">
    <arg0 key="password"/>
    </field>
    </form>
    </formset>
    </form-validation>
    Please can any one help on this?

    I think your dtd entry - "http://jakarta.apache.org/commons/dtds/validator_1_1_3.dtd" is not compatible with your validation.jar file. If you have recently downloaded the these struts jar files then make sure this entry is matched with what they have provided in examples. Or download new set of jar files and copy the same doc-type tag as they have given in examples.

  • I created a new library so I can use it for just my music, but now my ipod will only sync to my old library and not the new one I created, even though I'm in the new library when I open itunes.  Any solutions?

    I created a new library so I can use it for just my music, but now my ipod will only sync to my old library and not the new one I created, even though I'm in the new library when I open itunes.  Any solutions?

    The point is that there are four i product users for one computer in my house, and not everyone wants the same music on their device.  Like I said before, the ipod is not syncing to the new library even though I plug it in when the new itunes library is pulled up.  It keeps syncing to the old library...

  • I am getting error "The disk is used for Time Machine Backup" when installing the new OSX Mountain Lion upgrade"

    I am keep getting this error "The disk is used for Time Machine Backup" when installing the new OSX Mountain Lion" when doing the upgrade to newly OS.

    The folder would be at the root of your hard drive. Double-click Macintosh HD and look there.
    If it isn’t there, I’m not sure what it is seeing.

  • Quit when I open Aperture!!!! Updated with the new version downloaded from Appstore. The previous version worked fine. I have not time to open the library - the program closes. For 1-2 seconds I see the old look of your library.

    To my non-arrival notification oo update.
    Updated with the new version downloaded from Appstore.
    The previous version worked fine.
    I have not time to open the library - the program closes. For 1-2 seconds I see the old look of your library.
    Process:         Aperture [831] 
    Path:            /Applications/Aperture.app/Contents/MacOS/Aperture
    Identifier:      com.apple.Aperture
    Version:         3.4.4 (3.4.4)
    Build Info:      Aperture-320085000000000~4
    App Item ID:     408981426
    App External ID: 14995585
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [134]
    User ID:         501
    Date/Time:       2013-05-13 08:39:42.877 +0400
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          25451 sec
    Crashes Since Last Report:           15
    Per-App Interval Since Last Report:  275 sec
    Per-App Crashes Since Last Report:   15
    Anonymous UUID:                      0480FD60-05CB-BDA2-9EC7-9186A9908C06
    Crashed Thread:  12
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSCFString substringToIndex:]: Range or index out of bounds'
    terminate called throwing an exception
    abort() called
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff9566cb06 __exceptionPreprocess + 198
    1   libobjc.A.dylib                     0x00007fff8b2b93f0 objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff9566c8dc +[NSException raise:format:] + 204
    3   Foundation                          0x00007fff935b8ee9 -[NSString substringToIndex:] + 97
    4   RedRock                             0x000000010b7aa994 +[RKFileNamingPolicy fileSafeName:] + 221
    5   RedRock                             0x000000010b955958 -[RKVersion(Imaging) proxyWritePath:] + 141
    6   RedRock                             0x000000010b955edf -[RKVersion(Imaging) absoluteProxyWritePath:] + 28
    7   RedRock                             0x000000010b949b97 -[JPEGFileCacheStore filePathForVersion:key:withWrite:] + 51
    8   RedRock                             0x000000010ba1dd64 -[IPMiniJPEGFileCacheStore newCachePageLookupForRequest:] + 428
    9   ProXTCore                           0x000000010cf9114e -[XTCachePersistentPolicy newCachePageOnLookupForRequest:] + 136
    10  ProXTCore                           0x000000010cf884e1 -[XTCacheEvictionPolicy newCachePageLookupForRequest:] + 23
    11  ProXTCore                           0x000000010cf8e32a -[XTCacheStore newObjectLookupInEvictionPolicyForRequest:] + 44
    12  ProXTCore                           0x000000010cf8e524 -[XTCacheStore newObjectLookupRequest:rootStore:] + 39
    13  ProXTCore                           0x000000010cf8f28e -[XTCacheStore newObjectForRequest:] + 65
    14  Geode                               0x000000010cd2cfc0 -[DGTier2Factory readRequest:intoPageRef:] + 482
    15  Geode                               0x000000010cd2d604 -[DGTier2Factory cache:cacheStore:onFulfillRequest:intoPageRef:] + 589
    16  ProXTCore                           0x000000010cf88f47 -[XTCacheFactory backgroundFulfillment:] + 532
    17  ProXTCore                           0x000000010cf69736 -[XTDistributor distributeMessage:] + 444
    18  ProXTCore                           0x000000010cf690fa -[XTThread handleMessage:] + 342
    19  ProXTCore                           0x000000010cf67eb3 -[XTThread run:] + 345
    20  Foundation                          0x00007fff935eecd2 __NSThread__main__ + 1345
    21  libsystem_c.dylib                   0x00007fff8c7a97a2 _pthread_start + 327
    22  libsystem_c.dylib                   0x00007fff8c7961e1 thread_start + 13
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libFontParser.dylib                     0x00007fff8f00ff4e TTrueTypeFontHandler::TGlyphHeaderData::GetHead() const + 26
    1   libFontParser.dylib                     0x00007fff8f011aa3 TTrueTypeFontHandler::GetBounds(unsigned short, double&, double&, double&, double&, bool) const + 107
    2   libFontParser.dylib                     0x00007fff8f012408 FPFontGetGlyphIdealBounds + 203
    3   libCGXType.A.dylib                      0x00007fff91f2b4ed xt_font_get_glyph_bboxes + 448
    4   libCGXType.A.dylib                      0x00007fff91f2b32b get_glyph_bboxes + 9
    5   com.apple.CoreGraphics                  0x00007fff90cf40d5 CGFontGetGlyphBBoxes + 140
    6   com.apple.CoreGraphics                  0x00007fff90cf8364 get_char_top + 45
    7   com.apple.CoreGraphics                  0x00007fff90cf7fe0 CGFontAutohintTransformCreate + 380
    8   com.apple.CoreGraphics                  0x00007fff90d2f6a7 CGFontCreateGlyphBitmap32 + 339
    9   com.apple.CoreGraphics                  0x00007fff90cf76f3 CGGlyphLockLockGlyphBitmaps + 1172
    10  libRIP.A.dylib                          0x00007fff90589173 ripc_DrawGlyphs + 1865
    11  com.apple.CoreGraphics                  0x00007fff90cb6e48 draw_glyphs + 699
    12  com.apple.CoreGraphics                  0x00007fff90cf5a63 CGContextShowGlyphsWithAdvances + 489
    13  com.apple.CoreText                      0x00007fff91e6f3ab CTFontDrawGlyphsWithAdvances + 105
    14  com.apple.AppKit                        0x00007fff8fa1cbc4 -[NSLineFragmentRenderingContext drawAtPoint:inContext:] + 6402
    15  com.apple.AppKit                        0x00007fff8fa0d1eb _NSStringDrawingCore + 3052
    16  com.apple.AppKit                        0x00007fff8fa000e7 _NSDrawTextCell + 6244
    17  com.apple.AppKit                        0x00007fff8fc60075 _NXDrawTextCell + 56
    18  com.apple.prokit                        0x000000010c2d45ea -[NSProTextFieldCell drawInteriorWithFrame:inView:] + 1092
    19  com.apple.prokit                        0x000000010c2d4e5b -[NSProTextFieldCell drawWithFrame:inView:] + 371
    20  com.apple.prokit                        0x000000010c2cc264 -[NSProPopUpButtonCell drawTitleWithFrame:inView:] + 708
    21  com.apple.AppKit                        0x00007fff8fac6216 -[NSMenuItemCell drawInteriorWithFrame:inView:] + 510
    22  com.apple.AppKit                        0x00007fff8fa01806 -[NSControl drawRect:] + 400
    23  com.apple.AppKit                        0x00007fff8f9f5094 -[NSView _drawRect:clip:] + 4217
    24  com.apple.AppKit                        0x00007fff8f9f36f1 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1656
    25  com.apple.AppKit                        0x00007fff8f9f3b09 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    26  com.apple.AppKit                        0x00007fff8f9f3b09 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    27  com.apple.AppKit                        0x00007fff8f9f3b09 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    28  com.apple.AppKit                        0x00007fff8f9f3b09 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    29  com.apple.AppKit                        0x00007fff8f9f3b09 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    30  com.apple.AppKit                        0x00007fff8f9f1722 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 817
    31  com.apple.AppKit                        0x00007fff8fb40fdb -[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 286
    32  com.apple.AppKit                        0x00007fff8f9ecd9d -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4675
    33  com.apple.AppKit                        0x00007fff8f9b6cc3 -[NSView displayIfNeeded] + 1830
    34  com.apple.AppKit                        0x00007fff8fb40e94 -[NSNextStepFrame displayIfNeeded] + 84
    35  com.apple.AppKit                        0x00007fff8f9b61fc _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 738
    36  com.apple.AppKit                        0x00007fff8ff818f1 __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke_01208 + 46
    37  com.apple.CoreFoundation                0x00007fff95633417 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    38  com.apple.CoreFoundation                0x00007fff95633381 __CFRunLoopDoObservers + 369
    39  com.apple.CoreFoundation                0x00007fff9560e7b8 __CFRunLoopRun + 728
    40  com.apple.CoreFoundation                0x00007fff9560e0e2 CFRunLoopRunSpecific + 290
    41  com.apple.HIToolbox                     0x00007fff91795eb4 RunCurrentEventLoopInMode + 209
    42  com.apple.HIToolbox                     0x00007fff91795b94 ReceiveNextEventCommon + 166
    43  com.apple.HIToolbox                     0x00007fff91795ae3 BlockUntilNextEventMatchingListInMode + 62
    44  com.apple.AppKit                        0x00007fff8f9b3563 _DPSNextEvent + 685
    45  com.apple.AppKit                        0x00007fff8f9b2e22 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    46  com.apple.Aperture                      0x000000010b1572f9 0x10acdf000 + 4686585
    47  com.apple.AppKit                        0x00007fff8f9aa1d3 -[NSApplication run] + 517
    48  com.apple.prokit                        0x000000010c27f6c5 NSProApplicationMain + 378
    49  com.apple.Aperture                      0x000000010acef52e 0x10acdf000 + 66862
    50  com.apple.Aperture                      0x000000010aceee54 0x10acdf000 + 65108
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff98026d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff923e9dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff923e99ee _dispatch_mgr_thread + 54
    Thread 2:: Dispatch queue: RKPublishedServiceManager AlbumDelete
    0   libsystem_kernel.dylib                  0x00007fff980246c2 semaphore_wait_trap + 10
    1   libdispatch.dylib                       0x00007fff923ebc32 _dispatch_thread_semaphore_wait + 16
    2   libdispatch.dylib                       0x00007fff923eba92 _dispatch_barrier_sync_f_slow + 188
    3   com.apple.iLifeSQLAccess                0x000000010d0bb325 -[HgEntity _dispatch_sync_if_needed_suspend:withBlock:] + 255
    4   com.apple.iLifeSQLAccess                0x000000010d0c3b45 -[HgEntity insertIntoRidList:idsForColumn:fromQuery:] + 431
    5   com.apple.iLifeSQLAccess                0x000000010d0bfda5 -[HgEntity selectDistinctList:fromQuery:] + 242
    6   com.apple.iLifeSQLAccess                0x000000010d0bfee9 -[HgEntity selectDistinctList:where:] + 195
    7   com.apple.RedRock                       0x000000010ba636db +[RKVersionGroup groupsContainingVersion:] + 37
    8   com.apple.RedRock                       0x000000010ba6390c +[RKVersionGroup removeVersionFromAllGroups:] + 74
    9   com.apple.RedRock                       0x000000010b846631 -[RKVersion willBeDeleted] + 35
    10  com.apple.iLifeSQLAccess                0x000000010d0cffc0 -[HgModel deleteModel] + 49
    11  com.apple.RedRock                       0x000000010b846373 +[RKVersion deleteVersions:deleteMode:] + 1743
    12  com.apple.RedRock                       0x000000010b831e2f +[RKMaster deleteMasters:deleteReferencedFiles:deleteImmediately:skip:progressBlock:] + 1882
    13  com.apple.RedRock                       0x000000010b832227 +[RKMaster deleteMasters:deleteReferencedFiles:progressBlock:] + 268
    14  com.apple.RedRock                       0x000000010b83233b +[RKMaster async_deleteMasters:deleteReferencedFiles:] + 192
    15  com.apple.Aperture                      0x000000010afa6523 0x10acdf000 + 2913571
    16  libdispatch.dylib                       0x00007fff923eaf01 _dispatch_call_block_and_release + 15
    17  libdispatch.dylib                       0x00007fff923e70b6 _dispatch_client_callout + 8
    18  libdispatch.dylib                       0x00007fff923e847f _dispatch_queue_drain + 235
    19  libdispatch.dylib                       0x00007fff923e82f1 _dispatch_queue_invoke + 52
    20  libdispatch.dylib                       0x00007fff923e81c3 _dispatch_worker_thread2 + 249
    21  libsystem_c.dylib                       0x00007fff8c7abd0b _pthread_wqthread + 404
    22  libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 3:: Dispatch queue: com.apple.Mercury.KDatabaseMgr
    0   libsystem_kernel.dylib                  0x00007fff98026faa pread + 10
    1   com.apple.iLifeSQLAccess                0x000000010d052ced seekAndRead + 86
    2   com.apple.iLifeSQLAccess                0x000000010d052c59 unixRead + 31
    3   com.apple.iLifeSQLAccess                0x000000010d06d46b readDbPage + 447
    4   com.apple.iLifeSQLAccess                0x000000010d06cb6f sqlite3PagerAcquire + 342
    5   com.apple.iLifeSQLAccess                0x000000010d06c9db btreeGetPage + 30
    6   com.apple.iLifeSQLAccess                0x000000010d07a3c1 getAndInitPage + 66
    7   com.apple.iLifeSQLAccess                0x000000010d07a7d3 moveToChild + 68
    8   com.apple.iLifeSQLAccess                0x000000010d0895ea sqlite3BtreeMovetoUnpacked + 698
    9   com.apple.iLifeSQLAccess                0x000000010d06758a sqlite3VdbeExec + 26166
    10  com.apple.iLifeSQLAccess                0x000000010d060c5a sqlite3_step + 2420
    11  com.apple.iLifeSQLAccess                0x000000010d080df9 -[HgKPreparedSql updateWithArgs:] + 230
    12  com.apple.iLifeSQLAccess                0x000000010d0b9dc0 __35-[HgEntity executeUpdate:withArgs:]_block_invoke_0 + 36
    13  libdispatch.dylib                       0x00007fff923eaf01 _dispatch_call_block_and_release + 15
    14  libdispatch.dylib                       0x00007fff923e70b6 _dispatch_client_callout + 8
    15  libdispatch.dylib                       0x00007fff923e847f _dispatch_queue_drain + 235
    16  libdispatch.dylib                       0x00007fff923e82f1 _dispatch_queue_invoke + 52
    17  libdispatch.dylib                       0x00007fff923e8448 _dispatch_queue_drain + 180
    18  libdispatch.dylib                       0x00007fff923e82f1 _dispatch_queue_invoke + 52
    19  libdispatch.dylib                       0x00007fff923e81c3 _dispatch_worker_thread2 + 249
    20  libsystem_c.dylib                       0x00007fff8c7abd0b _pthread_wqthread + 404
    21  libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 4:: Dispatch queue: com.apple.root.default-priority
    0   libsystem_kernel.dylib                  0x00007fff98026faa pread + 10
    1   com.apple.proxtcore                     0x000000010cfae368 -[XTSegmentFile readData:forIndexEntry:] + 453
    2   com.apple.proxtcore                     0x000000010cfaf135 -[XTSegmentFile loadData:length:forIdentifier:] + 136
    3   com.apple.RedRock                       0x000000010b9015bd __block_global_0 + 306
    4   libdispatch.dylib                       0x00007fff923eaf01 _dispatch_call_block_and_release + 15
    5   libdispatch.dylib                       0x00007fff923e70b6 _dispatch_client_callout + 8
    6   libdispatch.dylib                       0x00007fff923e81fa _dispatch_worker_thread2 + 304
    7   libsystem_c.dylib                       0x00007fff8c7abd0b _pthread_wqthread + 404
    8   libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff980266d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8c7abf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8c7abd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 6:: Dispatch queue: com.apple.Mercury.KDatabaseMgr
    0   libsystem_kernel.dylib                  0x00007fff98026faa pread + 10
    1   com.apple.iLifeSQLAccess                0x000000010d052ced seekAndRead + 86
    2   com.apple.iLifeSQLAccess                0x000000010d052c59 unixRead + 31
    3   com.apple.iLifeSQLAccess                0x000000010d06d46b readDbPage + 447
    4   com.apple.iLifeSQLAccess                0x000000010d06cb6f sqlite3PagerAcquire + 342
    5   com.apple.iLifeSQLAccess                0x000000010d06c9db btreeGetPage + 30
    6   com.apple.iLifeSQLAccess                0x000000010d07a3c1 getAndInitPage + 66
    7   com.apple.iLifeSQLAccess                0x000000010d07a7d3 moveToChild + 68
    8   com.apple.iLifeSQLAccess                0x000000010d0895ea sqlite3BtreeMovetoUnpacked + 698
    9   com.apple.iLifeSQLAccess                0x000000010d061621 sqlite3VdbeExec + 1741
    10  com.apple.iLifeSQLAccess                0x000000010d060c5a sqlite3_step + 2420
    11  com.apple.iLifeSQLAccess                0x000000010d080df9 -[HgKPreparedSql updateWithArgs:] + 230
    12  com.apple.iLifeSQLAccess                0x000000010d0b9dc0 __35-[HgEntity executeUpdate:withArgs:]_block_invoke_0 + 36
    13  libdispatch.dylib                       0x00007fff923eaf01 _dispatch_call_block_and_release + 15
    14  libdispatch.dylib                       0x00007fff923e70b6 _dispatch_client_callout + 8
    15  libdispatch.dylib                       0x00007fff923e847f _dispatch_queue_drain + 235
    16  libdispatch.dylib                       0x00007fff923e82f1 _dispatch_queue_invoke + 52
    17  libdispatch.dylib                       0x00007fff923e8448 _dispatch_queue_drain + 180
    18  libdispatch.dylib                       0x00007fff923e82f1 _dispatch_queue_invoke + 52
    19  libdispatch.dylib                       0x00007fff923e81c3 _dispatch_worker_thread2 + 249
    20  libsystem_c.dylib                       0x00007fff8c7abd0b _pthread_wqthread + 404
    21  libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 7:: Dispatch queue: com.apple.Mercury.KDatabaseMgr
    0   libsystem_kernel.dylib                  0x00007fff98026faa pread + 10
    1   com.apple.iLifeSQLAccess                0x000000010d052ced seekAndRead + 86
    2   com.apple.iLifeSQLAccess                0x000000010d052c59 unixRead + 31
    3   com.apple.iLifeSQLAccess                0x000000010d06d46b readDbPage + 447
    4   com.apple.iLifeSQLAccess                0x000000010d06cb6f sqlite3PagerAcquire + 342
    5   com.apple.iLifeSQLAccess                0x000000010d06c9db btreeGetPage + 30
    6   com.apple.iLifeSQLAccess                0x000000010d07a3c1 getAndInitPage + 66
    7   com.apple.iLifeSQLAccess                0x000000010d07a7d3 moveToChild + 68
    8   com.apple.iLifeSQLAccess                0x000000010d0895ea sqlite3BtreeMovetoUnpacked + 698
    9   com.apple.iLifeSQLAccess                0x000000010d06758a sqlite3VdbeExec + 26166
    10  com.apple.iLifeSQLAccess                0x000000010d060c5a sqlite3_step + 2420
    11  com.apple.iLifeSQLAccess                0x000000010d080df9 -[HgKPreparedSql updateWithArgs:] + 230
    12  com.apple.iLifeSQLAccess                0x000000010d0b9dc0 __35-[HgEntity executeUpdate:withArgs:]_block_invoke_0 + 36
    13  libdispatch.dylib                       0x00007fff923eaf01 _dispatch_call_block_and_release + 15
    14  libdispatch.dylib                       0x00007fff923e70b6 _dispatch_client_callout + 8
    15  libdispatch.dylib                       0x00007fff923e847f _dispatch_queue_drain + 235
    16  libdispatch.dylib                       0x00007fff923e82f1 _dispatch_queue_invoke + 52
    17  libdispatch.dylib                       0x00007fff923e8448 _dispatch_queue_drain + 180
    18  libdispatch.dylib                       0x00007fff923e82f1 _dispatch_queue_invoke + 52
    19  libdispatch.dylib                       0x00007fff923e81c3 _dispatch_worker_thread2 + 249
    20  libsystem_c.dylib                       0x00007fff8c7abd0b _pthread_wqthread + 404
    21  libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00007fff980260fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8c7ae023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff93619fe3 -[NSCondition waitUntilDate:] + 357
    3   com.apple.Foundation                    0x00007fff93619e39 -[NSConditionLock lockWhenCondition:beforeDate:] + 235
    4   com.apple.proxtcore                     0x000000010cf68c5a -[XTMsgQueue waitForMessage] + 47
    5   com.apple.proxtcore                     0x000000010cf67ea3 -[XTThread run:] + 329
    6   com.apple.Foundation                    0x00007fff935eecd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff8c7a97a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8c7961e1 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff980260fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8c7ae023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff93619fe3 -[NSCondition waitUntilDate:] + 357
    3   com.apple.Foundation                    0x00007fff93619e39 -[NSConditionLock lockWhenCondition:beforeDate:] + 235
    4   com.apple.proxtcore                     0x000000010cf68c5a -[XTMsgQueue waitForMessage] + 47
    5   com.apple.proxtcore                     0x000000010cf67ea3 -[XTThread run:] + 329
    6   com.apple.Foundation                    0x00007fff935eecd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff8c7a97a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8c7961e1 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff980260fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8c7ae023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff93619fe3 -[NSCondition waitUntilDate:] + 357
    3   com.apple.Foundation                    0x00007fff93619e39 -[NSConditionLock lockWhenCondition:beforeDate:] + 235
    4   com.apple.proxtcore                     0x000000010cf68c5a -[XTMsgQueue waitForMessage] + 47
    5   com.apple.proxtcore                     0x000000010cf67ea3 -[XTThread run:] + 329
    6   com.apple.Foundation                    0x00007fff935eecd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff8c7a97a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8c7961e1 thread_start + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff980260fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8c7ae023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff93619fe3 -[NSCondition waitUntilDate:] + 357
    3   com.apple.Foundation                    0x00007fff93619e39 -[NSConditionLock lockWhenCondition:beforeDate:] + 235
    4   com.apple.proxtcore                     0x000000010cf68c5a -[XTMsgQueue waitForMessage] + 47
    5   com.apple.proxtcore                     0x000000010cf67ea3 -[XTThread run:] + 329
    6   com.apple.Foundation                    0x00007fff935eecd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff8c7a97a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8c7961e1 thread_start + 13
    Thread 12 Crashed:
    0   libsystem_kernel.dylib                  0x00007fff98026212 __pthread_kill + 10
    1   libsystem_c.dylib                       0x00007fff8c7aab54 pthread_kill + 90
    2   libsystem_c.dylib                       0x00007fff8c7eedce abort + 143
    3   libc++abi.dylib                         0x00007fff907849eb abort_message + 257
    4   libc++abi.dylib                         0x00007fff9078239a default_terminate() + 28
    5   libobjc.A.dylib                         0x00007fff8b2b9873 _objc_terminate() + 91
    6   libc++abi.dylib                         0x00007fff907823c9 safe_handler_caller(void (*)()) + 8
    7   libc++abi.dylib                         0x00007fff90782424 std::terminate() + 16
    8   libc++abi.dylib                         0x00007fff9078358b __cxa_throw + 111
    9   libobjc.A.dylib                         0x00007fff8b2b950c objc_exception_throw + 327
    10  com.apple.CoreFoundation                0x00007fff95700f49 -[NSException raise] + 9
    11  com.apple.proxtcore                     0x000000010cf693b3 -[XTThread handleMessage:] + 1039
    12  com.apple.proxtcore                     0x000000010cf67eb3 -[XTThread run:] + 345
    13  com.apple.Foundation                    0x00007fff935eecd2 __NSThread__main__ + 1345
    14  libsystem_c.dylib                       0x00007fff8c7a97a2 _pthread_start + 327
    15  libsystem_c.dylib                       0x00007fff8c7961e1 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff980260fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8c7ae023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff93619fe3 -[NSCondition waitUntilDate:] + 357
    3   com.apple.Foundation                    0x00007fff93619e39 -[NSConditionLock lockWhenCondition:beforeDate:] + 235
    4   com.apple.proxtcore                     0x000000010cf68c5a -[XTMsgQueue waitForMessage] + 47
    5   com.apple.proxtcore                     0x000000010cf67ea3 -[XTThread run:] + 329
    6   com.apple.Foundation                    0x00007fff935eecd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff8c7a97a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8c7961e1 thread_start + 13
    Thread 14:: Dispatch queue: com.apple.Mercury.KDatabaseMgr
    0   com.apple.iLifeSQLAccess                0x000000010d06cf90 pcache1Fetch + 22
    1   com.apple.iLifeSQLAccess                0x000000010d06cc7d sqlite3PcacheFetch + 193
    2   com.apple.iLifeSQLAccess                0x000000010d06ca88 sqlite3PagerAcquire + 111
    3   com.apple.iLifeSQLAccess                0x000000010d06c9db btreeGetPage + 30
    4   com.apple.iLifeSQLAccess                0x000000010d07a3c1 getAndInitPage + 66
    5   com.apple.iLifeSQLAccess                0x000000010d07a7d3 moveToChild + 68
    6   com.apple.iLifeSQLAccess                0x000000010d0895ea sqlite3BtreeMovetoUnpacked + 698
    7   com.apple.iLifeSQLAccess                0x000000010d07a875 sqlite3VdbeCursorMoveto + 43
    8   com.apple.iLifeSQLAccess                0x000000010d0694b5 sqlite3VdbeExec + 34145
    9   com.apple.iLifeSQLAccess                0x000000010d060c5a sqlite3_step + 2420
    10  com.apple.iLifeSQLAccess                0x000000010d088edb -[HgKResultSet next] + 262
    11  com.apple.iLifeSQLAccess                0x000000010d0be43c __36-[HgEntity countOfModelsWhere:args:]_block_invoke_0 + 62
    12  libdispatch.dylib                       0x00007fff923e70b6 _dispatch_client_callout + 8
    13  libdispatch.dylib                       0x00007fff923ed4e3 _dispatch_function_recurse_invoke + 40
    14  libdispatch.dylib                       0x00007fff923e70b6 _dispatch_client_callout + 8
    15  libdispatch.dylib                       0x00007fff923e8723 _dispatch_barrier_sync_f_invoke + 39
    16  libdispatch.dylib                       0x00007fff923ebad2 _dispatch_barrier_sync_f_slow + 252
    17  com.apple.iLifeSQLAccess                0x000000010d0bb325 -[HgEntity _dispatch_sync_if_needed_suspend:withBlock:] + 255
    18  com.apple.iLifeSQLAccess                0x000000010d0b1246 -[HgEntity countOfModelsWhere:args:] + 416
    19  com.apple.iLifeSQLAccess                0x000000010d0b0ff6 +[HgModel countOfModelsFromDatabase:where:] + 195
    20  com.apple.RedRock                       0x000000010b76d1b9 -[RKFolder updateVersionCount] + 256
    21  com.apple.RedRock                       0x000000010b846543 +[RKVersion deleteVersions:deleteMode:] + 2207
    22  com.apple.RedRock                       0x000000010b831e2f +[RKMaster deleteMasters:deleteReferencedFiles:deleteImmediately:skip:progressBlock:] + 1882
    23  com.apple.RedRock                       0x000000010b832227 +[RKMaster deleteMasters:deleteReferencedFiles:progressBlock:] + 268
    24  com.apple.iLifeSQLAccess                0x000000010d115d46 __28-[HgDispatchQueue addBlock:]_block_invoke_0 + 19
    25  libdispatch.dylib                       0x00007fff923eaf01 _dispatch_call_block_and_release + 15
    26  libdispatch.dylib                       0x00007fff923e70b6 _dispatch_client_callout + 8
    27  libdispatch.dylib                       0x00007fff923e847f _dispatch_queue_drain + 235
    28  libdispatch.dylib                       0x00007fff923e82f1 _dispatch_queue_invoke + 52
    29  libdispatch.dylib                       0x00007fff923e81c3 _dispatch_worker_thread2 + 249
    30  libsystem_c.dylib                       0x00007fff8c7abd0b _pthread_wqthread + 404
    31  libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff980260fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8c7ae023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x00007fff93619fe3 -[NSCondition waitUntilDate:] + 357
    3   com.apple.Foundation                    0x00007fff93619e39 -[NSConditionLock lockWhenCondition:beforeDate:] + 235
    4   com.apple.proxtcore                     0x000000010cf68c5a -[XTMsgQueue waitForMessage] + 47
    5   com.apple.proxtcore                     0x000000010cf67ea3 -[XTThread run:] + 329
    6   com.apple.Foundation                    0x00007fff935eecd2 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff8c7a97a2 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8c7961e1 thread_start + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff980266d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8c7abf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8c7abd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff980266d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8c7abf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8c7abd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 18:
    0   libsystem_kernel.dylib                  0x00007fff980266d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8c7abf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8c7abd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x00007fff980266d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8c7abf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8c7abd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib                  0x00007fff980266d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8c7abf4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8c7abd13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8c7961d1 start_wqthread + 13
    Thread 12 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x0000000118f12a68  rdx: 0x0000000000000000
      rdi: 0x0000000000009903  rsi: 0x0000000000000006  rbp: 0x0000000118f12a90  rsp: 0x0000000118f12a68
       r8: 0x00007fff7b40f278   r9: 0x000000000000000a  r10: 0x0000000020000000  r11: 0x0000000000000206
      r12: 0x0000000118f12bf0  r13: 0x000000010d000610  r14: 0x0000000118f14000  r15: 0x0000000118f12ad0
      rip: 0x00007fff98026212  rfl: 0x0000000000000206  cr2: 0x00007fff7b408ff0
    Logical CPU: 0
    Binary Images:
           0x10acdf000 -        0x10b43cff7  com.apple.Aperture (3.4.4 - 3.4.4) <7C43FF75-DA6F-3613-AF60-ACAFBB73D673> /Applications/Aperture.app/Contents/MacOS/Aperture
           0x10b661000 -        0x10b661fff  libgenkit.dylib (1) <4D2704B4-9F86-2EBA-D1A7-3A990FEF9854> /usr/lib/libgenkit.dylib
           0x10b668000 -        0x10b671ff7  com.apple.PhotoFoundation (1.0 - 20.12) <9E3EA726-0AE7-3A40-AF03-EA7BDF21C099> /Applications/Aperture.app/Contents/Frameworks/PhotoFoundation.framework/Versio ns/A/PhotoFoundation
           0x10b6e7000 -        0x10b6e8ff7  libCyrillicConverter.dylib (61) <D06971D7-9F16-3FE6-81E8-33E0FE4D6586> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
           0x10b6ed000 -        0x10bc4bfff  com.apple.RedRock (1.9.4 - 321.1) <EAD3BDC5-3A3E-3246-B69F-DB2E39695403> /Applications/Aperture.app/Contents/Frameworks/RedRock.framework/Versions/A/Red Rock
           0x10bf82000 -        0x10c005ff7  com.apple.iLifePageLayoutCore (1.0 - 210.38) <BC05B804-298B-38CD-9647-1CDAD4F714E8> /Applications/Aperture.app/Contents/Frameworks/iLifePageLayoutCore.framework/Ve rsions/A/iLifePageLayoutCore
           0x10c067000 -        0x10c06cff7  com.apple.iLifePhotoStreamConfiguration (3.4 - 2.5) <9D62897F-2817-3C68-8EDF-A52539B11EE7> /Applications/Aperture.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fr amework/Versions/A/iLifePhotoStreamConfiguration
           0x10c075000 -        0x10c0a6fff  com.apple.iLifeAssetManagement (2.7 - 45.19) <EBF43BAB-B1EF-3A26-8C17-F5A8AD4F1923> /Applications/Aperture.app/Contents/Frameworks/iLifeAssetManagement.framework/V ersions/A/iLifeAssetManagement
           0x10c0d7000 -        0x10c0e4fff  com.apple.iphoto.AccountConfigurationPlugin (1.2 - 1.2) <EA624F78-C441-3514-9A77-362F96B84A94> /Applications/Aperture.app/Contents/Frameworks/AccountConfigurationPlugin.frame work/Versions/A/AccountConfigurationPlugin
           0x10c0f6000 -        0x10c199ff7  com.apple.MobileMe (13 - 1.0.4) <78787555-A65F-3F23-8473-E9CEBCD14BF3> /Applications/Aperture.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mo bileMe
           0x10c215000 -        0x10c222ff7  com.apple.PluginManager (1.7.6 - 55) <9C4EFFC0-1CDC-360B-9294-57E710B2912A> /Library/Frameworks/PluginManager.framework/Versions/B/PluginManager
           0x10c236000 -        0x10c247fff  com.apple.AERegistration (1.2 - 401) <17EFD8F0-87B5-3189-9FDA-4510279D5B35> /Applications/Aperture.app/Contents/Frameworks/AERegistration.framework/Version s/A/AERegistration
           0x10c261000 -        0x10c4d7ff7  com.apple.prokit (7.3.2 - 1944.10) <41FA1781-64AA-37C2-8CBF-9D72CFD705C0> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
           0x10c673000 -        0x10ca17fff  com.apple.iLifeSlideshow (3.1 - 1151.4) <6AE8C8C0-9B04-3AA6-9600-F536F8104B64> /Applications/Aperture.app/Contents/Frameworks/iLifeSlideshow.framework/Version s/A/iLifeSlideshow
           0x10cb9e000 -        0x10cbb5ff7  com.apple.iLifeFaceRecognition (1.0 - 30.11) <097EDA03-9287-358F-9962-B8009A676610> /Applications/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/V ersions/A/iLifeFaceRecognition
           0x10cbc8000 -        0x10cc01fff  com.apple.fayray.PrintServices (920121212 - 11.7) <DC591C90-2028-3CC9-8B99-0E631160D751> /Applications/Aperture.app/Contents/Frameworks/PrintServices.framework/Versions /A/PrintServices
           0x10cc3c000 -        0x10cc70ff7  com.apple.ProUtils (1.1 - 220.17) <8768EBB7-58BE-3F75-914E-DA488BEAA828> /Applications/Aperture.app/Contents/Frameworks/ProUtils.framework/Versions/A/Pr oUtils
           0x10cc95000 -        0x10ce8eff7  com.apple.geode (1.5.3 - 280.22) <6C000034-D863-3022-A36D-3754EDE789F5> /Applications/Aperture.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
           0x10cf64000 -        0x10cfdffff  com.apple.proxtcore (1.4.1 - 270.13) <A2D53FDF-C510-3A57-9C21-20AE9B631AFD> /Applications/Aperture.app/Contents/Frameworks/ProXTCore.framework/Versions/A/P roXTCore
           0x10d04b000 -        0x10d166fff  com.apple.iLifeSQLAccess (1.7.1 - 70.30) <7D154ED6-7BD3-345C-9BC1-614017DAB6C6> /Applications/Aperture.app/Contents/Frameworks/iLifeSQLAccess.framework/Version s/A/iLifeSQLAccess
           0x10d1d4000 -        0x10d1d6fff  com.apple.ExceptionHandling (1.5 - 10) <47FF83ED-0C07-308C-A375-2A2189DB1056> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
           0x10d1df000 -        0x10d207fff  com.apple.iPhoto.Tellus (1.3 - 90.10) <E124C420-0AE4-36BB-98E0-A38D2B280F11> /Applications/Aperture.app/Contents/Frameworks/Tellus.framework/Versions/A/Tell us
           0x10d22f000 -        0x10d258fff  com.apple.iPhoto.Tessera (1.1 - 90.10) <6252DE02-ED5D-364B-8DAD-E67917478A86> /Applications/Aperture.app/Contents/Frameworks/Tessera.framework/Versions/A/Tes sera
           0x10d276000 -        0x10d27eff7  com.apple.AEProfiling (1.2 - 23) <AF1D815F-B5F7-316B-91C1-9C4FCAF13BBF> /Applications/Aperture.app/Contents/Frameworks/AEProfiling.framework/Versions/A /AEProfiling
           0x10d28f000 -        0x10d292fff  com.apple.LibraryRepair (1.0 - 1) <14701E47-E2B2-309F-A04E-96D260E83B54> /System/Library/PrivateFrameworks/LibraryRepair.framework/Versions/A/LibraryRep air
           0x10d298000 -        0x10d29afff +eOkaoCom.dylib (1) <393F340C-3AD1-C89B-6C37-9D8ABF4BFFD9> /Applications/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/V ersions/A/Resources/eOkaoCom.dylib
           0x10d2a5000 -        0x10d2ccff2 +eOkaoPt.dylib (1) <E6500FB8-157F-57B5-FE25-2A3A1CB3574C> /Applications/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/V ersions/A/Resources/eOkaoPt.dylib
           0x10d2d3000 -        0x10d308fe7 +eOkaoDt.dylib (1) <7A74253D-8930-6FF1-B513-0929C4E111A2> /Applications/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/V ersions/A/Resources/eOkaoDt.dylib
           0x10d310000 -        0x10d478fef +eOkaoFr.dylib (1) <510E837E-135A-92C8-9AC0-465691EA43D2> /Applications/Aperture.app/Contents/Frameworks/iLifeFaceRecognition.framework/V ersions/A/Resources/eOkaoFr.dylib
           0x10d47c000 -        0x10d4d7fff  com.apple.NyxAudioAnalysis (12.4 - 12.4) <7E92057A-2C05-31D1-A7AC-8323606AF300> /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
           0x114be6000 -        0x114c0fff7  com.apple.prokit.LionPanels (7.3.2 - 1944.10) <0203CE91-E926-32CC-80A3-94D8C1C558A1> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/LionPan els.bundle/Contents/MacOS/LionPanels
           0x114c61000 -        0x114e1ffff  GLEngine (8.7.25) <8398B57C-EE2D-3006-940C-CECE8E719D3B> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x114e56000 -        0x114fc6fff  libGLProgrammability.dylib (8.7.25) <EE2DD8AF-C6C3-303D-976E-87B4AABF8371> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x114ffe000 -        0x1152b6fff  com.apple.ATIRadeonX2000GLDriver (8.10.44 - 8.1.0) <7D70DE9A-6C60-36EE-BDB1-712331A1756C> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
           0x115313000 -        0x115320fff  libGPUSupport.dylib (8.7.25) <F884DCD6-8234-3D23-BEC6-4EC4CE5101EF> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x115327000 -        0x115352fff  GLRendererFloat (8.7.25) <BB54593F-07F0-392A-8993-CA844F4A20E8> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x11535b000 -        0x115364fe7  libcldcpuengine.dylib (2.2.16) <DB9678F6-7D50-384A-A961-6109B61D1607> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
           0x11571e000 -        0x115726fff  com.apple.Aperture.TaskView (1.1 - 1.0) <86BD1732-359D-3A6F-B3A6-D3049B8F5DBD> /Applications/Aperture.app/Contents/PlugIns/TaskView.bundle/Contents/MacOS/Task View
           0x118fe2000 -        0x11909bff7  ColorSyncDeprecated.dylib (400) <7CE58F6E-D2C8-39FB-8EE0-28CC6EC6D04F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
           0x1190ff000 -        0x119107fff  com.apple.proapps.mrcheckpro (1.4 - 397) <DEB9E6D4-E4A9-3F32-8477-C9AD48C37A69> /Applications/Aperture.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/ MRCheckPro
           0x119ca7000 -        0x119cacff7  libFontRegistryUI.dylib (100) <9F172961-DB6F-3A82-9F90-28F9A233F755> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
           0x119d1e000 -        0x119d46fff  com.apple.iPhoto.FacebookPublisher (1.2 - 1.2) <91BFD72D-C43A-38F3-8038-7D845A679E79> /Applications/Aperture.app/Contents/PlugIns/FacebookPublisher.publisher/Content s/MacOS/FacebookPublisher
           0x119d66000 -        0x119d86ff7  com.apple.iPhoto.FlickrPublisher (1.2 - 1.2) <7B77737F-75F5-371C-AA23-B855A4D0935E> /Applications/Aperture.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/ MacOS/FlickrPublisher
           0x119da0000 -        0x119dd5ff7  com.apple.iPhoto.MobileMePublisher (1.2 - 1.2) <E74B9FD4-6162-352D-9010-0C4E5575AC37> /Applications/Aperture.app/Contents/PlugIns/MobileMePublisher.publisher/Content s/MacOS/MobileMePublisher
           0x119dfb000 -        0x119e11fff  com.apple.iPhoto.SharedPhotoStreamPublisher (1.0 - 1.0) <5AECD4B4-26E6-3C43-A17A-913A5D2C7A8C> /Applications/Aperture.app/Contents/PlugIns/SharedPhotoStreamPublisher.publishe r/Contents/MacOS/SharedPhotoStreamPublisher
           0x119e2a000 -        0x119e2fff7  com.apple.iphoto.accountconfig.Facebook (1.2 - 1.2) <051DB4A3-7D17-3289-9328-77D5B5512EC2> /Applications/Aperture.app/Contents/PlugIns/Facebook.accountconfigplugin/Conten ts/MacOS/Facebook
           0x119e37000 -        0x119e3bfff  com.apple.iphoto.accountconfig.Flickr (1.1 - 1) <556E3A54-B1CA-3CD0-A439-AB46B45A4BE0> /Applications/Aperture.app/Contents/PlugIns/Flickr.accountconfigplugin/Contents /MacOS/Flickr
           0x119e42000 -        0x119e48ff7  com.apple.iphoto.accountconfig.MobileMe (1.1 - 1) <FDCA4A8F-C649-365F-8FE5-22418FB03EE2> /Applications/Aperture.app/Contents/PlugIns/MobileMe.accountconfigplugin/Conten ts/MacOS/MobileMe
           0x11a889000 -        0x11a88affb +cl_kernels (???) <FFCFA284-2B52-4BFD-A0D2-314D2875021C> cl_kernels
           0x11a897000 -        0x11a897ff9 +cl_kernels (???) <C0631488-C5E3-4CBC-A723-E27C3B71BDB3> cl_kernels
           0x11a899000 -        0x11a933ff7  unorm8_bgra.dylib (2.2.16) <5D62BED8-DF5D-3C51-94B4-57368FF10DDB> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
        0x7fff6a8df000 -     0x7fff6a91393f  dyld (210.2.3) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
        0x7fff8b0f9000 -     0x7fff8b0fbff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff8b0fc000 -     0x7fff8b158ff7  com.apple.Symbolication (1.3 - 93) <F2C7E0B6-B241-3020-B30A-0636D0FA3378> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8b159000 -     0x7fff8b1a4fff  com.apple.CoreMedia (1.0 - 926.87) <F51205F8-A102-359C-A9A3-22A48524C081> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff8b1a5000 -     0x7fff8b2a7fff  libcrypto.0.9.8.dylib (47) <74F165AD-4572-3B26-B0E2-A97477FE59D0> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8b2a8000 -     0x7fff8b3c092f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff8b490000 -     0x7fff8b49eff7  libkxld.dylib (2050.22.13) <4AAF0573-8632-3D06-BE32-C5675F77638D> /usr/lib/system/libkxld.dylib
        0x7fff8b49f000 -     0x7fff8b4c1ff7  libxpc.dylib (140.42) <BBE558BD-5E55-35E4-89ED-1AA6B056D05A> /usr/lib/system/libxpc.dylib
        0x7fff8b562000 -     0x7fff8b5cfff7  com.apple.datadetectorscore (4.1 - 269.2) <4FD4A7CE-BB00-3AAB-B7AA-AE395D5400EC> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8b95c000 -     0x7fff8b992fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff8b993000 -     0x7fff8b996fff  libutil.dylib (30) <EF3340B2-9A53-3D5E-B9B4-BDB5EEECC178> /usr/lib/libutil.dylib
        0x7fff8b997000 -     0x7fff8b9adfff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8b9ae000 -     0x7fff8b9dcff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff8b9dd000 -     0x7fff8bb36ff7  com.apple.syncservices (7.1 - 713.1) <1B20AF09-C1E5-3B70-A57F-177A4D92E403> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
        0x7fff8bb39000 -     0x7fff8bc0cff7  com.apple.DiscRecording (7.0 - 7000.2.4) <49FD2D2F-4F2C-39B6-877B-6E3172577D18> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8bc0d000 -     0x7fff8bc0dfff  com.apple.AOSMigrate (1.0 - 1) <585B1483-490E-32DD-97DC-B9279E9D3490> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff8bc0e000 -     0x7fff8bc30fff  com.apple.AOSAccounts (1.1.2 - 1.1.95) <9A1A8780-1F48-3CCA-96EB-D3137F93B676> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
        0x7fff8bc31000 -     0x7fff8bc46fff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8bc52000 -     0x7fff8bc69fff  com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8bc92000 -     0x7fff8bcecff7  com.apple.opencl (2.2.18 - 2.2.18) <4A78E53C-17B0-3B2D-A9EA-EF8720FE4134> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8bcf7000 -     0x7fff8bd31fff  com.apple.framework.internetaccounts (2.1 - 210) <546769AA-C561-3C17-8E8E-4E65A700E2F1> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff8bd32000 -     0x7fff8bd32fff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff8bd33000 -     0x7fff8bd90fff  com.apple.ExchangeWebServices (3.0 - 157) <58BFD72E-27F3-3F22-A421-B883FACA0E19> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
        0x7fff8bd91000 -     0x7fff8bdaeff7  com.apple.openscripting (1.3.6 - 148.3) <C008F56A-1E01-3D4C-A9AF-97799D0FAE69> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8bdaf000 -     0x7fff8bdb7ff7  libsystem_dnssd.dylib (379.37) <616FC901-151E-38BF-B2C4-24A351C5FAAD> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8bdb8000 -     0x7fff8bdb8fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8bdb9000 -     0x7fff8be5fff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff8be60000 -     0x7fff8be6dfff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8be71000 -     0x7fff8bf02fff  com.apple.CorePDF (2.0 - 2) <EB5660B1-0D79-34F3-B242-B559AE0A5B4A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8bf03000 -     0x7fff8bf35fff  com.apple.framework.Admin (12.0 - 12.0) <21E02DE3-B255-3A55-8F55-7FC9EE864C06> /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
        0x7fff8bf36000 -     0x7fff8bfd1fff  com.apple.CoreSymbolication (3.0 - 117) <C304FDB8-2FF7-34BC-858A-2B96C2B039D5> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8bfe1000 -     0x7fff8c06eff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8c06f000 -     0x7fff8c07cff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8c07d000 -     0x7fff8c07dfff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8c07e000 -     0x7fff8c180fff  libJP2.dylib (849) <4EEA33EB-AF9F-365D-A572-F7D11AD1C76F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8c181000 -     0x7fff8c1acfff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff8c1ad000 -     0x7fff8c1c7fff  com.apple.CoreMediaAuthoring (2.1 - 914) <CFA664F9-D5A7-3281-A12F-3ED8A98FD8C1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8c1c8000 -     0x7fff8c1d3fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff8c1d4000 -     0x7fff8c1d6fff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
        0x7fff8c1d7000 -     0x7fff8c1d9ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff8c21d000 -     0x7fff8c4c1ff7  com.apple.CoreImage (8.2.4 - 1.0.1) <4A6B017F-B9F7-36DA-943D-A95611F147EA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8c51d000 -     0x7fff8c560ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8c561000 -     0x7fff8c56cff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8c56d000 -     0x7fff8c570fff  libRadiance.dylib (849) <F7D9A0FD-1195-34CB-BFE5-79DAF3F40AC3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8c571000 -     0x7fff8c585fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8c586000 -     0x7fff8c6fbfff  com.apple.CFNetwork (596.3.3 - 596.3.3) <3739DC8D-8610-3740-80EC-43E130779CB8> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8c714000 -     0x7fff8c794ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8c795000 -     0x7fff8c861ff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
        0x7fff8c862000 -     0x7fff8c862fff  com.apple.Carbon (154 - 155) <372716D2-6FA1-3611-8501-3DD1D4A6E8C8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8c863000 -     0x7fff8cae3ff7  com.apple.AOSKit (1.05 - 152.2) <43361229-45F3-3946-A11A-CC0FF2129F06> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff8cae4000 -     0x7fff8cba1ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8cba2000 -     0x7fff8cbacfff  libcsfde.dylib (296.16) <DE03E28D-7979-3C31-9F46-2A7337CE0DBA> /usr/lib/libcsfde.dylib
        0x7fff8cbad000 -     0x7fff8cbfeff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8cc07000 -     0x7fff8cc96fff  libCoreStorage.dylib (296.16) <E5BF76A1-2B3E-3FD8-ABF4-F8D18829BF0A> /usr/lib/libCoreStorage.dylib
        0x7fff8ccc1000 -     0x7fff8d0defff  FaceCoreLight (2.4.1) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff8d0df000 -     0x7fff8d0e0ff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff8d0e1000 -     0x7fff8d26cff7  com.apple.WebKit (8536 - 8536.28.10) <792FA1F3-68F2-36F8-A070-898B3682F5DE> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8d288000 -     0x7fff8d2a9ff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff8d32d000 -     0x7fff8d35bfff  com.apple.CoreServicesInternal (154.2 - 154.2) <3E6196E6-F3B4-316F-9E1F-13B6B9694C7E> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8d544000 -     0x7fff8d544fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8d571000 -     0x7fff8d5b5fff  libcups.2.dylib (327.3) <71E771A1-0489-3417-8A4A-56A2C930F80C> /usr/lib

    Try this: http://support.apple.com/kb/TS4412

  • Hi, i am a littl confused as I logged into creative cloud and bough the in design plan for a year but i cant seem to donwload it... there is a window that pops up and it says its downloading but its taking forever? any advice?

    hi, i am a littl confused as I logged into creative cloud and bough the in design plan for a year but i cant seem to donwload it... there is a window that pops up and it says its downloading but its taking forever? any advice?

    Hi Dima,
    Please refer to the help documents below:
    Troubleshoot Creative Cloud download and install issues
    Error downloading, installing, or updating Creative Cloud applications
    Regards,
    Sheena

  • XML Publisher does not create a valid XML file when I try to 'generate '

    I am working through an Oracle document that walks you through creating an XML Pub report. I am using HCM 8.9, Tools 8.49.15 and it has XML Pub installed and I have the Microsoft plug-in installed
    I have created a query and have downloaded an rtf template and now am on a page where you enter your data source and then click ‘Generate’ for the sample data file. I did it and it created ‘PERSONAL_DATA_PAY.XML’ which is created from a PS Query. However if I click on ‘PERSONAL_DATA_PAY.XML’ it generates a blocky text file that is not an XML file and I can’t go any further.
    Do you know why it’s not generating a valid XML file when I click on 'generate'?
    Thanks
    Allen H. Cunningham
    Data Base Administrator - Oracle/PeopleSoft
    Sonoma State University

    On the right click on HD under video quality to filter it. 

  • How is the Login-validation.xml file is called when we do the validation i

    Hi ^^,
    please forgive me if I am a big long while explaining.
    when you are using the struts 2.0 the web.xml has a welcome-file-list. I have put index.html in that list so it pulls up first.
    It has the following tag
    <ul>
              <li><a href="roseindia/showLoginClientSideValidation.action">Login Application (Client Side Validation)</a></li>
            </ul>so this maps to struts.xml which contains the showLoginClientSideValidation.action tag
    <action name="showLoginClientSideValidation">
                   <result>/pages/loginClientSideValidation.jsp</result>
            </action>
            <action name="doLoginClientSideValidation" class="net.roseindia.Login">
                <result  name="input">/pages/loginClientSideValidation.jsp</result>
                   <result  name="error">/pages/loginClientSideValidation.jsp</result>
                   <result>/pages/Loginsuccess.jsp</result>
            </action>
              this displays the jsp "loginClientSideValidation.jsp"
    once you enter the details in the jsp and click submit the control goes to Login.java file as per the mapping in struts.xml given above
    This is just a simple java file which contains the execute() method. This method returns success or error.
    If success is returned then the Loginsuccess.jsp is invoked
    If error is returned then the loginClientSideValidation.jsp is invoked
    Well so far so good
    I have also understood that to use client side validation you use validate = "true" in loginClientSideValidation.jsp
    However what I am not able to understand is how the Login-validation.xml file is being invoked
    Any help would be highly appreciated.
    thanks and regards,

    Hi ^^^,
    i found something interesting that I want to share
    Validation rules are handled by validators, which must be registered with the ValidatorFactory (using the registerValidator method). The simplest way to do so is to add a file name validators.xml in the root of the classpath (/WEB-INF/classes) that declares all the validators you intend to use.
    validators.xml if being defined should be available in the classpath. However this is not necessary, if no custom validator is needed. Webwork will automatically picked up a predefined sets of validators defined in com/opensymphony/xwork/validator/validators/default.xml packaged together in xwork jar file that comes with webwork distribution.
    So this is clear that the validators are defined in validators.xml or default.xml
    What is still not clear is how is the Login-validation.xml being called by jsp page to do verification and then linking to validators.xml to apply the rules.
    However people have been telling me that ----" Struts 2.0 have inbuilt functionalities to validate the Parameters" and that i need to
    "Define configuration file *-validation.xml or use annotations
    i) className-validation.xml
    ii) place this file in the directory where .class file is placed example.Login should have Login-validation.xml
    Do you all think is this sufficient for an answer or should my search go on?
    thanks and regards,
    Prashant
    Edited by: pksingh79 on Sep 13, 2008 10:08 AM

  • Hi! I've just installed mountain lion and I find one of the programs I need for my work is crashing all the time. any ideas what i can do?

    hi! I've just installed mountain lion and I find one of the programs I need for my work is crashing all the time. any ideas what i can do?

    Ah!
    Factuur Bright x
    part of errors:
    Process:         Factuur Bright X [1476]
    Path:            /Applications/Factuur Bright X/Factuur Bright X.app/Contents/MacOS/Factuur Bright X
    Identifier:      ???
    Version:         ??? (2.0.0b20)
    Code Type:       X86 (Native)
    Parent Process:  launchd [184]
    User ID:         501
    Date/Time:       2013-07-10 22:35:39.180 +0200
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          2118 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  24 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                      47D641A2-4625-7590-369C-8BAFE1439551
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000010

  • A1281 is the battery i got for my 15inch MBP. Is the battery life only 2 - 3 hours for a new battery on this device.

    A1281 is the battery i got for my 15inch MBP. Is the battery life only 2 - 3 hours for a new battery on this device.
    This is from Apple.
    2 to 3 hours seems very low.
    what is teh standard or advertised spec for a 15 inch Macbook Pro with this battery.
    I would like to know so that i can return it if this is not normal.
    Its expensive so comments would be appreciated.

    I say it depends on your model? average usage is about 3-4 hours depending on what you use and how you use it. Adobe Flash player eats a lot of battery power so if you are on a web page and has flash player, likely that it's eating up battery because of it's power thirsty.
    Also check your systems activity monitor. It could be possible that one of your program/apps did not close right and may be still running. So check for that and end the process if necessary.
    If you have a backlight keyboard, in a broad daylight, it's not necessary to have it on.
    I also suggest that you use it plugged in most of the time, and it's not going to hurt or damage the battery if you have it plugged in all the time. Only use on battery if you are going to places that has no access to the outlet. If you are at home, then keep it plugged in. Just keep in mind to fully drain the battery until it your MBP turns off on it's own. This is the calibration process so that you have the most accurate battery readings.
    The standard for 2011 MBP is 7 hours on battery. Before that model is 10 hours, but i don't believe that previous models will last 10 hours. Last week I calibrated my battery readings from fully charged and it took 9 hours to completely drain out the battery (I have a 2011 model),
    If you think it's not normal and that your battery doesn't meet your expectation then set up an appointment with the genius bar and have them test the battery. They will determine whether it is faulty or not.

  • How can I change the default apple ID for app store. I bought the macbook from my school when I left and I'm the ID in place of mine is the computer departments one. How can i change it to mine?? Thanks

    How can I change the default apple ID for app store. I bought the macbook from my school when I left and I'm the ID in place of mine is the computer departments one. How can i change it to mine?? Thanks

    http://support.apple.com/kb/ht5621

  • TS3048 Is there a way to "calibrate" the magic mouse? I have rearranged settings for mouse, air-cleaned, tried different surfaces, however, it seems to be misinterpreting finger movements and randomly trying to open launchpad when enabled.

    Is there a way to "calibrate" the magic mouse? Batteries are good. I have rearranged settings for mouse, air-cleaned, tried different surfaces, however, it seems to be misinterpreting finger movements and randomly trying to open launchpad when enabled-flashing between the app I am in and launchpad. When right-click is enabled I have to go to the extreme upper left of mousepad to click or it is interpreted as right-click. Won't consistently "scroll". Suggestions?

    Here's some things you could try....
    Reset your computer's PRAM
    http://docs.info.apple.com/article.html?path=Mac/10.7/en/mh26871.html
    Intel-based Macs: Resetting the System Management Controller (SMC)
    http://support.apple.com/kb/HT3964
    Mac OS X: Starting up in Safe Mode
    http://support.apple.com/kb/HT1455

  • I have two iphones, different telcos, i am using the same apple id for both - how can i use the 10GB icloud free memory of my new iphone 5?

    I have two iphones, different telcos, i am using the same apple id for both - how can i use the 10GB icloud free memory of my new iphone 5?

    Thank you KiltedTim!
    YES, that is the free 5GB icloud memory for each apple ID. Can I not add the free 5Gb of my second Iphone to my original apple ID (5GB also) as I want to use one Apple ID name on both 2 Iphones? Is it necessary to have a different apple ID for the second Iphone to avail the free 5GB it carries with it?

Maybe you are looking for