OracleBlob/LiteLob Length or GetBytes fails with S1000[POL-3314]

Trying to access OracleBlob Length or GetBytes fails with S1000[POL-3314], has anyone found a solution to this problem?
Oracle.DataAccess.Lite.OracleException: S1000[POL-3314] unknown error
at Oracle.DataAccess.Lite.OracleConnection.OE(IntPtr stmt, Int16 r, String reason)
at Oracle.DataAccess.Lite.OracleConnection.OE(Int16 r, String msg)
at Oracle.DataAccess.Lite.OracleBlob.OE(Int16 r, String msg)
at Oracle.DataAccess.Lite.OracleBlob.GetBytes(Int64 pos, Byte[] bytes, Int32 offset, Int32 len)
Our code for converting Blob to byte array works on WinCE, however fails on Win32:
byte[] data = new byte[blob.Length];
int pos = 0;
while (pos < blob.Length)
byte[] buffer = blob.GetBytes(pos, (int)blob.Length);
Array.Copy(buffer, 0, data, pos, buffer.Length);
pos = pos + buffer.Length;
return data;
or
int chunkSize = 64;
long offSet = 0;
byte[] buffer = new byte[chunkSize];
long chunk;
using (MemoryStream memoryStream = new MemoryStream())
do
chunk = blob.GetBytes(offSet, buffer, 0, chunkSize);
memoryStream.Write(buffer, 0, (int)chunk);
offSet += chunk;
} while (chunk > 0);
return memoryStream.ToArray();
}

Has anyone found a solution to this problem?
Oracle.DataAccess.Lite.OracleException: S1000[POL-3314] unknown error
at Oracle.DataAccess.Lite.OracleConnection.OE(IntPtr stmt, Int16 r, String reason)
at Oracle.DataAccess.Lite.OracleConnection.OE(Int16 r, String msg)
at Oracle.DataAccess.Lite.OracleBlob.OE(Int16 r, String msg)
at Oracle.DataAccess.Lite.OracleBlob.GetBytes(Int64 pos, Byte[] bytes, Int32 offset, Int32 len)
Our code for converting Blob to byte array works on WinCE, however fails on Win32:
byte[] data = new byte[blob.Length];
int pos = 0;
while (pos < blob.Length)
byte[] buffer = blob.GetBytes(pos, (int)blob.Length);
Array.Copy(buffer, 0, data, pos, buffer.Length);
pos = pos + buffer.Length;
return data;
or
int chunkSize = 64;
long offSet = 0;
byte[] buffer = new byte[chunkSize];
long chunk;
using (MemoryStream memoryStream = new MemoryStream())
do
chunk = blob.GetBytes(offSet, buffer, 0, chunkSize);
memoryStream.Write(buffer, 0, (int)chunk);
offSet += chunk;
} while (chunk > 0);
return memoryStream.ToArray();
}

Similar Messages

  • Approval task SP09: Evaluation of approvalid failed with Exception: while trying to invoke the method java.lang.String.length() of an object loaded from local variable 'aValue'

    Hi everyone,
    I just installed SP09 and i was testing the solution. And I found a problem with the approvals tasks.
    I configured a simple ROLE approval task for validate add event. And when the runtime executes the task, the dispatcher log shows a error:
    ERROR: Evaluation of approvalid failed with Exception: while trying to invoke the method java.lang.String.length() of an object loaded from local variable 'aValue'
    And the notifications configured on approval task does not start either.
    The approval goes to the ToDO tab of the approver, but when approved, also the ROLE stays in "Pending" State.
    I downgraded the Runtime components to SP08 to test, and the approvals tasks works correctly.
    Has anyone passed trough this situation in SP09?
    I think there is an issue with the runtime components delivered with this initial package of SP09.
    Suggestions?

    Hi Kelvin,2016081
    The issue is caused by a program error in the Dispatcher component. A fix will be provided in Identity Management SP9 Patch 2 for the Runtime component. I expect the patch will be delivered within a week or two.
    For more info about the issue and the patch please refer to SAPNote 2016081.
    @Michael Penn - I might be able to assist if you provide the ticket number
    Cheers,
    Kristiyan
    IdM Development

  • Printing Error - pstopdffilter/pstocupsraster failed with err number -31000

    Hi All,
    I'm hoping someone could assist me with this. After googling like crazy for a solution I thought I had to post here on the forums. I'm a new Mac user (only a few days now) so please bear with me. I will also post this on the Java Forums because I don't know if this is a problem with my code or with the Mac settings.
    Setup
    I've got a Java Applet running on the mac (written in Eclipse 64 bit) on a Mac with OS X 10.6.4 on. Also, Java 1.6.0_21 (both 32 bit and 64 bit) is installed on the machine. The printer installed is a ZPL Label Printer (Zebra Technologies ZTC GK420d).
    If I use another application such as TextEdit to print, it works fine.
    *Problem Description*
    Whenever I try print from the Applet nothing comes from the printer, my code does not break or catch any exception at all but the printer queue gives the error: *pstopdffilter/pstocupsraster failed with err number -31000.*
    Code
    The code I use with this Java Applet works absolutely fine on Windows XP 32 bit (IE 7.0, Google Chrome and Firefox) as well as on Windows 7 64 bit (I.E 8.0, Google Chrome and Firefox) but never on the Mac. For any developers who might be able to help, the code is below:
    import java.applet.Applet;
    import javax.print.Doc;
    import javax.print.DocFlavor;
    import javax.print.DocPrintJob;
    import javax.print.PrintException;
    import javax.print.PrintService;
    import javax.print.PrintServiceLookup;
    import javax.print.SimpleDoc;
    import javax.print.attribute.PrintServiceAttribute;
    import javax.print.attribute.standard.PrinterName;
    import javax.print.attribute.HashPrintRequestAttributeSet;
    import javax.print.attribute.PrintRequestAttributeSet;
    import javax.print.attribute.standard.Copies;
    public class UKMJavaPrintApplet extends Applet
    public void init()
    System.out.println("Initialising UK Mail Java Printing Applet...");
    public void start()
    System.out.println("Starting UK Mail Java Printing Applet...");
    PrintLabelZPL("^XA^FO100,40^BY3^B3,,30^FD123ABC^XZ","Zebra Technologies ZTC GK420d");
    public void stop()
    System.out.println("Stopping UK Mail Java Printing Applet...");
    public void destroy()
    System.out.println("Preparing unload of UK Mail Java Printing Applet...");
    public int GetPrinterCount()
    PrintService[] services = null;
    int serviceLength = 0;
    try
    services = PrintServiceLookup.lookupPrintServices(null, null);
    if(services != null && services.length > 0)
    serviceLength = services.length;
    catch(Exception z)
    System.out.println("Failed to get printer count: " + z.getMessage());
    z.printStackTrace();
    return serviceLength;
    public String GetPrinterName(int index)
    String sPrinterName = null;
    String printerName = "";
    PrintService[] services = null;
    try
    services = PrintServiceLookup.lookupPrintServices(null, null);
    for (int k=0; k < services.length; k++)
    PrintServiceAttribute attr = services[k].getAttribute(PrinterName.class);
    sPrinterName = ((PrinterName) attr).getValue();
    if(index == k)
    printerName = sPrinterName;
    break;
    catch(Exception r)
    System.out.println("Failed to get printer name: " + r.getMessage());
    r.printStackTrace();
    return printerName;
    public Boolean PrintLabelZPL(String zplString, String printerName)
    String errStr = "";
    Boolean boolSuccess = false;
    try
    if(printerName != null && printerName != "")
    PrintService psZebra = null;
    String sPrinterName = null;
    PrintRequestAttributeSet pras = new HashPrintRequestAttributeSet();
    pras.add(new Copies(1));
    PrintService[] services = PrintServiceLookup.lookupPrintServices(null, null);
    for (int i = 0; i < services.length; i++)
    PrintServiceAttribute attr = services.getAttribute(PrinterName.class);
    sPrinterName = ((PrinterName) attr).getValue();
    if (printerName.equals(sPrinterName))
    psZebra = services;
    break;
    if (psZebra != null)
    DocPrintJob job = psZebra.createPrintJob();
    byte[] by = zplString.getBytes();
    DocFlavor flavor = DocFlavor.BYTE_ARRAY.AUTOSENSE;
    Doc doc = new SimpleDoc(by, flavor, null);
    System.out.println("Printing to: " + printerName);
    job.print(doc, pras);
    boolSuccess = true;
    System.out.println("Printing Successful.");
    else
    errStr = "Zebra printer not found.";
    System.out.println(errStr);
    boolSuccess = false;
    else
    errStr = "No printer name was provided.";
    System.out.println(errStr);
    boolSuccess = false;
    catch (PrintException e)
    System.out.println("Print Failed with PrintException: " + e.getMessage());
    boolSuccess = false;
    e.printStackTrace();
    catch (Exception f)
    System.out.println("Print Failed: " + f.getMessage());
    boolSuccess = false;
    f.printStackTrace();
    return boolSuccess;
    Does anyone have any ideas on how I can resolve this and print to the ZPL printer from my Java Applet on the Mac?
    Any help would be much appreciated.
    Thanks!

    We managed to solve our own problem. This was not directly a Java Problem, but a problem with the setup of the Zebra printer on the Mac. Printing directly to the ZPL Printer never worked and always gave the error Printing Error - pstopdffilter/pstocupsraster failed with err number -31000.
    To solve this, we had to use the CUPS (Common Unix Printing System) interface. CUPS is apparently installed standard with every Mac. Being a new Mac user I didn't even know this a week ago. We had to use CUPS to add the printer, set it to be a "RAW" printer and then add something called a Class. Now when printing from the Java Applet, we DO NOT print to the actual Zebra printer, we print to the Class.
    Here are the steps on how to accomplish all this:
    1. As an Admin user, log onto Cups using the Safari browser by entering *http://localhost:631* into the Address Bar.
    2. Select the Administration tab and click, ‘Add Printer’
    3. Select the required local printer and then ‘Continue’
    4. Enter a Name, Description, Location and uncheck the ‘Share This Printer’ checkbox, where:
    a. Name = Queue Name (e.g. Zebra_RAW)
    b. Description = Human Readable Description (e.g. Zebra1)
    c. Location = Human Readable Location (e.g. My Mac mini)
    5. Click ‘Continue’
    6. Click ‘Select Another Make/Manufacturer’ and select ‘Raw’. Click ‘Continue’
    7. Click ‘Add Printer’
    8. Check that Banners are ‘none’ and Policies are ‘stop-printer’ (Error) and ‘default’ (Operation)
    9. Click ‘Set Default Options’
    10. Under the Administration tab, click Add Class.
    11. Enter a Name, Description, Location and select the Members:
    a. Name = Queue Name (e.g. ZebraRAWClass)
    b. Description = Human Readable Description (e.g. ZebraRaw)
    c. Location = Human Readable Location (e.g. My Mac mini)
    d. Members = the Queue Name of the new raw printer
    12. The only visible printers on the list then will be your non-raw printer/s and the printer class which you just created.
    13. Now when printing from Java Code, you must use the class as the printer in order to print raw ZPL.
    So in my example code in the previous post, I would print like this: PrintLabelZPL("^XA^FO100,40^BY3^B3,,30^FD123ABC^XZ","ZebraRaw");
    And it works! I hope this can help others with the same / similar problem.

  • SCCM 2012 R2 Client install error - CcmGetOSVersion failed with 0x80070008

    Getting this error message, CcmGetOSVersion failed with 0x80070008 and CcmSetup failed with error code 0x80070008.  Only thing on this error I can find is Windows Update and removing languages.  Only language installed is English.  I've pasted
    the last part of the ccmsetup.log file.  Not sure if more would be needed.  I've done a complete uninstall\reinstall attempt.  Recompiled MOF files and reregistered DLL files for WMI.  Did a repository rebuild of WMI.  Nothing has
    helped.  Not sure what it's checking besides WMI to get the OSversion or what that error code means.  This is the only server having this error.  Our other 700 servers have installed the client with no issues.   OS is Server 2008 SP2, NOT
    R2.  Any help is greatly appreciated.  Thanks.
    Detected 6906 MB free disk space on system drive. ccmsetup 6/24/2014 4:01:23 PM 3984 (0x0F90)
    Checking Write Filter Status. ccmsetup 6/24/2014 4:01:23 PM 3984 (0x0F90)
    This is not a supported write filter device. We are not in a write filter maintenance mode. ccmsetup 6/24/2014 4:01:23 PM 3984 (0x0F90)
    SiteCode: MG1 ccmsetup 6/24/2014 4:01:23 PM 3984 (0x0F90)
    SiteVersion: 5.00.7958.1000 ccmsetup 6/24/2014 4:01:23 PM 3984 (0x0F90)
    Searching for a valid online MP... ccmsetup 6/24/2014 4:01:23 PM 3984 (0x0F90)
    Checking the URL 'http://ADCSCCM.xxxx.dom:80/CCM_Client/ccmsetup.cab' ccmsetup 6/24/2014 4:01:23 PM 3984 (0x0F90)
    PROPFIND 'http://ADCSCCM.xxxx.dom:80/CCM_Client' ccmsetup 6/24/2014 4:01:23 PM 3984 (0x0F90)
    Found a valid online MP 'http://ADCSCCM.xxxx.dom'. ccmsetup 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Searching for DP locations from MP(s)... ccmsetup 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Current AD forest name is mw.dom, domain name is xxxx.dom LocationServices 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Domain joined client is in Intranet LocationServices 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Current AD site of machine is London LocationServices 6/24/2014 4:01:24 PM 3984 (0x0F90)
    DHCP entry points already initialized. LocationServices 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Begin checking Alternate Network Configuration LocationServices 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Finished checking Alternate Network Configuration LocationServices 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Sending message body '<ContentLocationRequest SchemaVersion="1.00">
    <AssignedSite SiteCode="MG1"/>
    <ClientPackage/>
    <ClientLocationInfo LocationType="SMSPACKAGE" DistributeOnDemand="0" UseProtected="0" AllowCaching="0" BranchDPFlags="0" AllowHTTP="1" AllowSMB="0" AllowMulticast="0" UseInternetDP="0">
    <ADSite Name="London"/>
    <Forest Name="xxxx"/>
    <Domain Name="xxxx.dom"/>
    <IPAddresses>
    <IPAddress SubnetAddress="172.18.112.0" Address="172.18.112.26"/>
    <IPAddress SubnetAddress="172.18.112.0" Address="172.18.112.27"/>
    </IPAddresses>
    </ClientLocationInfo>
    </ContentLocationRequest>
    ' ccmsetup 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Sending message header '<Msg SchemaVersion="1.1"><ID>{C6E08DE7-E3F8-4AEF-971A-FE72D68A21BA}</ID><SourceHost>LONEXCHMB3-V</SourceHost><TargetAddress>mp:[http]MP_LocationManager</TargetAddress><ReplyTo>direct:LONEXCHMB3-V:LS_ReplyLocations</ReplyTo><Priority>3</Priority><Timeout>600</Timeout><ReqVersion>5931</ReqVersion><TargetHost>http://ADCSCCM.xxxx.dom</TargetHost><TargetEndpoint>MP_LocationManager</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2014-06-24T15:01:24Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="1212"/><Hooks><Hook3 Name="zlib-compress"/></Hooks><Payload Type="inline"/></Msg>' ccmsetup 6/24/2014 4:01:24 PM 3984 (0x0F90)
    CCM_POST 'http://ADCSCCM.xxxx.dom/ccm_system/request' ccmsetup 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Content boundary is '--aAbBcCdDv1234567890VxXyYzZ' ccmsetup 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Received header '<Msg SchemaVersion="1.1">
    <ID>{C8B36ACA-631C-4FAB-AB16-C84E10A0E558}</ID>
    <SourceID>GUID:2C64ED93-54ED-4F2D-A3BE-D3665D1F3A1A</SourceID>
    <SourceHost>ADCSCCM</SourceHost>
    <TargetAddress>direct:LONEXCHMB3-V:LS_ReplyLocations</TargetAddress>
    <ReplyTo>MP_LocationManager</ReplyTo>
    <CorrelationID>{00000000-0000-0000-0000-000000000000}</CorrelationID>
    <Priority>3</Priority>
    <Timeout>600</Timeout>
    <ReplyCapabilities><AllowRegistrationReset>direct:ADCSCCM:ClientRegistration</AllowRegistrationReset></ReplyCapabilities><TargetHost>LONEXCHMB3-V</TargetHost><TargetEndpoint>LS_ReplyLocations</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2014-06-24T15:01:24Z</SentTime><Body
    Type="ByteRange" Offset="0" Length="3458"/><Hooks><Hook3 Name="zlib-compress"/><Hook Name="authenticate"><Property Name="Signature">3082018F06092A864886F70D010702A08201803082017C020101310B300906052B0E03021A0500300B06092A864886F70D0107013182015B30820157020101303430203110300E060355040313074144435343434D310C300A06035504031303534D53021074EBF19EB9460F934134D87A82C78424300906052B0E03021A0500300D06092A864886F70D01010105000482010080CC8ADDAD2A1FA5D7986202D7AD27B0C1125ACEE1E4E486D557A7482A309AF74CBC7CB4FC8001C9050E1D77443673290ADE0EFC1B140C805C60F48497DBD8C56B554962BC348C4FC4D315223BFF7200F23CC095D8854129D0852F02472A2F4570D6CF4C8902D39B87EA3BEF77A521881D3A07CC091FBFDB7D7204773BB18F333B9B106AC20E479E714609EC461D074F09B492339928FEE712496B2E8E0660342E7A7ADD575B7320C402E0009816622258D8B49466613734E8780297B32403D18DF6560F2ECB2FF7E820403EA7AC97BCFA2A53D432B37592FD64DA53FB5F03DB715E5326A55172DCF328DD80D110925B30AD2612991B923D92CD3076B26B824E</Property><Property
    Name="AuthSenderMachine">ADCSCCM;ADCSCCM.xxxx.dom;</Property><Property Name="MPSiteCode">MG1</Property></Hook></Hooks><Payload Type="inline"/></Msg>' ccmsetup 6/24/2014 4:01:24 PM 3984
    (0x0F90)
    Received reply body '<ContentLocationReply SchemaVersion="1.00"><ContentInfo PackageFlags="16777216"><ContentHashValues/></ContentInfo><Sites><Site><MPSite SiteCode="MG1" MasterSiteCode="MG1"
    SiteLocality="FALLBACK" IISPreferedPort="80" IISSSLPreferedPort="443"/><LocationRecords><LocationRecord><URL Name="AtlantaDataCenter"/><IPSubnets><IPSubnet Address="172.18.200.0"/><IPSubnet
    Address=""/></IPSubnets><Metric Value=""/><Version>7958</Version><Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities><ServerRemoteName>ADCSCCM.xxxx.dom</ServerRemoteName><DPType>SERVER</DPType><Windows
    Trust="1"/><Locality>FALLBACK</Locality></LocationRecord><LocationRecord><URL Name="RichmondAtlantaLink"/><IPSubnets><IPSubnet Address="172.16.0.0"/><IPSubnet Address=""/></IPSubnets><Metric
    Value=""/><Version>7958</Version><Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities><ServerRemoteName>RDCSCCMDP.xxxx.dom</ServerRemoteName><DPType>SERVER</DPType><Windows
    Trust="1"/><Locality>FALLBACK</Locality></LocationRecord></LocationRecords></Site></Sites><ClientPackage FullPackageID="MG100003" FullPackageVersion="6" FullPackageHash="03CFD97C8FB5F7E7E9F177FD6D30D6F25ED106E517E69B715695A0E81DB1D9AF"
    MinimumClientVersion="5.00.7958.1000" RandomizeMaxDays="1" ProgramEnabled="false" LastModifiedTime="30375547;806889088" SiteVersionMatch="true" SiteVersion="5.00.7958.1000" EnablePeerCache="true"/><RelatedContentIDs/></ContentLocationReply>'
    ccmsetup 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Found remote location 'http://ADCSCCM.xxxx.dom/SMS_DP_SMSPKG$/MG100003' ccmsetup 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Found remote location 'http://RDCSCCMDP.xxxx.dom/SMS_DP_SMSPKG$/MG100003' ccmsetup 6/24/2014 4:01:24 PM 3984 (0x0F90)
    Could not find local DP locations from all MPs. Will fallback to MP download. ccmsetup 6/24/2014 4:01:24 PM 3984 (0x0F90)
    GET 'http://ADCSCCM.xxxx.dom/CCM_Client/ccmsetup.cab' ccmsetup 6/24/2014 4:01:24 PM 3984 (0x0F90)
    C:\Windows\ccmsetup\ccmsetup.cab is Microsoft trusted. ccmsetup 6/24/2014 4:01:25 PM 3984 (0x0F90)
    Successfully extracted manifest file C:\Windows\ccmsetup\ccmsetup.xml from file C:\Windows\ccmsetup\ccmsetup.cab. ccmsetup 6/24/2014 4:01:25 PM 3984 (0x0F90)
    Loading manifest file: C:\Windows\ccmsetup\ccmsetup.xml ccmsetup 6/24/2014 4:01:25 PM 3984 (0x0F90)
    Successfully loaded ccmsetup manifest file. ccmsetup 6/24/2014 4:01:25 PM 3984 (0x0F90)
    Checking if manifest version '5.00.7958.1000' is newer than the ccmsetup version '5.0.7958.1000' ccmsetup 6/24/2014 4:01:25 PM 3984 (0x0F90)
    Running from temp downloaded folder or manifest is not newer than ccmsetup. ccmsetup 6/24/2014 4:01:25 PM 3984 (0x0F90)
    CcmGetOSVersion failed with 0x80070008 ccmsetup 6/24/2014 4:01:25 PM 3984 (0x0F90)
    A Fallback Status Point has not been specified. Message with STATEID='301' will not be sent. ccmsetup 6/24/2014 4:01:25 PM 3984 (0x0F90)
    Deleted file C:\Windows\ccmsetup\ccmsetup.xml ccmsetup 6/24/2014 4:01:25 PM 3984 (0x0F90)
    CcmSetup failed with error code 0x80070008 ccmsetup 6/24/2014 4:01:25 PM 3984 (0x0F90)

    Everything seems fine.  7GB of free space, 500 MB of free RAM, 5GB of page file free.  I'll reboot the server during our next maintenance window and see if that helps.  Was hoping I wouldn't have to reboot but will probably help.  Thanks
    again.

  • SharePoint SiteMialbox failed with 503 error (AutoDiscover.svc web service call failed)

    SharePoint SiteMialbox failed with 503 error (AutoDiscover.svc web service call failed)
    I followed Technet articles to configure SiteMailBoxes in our environment & exchange sever.
    When we created Sitemailbox in a SiteCollection &when we try to open it, it failed with below error.
    Site Mailbox
    We are having trouble connecting to Exchange Server
    The server might be temporarily unavailable. Please check back on this page in a few minutes. If this problem persists, please contact your system administrator.
    Correlation ID: bb0fe99c-6f4e-e084-b191-881fbf0fa977, Error Code 10 
    ULS Log (503 error)
    Autodiscover Diagnostics Response Headers: request-id: 95d12ceb-283e-4495-b28b-256503fd097c  client-request-id: 742fe69c-ef5a-e084-ca05-6098c759c584  X-CalculatedBETarget: devapwxyz01a.devap.mydomain.com  X-FEServer: DEVNAABCD01B
     Content-Length: 0  Cache-Control: private  Date: Tue, 03 Feb 2015 18:53:40 GMT  Set-Cookie: X-BackEndCookie=; expires=Sun, 03-Feb-1985 18:53:40 GMT; path=/autodiscover; secure; HttpOnly  Server: Microsoft-IIS/8.5  X-AspNet-Version:
    4.0.30319  X-Powered-By: ASP.NET    
    742fe69c-ef5a-e084-ca05-6098c759c584
    if I am correct, X-CalculatedBETarget supposed to be DEVNAABCD01B.devna.mydomain.com but it connected to different domain devapwxyz01a.devap.mydomain.com.  Do you guys have any idea on this?  (I verified
    the same using fiddler, it is failing right at autodiscover.svc call.)
    I wrote a powershell script to connect autodiscover service in sharepoint server & this web service call able connect right server X-CalculatedBETarget. It gave the expected response.
    I am not sure why SharePoint webservice call (X-CalculatedBETarget) is going to different server?
    let me know if you guys have any ideas.
    Thanks.

    Thanks for the Response Raj.
    I already followed the same instructions in the Links.
    When SharePoint Autodisover.svc webservice send a request to Exchange server & Exchange server redirecting that request to different server, this is the problem i am facing right now.
    X-CalculatedBETarget
    supposed to be DEVNAABCD01B.devna.mydomain.com but it connected to different domain devapwxyz01a.devap.mydomain.com.
    Let me know if you have any suggestions?

  • File Adapter: Fixed length file read fails when all data not present

    Hi
    We have a BPEL process that reads fixed length data files. It works fine when all the data elements are available in the file but fails with 'rejected:10002' when even a single data is missing.
    How to handle this situation in BPEL file adapter?
    Are we doing something wrong or is this a normal functionality.
    If yes, then is there any work around for this as this is a very usual business condition which may occur, where all data elements are not mandetory.
    fixedLength
    ==========
    2,3,3,2
    Data - Successful
    ============
    1234567890
    2345678901
    3456789012
    Data - Failed
    ===========
    1234567890
    2345678901
    345678901
    Thanks in advance
    Buddhadev

    Hi Naveen,
          Do check the following things,
    >>Note : I have been asked to give the Transport Protocol as "NFS" (Whether this is the problem???) I have summarized the complete details below. Please help me
           1.If your file resides on your local network/local computer give NFS(Network file system). if your file resides on a FTP location give FTP and also give the FTP log on parameters.
    Additional Parameters
    File_MT.fieldFixedLengths 10,10,5
    File_MT.fieldNames VendorNumber,VendorName,City
    File_MT.fieldSeparator
    File_MT..processFieldNames fromConfiguration 
           2.If this structure does not match with the input file structure the file adapter wont pick up the file. So check for the help document provided by SAP in the following path.
    help.sap.com  --> Documentation  --> SAPNetWeaver --> SAPNetWeaver '04 --> English --> process integration --> SAP Exchange Infrastructure --> connectivity --> Adapters --> File Adapter
           Your file contains three records
    V123456789 A123456789 Bosto
    V234567890 B123456789 Atlan
    V334587900 C123456789 Austi
    You have mentioned the fieldSeperator as space but there is no File_MT.endSeparator '/n'  which differentiates between each and every row (record).
            Parameters for Record set Structures mentioned in the sender adapter configuration does not match with the actual file structure .
            Try giving exact structures in the configuration of sender file adapter.
    regards,
    Aravindh.

  • SOA 11g: Intergation with BAM 11g failed with ThreadPool has stuck threads

    Hi,
    I have installed BAM and SOA server on local host. Now while integrating BAM with BAMAdapter it's going into long running state and finally failing with below error.
    <Notice> <Diagnostics> <mars.as.local> <soa_server1> <[ACTIVE] ExecuteThread: '14' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <c82d73b0a2a7776f:37a0afd7:130d1278d97:-8000-0000000000028a7f> <1309264042380> <BEA-320068> <Watch 'StuckThread' with severity 'Notice' on server 'soa_server1' has triggered at Jun 28, 2011 1:27:22 PM BST. Notification details:
    WatchRuleType: Log
    WatchRule: (SEVERITY = 'Error') AND ((MSGID = 'WL-000337') OR (MSGID = 'BEA-000337'))
    WatchData: DATE = Jun 28, 2011 1:27:22 PM BST SERVER = soa_server1 MESSAGE = *[STUCK] ExecuteThread: '11' for queue: 'weblogic.kernel.Default (self-tuning)' has been busy for "638" seconds working on the request "weblogic.servlet.internal.ServletRequestImpl@16e92176[*
    *POST /soa-infra/services/default/BAMInsert/bpelprocess1_client_ep HTTP/1.1*
    Connection: TE
    TE: trailers, deflate, gzip, compress
    User-Agent: Oracle HTTPClient Version 10h
    SOAPAction: "process"
    Accept-Encoding: gzip, x-gzip, compress, x-compress
    ECID-Context: 1.c82d73b0a2a7776f:2ced6156:130d1186ef6:-8000-00000000000046b2;kYjE0ZJOoOTLkKPOoLRKlSODoITT_G
    Content-type: text/xml; charset=UTF-8
    Content-Length: 270
    *]", which is more than the configured time (StuckThreadMaxTime) of "600" seconds. Stack trace:*
    *Thread-139 "[STUCK] ExecuteThread: '11' for queue: 'weblogic.kernel.Default (self-tuning)'" <alive, suspended, sleeping, priority=1, DAEMON> {*
    *java.lang.Thread.sleep(Thread.java:???)*
    oracle.bam.common.remoting.BamEjbClient.getSession(BamEjbClient.java:973)
    oracle.bam.common.remoting.BamEjbClient.getADCSession(BamEjbClient.java:350)
    oracle.bam.adc.api.util.Context.<init>(Context.java:270)
    oracle.bam.adapter.adc.CachedConnection.<init>(CachedConnection.java:134)
    oracle.bam.adapter.adc.ADCManagedConnectionFactory.getCachedConnection(ADCManagedConnectionFactory.java:490)
    ^-- Holding lock: java.lang.String@13416588[fat lock]
    What could be root cause of this? Can anyone please help to find the solution?
    Even though both servers on same host why BAM connection is getting to much time and Putting server in warning state like :
    +[STUCK] ExecuteThread: '6' for queue: 'weblogic.kernel.Default (self-tuning)'+
    *Do i need to modify any config file at Admin or BAM level? if Yes, what parameter Do i need to change?*
    Please guide.
    Thanks,
    Sagar.

    Further Updates on this :
    I further debugged and found out few more things. This might help.
    In Weblogic Admin console Home > Summary of Deployments >oracle-bam(11.1.1)
    MDB application oracle-bam is NOT connected to messaging system with below error.
    EJBs
    MessageDispatcherBean - Error java.lang.IllegalArgumentException: Getting Deployment configuration...
    connectionFactoryJNDIName - Red Cross with warning
    destinationJNDIName - Red Cross with warning
    resourceAdapterJNDIName - Red Cross with warning
    Modules
    Also please check out another similar thread and please update.
    BAMAdapter Issue : java.rmi.ConnectException: Destination unreachable;
    Thanks,
    Sagar

  • Unmarshal fails with OTD Tester

    Sorry to bother you again with another JCAPS-question, but I would like to know how to troubleshoot these kind of error messages. I tried to test my deployment dpData_Conversion_for_IP but it failed with an unmarshal error..now I have seen this error before and I know that other folks fixed it for me the last couple of times, but I'd like to learn on how to address an issue like this.
    When I ran the otdtester I receive an error message like:
    There was an error during unmarshal.
    "...00100001\r\n"<POS>"L113218807..." failed input match, after RecordGroup[1]: left over 3086 bytes at end of data
    When I enable Verbose Mode I get the following detailed output (see attachment) which basically tells me at te end that there are so many bytes of data left that could not be matched. Does it mean that my file I present to unmarshal contains more data than I told it to expect? How would you normally fix an issue like this? I looked at the source file and the otd and the field lengths do add up: the header ends at position 163 and the line items at position 125
    Do the line item lines need to be adjusted (the number of times they repeat?)
    My custom input otd used to work fine until last week then I made some changes to the EDI-mapping, but I didn't alter the field length, or the number of fields, so then it should not have any effect.
    Below you will find the output in Verbose Mode:
    [ parse #0 ]
    [ parse 'root', pos=0, end=292, mandatory  ]
    [ parse group, count=0, order=0, must ]
    [ parse #1 ]
    [ parse 'RecordGroup', pos=0, end=292, mandatory  ]
    [ parse group, count=0, order=0, must ]
    [ parse #2 ]
    [ parse 'Header', pos=0, end=292 ]
    [ parse group delim, Fog#25 ]
    [ - push local delim list ]
    [ - iteration #0 ]
    [ parse 'RecType', pos=0, end=292 ]
    [ parse fixed, Fog#3, count=0 ]
    [ - match EXACT "H1" ]
    [ - matched data 0 to 2: "H1" ]
    [ - parse: result=1 ]
    [ - parse: 'RecType' , done=false, pos=2, end=292, last=EOD ]
    [ parse 'PackListNumber', pos=2, end=292 ]
    [ parse fixed, Fog#4, count=0 ]
    [ - matched data 2 to 22: "5160448             " ]
    [ - parse: result=1 ]
    [ - parse: 'PackListNumber' , done=false, pos=22, end=292, last=EOD ]
    [ parse 'SequenceNumber', pos=22, end=292 ]
    [ parse fixed, Fog#5, count=0 ]
    [ - matched data 22 to 27: "00001" ]
    [ - parse: result=1 ]
    [ - parse: 'SequenceNumber' , done=false, pos=27, end=292, last=EOD ]
    [ parse 'StockNoticeNumber', pos=27, end=292 ]
    [ parse fixed, Fog#6, count=0 ]
    [ - matched data 27 to 47: "51604480000100000000" ]
    [ - parse: result=1 ]
    [ - parse: 'StockNoticeNumber' , done=false, pos=47, end=292, last=EOD ]
    [ parse 'CurrentDate', pos=47, end=292 ]
    [ parse fixed, Fog#7, count=0 ]
    [ - matched data 47 to 67: "                    " ]
    [ - parse: result=1 ]
    [ - parse: 'CurrentDate' , done=false, pos=67, end=292, last=EOD ]
    [ parse 'SequenceNumber2', pos=67, end=292 ]
    [ parse fixed, Fog#8, count=0 ]
    [ - matched data 67 to 72: "00001" ]
    [ - parse: result=1 ]
    [ - parse: 'SequenceNumber2' , done=false, pos=72, end=292, last=EOD ]
    [ parse 'RecvStoreNumber', pos=72, end=292 ]
    [ parse fixed, Fog#9, count=0 ]
    [ - matched data 72 to 89: "0000280942       " ]
    [ - parse: result=1 ]
    [ - parse: 'RecvStoreNumber' , done=false, pos=89, end=292, last=EOD ]
    [ parse 'SchedSendDate', pos=89, end=292 ]
    [ parse fixed, Fog#10, count=0 ]
    [ - matched data 89 to 98: "080808   " ]
    [ - parse: result=1 ]
    [ - parse: 'SchedSendDate' , done=false, pos=98, end=292, last=EOD ]
    [ parse 'CreationDate', pos=98, end=292 ]
    [ parse fixed, Fog#11, count=0 ]
    [ - matched data 98 to 107: "080808   " ]
    [ - parse: result=1 ]
    [ - parse: 'CreationDate' , done=false, pos=107, end=292, last=EOD ]
    [ parse 'CreationTime', pos=107, end=292 ]
    [ parse fixed, Fog#12, count=0 ]
    [ - matched data 107 to 113: "031229" ]
    [ - parse: result=1 ]
    [ - parse: 'CreationTime' , done=false, pos=113, end=292, last=EOD ]
    [ parse 'BillOfLadingNumber', pos=113, end=292 ]
    [ parse fixed, Fog#13, count=0 ]
    [ - matched data 113 to 133: "5160448             " ]
    [ - parse: result=1 ]
    [ - parse: 'BillOfLadingNumber' , done=false, pos=133, end=292, last=EOD ]
    [ parse 'ASN', pos=133, end=292 ]
    [ parse fixed, Fog#14, count=0 ]
    [ - matched data 133 to 136: "ASN" ]
    [ - parse: result=1 ]
    [ - parse: 'ASN' , done=false, pos=136, end=292, last=EOD ]
    [ parse 'TRANSACTION_ID', pos=136, end=292 ]
    [ parse fixed, Fog#15, count=0 ]
    [ - matched data 136 to 163: "ASN08080851604480..." ]
    [ - parse: result=1 ]
    [ - parse: 'TRANSACTION_ID' , done=false, pos=163, end=292, last=EOD ]
    [ - retry parent delimiter ]
    [ - retry failed: overshoot, del=164, pos=0 ]
    [ - parse: result=0 ]
    [ - for #2: count=-1 ]
    [ - parse: result=0 ]
    [ - parse: 'RecordGroup' , done=false, pos=0, end=292, last=EOD ]
    [ - for #1: count=0 ]
    [ - parse: result=1 ]
    [ - parse: 'root' , done=false, pos=0, end=292, last=EOD ]
    [ - for #0: count=1 ]

    Hey, I got some help from the open-esb users forum. See below.
    Mike,
    After modifying the xsd (adding match, removing scavenger, moving delimiter
    level to the top, removing 2 FILLER2 fields, etc.) and modifying the data a
    bit (padding spaces to each detail record to a total 392 bytes excluding
    CR&LF), I am able to parse the data. Please refer to the attached zip
    including input, xsd, output XML, and parse log.
    Any further questions, please let me know.
    Thanks!
    Lixin
    Open ESB Community
    http://open-esb.org
    -----Original Message-----
    From: [email protected] mailto:[email protected]
    Sent: Friday, October 17, 2008 2:05 PM
    To: [email protected]; 'Mike A Reynolds'
    Subject: RE: Custom Encoders Questions
    Mike,
    There are a number of problems I have found so far as I start looking into
    the provided xsd meta and input data:
    (1) The header element is also delimited by CR&LF. I see you have put
    delimiters for the detail and trailer elements, but the header element
    misses to be delimited.
    (2) CR&LF can be expressed as "\r\n" or "\x0D\x0A", but not "\n\r". I see
    you have "\n\r" in your xsd file which is wrong.
    (3) You said header record has 82 bytes, detail has 382 bytes and trailer
    has 91 bytes. But I've found a few mismatches:
    In your input data file, the header record has 80 bytes + CR+LF = 82
    bytes, but your xsd meta definition gives header total byte count of 81
    (without CR+LF), which mismatches the expected 82 bytes. You'll need to
    correct this in order for the parsing to work. (For me, I have to remove the
    "filler2" field in order to get the header parsed.)
    In your input data file, each detail record has 350+CR+LF = 352 bytes,
    which contradicts the expected 382 bytes. I haven't added up the total bytes
    in your xsd meta file, but I suspect they have mismatches.
    Similar mismatch may also exist for the detail record, but I haven't got
    chance to sum the total.
    (4) The header, detail and trailer records all have first byte ("H", "D" or
    "T") as record type. You must specify the "RECORD_TYPE" field to match the
    character "H", "D" or "T", respectively by putting the character in the
    "Match" field and selecting "Alignment" to "exact", meaning exact match.
    I see these characters were mistakenly put in the scavenger fields
    instead. Please correct this.
    After you modify your xsd meta encoding information based on above, you
    should be able to parse the input data.
    Let me know if there are any questions,
    Regards
    Lixin
    Open ESB Community
    http://open-esb.org
    -----Original Message-----
    From: [email protected]
    mailto:[email protected] On
    Behalf Of Mike A Reynolds
    Sent: Thursday, October 16, 2008 3:11 PM
    To: [email protected]
    Subject: Custom Encoders Questions
    I am trying to create a customer encoder for a batch file
    consistes of a header record of 82 bytes, several detail records of 382
    bytes and one trailer record of 91 bytes
    HACCUMULATED BENEFIT TRANSACTION FILE 20080801 20080825 0
    0
    D ar3531 ar3531 ar3531 ar3531000
    55887027260 30.000 30 5098765 20080804 000T114 120080806
    82820P30000001024511 25.00 0.00 25.00 0.00 25.00
    25.00 0.00 0.00 0.00 0.00 0.00T
    TACCUMULATED BENEFIT TRANSACTION FILE 20080801 20080825
    2894 0 0
    (See attached file: accumLoad.xsd)
    It seems to not like having multiple record formats and dies after reading
    the header. How can I tell the encoder to filter on the RECORD_TYPE so that
    it picks up the different formats.
    Best Regards,
    Michael Reynolds
    Senior Solutions Engineer - Architecture and Engineering

  • Servlet failed with Exception

    I have a servlet that read Swing Applet input stream. It works on my JBuilder6 with HTML very fine. But It can't work on browser(such as IE). I have error message: Please someone help me!
    Mon May 19 10:00:28 EDT 2003:<E> <ServletContext-General> Servlet failed with Exception
    java.net.SocketException: Connection aborted by peer: socket write error
    at java.net.SocketOutputStream.socketWrite(Native Method)
    at java.net.SocketOutputStream.write(SocketOutputStream.java:83)
    at weblogic.servlet.internal.ChunkUtils.writeChunks(ChunkUtils.java:88)
    at weblogic.servlet.internal.ServletOutputStreamImpl.flush(ServletOutputStreamImpl.java:121)
    at weblogic.servlet.internal.ServletOutputStreamImpl.writeStream(ServletOutputStreamImpl.jav
    a:444)
    at weblogic.servlet.ClasspathServlet.sendResource(ClasspathServlet.java:114)
    at weblogic.servlet.ClasspathServlet.doGet(ClasspathServlet.java:87)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:865)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:105)
    at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:742)
    at weblogic.servlet.internal.ServletContextImpl.invokeServlet(ServletContextImpl.java:686)
    at weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContextManager.java:
    247)
    at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:361)
    at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:261)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Mon May 19 10:00:28 EDT 2003:<E> <HTTP> Servlet request terminated with IOException:
    java.net.ProtocolException: Didn't meet stated Content-Length, wrote: '4096' bytes instead of stated
    : '16093' bytes.
    at weblogic.servlet.internal.ServletOutputStreamImpl.finish(ServletOutputStreamImpl.java:372
    at weblogic.servlet.internal.ServletContextManager.invokeServlet(ServletContextManager.java:
    249)
    at weblogic.socket.MuxableSocketHTTP.invokeServlet(MuxableSocketHTTP.java:361)
    at weblogic.socket.MuxableSocketHTTP.execute(MuxableSocketHTTP.java:261)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)

    Hi, did you get any solution for the protocol exception? I have the same problem too....
    Thanks
    Suresh

  • 12c agent install fails with error - The plug-in configuration for the oracle.sysman.oh monitoring plug-in may have failed

    Hi,
    I am trying to install 12c agent on windows 7 64 bit server by following m.note   .
    It is failing with Agent Configuration failed, please see below error message.
    INFO: length of temp is2
    INFO: Return value:C:\/Oracle/12.1.0.3.0_AgentCore_233/core
    INFO: ** Agent Port Check completed successfully.**
    INFO: ERROR: The Management Agent configuration failed. The plug-in configuration for the oracle.sysman.oh monitoring plug-in may have failed, or this plug-in may not be present in the Management Agent software. Ensure that the Management Agent software has the oracle.sysman.oh monitoring plug-in, if not then retry the operation. If the agent software has the oracle.sysman.oh monitoring plug-in, view the plug-in deployment log C:\Oracle\12.1.0.3.0_AgentCore_233\core\install\logs to check if the plug-in configuration for the oracle.sysman.oh monitoring plug-in failed.
    INFO:
    INFO: perform - mode finished for action: configure
    INFO:
    INFO: You can see the log file: C:\Oracle\12.1.0.3.0_AgentCore_233\core\12.1.0.3.0\cfgtoollogs\oui\configActions2014-10-03_08-48-15-AM.log
    INFO:
    INFO: C:\Oracle\12.1.0.3.0_AgentCore_233>exit /b 3
    INFO: Plugin homes:
    INFO: Plugin homes:
    INFO: C:\Oracle\12.1.0.3.0_AgentCore_233\core\12.1.0.3.0\oui\bin\runConfig.bat ORACLE_HOME=C:\Oracle\12.1.0.3.0_AgentCore_233\core\12.1.0.3.0 RESPONSE_FILE=C:\Oracle\12.1.0.3.0_AgentCore_233\core\12.1.0.3.0\agent.rsp ACTION=configure MODE=perform COMPONENT_XML={oracle.sysman.top.agent.11_1_0_1_0.xml} RERUN=true completed with status=3
    SEVERE: ERROR: Agent Configuration Failed
    Thanks,

    Looks like , J2EE is having a problem connecting to the DB.Pls. chk. the following
    -If you have configured the loop-back adapter , if installing on a local system & updated the /etc/host file with your ip address and host name.
    or if the system is part of some n/w group and has ip address assigned ?
    -Jdk 1.4 version is installed in your system
    -Enough free Disk space available in the system
    -How much RAM your system has which windows version you are using  ?
    -Is the DB is coming up properly ? its error related to this. check the logs.
    -If the ports used by sap install / run used by other services running on the system ? & user have admin. privileges on the system .
    Pls. update with your findings on above same , for the step next ...
    Thanks ,
    Uppal

  • PUT Blobs of size greater than 5.5MB fail with HTTPS but not HTTP

    I have written a Cygwin app that uploads (using the REST API PUT operation) Block Blobs to my Azure storage account, and it works well for different size blobs when using HTTP. However, use of SSL (i.e. PUT using HTTPS) fails for Blobs greater than 5.5MB.
    Blobs less than 5.5MB upload correctly. Anything greater and I find that the TCP session (as seen by Wireshark) reports a dwindling window size that goes to 0 once the aforementioned number of bytes have been transferred. The failure is very repeatable and
    consistent. As a point of reference,  PUT operations against my Google/AWS/HP accounts work fine when using HTTPS for various object sizes, which suggests my problem is not in my client but specific to the HTTPS implementation on the MSAZURE storage servers. 
    If I upload the 5.5MB blob as two separate uploads of 4MB and 1.5MB followed by a PUT Block List, the operation succeeds as long as the two uploads used
    separate HTTPS sessions. Notice the emphasis on separate. That same operation fails if I attempt to maintain an HTTPS session across both uploads. This is another data point that seems to suggest that the Storage
    server has a problem 
    Any ideas on why I might be seeing this odd behavior that appears very specific to MS Azure HTTPS, but is not seen when used against AWS/Google/HP cloud storage servers?

    Hi,
    I'm getting this problem also when trying to upload blobs > 5.5mb using the Azure PHP SDK with HTTPS.
    There is no way I can find to get a blob > 5.5mb to upload, unless you use http, rather than https, which is not a good solution.
    I've written my own scripts to use the HTTP_Request2 library, to send the request as a test, and it fails with that also when using the 'socket' method.
    However, if I write a script using the PHP Curl extension directly, then it works fine, and blobs > 5.5mb get uploaded.
    It seems to be irrelevant which method is used, uploading in 1 go, or using smaller chunks, the PHP SDK seems broken.
    Also, I think I've found another bug in the SDK, when you do the smaller chunks, the assigning of the BlockID is not correct.
    In: WindowsAzure/Blob/BlobRestProxy.php
    Line: $block->setBlockId(base64_encode(str_pad($counter++, '0', 6)));
    That is incorrect usage of the str_pad function, and if you upload a huge blob that needs splitting, then the blockIDs will after a while become a different length and therefore fail.
    It should be: str_pad($counter++, 6, '0',STR_PAD_LEFT);
    I also think there is 1 too many base64_encodes() in there, as I think its being done twice, once in that line, and then again within the createBlobBlock() just before the send() for a 2nd time.
    Can someone please advice, when this/these bug(s) will be fixed in the PHP SDK, as at the moment its useless to me as I cant upload things securely.

  • Import failing with ORA-20001: GET_BLOCK Error

    Hi All,
    I'm attempting to install an export of our Application into the LIVE environment (something I've done many times before), and it's failing with the following error message: -
    ORA-20001: GET_BLOCK Error. ORA-20001: GET_STMT error. ORA-20001: Execution of the statement was unsuccessful. ORA-06550: line 698, column 1: PLS-00103: Encountered the symbol &amp;quot;,'#DD#','#EE#');&amp;quot; when expecting one of the following: ) , * &amp;amp; = - + &amp;lt; / &amp;gt; at in is mod remainder not rem &amp;lt;an exponent (**)&amp;gt; &amp;lt;&amp;gt; or != or ~= &amp;gt;= &amp;lt;= &amp;lt;&amp;gt; and or like LIKE2_ LIKE4_
    The only part of the message that makes any sense to me is the '#DD#','#EE#' which looks like part of a Javascript Passback Function from one of the pages.
    Can anyone throw any light on why I'm getting this error message?
    Thanks,
    Mike

    Scott,
    I managed to track down the error. A column link URL I'm using calls a Javascript Passback Function as follows: -
    javascript:passBack('#A#','#B#','#C#','#D#','#E#','#F#','#G#','#H#','#I#','#J#','#K#','#L#','#M#','#N#','#O#','#P#','#Q#','#R#','#S#','#T#','#U#','#W#','#X#','#Y#','#Z#','#AA#','#BB#','#CC#','#DD#','#EE#');
    By reducing the length of this the import now works. The confusing part is that this was working previously.
    Cheers,
    Mike

  • IPhoto 08 rebuild of all thumbnails fails with KERN_PROTECTION_FAILURE (0x0

    I've used the option-cmd iPhoto launch to rebuild the database. This has cleared up a number of problems (Thanks, Terence and others!). Now I've finally got everything organized the way I want it (I think), so I took a backup and started the rebuild of all thumbnails. Estimated duration was 2 hours, but about 45 minutes into the rebuild, it fails with a KERNPROTECTIONFAILURE (0x0002) at 0x00000000. This has happened 3 times (over the past week). I have reported it to Apple twice. It has never run to successful completion.
    My iPhoto database seems no better or worse (actually 1 photo less), but crashing during the rebuild is scary, and I fear something worse will happen in the future. Below is the log from the error message sent to Apple.
    Anyone have suggestions?
    Date/Time: 2007-08-24 14:56:48.271 -0400
    OS Version: 10.4.10 (Build 8R4031)
    Report Version: 4
    Command: iPhoto
    Path: /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Parent: WindowServer [63]
    Version: 7.0.1 (7.0.1)
    Build Version: 3
    Project Name: iPhotoProject
    Source Version: 3340000
    PID: 1094
    Thread: 1
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0:
    0 libobjc.A.dylib 0x90a61b09 objcerror + 86
    1 libobjc.A.dylib 0x90a61b40 _objcerror + 45
    2 libobjc.A.dylib 0x90a5aa98 internal_classcreateInstanceFromZone + 120
    3 com.apple.Foundation 0x927d9512 NSAllocateObject + 100
    4 com.apple.Foundation 0x927dcc92 +[NSPathStore2 pathStoreWithCharacters:length:] + 47
    5 com.apple.Foundation 0x927de8df -[NSString(NSPathUtilities) _stringByStandardizingPathUsingCache:] + 193
    6 com.apple.Foundation 0x927de815 -[NSString(NSPathUtilities) stringByStandardizingPath] + 41
    7 com.apple.Foundation 0x927e05a5 -[NSFileManager directoryContentsAtPath:matchingExtension:options:keepExtension:] + 146
    8 com.apple.Foundation 0x927e050b -[NSFileManager directoryContentsAtPath:] + 68
    9 com.apple.AppKit 0x932671d8 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 437
    10 com.apple.AppKit 0x9326701a +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 164
    11 com.apple.AppKit 0x9336ab99 _NXLoadNib + 245
    12 com.apple.AppKit 0x9336a48a -[NSAlert init] + 125
    13 com.apple.AppKit 0x934b7598 _NXDoLocalRunAlertPanel + 193
    14 com.apple.AppKit 0x934b74d4 NSRunAlertPanel + 69
    15 com.apple.iPhoto 0x000a1dbe 0x1000 + 658878
    16 com.apple.iPhoto 0x0009c6e4 0x1000 + 636644
    17 com.apple.iPhoto 0x00092370 0x1000 + 594800
    18 com.apple.iPhoto 0x000937a9 0x1000 + 599977
    19 com.apple.iPhoto 0x00060b6c 0x1000 + 392044
    20 com.apple.Foundation 0x927ed17b nsnotecallback + 230
    21 com.apple.CoreFoundation 0x908563e6 __CFXNotificationPost + 345
    22 com.apple.CoreFoundation 0x9084dbd1 _CFXNotificationPostNotification + 600
    23 com.apple.Foundation 0x927e5724 -[NSNotificationCenter postNotificationName:object:userInfo:] + 121
    24 com.apple.Foundation 0x927ec6c9 -[NSNotificationCenter postNotificationName:object:] + 55
    25 com.apple.AppKit 0x9327be94 -[NSApplication _postDidFinishNotification] + 124
    26 com.apple.AppKit 0x9327bd7e -[NSApplication _sendFinishLaunchingNotification] + 67
    27 com.apple.AppKit 0x9327b87d -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 273
    28 com.apple.AppKit 0x9327b448 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 96
    29 com.apple.Foundation 0x927f2e65 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 447
    30 com.apple.Foundation 0x927f2c8f _NSAppleEventManagerGenericHandler + 91
    31 com.apple.AE 0x915236c5 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 147
    32 com.apple.AE 0x915235f6 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 44
    33 com.apple.AE 0x915234c2 aeProcessAppleEvent + 190
    34 com.apple.HIToolbox 0x92df51e4 AEProcessAppleEvent + 37
    35 com.apple.AppKit 0x9327963d _DPSNextEvent + 1044
    36 com.apple.AppKit 0x93279056 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 137
    37 com.apple.AppKit 0x93272ddb -[NSApplication run] + 512
    38 com.apple.AppKit 0x93266d2f NSApplicationMain + 573
    39 com.apple.iPhoto 0x00002b46 0x1000 + 6982
    40 com.apple.iPhoto 0x00002a6d 0x1000 + 6765
    Thread 1 Crashed:
    0 libRIP.A.dylib 0x948b45d0 ripc_GetClipState + 1174
    1 libRIP.A.dylib 0x948b3e44 ripc_GetRenderingState + 182
    2 libRIP.A.dylib 0x948b29e1 ripc_DrawImage + 144
    3 com.apple.CoreGraphics 0x90336ae1 CGContextDrawImage + 403
    4 com.apple.AppKit 0x932fdf14 -[NSBitmapImageRep _drawFromRect:toRect:operation:alpha:compositing:flipped:ignoreContext:] + 1298
    5 com.apple.AppKit 0x932fca2e -[NSImage drawInRect:fromRect:operation:fraction:] + 1551
    6 com.apple.AppKit 0x932fc39d -[NSImage _compositeFlipped:inRect:fromRect:operation:fraction:] + 263
    7 com.apple.AppKit 0x932fc28b -[NSImage _compositeFlipped:atPoint:fromRect:operation:fraction:] + 227
    8 com.apple.AppKit 0x932fe632 _NSTileImageWithOperation + 1704
    9 com.apple.AppKit 0x933c98e5 _NSTileImage + 99
    10 com.apple.AppKit 0x93411295 -[NSProgressIndicator _drawThemeProgressArea:] + 1096
    11 com.apple.AppKit 0x9344a341 -[NSProgressIndicator heartBeat:] + 1406
    12 com.apple.AppKit 0x93350586 -[NSUIHeartBeat _heartBeatThread:] + 1147
    13 com.apple.Foundation 0x927f52e0 forkThreadForFunction + 123
    14 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x90047dd7 semaphoretimedwait_signaltrap + 7
    1 ...ple.CoreServices.CarbonCore 0x90ce1f28 TSWaitOnSemaphoreCommon + 163
    2 ...ickTimeComponents.component 0x9845c206 ReadSchedulerThreadEntryPoint + 4723
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 3:
    0 libSystem.B.dylib 0x90047dd7 semaphoretimedwait_signaltrap + 7
    1 ...ple.CoreServices.CarbonCore 0x90ce1f28 TSWaitOnSemaphoreCommon + 163
    2 ...ple.CoreServices.CarbonCore 0x90cebe5c AIOFileThread(void*) + 1068
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 4:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.ColorSync 0x915a96cf pthreadSemaphoreWait(t_pthreadSemaphore*) + 35
    2 com.apple.ColorSync 0x915c3de0 CMMConvTask(void*) + 60
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 1 crashed with X86 Thread State (32-bit):
    eax: 0x1dddb6b0 ebx: 0x948b414b ecx: 0xa48b034c edx: 0x00000000
    edi: 0xf3ffb620 esi: 0x00000000 ebp: 0xb009d208 esp: 0xb009d050
    ss: 0x0000001f efl: 0x00010246 eip: 0x948b45d0 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0x686fff com.apple.iPhoto 7.0.1 /Applications/iPhoto.app/Contents/MacOS/iPhoto
    0x763000 - 0x76dfff com.apple.UpgradeChecker 1.0 /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x1008000 - 0x1070fff com.apple.iLifeMediaBrowser 0.9 (151) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x1205000 - 0x12a4fff com.apple.DotMacKit 44 (3.0.2L) /Applications/iPhoto.app/Contents/Frameworks/DotMacKit.framework/Versions/A/Dot MacKit
    0x1311000 - 0x138bfff com.apple.imageKit 1.0 /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/ImageKit.framework/Versions/A/ImageKit
    0x163d3000 - 0x163defff com.apple.BookService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x163e7000 - 0x163eefff com.apple.NetServices.BDControl 1.0.5 /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0x16f95000 - 0x16ff7fff com.apple.NetServices.NetServices 6.0 /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0x17045000 - 0x17048fff com.apple.NetServices.BDRuleEngine 1.0.2 /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0x1704f000 - 0x17059fff com.apple.CalendarsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x17061000 - 0x1706bfff com.apple.CardsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x17073000 - 0x17078fff com.apple.NetSlidesService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/NetSlidesService.NetServi ce/Contents/MacOS/NetSlidesService
    0x1707e000 - 0x17089fff com.apple.PrintsService 6.0 /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x173b1000 - 0x1744efff com.apple.QuickTimeImporters.component 7.2 /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x1767f000 - 0x176bbfff com.apple.QuickTimeFireWireDV.component 7.2 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x176c7000 - 0x176ccfff com.apple.AppleMPEG2Codec 1.0 (211) /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x1779c000 - 0x177b6fff com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x177bb000 - 0x177d4fff com.apple.applepixletvideo 1.2.9 (1.2d9) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x18092000 - 0x18094fff com.apple.PDFImporter 1.6 (???) /System/Library/Components/PDFImporter.component/Contents/MacOS/PDFImporter
    0x1e808000 - 0x1e9fbfff net.telestream.wmv.import 2.1.0.33 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x8fe00000 - 0x8fe4afff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c1000 - 0x901c3fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c5000 - 0x90202fff com.apple.CoreText 1.1.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90229000 - 0x902fffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90913000 - 0x90a07fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.8 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.26 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91008000 - 0x91047fff com.apple.CFNetwork 129.21 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9105a000 - 0x9106afff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91075000 - 0x910f4fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9112e000 - 0x9114cfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91158000 - 0x91166fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91169000 - 0x91308fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91406000 - 0x9140efff com.apple.DiskArbitration 2.1.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91415000 - 0x9141cfff libbsm.dylib /usr/lib/libbsm.dylib
    0x91420000 - 0x91446fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91458000 - 0x914cefff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151f000 - 0x9151ffff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91521000 - 0x9154dfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91560000 - 0x91634fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166f000 - 0x916e2fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91710000 - 0x917b9fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917df000 - 0x9182afff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91849000 - 0x9185ffff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9186b000 - 0x91886fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91891000 - 0x918cefff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918e2000 - 0x918eefff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918f5000 - 0x91935fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91948000 - 0x919fafff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a40000 - 0x91a56fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a5b000 - 0x91a79fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a7e000 - 0x91addfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91aef000 - 0x91af3fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91af5000 - 0x91b7bfff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b7f000 - 0x91bbcfff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bc2000 - 0x91bdcfff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91be1000 - 0x91be3fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91be5000 - 0x91cc3fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91ce0000 - 0x91ce0fff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91ce2000 - 0x91d70fff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d77000 - 0x91d77fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d79000 - 0x91dd2fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91ddb000 - 0x91dfffff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91e07000 - 0x92210fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9224a000 - 0x925fefff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9262b000 - 0x92718fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x9271a000 - 0x92797fff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927d8000 - 0x92a08fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b22000 - 0x92b3dfff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b49000 - 0x92ba1fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92bb5000 - 0x92bb5fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bb7000 - 0x92bc7fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bd6000 - 0x92bdefff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92be4000 - 0x92beafff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bf0000 - 0x92c81fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c95000 - 0x92c99fff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c9c000 - 0x92cbafff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92ccc000 - 0x92cd2fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cd8000 - 0x92d3bfff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d62000 - 0x92da3fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dca000 - 0x92dd8fff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92ddf000 - 0x92de4fff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92de9000 - 0x930defff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931e4000 - 0x931f0fff com.apple.opengl 1.5.1 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x931f5000 - 0x93210fff com.apple.DirectoryService.Framework 3.3 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93260000 - 0x93260fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93262000 - 0x93918fff com.apple.AppKit 6.4.9 (824.44) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c99000 - 0x93d14fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d4d000 - 0x93e07fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e4a000 - 0x93e4afff com.apple.audio.units.AudioUnit 1.4.3 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e4c000 - 0x9400dfff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94053000 - 0x94094fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9409c000 - 0x940dffff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940e3000 - 0x940f9fff com.apple.CoreVideo 1.4.1 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94108000 - 0x945c4fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x946f6000 - 0x9473efff com.apple.bom 8.5 (86.3) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x94843000 - 0x94852fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x94859000 - 0x94864fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x948b0000 - 0x948cafff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x948d0000 - 0x94bd9fff com.apple.QuickTime 7.2.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94d5c000 - 0x94ea2fff com.apple.AddressBook.framework 4.0.5 (487) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94f2e000 - 0x94f3dfff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94f44000 - 0x94f6dfff com.apple.LDAPFramework 1.4.2 (69.1.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94f73000 - 0x94f82fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94f86000 - 0x94fabfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94fb7000 - 0x94fd4fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95079000 - 0x95079fff com.apple.DiscRecording 3.2.0 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x9507b000 - 0x950f9fff com.apple.DiscRecordingEngine 3.2.0 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x95129000 - 0x9516bfff com.apple.DiscRecordingContent 3.2.0 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x95300000 - 0x95393fff com.apple.WebKit 419.3 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x953ed000 - 0x9546dfff com.apple.JavaScriptCore 418.6.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x954a6000 - 0x95785fff com.apple.WebCore 418.23 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95904000 - 0x95927fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x95ac1000 - 0x95b41fff com.apple.QTKit 7.2 /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x95b80000 - 0x95ba2fff com.apple.CoreMediaPrivate 1.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x95baf000 - 0x95bebfff com.apple.CoreMediaIOServicesPrivate 1.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x95c3a000 - 0x95c3cfff com.apple.ExceptionHandling 1.2 (???) /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x95c3f000 - 0x95c77fff com.apple.PDFKit 1.0.4 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x96ba0000 - 0x96ba0fff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97087000 - 0x970a9fff com.apple.speech.LatentSemanticMappingFramework 2.5 /System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/La tentSemanticMapping
    0x9711a000 - 0x9711ffff com.apple.agl 2.6.2 (AGL-2.6.2) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x97202000 - 0x97235fff com.apple.AppleVAFramework 4.0.3 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x97286000 - 0x97286fff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x97b0e000 - 0x97be5fff com.apple.QuartzComposer 1.2.6 (32.25) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x97c6e000 - 0x97c6efff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x97c70000 - 0x97c70fff com.apple.AppleAppSupport 1.4 /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x97dae000 - 0x97dcafff com.apple.DiscRecordingUI 3.2.0 /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x98216000 - 0x98218fff com.apple.DisplayServicesFW 1.8.2 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x98445000 - 0x992abfff com.apple.QuickTimeComponents.component 7.2 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x996a2000 - 0x996a4fff com.apple.QuickTimeH264.component 7.2 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x99aa7000 - 0x99b6dfff com.apple.QuickTimeMPEG4.component 7.2 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x99b89000 - 0x99b8cfff com.apple.CoreMediaAuthoringPrivate 1.0 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x9a012000 - 0x9a17efff com.apple.MessageFramework 2.1.1 (752.3) /System/Library/Frameworks/Message.framework/Versions/B/Message
    Model: iMac7,1, BootROM IM71.007A.B00, 2 processors, Intel Core 2 Duo, 2.4 GHz, 2 GB
    Graphics: ATI Radeon HD 2600 Pro, ATI,RadeonHD2600, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 1 GB, DDR2 SDRAM, 667 MHz
    Memory Module: BANK 1/DIMM1, 1 GB, DDR2 SDRAM, 667 MHz
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x88), Broadcom BCM43xx 1.0 (4.150.19.0)
    Bluetooth: Version 1.9.1f18, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: WDC WD5000AAKS-40TMA0, 465.76 GB
    Parallel ATA Device: MATSHITADVD-R UJ-85J
    USB Device: Built-in iSight, Apple Inc., Up to 480 Mb/sec, 500 mA
    USB Device: Keyboard Hub, Apple, Inc., Up to 480 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Primax Electronics, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Keyboard, Apple, Inc, Up to 1.5 Mb/sec, 100 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 1.5 Mb/sec, 500 mA
    USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 mA
    USB Device: CanoScan, Canon, Up to 12 Mb/sec, 500 mA
    FireWire Device: Up to 400 Mb/sec
    Thanks!
    RL

    Roger:
    First run Disk Utility and verify the disk. If there's repairs reported necessary then boot into the system install disk and run Disk Utility from the Utilities menu. If no repairs are necessary try using iPhoto Library Manager to rebuild the library. It create a new library and copies the necessary information and files from the old one which is left untouched. It often succeeds where the regular rebuild does not. Here's how:
    Using iPhoto Library Manager to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your User/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File->Rebuild Library menu option
    In the next window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: It may take some time to create the new library if you have a lot of photos. One user reported that with a library of about 5,000 images it took about 2-3 hours so plan ahead.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Attempt to process file failed with java.lang.StringIndexOutOfBoundsExcep..

    Hello All,
       I am implementing file2file with file going from shared folder to FTPS server.
    I am using TLS and X.509 certificate in file receiver communication channel.
    when I implemented my scenario, this is the error its throwing :
    Success : Connect to FTP server "my ftp address", directory "/TEST/"
    Error : Attempt to process file failed with java.lang.StringIndexOutOfBoundsException: String index out of range: 3
    I know this error is caused when java expects the 3 character length string and if its getting more than that... Does any faced this kindaa problem before...Any help is greatly appreciated....Obviously even points....
    Thanks,
    Ravi

    There is no custom code at all? No mappings, no custom modules, no pre/post processing commands?
    Also, check if you get this error when sending to ftps server without certificate (or with another certificate). It may be an incompatibility issue with certificate.
    Did you import the .pfx (or .p12) file in KeyStorage Service?
    Regards,
    Henrique.

  • ACS 4.2.(1) build15 - replication failed with Cannot access file

    Just upgraded from 4.0 - to 4.2 then to 4.2.1 15. As you may have seen with periovous posts of mine its not been an esay ride.
    I have now managed to get it all working - backups AAA etc but for some reason i cannot get the replication to work! Its states the following...
    Within the Database Replication active log - Error OutBound database replication failed - refer to CSAuth log file.
    Other lines in the log state  its ok eg - Component logging reports was updated - being replicated to slave...
    Looking at the CSAuth log file...
    .....DBReplication thread kicked..starting sync.
    ODBC Operation failed with the folowing information: Message = [Sybase] [ODBC Driver] [Adaptive Server Anywhere] Cannot access file "D:$etworks\CiscoSecure 4.2\CSAuth\DbSyncSratch\users\users.dat~ -- Invailed argument, sqlStates=S1000, Native error = -602$
    SL:saveUserTable - execution Failed.
    Please note that the $ is a symbol that i have used because the symbol in the log is strange and i  cannot seem to be able replicate here with this text, for example $etworks - should be networks...
    Everything else seems to be working except this - any help would be great..
    Oh Merry Xmas and Happy new year to you all!
    John

    Did you find a solution?
    I have the same problem with the exact same symptoms - I can't get replication to work. The path name in the error message is missing the first letter, too.
    PS: It has nothing to do with the firewall, the replication fails even before it tries to connect to the network.
    Greetings
    Mathias Rufer

Maybe you are looking for

  • Error message when trying to burn

    I am getting this message when I try to burn my project to a disc: "There were errors during the project validation that have to be fixed before burning the project." I don't have any yellow warning triangles anyway and everything runs fine in previe

  • Hiding windows task bar

    I am working on a custom TS operator interface written in CVI 5.5. I am trying to hide the windows task bar. I have used SetPanelAttribute (panel, ATTR_SYSTEM_MENU_VISIBLE, 0); and this works, except that when my modelsupport DLL puts a popup on the

  • On hand availability in Order Management

    Dear folks, In a sales order,for every line item it shows the available quantity details automatically.Need to disable this functionality. How can we acheive this? Any help is highly appreciated. Thanking You. Sri

  • Order confirmation to ship to party and invoice to the agent-differnt price

    Dear Gurus My client has international customer. he has taken the order from customer and sending order confirmation to customer and sends the materials to the customer. But invoice is sending to the agent with discounted price (different price). is

  • RMAN Qn

    While opening database with resetlogs option got error ORA - 01152 : File 1 was not restored from sufficiently old backup ORA - 01110 : Data file 1: 'usr3/ oracle/.../system01.dbf' Looks like I need to recover database from old backups. How do I inst