CFImage EXIF Retrieval Error

Need to utilize ImageGetExifMetaData to retrieve jpg
orientation and size information to determine if modifications need
to be made to photo. The tag is very inconsistent returning exif
data. 80% of the time throws the following error:
Exception occured in JPG processing. segment size would
extend beyond file stream length
Following is code along with link to sample photo:
<cfimage action="read" source="
http://www.thefloorteam.com/rp/wd/56k/1197/1197_5067792_14-Apr-08_10000.jpg"
name="img">
<cfset info=ImageGetExifMetaData(img)>
<cfdump var="#info#"></cfdump>
Have seen several posts on blogs and other sites that this is
fairly common error. Has anyone been able to work around it as size
of file, remote location of file, etc. seems to make little
difference other than if I run localhost with file on local drive
have not been able to create error.
Thanks in advance.

Hi Kumar,
SAP keeps retrieval FI data in TXW_S_BKPF (Source table: BKPF) and TXW_S_BSEG (Source table: BSEG).
The retrieval tables are named using the first four characters from the name of the source table (the table in which the data resided before archiving) with the prefix TXW_S_.
Please check in above two tables for the retrieved data.
Please check the below link for with the same information.
http://help.sap.com/saphelp_45b/helpdata/en/3b/162be5c35511d1801b00c04fada2a1/content.htm
Hope this helps.
Regards,
Sujit.

Similar Messages

  • How to retrieve error message(s) after failed web service call

    Hi!
    I tried to create an item using the web service ego_item_pub.process_item and it worked ok (version 12.1.1). Sending the same request again, I got an error which should be ok since the item id already exists. The thing is, that I only get an "E" as return status:
    <X_RETURN_STATUS>E</X_RETURN_STATUS>
    <X_MSG_COUNT>1</X_MSG_COUNT>
    As described in the integration repository, there should be a parameter called msg_data which should contain the message if there is exactly 1 message, but I cannot find it.
    So, I tried to get the message using fnd_message.get, but the response of my web service call is:
    AuthorizationFailure : User not authorized to execute service. (I use sysadmin/sysadmin as ws security user).
    I use the following grant details:
    All Users     Direct     GLOBAL     Revoke Action Enabled
    SYSADMIN SYSADMIN     Direct     USER
    What else can I do or how can I retrieve error messages for a failed web service call?
    Thanks a lot,
    Konrad

    Hi Konrad,
    As we've found out, search the Integration Repository for internal name ERROR_HANDLER and use that. Letting the general public know the answer for this one!
    Regards,
    Gareth
    http://garethroberts.blogspot.com

  • RIM Retrieve Error

    I have a Curve 9360 (about a month old). Some-one sent me a picture, but i couldn't open it - got the message RIM Retrieve Error. I also received a business card from another blackberry user via sms, bur also couldn't open it - got the same message RIM Retrieve Error. is thee anything I can do?

    JuanitaWBB wrote:
    Yes, I do have a data plan with with my service provider
    Right. But do you have THE BlackBerry Data Plan? Not a generic data plan?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • CFIMAGE gives "attempt to read data outside of exif segment" error when trying to resize jpg

    When trying to resize a jpg using cfimage I receive the following error "attempt to read data outside of exif segment".  Any ideas on what causes this or how to fix it?  This only happens on certain images.  Sample image it happens with attached, this photo is subject to copyright restrictions and should be treated appropriately.  Thanks for any help.
    Resize Code attached.
    <!--- Set some defaults used by each image type, unless you override them --->
    <cfparam name="jpgQuality" default=".8" />
    <cfparam name="defaultInterpolation" default="bicubic" />
    <cfparam name="defaultBackground" default="black" />
    <!--- Set values for each image type --->
    <cfparam name="thumbMaxWidth" default="" />  <!--- leave blank to allow any width (forced to size by height) --->
    <cfparam name="thumbMaxHeight" default="60" /> <!--- leave blank to allow any height (forced to size by width, above) --->
    <cfparam name="thumbQuality" default="1" />  <!--- number from 0 - 1, 1 being the best --->
    <cfparam name="thumbFixedSize" default="false" />  <!--- you MUST set both MaxWidth & MaxHeight to use FixedSize --->
    <cfparam name="thumbBackground" default="#defaultBackground#" />  <!--- color of background if fixed size is used --->
    <cfparam name="thumbInterpolation" default="#defaultInterpolation#" />  <!--- Interpolation method used for resizing (HUGE performance hit depending on what is used) --->
    <cfparam name="normalMaxWidth" default="476" />
    <cfparam name="normalMaxHeight" default="324" />
    <cfparam name="normalQuality" default="#jpgQuality#" />
    <cfparam name="normalFixedSize" default="true" />
    <cfparam name="normalBackground" default="#defaultBackground#" />
    <cfparam name="normalInterpolation" default="#defaultInterpolation#" />
    <cfparam name="zoomMaxWidth" default="670" />
    <cfparam name="zoomMaxHeight" default="380" />
    <cfparam name="zoomQuality" default="#jpgQuality#" />
    <cfparam name="zoomFixedSize" default="true" />
    <cfparam name="zoomBackground" default="#defaultBackground#" />
    <cfparam name="zoomInterpolation" default="#defaultInterpolation#" />
    <!--- Set values for folder paths and the watermark image --->
    <cfparam name="originalFolder" default="path to folder for original images" />
    <cfparam name="thumbFolder" default="path to folder for thumbnail images" />
    <cfparam name="normalFolder" default="path to folder for large images" />
    <cfparam name="zoomFolder" default="path to folder for large resized images" />
    <cfparam name="watermarkImage" default="" />
    <cfparam name="wmXPosition" default="50" />  <!--- value is a number from 0 - 100, 50 = centered --->
    <cfparam name="wmYPosition" default="65" />
    <cffunction name="genWatermarkImage">
        <cfargument name="ImageFile" required="true" />
        <cfargument name="MaxWidth" required="true" />
        <cfargument name="MaxHeight" required="true" />
        <cfargument name="StorePath" required="true" />
        <cfargument name="FixedSize" required="true" type="Boolean" />
        <cfargument name="Background" required="true" />
        <cfargument name="Quality" required="true" />
        <cfargument name="Interpolation" required="true" />
        <cfargument name="AddWatermark" required="true" type="Boolean" />
        <cfif IsImageFile(originalFolder & ImageFile)>
            <cfset original = ImageNew(originalFolder & ImageFile) />
            <cfset originalHeight = ImageGetHeight(original) />
            <cfset originalWidth = ImageGetWidth(original) />
            <cfset outfile = StorePath & ImageFile />
            <cfset watermark = ImageNew(watermarkImage) />
            <cfset ImageScaleToFit(original,MaxWidth,MaxHeight,Interpolation) />
            <cfset new_w = ImageGetWidth(original) />
            <cfset new_h = ImageGetHeight(original) />
            <cfif FixedSize>
                <cfset normal = ImageNew("",MaxWidth,MaxHeight,"rgb",Background) />
                <cfset ImagePaste(normal,original,int((MaxWidth-new_w)/2),int((MaxHeight-new_h)/2)) />
                <cfif AddWatermark>
                    <cfset ImagePaste(normal,watermark,( int(ImageGetWidth(normal)) - int(ImageGetWidth(watermark)) -3),( int(ImageGetHeight(normal)) - int(ImageGetHeight(watermark)) -3) )/>
                </cfif>
                <cfset ImageWrite(normal,outfile,Quality) />
            <cfelse>
                <cfif AddWatermark>
                    <cfset ImagePaste(original,watermark,( int(ImageGetWidth(normal)) - int(ImageGetWidth(watermark)) -3), (int(ImageGetHeight(normal)) - int(ImageGetHeight(watermark)) -3) )/>
                </cfif>
                <cfset ImageWrite(original,outfile,Quality) />
            </cfif>
        <cfelse>
            <cfreturn "Image file not an image!" />
        </cfif>
    </cffunction>
    <cfset zoomError = genWatermarkImage(Filename,zoomMaxWidth,zoomMaxHeight,zoomFolder,zoomFixedSize,zoomBackground,zoomQuality,zoomInterp olation,dowatermark) />

    Hmm, that was my best shot.
    1) Do you have all of the latest updates applied?
    2) Did you try all of the work-arounds listed in the comments. Granted some of them are definite hacks
    3) Just to cover all the bases, do you get the same result with both ImageResize() and ImageScaleToFit()?
    If all else fails, you could always go the java route and try some java code to do the resize.  Obviously not the ideal, but it is worth a shot.  IIRC there is a thread around here somewhere with the cf/java code. But that was from before the switch in forums and I will be darned if I can find it right now!
    Update: I will play around the sample image you posted tomorrow. Just to see if I can come up with anything.

  • Update Retriever - Error Downloading Power Management Driver

    There is an error in Update Retriever, when I try to download the Lenovo Power Management Driver 1.67.00.02 (giku06ww).
    The error message is:
    1 update failed to be downloaded.
    For me it looks like the XML file does not contain a valid CRC information for the file.

    Found a workaround: (I am not sure, why the CRCs are incorrect. It is possible, that the current driver is compromised!)
    download manually the files for the power management driver:
    http://download.lenovo.com/ibmdl/pub/pc/pccbbs/mobiles/giku06ww.exe
    http://download.lenovo.com/ibmdl/pub/pc/pccbbs/mobiles/giku06ww.txt
    http://download.lenovo.com/ibmdl/pub/pc/pccbbs/mobiles/giku06ww_2_.xml
    There is an error in the XML file, the CRC sum and file size is not correct. calculate the SHA1 CRCs for the files and change the sizes:
          <File>
            <Name>giku06ww.exe</Name>
            <CRC>C9803CFF3B6A8A096AAED2737FB6D6FD3B63B5CA</CRC>
            <Size>1278493</Size>
          </File>
        </Installer>
        <Readme default="EN">
          <File id="EN">
            <Name>giku06ww.txt</Name>
            <CRC>80B709F72A4A9BDA3A0A98A31CD58EE188E412B9</CRC>
            <Size>32128</Size>
          </File>
    the file should look like this:
    <?xml version="1.0" encoding="utf-8"?>
    <?pcdDescriptor version="0230"?>
    <Package name="IBMPM_W8" id="giku06ww" version="1.67.00.02" hide="False">
      <Title default="EN">
        <Desc id="EN">Lenovo Power Management Driver - XP [32]/Vista/7/8 [32,64]</Desc>
      </Title>
      <DetectVersion type="Registry">
        <Registry>
          <Key>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Power Management Driver</Key>
          <ValueName>DisplayVersion</ValueName>
        </Registry>
      </DetectVersion>
      <Summary default="EN" />
      <Severity type="3" />
      <SeverityOverride type="2">
        <Not>
          <_RegistryKey>
            <Key>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Power Management Driver</Key>
          </_RegistryKey>
        </Not>
      </SeverityOverride>
      <Vendor>Lenovo</Vendor>
      <ExtractCommand>giku06ww.exe /VERYSILENT /DIR=%PACKAGEPATH% /EXTRACT="YES"</ExtractCommand>
      <ReleaseDate>2013-06-19</ReleaseDate>
      <DiskSpaceNeeded>30000000</DiskSpaceNeeded>
      <Reboot type="3" />
      <Install rc="0" type="cmd" default="EN">
        <Cmdline id="EN">%PACKAGEPATH%\Setup.exe -S -SMS</Cmdline>
      </Install>
      <ManualInstall type="cmd" default="EN">
        <Cmdline id="EN">%PACKAGEPATH%\Setup.exe</Cmdline>
      </ManualInstall>
      <Uninstall />
      <DetectInstall>
        <_RegistryKeyValue type="REG_SZ">
          <Key>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Power Management Driver</Key>
          <KeyName>DisplayVersion</KeyName>
          <Version>1.67.00.02^</Version>
        </_RegistryKeyValue>
      </DetectInstall>
      <Dependencies>
        <And>
          <_OS>
            <OS>VS-BUS.*</OS>
            <OS>VS-ENT.*</OS>
            <OS>VS-HOMEBASIC.*</OS>
            <OS>VS-HOMEPREM.*</OS>
            <OS>VS-HOMEULT.*</OS>
            <OS>WIN7-ENT.*</OS>
            <OS>WIN7-HOMEBASIC.*</OS>
            <OS>WIN7-HOMEPREM.*</OS>
            <OS>WIN7-PRO.*</OS>
            <OS>WIN7-STARTER.*</OS>
            <OS>WIN7-ULT.*</OS>
            <OS>WIN8.*</OS>
            <OS>WIN8-ENT.*</OS>
            <OS>WIN8-PRO.*</OS>
            <OS>WXP-PRO.SP3</OS>
          </_OS>
          <Or>
            <_PnPID><![CDATA[*IBM0055]]></_PnPID>
            <_PnPID><![CDATA[*IBM0068]]></_PnPID>
            <_PnPID><![CDATA[*LEN0068]]></_PnPID>
            <_PnPID><![CDATA[*LEN0168]]></_PnPID>
          </Or>
          <Or>
            <Or>
              <Not>
                <_Bios>
                  <Level>GDET*</Level>
                </_Bios>
              </Not>
            </Or>
            <Or>
              <And>
                <_Bios>
                  <Level>GDET*</Level>
                </_Bios>
                <Or>
                  <_Coreq name="BIOS_GDUJ">
                    <Version>1.07.1.07^</Version>
                  </_Coreq>
                  <Not>
                    <_Bios>
                      <Level>GDET0*</Level>
                      <Level>GDET1*</Level>
                      <Level>GDET2*</Level>
                      <Level>GDET30*</Level>
                      <Level>GDET31*</Level>
                      <Level>GDET32*</Level>
                      <Level>GDET33*</Level>
                      <Level>GDET34*</Level>
                      <Level>GDET35*</Level>
                      <Level>GDET36*</Level>
                    </_Bios>
                  </Not>
                </Or>
              </And>
            </Or>
          </Or>
        </And>
      </Dependencies>
      <Files>
        <Installer>
          <File>
            <Name>giku06ww.exe</Name>
            <CRC>C9803CFF3B6A8A096AAED2737FB6D6FD3B63B5CA</CRC>
            <Size>1278493</Size>
          </File>
        </Installer>
        <Readme default="EN">
          <File id="EN">
            <Name>giku06ww.txt</Name>
            <CRC>80B709F72A4A9BDA3A0A98A31CD58EE188E412B9</CRC>
            <Size>32128</Size>
          </File>
        </Readme>
      </Files>
    </Package>
    The update can be imported into update retriever manually and it must be assigned to systems (by default no machine types are assigned).

  • Retrieve error description from PCI-7334 board with VB

    Even with the examples provided by NI I get the error "Compile error. By Ref argument type mismatch" on argument "errordescription of function "flex_get_error_description".
    Try it with the "One-Axis Move with Position Monitor.vbp" project. Select an axis that don't exist eg "axis 7" and you get the error in "Public Function nimcDisplayError(ByVal errorCode As Long, ByVal commandID As Integer, ByVal resourceID As Integer) As Integer" of module "NIMCExample.bas".
    In VB the variable "errordescription" is declared as string. According to the help file that argument is an array of ASCII characters. So what should it be??
    The examples where installed from the "Motion Control Version 6.1.2" CD.
    Does someone have a working e
    xample of how to retrieve the error description with VB ???

    With the modifications described in thread "flex_initialize_controller", this problem is also solved.

  • Error in Infopackage- retrieve error data

    Hello experts,
    During execution of infopackage to extract data from ECC i had this error : "Error in codepage mapping for source system" read some thread i understand there was some idoc in error therefore i found the problem in BD87 in source system and i have processed my idocs correctly.
    NOW: i have again in the log my infopackage in error and after this execution i have many other executions correct so the delta extraction, after that problem, contunue in right way.
    My question is: how can i manage the data that went in error? the infopackage with error extract 2400 record where are these record?how can i retrieve these records?
    thanks
    kind regards
    Boris

    Hi,
    After you processed your Idocs in BD87, your subsequent loads went successful. So, now there is no Idocs problem as such.
    For your missing records, run a  Repair Full load by specifying the data selection. Then it will bring all the missed records.
    Regards,
    Suman

  • Log Could Not Be Retrieved Error in session logs....OBIEE 11.1.1.6.0

    Unable to see session logs in session manager since 2 days. I'm using OBIEE 11.1.1.6.0. current log file size is 66MB.
    Error
    Log Could Not Be Retrieved
    Odbc driver returned an error (SQLExecDirectW).
    Error Details
    Error Codes: OPR4ONWY:U9IM8TAC
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 27002] Near <2310275073>: Syntax error [nQSError: 26012] . (HY000)

    Hi,
    This is a know Bug: @ BUG:13737150 - UNABLE TO VIEW LOG FILE FROM ADMINISTRATION > MANAGE SESSIONS
    Download and apply OBIEE 11.1.1.6.2 BP1. It is fixed in this version.
    Thanks.

  • No records retrieved error when records are there?

    Hi
    This is frm-40350 No records retrieved and it is happening on the detail block even though records are retrieved.
    I am currently testing an enhancement to an existing form that can be called by other forms. I noticed that when calling this form from another, when it is populated with global values the cursor then goes to the detail block and I get the error message at usual place at bottom of screen. There is a new form instance procedure that puts cursor in details block as below. I think this is because the detail block records are only meant to be changed so if a user goes in to that form it puts cursor in the details block.
    BEGIN
    go_block('master');
    IF :CG$CTRL.form_called_from IN ('FORM_X', 'FORM_Y') THEN
    execute_query;
    go_block('detail');
    ELSE
    enter_query;
    END IF;
    END;
    The code above is existing and I have not changed it. I was making a small enhancement to my form in another area that will not have created any such problems as this. it operates ok apart from this error message. Why is it producing this error message?
    Thanks
    user605593

    Hi,
    Basically its not an error message....Its just informative message....according to this your trying to fetch some data from the table that is not there or your search query retrives no rows from the table.....
    If this message is not causing any problem to your operation then you can supress this message by writing the following code in pre-form,
    :SYSTEM.MESSAGE_LEVEL := 5;
    :SYSTEM.SUPPRESS_WORKING := 'TRUE';
    and write the following code in post-form
    :SYSTEM.MESSAGE_LEVEL := 0;
    :SYSTEM.SUPPRESS_WORKING := 'FALSE';
    Thanks,
    Pavan.

  • ESsbase Data retrieve error

    I have recently upgraded the essbase on unix from 9.3.0.1 to 9.3.1. During the upgarde there was no problem it looks like it went smoothly. However, I could not retrieve data from excel addin or even from Adminstration console.
    The error message I get from excel addin is: " cannot load application with error number 1052003.see server log file"
    And I found the following error message in the server log:
    "Starting application BigCorp
    ld.so.1: ESSSVR: fatal: libARicu22.so: open failed: No such file or directory
    [Fri Jan  9 15:50:32 2009]hypprd02 /ESSBASE0///Error(1052003)
    Timed out reading from server"
    Can you please help me resolve this issue
    Thanks

    Here is what the error description is for the Essbase error that is being returned:
    h2. 1052003 Timed out reading from server
    h3. Possible Problems
    Analytic Services timed out before it could read from the server.
    h3. Possible Solutions
    <ul><li>Make sure that the [block size|http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/dbag/dstalloc.htm#1011425] is within the recommended range. </li>
    <li>Make sure that the following [environment variables|http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_esb_error/erinfo.htm#environment] are set correctly:
    <ul><li><code>ARBORPATH</code> (PC and UNIX) </li>
    <li><code>PATH</code> (PC and UNIX) </li>
    <li><code>LD_LIBRARY_PATH</code> (UNIX only) </li>
    </ul>
    </li>
    <li>Make sure that the network is functioning correctly. Check the previous messages in the [application log|http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/dbag/dlogs.htm] for [network error messages|http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_esb_error/ernetwrk.htm]. </li>
    <li>[Stop and restart|http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/dbag/dagent.htm#1017676] Analytic Server. </li>
    <li>Increase the values for [NETDELAY and NETRETRYCOUNT|http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_esb_error/erinfo.htm#netdelay_netretrycount]. </li>
    <li>Increase the values for AGENTDELAY.
    <ol><li>If you do not have an <code>$ARBORPATH/bin/[essbase.cfg|http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/techref/config/homecfgl.htm]</code> file on the server computer, create one using a text editor. </li>
    <li>In the <code>$ARBORPATH/bin/[essbase.cfg|http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/techref/config/homecfgl.htm]</code> file on the server computer, add or increase the value for AGENTDELAY. </li>
    <li>[Stop and restart|http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/dbag/dagent.htm#1017676] Analytic Server. </li>
    </ol>
    </li>
    <li>Make sure that Analytic Server and the Analytic Services client are installed correctly. </li>
    <li>Check to see if any [databases are corrupt|http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_esb_error/erinfo.htm#corruption]. </li>
    </ul>
    Note: this information is from http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_esb_error/erhelp.htm.
    Tim Tow
    Applied OLAP, Inc

  • SAP Biller Direct PDF Retrieval Error

    Hi All,
    We are getting error while opening PDF on Biller Direct portal. The error comes in pop-up as follows->
    Adobe Reader could not open "XXX.pdf" because it is either not a supported file type or because the file has been damaged or wasn't correctly decoded.
    The original PDF document is stored in FileNet server and we are using a ABAP Function module GEN_EBPP_GET_INVOIVE_DETAIL to retrieve the PDF content from FileNet server and display it in Biller Direct application.
    Note: The same PDF is getting opened from ABAP.
    Pls let me know if there is any settings to be done in either ABAP side or in Visual Admin. I've checked VA entries in HTTP Provider and it is set MIME type as {.pdf,application/pdf}.
    Is there any other information that i'm missing here. Pls give me a hint.Thanks in advance.
    Thanks, Venkat

    Hi
    I also get something similar which I need to solve.
    When going to biller direct via a url like http://<host>:<port>/bd/public/frameset_top_html.jsp?ebppMode=S I see my pdf icon next to the open bill in the open bills list and clicking the icon displays my pdf correctly.
    When going via a portal and clicking the same icon for the same invoice I get the same first popup asking if I want to open the pdf file (as in the case above with the same identifier name for the pdf file) but this time when I click Open then Adobe Reader opens a window with the message "There was an error opening this document. This file cannot be found."
    Thus the portal connection cannot find the existing pdf file.
    DL

  • Features.xml Retrieval error

    He all when i run help >> software updates >>
    find and install I get the following popup alert error (shows two
    times in a row):
    Error retrieving "feature.xml". [ error in opening zip file ]
    I get the same error when i click on the next button on the
    screen which shows up after the errors.
    I'm running
    Eclipse SDK
    Version: 3.1.2
    Build id: M20060118-1600
    on Windows XP Pro
    Flex Beta 3 was installed AFTER eclipse (but i get the same
    error when i do the stand alone installation)
    thanks in advance
    jonese

    here's the output. sorry it's so long.
    There was a lot in there let me know if you want me to email
    you the entire file.
    here's the bix about the feature.xml
    !ENTRY org.eclipse.update.core 4 0 2006-06-05 16:50:05.751
    !MESSAGE Error retrieving "feature.xml". [error in opening
    zip file]
    !STACK 0
    java.util.zip.ZipException: error in opening zip file
    at java.util.zip.ZipFile.open(Native Method)
    at java.util.zip.ZipFile.<init>(Unknown Source)
    at java.util.jar.JarFile.<init>(Unknown Source)
    at java.util.jar.JarFile.<init>(Unknown Source)
    at
    org.eclipse.update.core.JarContentReference.asJarFile(JarContentReference.java:142)
    at
    org.eclipse.update.core.JarContentReference.unpack(JarContentReference.java:166)
    at
    org.eclipse.update.internal.core.FeaturePackagedContentProvider.getFeatureManifestReferen ce(FeaturePackagedContentProvider.java:77)
    at
    org.eclipse.update.internal.core.FeaturePackagedFactory.createFeature(FeaturePackagedFact ory.java:39)
    at org.eclipse.update.core.Site.createFeature(Site.java:515)
    at
    org.eclipse.update.internal.model.SiteWithTimestamp.createFeature(SiteWithTimestamp.java: 81)
    at
    org.eclipse.update.core.FeatureReference.createFeature(FeatureReference.java:117)
    at
    org.eclipse.update.core.FeatureReference.getFeature(FeatureReference.java:105)
    at
    org.eclipse.update.core.FeatureReference.getFeature(FeatureReference.java:92)
    at
    org.eclipse.update.internal.ui.model.DiscoveryFolder.initialize(DiscoveryFolder.java:64)
    at
    org.eclipse.update.internal.ui.model.DiscoveryFolder.getChildren(DiscoveryFolder.java:147 )
    at
    org.eclipse.update.internal.ui.wizards.SitePage.getAllSiteBookmarks(SitePage.java:521)
    at
    org.eclipse.update.internal.ui.wizards.SitePage.access$11(SitePage.java:517)
    at
    org.eclipse.update.internal.ui.wizards.SitePage$9.getElements(SitePage.java:285)
    at
    org.eclipse.jface.viewers.StructuredViewer.getRawChildren(StructuredViewer.java:848)
    at
    org.eclipse.jface.viewers.TableViewer.getRawChildren(TableViewer.java:1086)
    at
    org.eclipse.jface.viewers.StructuredViewer.getFilteredChildren(StructuredViewer.java:790)
    at
    org.eclipse.jface.viewers.StructuredViewer.getSortedChildren(StructuredViewer.java:905)
    at
    org.eclipse.jface.viewers.TableViewer.internalRefreshAll(TableViewer.java:798)
    at
    org.eclipse.jface.viewers.TableViewer.internalRefresh(TableViewer.java:748)
    at
    org.eclipse.jface.viewers.TableViewer.internalRefresh(TableViewer.java:737)
    at
    org.eclipse.jface.viewers.StructuredViewer$7.run(StructuredViewer.java:1264)
    at
    org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:1201 )
    at
    org.eclipse.jface.viewers.CheckboxTableViewer.preservingSelection(CheckboxTableViewer.jav a:289)
    at
    org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:1262)
    at
    org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:1221)
    at
    org.eclipse.jface.viewers.TableViewer.inputChanged(TableViewer.java:698)
    at
    org.eclipse.jface.viewers.ContentViewer.setInput(ContentViewer.java:248)
    at
    org.eclipse.jface.viewers.StructuredViewer.setInput(StructuredViewer.java:1417)
    at
    org.eclipse.update.internal.ui.wizards.SitePage.createViewer(SitePage.java:296)
    at
    org.eclipse.update.internal.ui.wizards.SitePage.createContents(SitePage.java:153)
    at
    org.eclipse.update.internal.ui.wizards.BannerPage.createControl(BannerPage.java:41)
    at
    org.eclipse.jface.wizard.Wizard.createPageControls(Wizard.java:179)
    at
    org.eclipse.jface.wizard.WizardDialog.createPageControls(WizardDialog.java:611)
    at
    org.eclipse.jface.wizard.WizardDialog.createContents(WizardDialog.java:502)
    at org.eclipse.jface.window.Window.create(Window.java:418)
    at org.eclipse.jface.dialogs.Dialog.create(Dialog.java:996)
    at
    org.eclipse.update.internal.ui.wizards.ResizableInstallWizardDialog.create(ResizableInsta llWizardDialog.java:38)
    at
    org.eclipse.update.ui.UpdateManagerUI.openInstaller(UpdateManagerUI.java:52)
    at
    org.eclipse.ui.internal.ide.update.InstallWizardAction$1.run(InstallWizardAction.java:47)
    at
    org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
    at
    org.eclipse.ui.internal.ide.update.InstallWizardAction.openInstaller(InstallWizardAction. java:45)
    at
    org.eclipse.ui.internal.ide.update.InstallWizardAction.run(InstallWizardAction.java:41)
    at
    org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:246)
    at
    org.eclipse.ui.internal.WWinPluginAction.runWithEvent(WWinPluginAction.java:223)
    at
    org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionI tem.java:538)
    at
    org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:488)
    at
    org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java :400)
    at
    org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843)
    at
    org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3125)
    at
    org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2758)
    at
    org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1699)
    at
    org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1663)
    at
    org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:367)
    at
    org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143)
    at
    org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103)
    at
    org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226)
    at
    org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:376)
    at
    org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:163)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native
    Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown
    Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown
    Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at
    org.eclipse.core.launcher.Main.invokeFramework(Main.java:334)
    at org.eclipse.core.launcher.Main.basicRun(Main.java:278)
    at org.eclipse.core.launcher.Main.run(Main.java:973)
    at org.eclipse.core.launcher.Main.main(Main.java:948)

  • Retrieving error messages from lpxus.msg

    What methods must be invoked in order to retrieve the correct error codes.
    Eg 202 means 'file not found'.
    How would be retrieve this message from \mesg\lpxus.msg(using the C++ XML Parser)
    There are no examples in the samples.
    null

    Hi,
    This is explained in the readme and function documentation:
    Currently, the only message file is in English although message files for
    other languages may be supplied in future releases. You should set the
    environment variable <tt>ORA_XML_MESG</tt> to point to the <b>absolute
    path</b> of the <tt>mesg/</tt> subdirectory. Alternately, if you have an
    <tt>$ORACLE_HOME</tt> installed, you may copy the contents of the
    <tt>mesg/</tt> subdirectory to the <tt>$ORACLE_HOME/oracore/mesg directory</tt>.
    The function documentation for xmlinit() explains the msghldr parameter that can
    be used to process error messages (or they are printed to stderr if msghdlr not
    supplied).
    Thanks,
    Oracle XML Team
    null

  • Retrieve error message of SAP provided web service in web service response

    Hi All,
    We have a SAP provided web service that sometimes fails to process data it is called with. This is not a problem as the data sometimes is just plain wrong (i.e. date field contains text). However, the error is only logged in SAP and can only be queried using SRT_UTIL.
    The problem is that the error is not reported back via the response. How can we set up the web service so that the error could be displayed by the calling party without logging into SAP?
    Thanks for the help in advance.
    Best Regards,
    Daniel

    Hi Calvin,
    The WS is indeed synchronous. The problem is not whether the error is captured or not. It is captured indeed but it is logged inside SAP only and not returned via the Web Service response mechanism. The error message says that error message can be retrieved using SRT_UTIL.
    This is a major problem as the users of the outside system calling SAP have no right to use SRT_UTIL to track down the error. They need to contact SAP basis in order to get to the end of it.
    What we need to achieve is to get back the same error message that can be seen with SRT_UTIL via the web service.
    Thanks.

  • Cfimage captcha java error

    Using cfimage to generate a captcha image. Works locally, but
    on live server I get this error:
    java.lang.IllegalStateException: Timer already cancelled.

    idesdema wrote:
    > Morning. I am trying to run a simple captcha script on a
    shared host and most
    > of the time it works well, however, sometimes it decides
    to crash.
    >
    > Here is the error I'm getting:
    >
    > An exception occured while performing the captcha
    cfimage action.
    > java.lang.IllegalStateException: Timer already
    cancelled.
    >
    > The error occurred in
    C:\Websites\168219qa6\scribble.cfm: line 1
    >
    > 1 : <CFIMAGE action="captcha" fontsize="20"
    text="Hello" difficulty="high"
    > fonts="verdana" width="200" height="50" />
    >
    >
    > I have logged many a ticket with the hosting company and
    they keep saying
    > "sorry, nothing we can do" which seems like a really bad
    answer to me. Is
    > there anyone that can perhaps guide me/them in the right
    direction so they can
    > tell customers the correct answer?
    I remember that I got this error some time ago. A CF restart
    solved it.
    Mack

Maybe you are looking for

  • DYNAMIC LOV FOR SELECT LIST

    hi to all, i've a question regarding lov query based select list: For a certain user i need that the lov display a list if app_user = BACK_OFFICE I NEED THAT ther query on wich is populated the select list is qry 1. if app_user is another (consultant

  • I am trying to download illustratorcc on the cloud but my wheel is just spinning

    I am trying to download illustratorcc on the cloud but the wheel is just spinning.

  • X2200 iLom and Watchdog timer...

    I have setup our x2200 and have the iLom working great for most things. I have two specific problems going on with it though.... First, sometimes the iLom just stops responding, I can't SSH, use the WebGUI or anything. I'm using the same mgmt. port f

  • Existing ipad with new mac

    I'm helping a friend set up a brand new iMac. He has his ipad synced with windows itunes on his pc but we want to sync with the new mac.  When we try to sync it tells us we have to erase the ipad and sync with his new itunes library...we don't want t

  • Xperia LT18i Android Ver 4.0.4 restarts continously only in the mornings

    Hello All, I have a Xperia LT18i which was recently upgraded to android version 4.0.4. I have noticed that the phone is continously restarting only in the morning hours. I have the alarm set at 6.30 am and the restart starts from that time till about