Adobe is grabbing 'rowid' not specified PK 'int' column in SQLite queries !!

When I execute the following query in Flex and/or Lita:
select wrdid, uspelling from WRD WHERE uspelling = 'wingeard'
the results are:
uspelling...wrdid
wingeard   3137
Look at what comes back when I execute this query using .NET provider by  Robert Simpson for SQLite and SQLite Manager by Mrinal Kant:
SELECT     rowid, wrdid, uspelling
FROM         WRD
WHERE     (uspelling = 'wingeard')
rowid.......wrdid...........uspelling
3137........3042............wingeard
No wonder none of my queries with joins is working correctly in Flex.
wrdid is defined as "int" not INTEGER.
http://www.sqlite.org/lang_createtable.html  (see INTEGER PRIMARY KEY section):
"The special behavior of INTEGER PRIMARY KEY is only available if the type name is exactly "INTEGER" (in any mixture of upper and lower case.)  Other integer type names like "INT" or "BIGINT" or "SHORT INTEGER" or "UNSIGNED INTEGER" causes the primary key column to behave as an ordinary table column with integer affinity and a unique index, not as an alias for the rowid."  [emphasis added]
Now, I happen to think the SQLite developers made a mistake here in failing to follow standards, preferring not to break legacy code. They'd rather break current code instead???  I would not characterize this as a "corner case" and the bug-at-hand is de facto evidence of that.

Based on your idea, i've intercepted the click event and I use stopImmediatePropagation.
THen i added an image to sort the column. So if the image is clicked the sort is ok.

Similar Messages

  • Only ints return from SQLite queries with calculations

    Howdy.  Hope I have the right forum for this question.
    I'm on a project using a SQLite database in Flex 4 and I'm using the following SQL query:
    SELECT max(totalScore) AS score,
                   max(longestStreak) AS streakLen,
                   max((correctNotes * 100) / totalNotes) AS accuracyPercent
    FROM main.practiceRecord rec
    JOIN main.lessonSession sess
    ON rec.sessionGuid = sess.guid
    WHERE sess.purchasedLessonID = :lessonId
    The query is working fine as it is written.  The problem is that when I do the calculation ((correctNotes * 100) / totalNotes) to return a percent value, I'd like to do it without having to multiply by 100, since I generally treat percentages as numbers between 0 and 1 (.68 = 68%).  If I don't multiple by 100 in the query, however, I get a "0" for anything less than 1, so only 100% returns with the correct value.  It appears that this kind of calculation only returns an int, as opposed to a REAL (or its AS3 corresponding "Number").
    Is there something that I can do to return a value between 0 and 1 for this percentage so that I don't have to multiply by 100 in the query and then divide by 100 when I get the result?  Is there a function that allows me to specify the precision for the returned value?
    Thanks for your time,
    Bryan

    Maybe Tom Kyte's "trick" of the "select pl_sql_function () from dual" to invoke scalar subquery caching can help you:
    select ename
      from emp, dept
    where (select dname_lookup(emp.deptno) from dual) = 'SALES'
       and dept.deptno = 30
       and emp.deptno = dept.deptno;http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1547006324238
    As Tom says, in 11g you'll be able to cache that function (new 11g feature) which removes the need for the "trick":
    Oracle® Database PL/SQL Language Reference 11g Release 1 (11.1)
    - 8 Using PL/SQL Subprograms
    -- Using the Cross-Session PL/SQL Function Result Cache
    http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28370/subprograms.htm#BABFHACJ
    "On the PL/SQL Function Result Cache" by Steven Feuerstein
    http://www.oracle.com/technology/oramag/oracle/07-sep/o57plsql.html
    Regards,
    Zlatko

  • ALC-DSC-005-000: com.adobe.idp.dsc.DSCNotSerializableException: Not Serializable

    We've created a process with an input parameter (String) and an output parameter. There is only one "Query Single Row" node. The SQL we've put has been tested successfully. But when the client Java program invokes it, it got the exception of "ALC-DSC-005-000: com.adobe.idp.dsc.DSCNotSerializableException: Not Serializable"

    Hi,
    I got this Exception when I was trying to convert the BarCode into XML. Here is my client Program.
    import java.io.File;
    import java.io.*;
    import java.io.FileInputStream;
    import java.util.Iterator;
    import java.util.List;
    import java.util.Properties;
    import javax.xml.transform.*;
    import javax.xml.transform.dom.DOMSource;
    import javax.xml.transform.stream.StreamResult;
    import com.adobe.livecycle.barcodedforms.CharSet;
    import com.adobe.livecycle.barcodedforms.Delimiter ;
    import com.adobe.livecycle.barcodedforms.XMLFormat ;
    import com.adobe.idp.Document;
    import com.adobe.idp.dsc.clientsdk.ServiceClientFactory;
    import com.adobe.livecycle.barcodedforms.client.*;
    public class Testmain {
    public static void main(String[] args) {
    try
    //Set LiveCycle ES service connection properties
    Properties ConnectionProps = new Properties();
    ConnectionProps.setProperty("DSC_DEFAULT_EJB_ENDPOINT", "t3://rndvipdev02:80");
    ConnectionProps.setProperty("DSC_TRANSPORT_PROTOCOL","EJB");
    ConnectionProps.setProperty("DSC_SERVER_TYPE", "Weblogic");
    ConnectionProps.setProperty("DSC_CREDENTIAL_USERNAME", "administrator");
    ConnectionProps.setProperty("DSC_CREDENTIAL_PASSWORD", "password");
    //Create a ServiceClientFactory object
    ServiceClientFactory myFactory = ServiceClientFactory.createInstance(ConnectionProps);
    BarcodedFormsServiceClient barClient = new BarcodedFormsServiceClient(myFactory);
    //Specify a PDF document to convert to a XDP file
    FileInputStream fileInputStream = new FileInputStream("D:\\abc\\barcode.pdf");
    Document inDoc = new Document (fileInputStream);
    java.lang.Boolean myFalse = new java.lang.Boolean(false);
    java.lang.Boolean myTrue = new java.lang.Boolean(true);
    //Decode barcoded form data
    org.w3c.dom.Document decodeXML = barClient.decode(
    inDoc,
    myTrue,
    myFalse,
    myFalse,
    myFalse,
    myFalse,
    myFalse,
    myFalse,
    myFalse,
    CharSet.UTF_8);
    //Convert the decoded data to XDP data
    List extractedData = barClient.extractToXML(
    decodeXML,
    Delimiter.Tab,
    Delimiter.Tab,
    XMLFormat.XDP);
    //Create an Iterator object and iterate through
    //the List object
    Iterator iter = extractedData.iterator();
    int i = 0 ;
    while (iter.hasNext()) {
    //Get the org.w3c.dom.Document object in each element
    org.w3c.dom.Document myDom = (org.w3c.dom.Document)iter.next();
    //Convert the org.w3c.dom.Document object to a
    //com.adobe.idp.Document object
    com.adobe.idp.Document myDocument = convertDOM(decodeXML);
    //Save the XML data to extractedData.xml
    File myFile = new File("D:\\abc\\extractedData"+i+".xml");
    myDocument.copyToFile(myFile);
    i++;
    catch(Exception e)
    e.printStackTrace();
    //This user-defined method converts an org.w3c.dom.Document to a
    //com.adobe.idp.Document object
    public static com.adobe.idp.Document convertDOM(org.w3c.dom.Document doc)
    byte[] mybytes = null ;
    com.adobe.idp.Document myDocument = null;
    try
    //Create a Java Transformer object
    TransformerFactory transFact = TransformerFactory.newInstance();
    Transformer transForm = transFact.newTransformer();
    //Create a Java ByteArrayOutputStream object
    ByteArrayOutputStream myOutStream = new ByteArrayOutputStream();
    //Create a Java Source object
    Source myInput = new DOMSource(doc);
    //Create a Java Result object
    Result myOutput = new StreamResult(myOutStream);
    //Populate the Java ByteArrayOutputStream object
    transForm.transform(myInput,myOutput);
    //Get the size of the ByteArrayOutputStream buffer
    int myByteSize = myOutStream.size();
    //Allocate myByteSize to the byte array
    mybytes = new byte[myByteSize];
    //Copy the content to the byte array
    mybytes = myOutStream.toByteArray();
    com.adobe.idp.Document myDoc = new com.adobe.idp.Document(mybytes);
    myDocument = myDoc ;
    catch(Exception ee)
    ee.printStackTrace();
    return myDocument;
    Here is the Exception StackTrace
    ALC-DSC-005-000: com.adobe.idp.dsc.DSCNotSerializableException: Not Serializable
    Caused by: ALC-DSC-003-000: com.adobe.idp.dsc.DSCInvocationException: Invocation error.
    at com.adobe.idp.dsc.component.impl.DefaultPOJOInvokerImpl.invoke(DefaultPOJOInvokerImpl.jav a:210)
    at com.adobe.idp.dsc.interceptor.impl.InvocationInterceptor.intercept(InvocationInterceptor. java:134)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:44)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor$1.doInTransaction(Transa ctionInterceptor.java:74)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.execute(EjbTr ansactionCMTAdapterBean.java:336)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapterBean.doSupports(Ej bTransactionCMTAdapterBean.java:212)
    at com.adobe.idp.dsc.transaction.impl.ejb.adapter.EjbTransactionCMTAdapter_z73hg_ELOImpl.doS upports(EjbTransactionCMTAdapter_z73hg_ELOImpl.java:145)
    at com.adobe.idp.dsc.transaction.impl.ejb.EjbTransactionProvider.execute(EjbTransactionProvi der.java:104)
    at com.adobe.idp.dsc.transaction.interceptor.TransactionInterceptor.intercept(TransactionInt erceptor.java:72)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:44)
    at com.adobe.idp.dsc.interceptor.impl.InvalidStateInterceptor.intercept(InvalidStateIntercep tor.java:37)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:44)
    at com.adobe.idp.dsc.interceptor.impl.AuthorizationInterceptor.intercept(AuthorizationInterc eptor.java:93)
    at com.adobe.idp.dsc.interceptor.impl.RequestInterceptorChainImpl.proceed(RequestInterceptor ChainImpl.java:44)
    at com.adobe.idp.dsc.engine.impl.ServiceEngineImpl.invoke(ServiceEngineImpl.java:113)
    at com.adobe.idp.dsc.routing.Router.routeRequest(Router.java:102)
    at com.adobe.idp.dsc.provider.impl.base.AbstractMessageReceiver.invoke(AbstractMessageReceiv er.java:298)
    at com.adobe.idp.dsc.provider.impl.ejb.receiver.EjbReceiverBean.invoke(EjbReceiverBean.java: 151)
    at com.adobe.idp.dsc.provider.impl.ejb.receiver.Invocation_fpvhue_EOImpl.invoke(Invocation_f pvhue_EOImpl.java:61)
    at com.adobe.idp.dsc.provider.impl.ejb.receiver.Invocation_fpvhue_EOImpl_WLSkel.invoke(ILweb logic.rmi.spi.InboundRequest;Lweblogic.rmi.spi.OutboundResponse;Ljava.lang.Object;)Lweblog ic.rmi.spi.OutboundResponse;(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.invoke(BasicServerRef.java:589)
    at weblogic.rmi.cluster.ClusterableServerRef.invoke(ClusterableServerRef.java:224)
    at weblogic.rmi.internal.BasicServerRef$1.run(BasicServerRef.java:479)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
    at weblogic.security.service.SecurityManager.runAs(Lweblogic.security.acl.internal.Authentic atedSubject;Lweblogic.security.acl.internal.AuthenticatedSubject;Ljava.security.Privileged ExceptionAction;)Ljava.lang.Object;(Unknown Source)
    at weblogic.rmi.internal.BasicServerRef.handleRequest(BasicServerRef.java:475)
    at weblogic.rmi.internal.BasicServerRef.access$300(BasicServerRef.java:59)
    at weblogic.rmi.internal.BasicServerRef$BasicExecuteRequest.run(BasicServerRef.java:1016)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:200)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:172)
    Caused by: com.adobe.barcodedforms.decoder.DecodingException null: com.adobe.barcodedforms.decoder.processors.DataProcessorException: com.adobe.barcodedforms.decoder.processors.DataProcessorException
    at com.adobe.livecycle.barcodedforms.BarcodedFormsService.decode(BarcodedFormsService.java:2 97)
    at j

  • CR10 Dev JRC ReportSDKException Report location is not specified in the configuration file error

    I'm trying to embed a simple report into a j2ee application running under BEA WebLogic(without
    workshop)
    using the standalone Java Reporting Component (JRC), but I'm getting the exception
    shown below (along with my config and source).
    I'm just wondering at the cause of the exception, because I can successfully deploy
    this code to jboss.
    I've tried moving the CrystalReportEngine-config.xml file everywhere, from the
    /WEB-INF/classes/ folder
    to the /WEB-INF/ folder to the /WEB-INF/lib/ folder.
    I consulted the product documentation on the JRC and its tutorials but it has
    me stumped.
    I went through the BEA WebLogic Workshop tutorial, which worked for some reason,
    but I'm looking to do all the coding manually without any of BEA's controls and
    what not.
    Any information would be GREATELY APPRECIATED!!!
    Thanks,
    -Colin
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Report location is
    not specified in the configuration file---- Error code:-2147
    215356 Error code name:fileNotOpened
    at com.crystaldecisions.sdk.occa.report.lib.ReportSDKException.throwReportSDKException(Unknown
    Source)
    at com.crystaldecisions.reports.reportengineinterface.JPEReportSource.<init>(Unknown
    Source)
    at com.crystaldecisions.reports.reportengineinterface.JPEReportSource.a(Unknown
    Source)
    at com.crystaldecisions.reports.reportengineinterface.JPEReportSourceFactory.createReportSource(Unknown
    Source)
    at com.crystaldecisions.report.web.viewer.ReportAgentBase.case(Unknown
    Source)
    at com.crystaldecisions.report.web.viewer.ReportServerControl.getReportSource(Unknown
    Source)
    at com.crystaldecisions.report.web.viewer.taglib.ReportServerControlTag.int(Unknown
    Source)
    at com.crystaldecisions.report.web.viewer.taglib.ReportServerControlTag.doEndTag(Unknown
    Source)
    at jsp_servlet.__viewreport._jspService(__viewreport.java:197)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:971)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:402)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:446)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:305)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6350)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3635)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2585)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    My EAR file structure is as follows:
    /crystal/ (context)
    /reports/qtrade_sp_listing.rpt
    /crystalreportviewers10/ -- bunch of crystal viewing stuff
    /WEB-INF/classes/CrystalReportEngine-config.xml
    /WEB-INF/lib/ -- bunch of crystal jar files
    My CrystalReportEngine-config.xml is as follows
    <?xml version="1.0" encoding="utf-8"?>
    <CrystalReportEngine-configuration>
    <reportlocation>../..</reportlocation>
    <timeout>10</timeout>
    <keycode>A2960-01C00FA-U700063</keycode>
    </CrystalReportEngine-configuration>
    My relevant Web.xml looks like:
    <web-app>
    <context-param>
    <param-name>crystal_image_uri</param-name>
    <param-value>/crystal/crystalreportviewers10/</param-value>
    </context-param>
    <taglib>
    <taglib-uri>/crystal-tags-reportviewer.tld</taglib-uri>
    <taglib-location>/WEB-INF/crystal-tags-reportviewer.tld</taglib-location>
    </taglib>
    </web-app>
    My JSP Page Source:
    <%@ page language="java" contentType="text/html;charset=UTF-8"%>
    <%@ taglib uri="/crystal-tags-reportviewer.tld" prefix="crviewer"%>
    <html>
    <head>
    <title>Web Application Page</title>
    </head>
    <body>
    <crviewer:viewer
    viewerName="SPListingReport"
    reportSourceVar="_SPListingReport"
    displayGroupTree="false"
    displayToolbarToggleTreeButton="false"
    reportSourceType="reportingComponent">
    <crviewer:report reportName="reports/qtrade_sp_listing.rpt"></crviewer:report>
    </crviewer:viewer>
    </body>
    </html>

    I'm trying to embed a simple report into a j2ee application running under BEA WebLogic(without
    workshop)
    using the standalone Java Reporting Component (JRC), but I'm getting the exception
    shown below (along with my config and source).
    I'm just wondering at the cause of the exception, because I can successfully deploy
    this code to jboss.
    I've tried moving the CrystalReportEngine-config.xml file everywhere, from the
    /WEB-INF/classes/ folder
    to the /WEB-INF/ folder to the /WEB-INF/lib/ folder.
    I consulted the product documentation on the JRC and its tutorials but it has
    me stumped.
    I went through the BEA WebLogic Workshop tutorial, which worked for some reason,
    but I'm looking to do all the coding manually without any of BEA's controls and
    what not.
    Any information would be GREATELY APPRECIATED!!!
    Thanks,
    -Colin
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: Report location is
    not specified in the configuration file---- Error code:-2147
    215356 Error code name:fileNotOpened
    at com.crystaldecisions.sdk.occa.report.lib.ReportSDKException.throwReportSDKException(Unknown
    Source)
    at com.crystaldecisions.reports.reportengineinterface.JPEReportSource.<init>(Unknown
    Source)
    at com.crystaldecisions.reports.reportengineinterface.JPEReportSource.a(Unknown
    Source)
    at com.crystaldecisions.reports.reportengineinterface.JPEReportSourceFactory.createReportSource(Unknown
    Source)
    at com.crystaldecisions.report.web.viewer.ReportAgentBase.case(Unknown
    Source)
    at com.crystaldecisions.report.web.viewer.ReportServerControl.getReportSource(Unknown
    Source)
    at com.crystaldecisions.report.web.viewer.taglib.ReportServerControlTag.int(Unknown
    Source)
    at com.crystaldecisions.report.web.viewer.taglib.ReportServerControlTag.doEndTag(Unknown
    Source)
    at jsp_servlet.__viewreport._jspService(__viewreport.java:197)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:33)
    at weblogic.servlet.internal.ServletStubImpl$ServletInvocationAction.run(ServletStubImpl.java:971)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:402)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:446)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:305)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:6350)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:317)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:118)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:3635)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2585)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:197)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:170)
    My EAR file structure is as follows:
    /crystal/ (context)
    /reports/qtrade_sp_listing.rpt
    /crystalreportviewers10/ -- bunch of crystal viewing stuff
    /WEB-INF/classes/CrystalReportEngine-config.xml
    /WEB-INF/lib/ -- bunch of crystal jar files
    My CrystalReportEngine-config.xml is as follows
    <?xml version="1.0" encoding="utf-8"?>
    <CrystalReportEngine-configuration>
    <reportlocation>../..</reportlocation>
    <timeout>10</timeout>
    <keycode>A2960-01C00FA-U700063</keycode>
    </CrystalReportEngine-configuration>
    My relevant Web.xml looks like:
    <web-app>
    <context-param>
    <param-name>crystal_image_uri</param-name>
    <param-value>/crystal/crystalreportviewers10/</param-value>
    </context-param>
    <taglib>
    <taglib-uri>/crystal-tags-reportviewer.tld</taglib-uri>
    <taglib-location>/WEB-INF/crystal-tags-reportviewer.tld</taglib-location>
    </taglib>
    </web-app>
    My JSP Page Source:
    <%@ page language="java" contentType="text/html;charset=UTF-8"%>
    <%@ taglib uri="/crystal-tags-reportviewer.tld" prefix="crviewer"%>
    <html>
    <head>
    <title>Web Application Page</title>
    </head>
    <body>
    <crviewer:viewer
    viewerName="SPListingReport"
    reportSourceVar="_SPListingReport"
    displayGroupTree="false"
    displayToolbarToggleTreeButton="false"
    reportSourceType="reportingComponent">
    <crviewer:report reportName="reports/qtrade_sp_listing.rpt"></crviewer:report>
    </crviewer:viewer>
    </body>
    </html>

  • XML parsing -  org.xml.sax.driver not specified

    I am attempmtping to parse my first XML document and get the following excpetion when running my prog.
    org.xml.sax.SAXException: System property org.xml.sax.driver not specified.
    I am following the examples in the O'Reilly Java and XML book but suspect I am missing something obvious.
    This is the offending line of code:
    XMLReader xr = XMLReaderFactory.createXMLReader();
    Any help will be appreciated.

    You need to set a property for your class that invokes your SAX handler. This is the property you need to set
    org.xml.sax.driver=???
    Where ??? is the name of the package where your SAXparser lives.
    for example, my sax driver is in:
    org.xml.sax.driver=org.apache.xerces.parsers.SAXParser
    (see code below)
    Also, a sweet reference is Elliot Rusty Harold's "XML processing with Java", which answered all the practical questions I had -- really! And is free, online.
    http://www.ibiblio.org/xml/books/xmljava/chapters/index.html
    This is the code for main() where my xml handler is invoked
    try
    {  SpiderHandler spiderHandler = new SpiderHandler(testSpider);
       XMLReader reader = XMLReaderFactory.createXMLReader();
       reader.setContentHandler(spiderHandler);
       for (int i=4; i<args.length; i++)
       {   FileReader xmlScript = new FileReader(args);
    System.out.println("Input file number "+i+" named "+args[i]);
    // org.xml.sax.XMLReader.parse(InputSource) interface
    // see org.xml.sax.InputSource class      
    reader.parse(new InputSource(xmlScript));
    catch(Exception e)
    {   System.out.println("Error encountered in parsing from main(). \n");
    e.printStackTrace();
    Luck to you! XML is a joy.

  • MobileMe/iCal Error: "The server has not specified a calendar home for the account at..."

    Hi everyone,
    I get a problem when trying to add my MobileMe account in iCal. The error message I receive after trying to add ("+") my MobileMe account to iCal is:
    "The account information was not found. The server has not specified a calendar home for the account at "/ -- https://cal.me.com/".
    Attached the screenshot: http://grab.by/cPDP
    Any idea's on what could be going wrong?
    Thanks,
    Michael

    Hi everyone,
    I get a problem when trying to add my MobileMe account in iCal. The error message I receive after trying to add ("+") my MobileMe account to iCal is:
    "The account information was not found. The server has not specified a calendar home for the account at "/ -- https://cal.me.com/".
    Attached the screenshot: http://grab.by/cPDP
    Any idea's on what could be going wrong?
    Thanks,
    Michael

  • %AI5_ViewPalette not specified in AI7FileFormat.pdf

    Hi!
    In the
    http://partners.adobe.com/public/developer/en/illustrator/sdk/AI7FileFormat.pdf
    the meaning of
    %AI5_NumLayers: 13
    is described, but it does not specify the meaning of
    %AI5_ViewPalette: 0 13 0.9614 6716.2461 7764.1982 0 1 3777777777777 Sketch 1
    %AI5_ViewPalette: 1 13 0.9614 7296.6514 7768.3589 0 2 3777777777777 Sketch 2
    Assuming AI5 specifies it is from Version 5 and so should exist in the Version 7 spec.
    Initially I want to get the bounding box out of the AI file.
    I want to zoom the the first View using the PDFRenderer
    (https://pdf-renderer.dev.java.net/)
    Does anyone know how to map the coordinates of the layers to the BoundingBox?
    In the file the BoundingBox is smaller than the 6716.2461 coordinate:
    %%BoundingBox: 11 2410 3562 3357
    %%HiResBoundingBox: 11.4595 2410.1494 3561.1582 3356.1699

    Hi Jennifer
    I don't know the internals of how LC Forms merges the data into your form, but I can guess.
    The values that you enter into Designer are always there - they're not really part of the data object model, they're actually bound to each field.
    When you merge your xml data into the form, the process that Forms follows is:
    1. Wipe out the existing data model in the PDF, and replace it with the data from the new XML file. (This does not affect the default values entered in designer, but completely wipes out any values you've previously typed in.)
    2. For each field in the form, set its value based on the element it's bound to in the data model. If there is no value in the data model, don't change it. (In other words, the value you set in Designer will remain.)
    What I think this means is that when you want to add more data to the form, you will have to:
    a) extract the existing data from the form
    b) merge the new data into the existing data
    c) merge the combined data back into the form.
    For step b) this means that you're going to have to take two xml files, and merge them together. If you'd like some code to do this for you, we can talk about it - email info-at-avoka.com if you're interested. (Are you using Workflow, of just hand-coding?)
    I am just guessing here, but this seems to fit the observed behaviour.
    Perhaps someone from Adobe with access to the internals could comment.
    Good luck...
    Howard
    http://www.avoka.com

  • Publisher not specified error during autorun from cd

    Hello,
    I am trying get rid of the publisher not specified when launching ADOBE PDF Doc from a CD.  Can you please tell me how to get this option removed? 
    The autorun.inf is as follows
    [AutoRun]
    Open=c:\Program Files (x86)\Adobe\Reader 10.0\Acrord32.exe
    shellexecute="Blah.pdf"
    icon=SC_Reader.ico
    label=blah blah..

    I guess I had to try something here. 
    Apparently when you use the autorun.inf you have to call the actual Adobe Acrobat reader program instead of the PDF File itself.  Now I am no longer getting the "Publisher Not Specified" error message but when I click on the Adobe program to run I am now getting "adobe reader core dll failed to load".
    How can I call the Adobe Acrobat program from the source location on the hard drive.  If you load the pdf file on the same CD you get the "publisher not specified" error.  Now I am trying to figure out how to call any of the installed versions of Adobe Reader.  I am currently running Adobe Reader X but some customers might have Version 8 or 9.  Does anyone know how to call any version of Adobe Reader from the autorun.inf file? 
    I called Adobe Support but they didn't answer my question. So maybe they know how to fix a pretty standard error based on the Google Searches. 
    Thanks,
    Calvin Grier, Jr.

  • OsiTypes.h : #Target endianness not specified

    Hello,
    I'm developping drivers for a PCI-6025E board on Qnx Momentics developpement suite 6.3. I'm trying to compile from a custom makefile.
    I'm getting errors during compilation about the endianness of the target system.
    The QNX developpement suite is running on WinXP and the board is on a  x86 platform target machine, the errors I'm getting are like this one and they concerns all the files including osiTypes.h :
    make -k EXTRA_SUFFIXES=cpp all --file=U:/PFE/monprojet/QMakefile10494.tmp
    QCC -g osiBus.cpp
    In file included from osiBus.h:9,
    from osiBus.cpp:10:
    osiTypes.h:102: #error target endianness not specified
    cc: C:/QNX630/host/win32/x86/usr/lib/gcc-lib/ntox86/2.95.3/cpp0 caught signal 33
    make: *** [osiBus.o] Error 1
    Any help or guidance will be welcomed.
    Thank you.

    Thank you for your support guys,
    I still got all the problems I was discussing before :
    For the errors concerning the target endianness, I added in the compiler difinitions kLitlleEndian=1 but it didn't resolve the problem, I still got the same error.
    But the error concerning the command for the compiler end the linker is gone, I'm using now QCC for both of them.
    I commented the error message in osiTypes.h about the endianness just to see further compilation results. I compiled then I got the following errors about some missing files. here are the errors :
    QCC -O osiBus.cpp
    osiBus.cpp: In method `u32 iBus::get(unsigned int, unsigned int, tStatus * = 0)':
    osiBus.cpp:31: `_isPCI' undeclared (first use this function)
    osiBus.cpp:31: (Each undeclared identifier is reported only once
    osiBus.cpp:31: for each function it appears in.)
    osiBus.cpp: At top level:
    osiBus.cpp:41: syntax error before `::'
    osiBus.cpp:44: ANSI C++ forbids declaration `_physicalAddress' with no type
    osiBus.cpp:45: ANSI C++ forbids declaration `_size' with no type
    osiBus.cpp:46: parse error before `}'
    cc: C:/QNX630/host/win32/x86/usr/lib/gcc-lib/ntox86/2.95.3/cc1plus caught signal 33
    make: *** [osiBus.o] Error 1
    The osiBus.cpp is the same file I downloaded from NI site. Looking at errors I think I should link some other header files. I added the path for all the includes I need for the project in the linker tab from project settings and still got the same errors. I copied the files in the same directory than the project and it worked but still got the same errors.
    I need a list of all files that are necessary to build a project for developping drivers in QNX.
    I was looking for the files concerning the DMA but I didn't find. Can you please tell me which one?
    Tom, is the makefile I joined to my last message correct?
    Thank you for your support, I need it too much.

  • LR4 Problem: The file could not be edited because Adobe Photoshop CS6 could not be launched.

    Is there a fix for this?  When I try to edit an image in Photoshop from Lightroom 4 (CTRL+E), Photoshop CS6 launches immediately but with no image.  In Lightroom 4, after about two minutes, the message box appears saying "The file could not be edited because Adobe Photoshop CS6 could not be launched."  When I click OK, the image promptly opens in Photoshop CS6 like normal.  This wan an itermittent issue for me after the LR4.1 release.  I was hoping that LR4.2 would help, but now I get the error every time.
    System
    Lightroom 4.2 x64
    Photoshop CS6 v13.0.1 x64
    Bridge 5.0.1.23 x64
    Windows 7 Pro x64
    AMD Six Core / 3.9 Ghz
    16 GB Memory
    NVidia Quadro 1 Gb Video
    Scratch space on three drives

    This may be a cooincidence, I starting having problems after I started using a Nikon D800, which has 36MP files.  LR4 released at the same time as the D800.  LR4 shows signs of struggling with the larger files, which are typically 280MB TIFFs for the D800, like freezing for several seconds when using an adjustment brush or going into a spasm with the crop tool.  Because Photoshop does not have similar large file issues, I'm doing more basic work in Photoshop, like cropping, dodge and burn, exposure adjustment, etc.
    Because Photoshop otherwise runs fine, and appears to read all the prefernes properly mid-issue, to get a better idea of what's going on, I turned on Process Monitor from Technet. For what it's worth, LR4 appears to touch the Photoshop preferences before it launches Photoshop.  LR4 must have a memory leak in that corrupts the Photoshop preferences file in a way that makes no difference to Photoshop.
    My weekend project is to try Capture One to see if I can spend more time on photography and less troubleshooting Adobe problems.  As it stands, LR4 is not usable for me.

  • Adobe bridge cc is not working on my mac snow leopard version 10.6.8. In other words the program will not open all other programs work fine

    Adobe bridge cc is not working on my mac snow leopard version 10.6.8. In other words the program will not open, but all other programs i have been able to open just fine

    Moving this discussion to the Bridge General Discussion forum.

  • Why is my adobe photoshop elements 12 not working. it says initializing and then it says there is an error and closes itself

    why is my adobe photoshop elements 12 not working. it says initializing then error and shuts itself down.

    Three things you can try:
    1. Clean the superdrive with a proprietory CD/DVD lens cleaner that uses tiny brushes.
    2. Perform an SMC reset:
    Resetting the SMC (System Management Controller) on Intel-based Macs:
    http://support.apple.com/kb/ht3964  and
    http://support.apple.com/kb/HT1237?viewlocale=en_US
    Resetting your Mac's PRAM and NVRAM:
    http://support.apple.com/kb/ht1379
    If you are using a Wireless Keyboard:
    http://support.apple.com/kb/TS3273
    3. Try the free DVD player VLC:
    http://www.videolan.org/vlc/
    which performs better than the built-in DVD Player.

  • Adobe Creative Cloud does not support Bootcamp by Apple IOS operating system, but does work with boot camp Win 8.1 why"

    Adobe Creative Cloud does not support APPLE latest IOS operating system, but does allow Windows 8.1 to be accepted. This seems a shame to me, as
    Apple IOS is the leader in graphics, photography. The advertising states it is usable under both APPLE IOS and Microsoft 8.1 windows operating systems. Adobe Support Chat Sooraj tells me on 02/19/2015 that i must buy two computers to have it operate on both operating systems. Adobe will not support apple's Boot CAMP allowing both operating systems.
    i love the apple product and love the ADOBE Photoshop CC, but it simply does now work with an apple keyboard and a WiN operating system. .[email protected]  Adobe Creative Cloud

    In Thehatters defence, this was initially posted in the MacbookPro forum and then moved to Boot Camp,
    If you have any joy solving your trackpad device driver issue, feel free to post here (there might be a similar fix for my  wireless adapter device)
    Thanks

  • Adobe download assistant will not work on my machine?

    Adobe download assistant will not work on my machine. When i try to start it i get a message saying "Sorry an error has occurred. This application cannot be installed because this installer has been mis-configured. Please contact the application author for assistance." Any ideas what to do

    Are you using Mac OS?  If so please try removing the Adobe Download Assistant from your Applications folder and try again.  This issue is documented in the Known Issues section of Troubleshoot Adobe Download Assistant - http://helpx.adobe.com/creative-suite/kb/troubleshoot-download-assistant.html.

  • Adobe Download Assistant Will Not Recognize My Adobe ID

    I've been an Adobe customer / forum user since before ID's were tied to email addresses.  My product registrations going back to 1996 through CS 5.5 apps are recorded under that ID.  Since I have to change my email address every couple years to escape spammers, I do not want to change my Adobe ID (and go through the hassle of re-recording the record of registered apps) to a "fluid" ID like an email address.
    Automatic registration and now Adobe Download Assistant will not accept an Adobe ID that is not an email address, yet I can still use it to 'manually' register new / upgrade product purchases.  The problems this poses are two-fold:
    Since I can only manually register new / upgrade products, I cannot obtain any "registration bonus" downloads.
    I cannot download trial versions of apps I want to check out.
    Adobe needs to get its act together and tell its gen-X / Millenials / Kid Web and software development staff that not all Adobe IDs are email addresses, but might also be a unique user ID string.
    Further, due to an individual's email address volatitility (virtually everyone in my email address book had their email address change every 2- 3 years due to ISP demise, merger, personal relocation, job change etc.), Adobe should return to - or at least give precedence to - the model of UID / PW authentication instead of email address / PW authentication.  This would lower Adobe maintenance effort / cost for user accounts as one could simply sign in with UID + PW and change email address for the account as necessary.  As it is now, Adobe CANNOT deal with a user whose email address changes. 
    When Adobe changed from UID precedence to email precedence, I could not register Acrobat Pro (2007) during registration so I used my email address at that time to register the product.  When that email address ceased to exist, I tried to get Adobe to transfer that registration to my old [non-email address] Adobe ID, and, over several months of email exchanges, they ended up admitting they could not do it.  I could not make the change as the SN was already marked as used in there system so simply re-registering it to my existing account wouldn't work either.
    This has been an ongoing issue with "legacy" users since 2006 at least, and NEEDS TO BE RESOLVED ASAP!!!!
    Wayne M Cole AGCV CSCV, CLVI
    Proprietor
    IHP Legal Video Service
    Infinity Heart Producfions,
    Contributing Editor,
    Government Video Magazine

    There you go MISSING THE POINT AGAIN!! My Registered products WILL NOT FOLLOW MY UID IF I CHANGE IT, NEVER DID SINCE 2007.  Saying the will is false information which I alerted Adobe to back in 2007 and is a problem y'all never fixed.    
    Just a little over a week ago, I got I got LightRoom 4 ug from a LR 3 I had purchased in March.  Signing on with my legacy UID (non-email) allowed me ADD those registrations to my account, as I had cor CS 5.5, 4, 3, etc. etc.  Now, isn't it odd that the very day after I posted here, when I sign in to my account it shows NO REGISTERED PRODUCTS!!!  If I look at my order history, it has orders from Adobe store from last weeks CS6 MC purchase back to 2007 when I started buying from Adobe directly after the local brick and mortar resellers disappeared. 
    So I try to register CS6 MC, it tells me the SN is already in use.  I try open a PDF document and it tells me I have to first register and agree to the Acrobat Pro X license before I open a doc - and it was an UPGRADE FROM CS 5.5 MC.  I try to run CS 5.5 apps and they tell me I have to purchase a license since the trial period is over - HUH!  Until I posted here it was working FINE.  I go back to my acccount (non-email UID sign in) and check my profile - Lo and behold SOMEONE (not me) has changed the UID to an email address instead of the non-email UID I sign in with AND DELETED ALL MY PRODUCT REGISTRATIONS!
    Naturally, your software does not let me put it back to the same UID I use to sign on with so THE LINK TO ALL MY REGISTERED PRODUCTS IS GONE, I CANNOT REGISTER NEW ONES (which was no problem just a day or two before posting here) WHICH PROVES WHAT I WAS TOLD IN 2007 - WHEN YOU CHANGE UID'S YOUR LEGACY REGISTRATIONS WILL BE LOST!!!
    So, in summary you (Adobe at least, and I suspect you personally) went in and messed with my legacy account, deleting all my registrations, as I was told in 2007 would happen and advised to keep the old UID if I did not want to blow away those registrations, when I explicity did NOT want to make such changes.  And, should I need an SN for some upgrade offer or to install an update for an older product that I did not transition to the new facility, I have to HOPE that I had I can find the original purchase invoice and that there is a copy of the SN / Reg card attached to it.
    THANKS A PANT LOAD!!

Maybe you are looking for