Native drag in winXP. Strange behavior...

I have a perfectly functional AIR app for desktop from flash CS6 MAC with native air drag in it. When I install it on WINxp the script blocks right before my native air drag function. The rest of the script before it executes fine...???  Any idea guys. Thanks

I have a perfectly functional AIR app for desktop from flash CS6 MAC with native air drag in it. When I install it on WINxp the script blocks right before my native air drag function. The rest of the script before it executes fine...???  Any idea guys. Thanks

Similar Messages

  • Strange Behavior from iTunes 7.2

    Running itunes - 7.2Recently had my itunes library “corrupted” or non functional.
    Spent a long, long time rebuilding the library (see below) and noticed some strange behavior that has me terrified that itunes is corrupted and I am going to loose all the hard work, etc..
    1. I have about 100 GB of music in various formats (apple protected/itunes store, mp3 (128 to 320), apple lossless, wav) and when I tried to rebuild the library by clicking on add to library it only added about 65 GB of the 100 GB. I had to go through and figure out what was missing and manually choose the specific folder when I added it.
    Major pain and very time consuming.
    So it is not adding songs correctly, but through way too much effort able to work around this.
    2. About ½ of the itunes store tunes I purchased are no longer apple protected format. Somehow they were converted to mp3 at 192kbs. Some of the songs play fine others are now not as crisp and make a poping sound or skip. How could this happen? Are these files corrupted? Will I loose them?
    3. At the top center of itunes the information bar, where the read out is for what song is playing and how much time has elapsed in the song, is not working. When I click on a song it starts playing but the elapsed time bar and counter never move, and when the next song starts playing the information never changes. It is stuck on what ever song you initiate play with by clicking on it and the information stays frozen.
    4. itunes randomly stops playing at the end of a song….If listening to an album it is usually after three or four songs and when listening to a play list it is usually after one song.
    I am afraid itunes is corrupted and will not function correctly and I am going to loose the hard work I put in trying to recover from the last crash.
    Any suggestions??
    Can’t wait for time machine. I hope it works as advertised. If so I could just go back in time to the last time iTunes worked correctly and go from there.

    First of all I hope that you have a good b/u of all your tunes - either on ext HD or on DVD. Don't forget to b/u the iTunes Library and .xml files at the same time.
    Have you tried to reinstall iTunes? Drag the app to the trash and remove the iTunesX.pkg from HD>Library>Receipts>iTunesX.pkg. Using a fresh .dmg of iTunes 7.2 reinstall.
    Have you repaired permissions with Disk Utility?
    Is your Quicktime up to date? At least version v7.1.5.
    MJ

  • Native Drag and Drop not working in CC

    Hello,
    I've been having trouble with migrating extensions from CS5.5 to CC (in flex for now). Especially with Native Drag events.
    For example NativeDragEnter event is not triggering when dragging something from swatch list to extension. When I drag something from the document itself, event gets triggered (but not every time, which is strange).
    Other elements of the extension are working.
    Everything is working fine in CS 5.5.
    I am using Extension Builder 2.1, building with flex sdk 3.4. Max target version of Creative Suite has been set to CS 7, so the extension should work in CC.
    Is anyone having similar problems? Some feedback would be appreciated.

    Have you found any solution since the time you posted? I am currently facing a similar problem with dragging with HTML/URL flavors in flex and dropping in InDesign?

  • Strange behavior in deleting images - works on second but not first try

    In Library mode, Grid view, right after importing, after I select several images with an "x" to be deleted, when I bring up the "Delete Rejected Photos" dialog, I find this strange behavior. I get the message that there are not photos marked for deletion. I then invoke the dialog again, and my photos that were marked show up, with the choices of deleting from disk or removing from the catalog. What am I likely doing wrong? I'm on WinXP Pro with LR 2.2. Thanks!
    Dilip

    Dilip,
    I too have seen this behaviour in all versions of LR. Even when deleting a single image in the develop module. If LR is writting the preview you can't delete the file until the preview is rendered. I think it's more to do with the OS not allowing the deletion of a file being accessed than a LR bug as such.
    Gordon

  • Strange behavior in a table with dropTarget and delete action

    I am having a strange behavior in a table with drag and drop and action component to delete row.
    Steps:
    Drag the first row to the table and appears in the destination table (works well)
    Select and change the value by 156, appears an error (works fine)
    delete the row, the row disappears (works well)
    Add the first row again and the value is 156 instead of 158 (why ????)
    I guess the error is the deletion that is not correct, but do not know how?
    Can anyone help?
    I add the source code if you see where I'm wrong
    Java class:
    +public class BeanExample {+
    private ArrayList<RowExample> starttValues;
    private ArrayList<RowExample> endValues;
    +public BeanExample() {+
    super();
    +}+
    +public void setStarttValues(ArrayList<BeanExample.RowExample> starttValues) {+
    this.starttValues = starttValues;
    +}+
    +public ArrayList<BeanExample.RowExample> getStarttValues() {+
    +if (starttValues == null) {+
    starttValues = new ArrayList<BeanExample.RowExample>();
    starttValues.add(new RowExample("1", new Number(158)));
    starttValues.add(new RowExample("21", new Number(12565464)));
    +}+
    return starttValues;
    +}+
    +public void setEndValues(ArrayList<BeanExample.RowExample> endValues) {+
    this.endValues = endValues;
    +}+
    +public ArrayList<BeanExample.RowExample> getEndValues() {+
    +if (endValues == null) {+
    endValues = new ArrayList<BeanExample.RowExample>();
    +}+
    return endValues;
    +}+
    +public void validatorExample(FacesContext facesContext, UIComponent uIComponent, Object object) {+
    Number number = (Number)object;
    +if ((number.longValue() % 2) == 0) {+
    FacesMessage message = new FacesMessage(FacesMessage.SEVERITY_ERROR, "ES PAR", "ES PAR");
    throw new ValidatorException(message);
    +}+
    +}+
    +public DnDAction handleDrop(DropEvent dropEvent) {+
    Transferable transferable = dropEvent.getTransferable();
    DataFlavor<RowKeySet> rowKeySetFlavor = DataFlavor.getDataFlavor(RowKeySet.class, "loteDrag");
    RowKeySet rowKeySet = transferable.getData(rowKeySetFlavor);
    +if (rowKeySet != null) {+
    CollectionModel dragModel = transferable.getData(CollectionModel.class);
    +if (dragModel != null) {+
    Object currKey = rowKeySet.iterator().next();
    dragModel.setRowKey(currKey);
    RowExample table = (RowExample)dragModel.getRowData();
    getEndValues().add(new RowExample(table.getId(), table.getValue()));
    return dropEvent.getProposedAction();
    +}+
    +}+
    return DnDAction.NONE;
    +}+
    +public void borrarFila(ActionEvent actionEvent) {+
    endValues.remove(0);            RequestContext.getCurrentInstance().addPartialTarget(FacesContext.getCurrentInstance().getViewRoot().findComponent("pc1:t2"));
    +}+
    +public static class RowExample {+
    private String id;
    private Number value;
    +public RowExample(String id, Number value) {+
    super();
    this.id = id;
    this.value = value;
    +}+
    +public void setId(String id) {+
    this.id = id;
    +}+
    +public String getId() {+
    return id;
    +}+
    +public void setValue(Number value) {+
    this.value = value;
    +}+
    +public Number getValue() {+
    return value;
    +}+
    +}+
    +}+JSF
    +<?xml version='1.0' encoding='windows-1252'?>+
    +<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"+
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    +<jsp:directive.page contentType="text/html;charset=windows-1252"/>+
    +<f:view>+
    +<af:document id="d1">+
    +<af:form id="f1">+
    +<af:panelGroupLayout id="pgl1">+
    +<af:table value="#{beanExample.starttValues}" var="row"+
    rowBandingInterval="0" id="t1" rowSelection="single"
    displayRow="selected" contentDelivery="immediate">
    +<af:column sortable="false" headerText="Id" align="start" id="c2">+
    +<af:outputText value="#{row.id}" id="ot1"/>+
    +</af:column>+
    +<af:column sortable="false" headerText="Value" align="start" id="c1">+
    +<af:outputText value="#{row.value}" id="ot2"/>+
    +</af:column>+
    +<af:collectionDragSource actions="COPY" modelName="loteDrag"/>+
    +</af:table>+
    +<af:panelCollection id="pc1">+
    +<f:facet name="toolbar" >+
    +<af:toolbar id="dc_t2" >+
    +<af:commandToolbarButton shortDesc="Delete"+
    icon="/imagesDemo/delete_ena.png"
    id="dc_ctb3" immediate="true"
    +actionListener="#{beanExample.borrarFila}"/>+
    +</af:toolbar>+
    +</f:facet>+
    +<af:table value="#{beanExample.endValues}" var="row"+
    +rowBandingInterval="0" id="t2">+
    +<af:column sortable="false" headerText="Id" align="start" id="c3">+
    +<af:outputText value="#{row.id}" id="ot3"/>+
    +</af:column>+
    +<af:column sortable="false" headerText="Value" align="start" id="c4" >+
    +<af:inputText value="#{row.value}" autoSubmit="true" id="it1" validator="#{beanExample.validatorExample}"/>+
    +</af:column>+
    +<af:collectionDropTarget actions="COPY" modelName="loteDrag"+
    +dropListener="#{beanExample.handleDrop}"/>+
    +</af:table>+
    +</af:panelCollection>+
    +</af:panelGroupLayout>+
    +</af:form>+
    +</af:document>+
    +</f:view>+
    +</jsp:root>+

    I think the problem is the validator
    I changed the practical case, I added an InputText to enter new values in the first row.
    +<af:inputText immediate="true" label="new value" id="it2"+
    +valueChangeListener="#{beanExample.newvalue}" autoSubmit="true"/>+
    +public void newvalue (ValueChangeEvent valueChangeEvent) {+
    +String valor = (String)valueChangeEvent.getNewValue();+
    +Number valorNumber=null;+
    +try {+
    +valorNumber = new Number (valor);+
    +} catch (SQLException e) {+
    +}+
    +RowExample example = (RowExample) endValues.get(0);+
    +example.setValue(valorNumber);+
    +example.setId(valorNumber.toString());+
    +RichTable table = (RichTable)FacesContext.getCurrentInstance().getViewRoot().findComponent(id);+
    +RequestContext.getCurrentInstance().addPartialTarget(table);+
    +}+
    Case 1
    I drag the first row to the target table (ok)
    The new row appears (ok)
    Enter the value 77 in the InputText (ok)
    id content and value change (ok)
    Case2
    I drag the first row to the destination table
    The new row appears (ok)
    Change the value of the first row by 80 (ok)
    errors appears (by validator) (ok)
    Enter the value 77 in the InputText (ok)
    the id is changed but the value NO (*KO*)
    I do not understand the behavior
    Edited by: josefuente on 27-oct-2010 16:03

  • Adding custom navigation rules results in strange behavior

    Hello,
    We'd like to add navigation rules to our application. To avoid post-JHeadstart-generation-steps we created an extra faces-config-custom.xml file which contains the navigation rules. When adding this file to the web.xml and run the aplication we encounter strange behavior
    - Errors are shown in duplicate
    - 'Transaction completed' messages are not shown
    Try adding the underneath faces-config-custom.xml to a standard HR demo project and you will get the same behavior.
    (1) What is the reason of this strange behavior?
    (2) How can we add custom navigation rules, without having to do post creation steps?
    Regards Leon
    [faces-config-custom.xml]
    <?xml version="1.0" encoding="windows-1252" ?>
    <!DOCTYPE faces-config PUBLIC
    "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
    "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config xmlns="http://java.sun.com/JSF/Configuration">
    <navigation-rule>
    <from-view-id>*</from-view-id>
    <navigation-case>
    <from-outcome>BezwaarVerzoeken</from-outcome>
    <to-view-id>/pages/inboeken/BezwaarVerzoeken.jspx</to-view-id>
    </navigation-case>
    <navigation-case>
    <from-outcome>LosseOpdrachten</from-outcome>
    <to-view-id>/pages/inboeken/LosseOpdrachten.jspx</to-view-id>
    </navigation-case>
    </navigation-rule>
    </faces-config>
    [Add faces-config-custom.xml to web.xml]
    <context-param>
    <param-name>javax.faces.CONFIG_FILES</param-name>
    <param-value>/WEB-INF/faces-config-custom.xml,...

    Leon,
    When you perform a drag and drop operation, JDeveloper adds the following lines to the faces-config.xml:
    <lifecycle>
    <phase-listener>
    Oracle.adf.controller.faces.lifecycle.ADFPhaselistener
    </phase-listener>
    </lifecycle>
    However, JHeadstart uses its own subclass of ADFPhaselistener, and defines the lifecycle element in JhsCommon-beans.xml. Due to a bug in ADF, ADF does not look for the lifecycle element in other files than faces-config, and adds its own element in faces-config.xml If you remove these lines, everything works fine again.
    To prevent this from happening again, you can move the following entry from JhsCommon-beans.xml to faces-config.xml:
    <lifecycle> <phase-listener>oracle.jheadstart.controller.jsf.lifecycle.JhsADFPhaseListener</phase-listener>
    </lifecycle>
    And then make a custom template for JhsCommon-beans.vm where you remove this entry.
    Steven Davelaar,
    JHeadstart team.

  • Strange behavior of StuffIt-Expander

    Hi there,
    having heard of the "new viri" for Mac OSX I turned over to MacFixIt and similar sites to check what's to do.
    The first advice I read was to "un-check" the "open 'safe' files automatically in Safari" option in the Safari preferences. So I did and all files I was downloading ended unchanged (= un-expanded) in my download-folder. So far, so good.
    Now I wanted to expand one <filename>.dmg.gz with double-clicking it. StuffItExpander started, the the message: "StuffItExpander unexpectedly quits" poped up.
    I couldn't expand my d/l files, none! Even with dragging/dropping the file onto the StuffIt icon I had no results.
    Made some brainstorming and resulted in the one point: The only thing I changed in the last time, was indeed the "un-checking" of the open-option in the Safari preferences.
    So I went to the Safari preferences again and "checked" this option, turning it on.
    And you are right: Now I could expand my d/l files like I always could.
    So, how comes?? Is it only me, where StuffIt shows such a strange behavior? What can I do? Perhaps a re-installation of StuffIt?
    Any help is appreciated.
    AndreasB
    iMac G5 1.8 17"   Mac OS X (10.4.4)   Ext. FireWire Drive, Brother DCP-110C Printer

    Andreas, see if this article helps. A lot of folk were plagued with this wee bug, including me. The linked article solved my problem

  • Strange behavior of GetStringUTFChars in Linux

    Good evening!
    I made an implementation of a native method in C++ for Windows and Linux, in windows it works fine, but in Linux I have a strange behavior of GetStringUTFChars here is the piece code :
    JNIEXPORT jint JNICALL Java_MyNativeMethod
    (JNIEnv *env, jobject obj, jstring IpAddress) {
    const char * ccpIpAddress = env->GetStringUTFChars(IpAddress, 0);
    jsize size = env->GetStringLength(ccpIpAddress);
    trace("IpAddress : %s size: %d", ccpIpAddress, size);
    Absolute normal... but when I pass as parameter a string '192.168.1.11'
    I receive from 'IpAddress : HB&#317;1 size: 0' to 'IpAddress : P9D7D6DwD&#65533;MS\H#M\H : 251'
    I made a little and simple test to print a String to verify if is Linux problem but IT WORKED FINE!
    I've notice that the differences between both programs are that the wrong one has been linked with a C lib, but the #define __cplusplus is OK also, and all the compile process use C++ code...
    This is my compilation line
    g++ -o lib{myLib}.so {myImpl}.cpp lib{C li}.so libstdc++.so -I {JAVA_HOME}/include/ -I {JAVA_HOME}/include/linux/ -shared -static -L{JAVA_HOME}/jre/lib/i386/
    (variables put for clarity) and (I tried with gcc also)
    the libstrd++.so is been used in my simple test link options too.
    I was wondering if there is some -Doption which should be defined that
    functions->GetStringChars(this,str,isCopy); implementation ask for...
    or if the link with a C code is messing the things in a different behavior
    Thanks for the help
    Pedro Ribeiro
    Sao Paulo - Brazil

    JNIEXPORT jint JNICALL Java_MyNativeMethod
    (JNIEnv *env, jobject obj, jstring IpAddress) {
    const char * ccpIpAddress = env->GetStringUTFChars(IpAddress, 0);
    jsize size = env->GetStringLength(ccpIpAddress);
    trace("IpAddress : %s size: %d", ccpIpAddress, size);
    =====================
    You tried to get the string length of C character array.
    I think you can get the length of jstring alone.
    Please advice me if I am wrong

  • Method cellForRowAtIndexPath if (cell == nil) {} condition strange behavior

    This tableView’s are making me crazy. I just tested this behavior on new test project (iPad) with one tableView. I added 30 sections with one row per section and put this line inside if( cell == nil ) {} condition in cellForRowAtIndexPath method:
    NSLog(@”Creating cell %d”,indexPath.section);
    When I launch application I get this in output:
    Creating cell 0
    Creating cell 1
    Creating cell 2
    Creating cell 20
    Creating cell 21
    Only 22 cells are visible on first run. That’s ok, tableView created only cells that are visible. So far so good.
    But when I scroll down to see the rest of the cells (8 other cells) the console only shows me this:
    Creating cell 22
    Why did tableView skipped creating last 7 rows and used them from queue instead? isn’t that kind a strange behavior? Or maybe is this a bug in apple’s tableView? Or maybe I am wrong and don’t quite understand the background of tableView reusing…?
    Any help appriciated, thanks!

    Ok, I find out that this is normal and native behavior for tableView's.

  • Strange behaviors between TextInputSkin and StageTextInputSkin

    Hi All,
    I met a very strange behaviors, and need help with, any idea will be truly appreicated.
    I have a phone field and date field both from TextInput field, I aslo have textfieldskin which is original from TextInputSkin.
    When I apply the TextInputSkin to the TextInput field, the softKeyboard Type can not be modified. I found out that as TextDisplay is not StyleableStageText, the autocorrect, type, etc can not be modified while StageTextInputSkin will work just fine.
    However, when I applied the StageTextInputSkin to my fields, the mouse click event can not be rececived any more...
    My question: How can I change the softkeyboardType and be able to receive mouse click event at same time if my control is from TextInput?
    Kind Regards,

    6 months, and a new cs6 with no improvements on this issue.
    My biggest problem is with an android ICS unit the softkeyboarddeactivated gets called when the keyboard switches and shows the mic speak input keyboard but softkeyboardactivating or activated does not get called when the mic input keyboard is shown.
    Also the scrolling bug is horrible and needs to be fixed.
    and keypresses are needed.
    and being able to layer the native components would be great.
    im sad.

  • Cropping LR4 occasional strange behavior experienced by others?

    The LR4 cropping process has become unstable during use on several occasions.  The LR4 cropping tool seems to get confused.
    During the cropping process, unwanted changes to position and leveling of the cropped area happen upon exiting.  The cropped image one saw immediately before exiting is not what one sees afterwards. The crop has changed on its own.  During the episode, the response to the mouse is not normal.  One may drag the corner only to have it spring back upon release of the button.
    Exiting LR4 and reentering does not cure the behavior.  One must open image in Develop module,  restore crop defaults, exit, and reenter batch tool to restore normal behavior.  I am not certain as to the exact order of these steps but essentially normalcy was restored during their implementation.
    I have notice that this abnormal behavior seems more likely to occur during sessions when I am making use of the "Previous" button.
    As far as I know, the behavior is not reproducible.  It occurs during some of those late night sessions and I have not documented it well but will do so if we don’t have a cure by next time it occurs.
    My configuration:  
    Lightroom version: 4.2 [850741]
    Operating system: Windows 7 Ultimate Edition
    Version: 6.1 [7601]
    Application architecture: x64
    System architecture: x64
    Physical processor count: 8
    Processor speed: 3.3 GHz
    Built-in memory: 16364.3 MB
    Real memory available to Lightroom: 16364.3 MB
    Real memory used by Lightroom: 1066.6 MB (6.5%)
    Virtual memory used by Lightroom: 1090.4 MB
    Memory cache size: 0.0 MB
    System DPI setting: 96 DPI
    Desktop composition enabled: Yes
    Displays: 1) 1920x1080

    Replacing the Lr preference file may help. The preference file can go "funny" and then causes all kinds of strange behavior of Lr.
    Replacing the preference file takes about 10 minutes, and you don`t need to re-install Lr.
    BTW: Un-installing and re-installing Lr does not replace the preference file.
    See here for instructions o  how to replace the preference file: http://lightroomers.com/replacing-the-lightroom-preference-file/745/
    See  here where to find the preference file: http://helpx.adobe.com/lightroom/kb/preference-file-locations-lightroom-4.html

  • Strange behavior from a TextInput

    Hello there. I have a strange behavior from a TextInput
    component and i want a little help. I have created a movieclip
    within. Inside is just a simple textinput component. When i'm
    dragging the clip from the library to the stage a test the movie
    everything is ok. When i', attaching the movie dynamicaly to the
    stage and try to click within the textinput i' m not getting the
    bar cursor, an d i cannot write within the textinput !!! Why this
    happends? Any ideas?
    I'm working in Flash 8.

    I think it could be the version problem. It is working in
    Flash 8.

  • Login problems...  strange behavior seen

    Hello. I'm seeing a strange behavior with regard to invalid database
    logins and JDO. I have a few test cases. First I try to pass an invalid
    username to JDO. This test case fails and throws a
    FatalInternalException, which is what I expect. Then, I pass a valid
    username and I am able to connect and retrieve an entry from the database.
    Next, if I run the same invalid username test case again, it throws a
    DataStoreException. I am wondering if the username and password from the
    valid test case is getting saved somehow and is being used by the second
    run of the invalid username test case. Any ideas?
    Thanks,
    Mike

    Patrick Linskey wrote:
    Can you post the exceptions that you're seeing?
    -PatrickPatrick, below are the two exceptions that I'm getting. The first one is
    the one that I receive the first time that I run the test case. The
    second one is the exception that I receive when I run the same test case
    again after a test case that has valid login information. The strange
    thing is that I would expect the top-level exception for both of them to
    be the same. Thanks for the help...
    -Mike
    com.solarmetric.kodo.runtime.FatalInternalException:
    java.sql.SQLException: Logon failed. Msg 18456, Severity 14, State 1,
    Login failed for user 'ingres'., Server , Procedure , Line 0
    [code=0;state=null]
    NestedThrowables:
    com.solarmetric.kodo.runtime.FatalDataStoreException:
    java.sql.SQLException: Logon failed. Msg 18456, Severity 14, State 1,
    Login failed for user 'ingres'., Server , Procedure , Line 0
    [code=0;state=null]
    NestedThrowables:
    java.sql.SQLException: Logon failed. Msg 18456, Severity 14, State 1,
    Login failed for user 'ingres'., Server , Procedure , Line 0
         at
    com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerFactory.createSQLExecutionManager(SQLExecutionManagerFactory.java:72)
         at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.newSQLExecutionManager(JDBCStoreManager.java:763)
         at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.getSQLExecutionManager(JDBCStoreManager.java:673)
         at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.initialize(JDBCStoreManager.java:343)
         at
    com.solarmetric.kodo.runtime.StateManagerImpl.loadInitialState(StateManagerImpl.java:215)
         at
    com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectByIdFilter(PersistenceManagerImpl.java:1310)
         at
    com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectById(PersistenceManagerImpl.java:1211)
         at
    com.ca.cleverpath.framework.service.metadata.persistence.driver.jdoex.PSHelper.get(PSHelper.java:155)
         at
    com.ca.cleverpath.framework.service.metadata.persistence.driver.jdoex.JDOPublicationDAO.doGet(JDOPublicationDAO.java:611)
         at
    com.ca.cleverpath.framework.service.metadata.persistence.driver.jdoex.JDOPublicationDAO.get(JDOPublicationDAO.java:339)
         at
    com.ca.cleverpath.framework.service.metadata.persistence.driver.jdoex.test.TestPublicationDAO.test_get_invalidPassword(TestPublicationDAO.java:285)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at junit.framework.TestCase.runTest(TestCase.java:154)
         at junit.framework.TestCase.runBare(TestCase.java:127)
         at junit.framework.TestResult$1.protect(TestResult.java:106)
         at junit.framework.TestResult.runProtected(TestResult.java:124)
         at junit.framework.TestResult.run(TestResult.java:109)
         at junit.framework.TestCase.run(TestCase.java:118)
         at
    com.ca.cleverpath.test.junit.extensions.CleverPathTestRunner.runTestSuite(Unknown
    Source)
         at
    com.ca.cleverpath.test.junit.extensions.CleverPathTestRunner.main(Unknown
    Source)
    NestedThrowablesStackTrace:
    com.solarmetric.kodo.runtime.FatalDataStoreException:
    java.sql.SQLException: Logon failed. Msg 18456, Severity 14, State 1,
    Login failed for user 'ingres'., Server , Procedure , Line 0
    [code=0;state=null]
    NestedThrowables:
    java.sql.SQLException: Logon failed. Msg 18456, Severity 14, State 1,
    Login failed for user 'ingres'., Server , Procedure , Line 0
         at
    com.solarmetric.kodo.impl.jdbc.runtime.SQLExceptions.throwFatal(SQLExceptions.java:58)
         at
    com.solarmetric.kodo.impl.jdbc.schema.DBDictionaryFactory.getDictionary(DBDictionaryFactory.java:212)
         at
    com.solarmetric.kodo.impl.jdbc.JDBCSimpleConfiguration.getDictionary(JDBCSimpleConfiguration.java:370)
         at
    com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerFactory.createSQLExecutionManager(SQLExecutionManagerFactory.java:65)
         at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.newSQLExecutionManager(JDBCStoreManager.java:763)
         at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.getSQLExecutionManager(JDBCStoreManager.java:673)
         at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.initialize(JDBCStoreManager.java:343)
         at
    com.solarmetric.kodo.runtime.StateManagerImpl.loadInitialState(StateManagerImpl.java:215)
         at
    com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectByIdFilter(PersistenceManagerImpl.java:1310)
         at
    com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectById(PersistenceManagerImpl.java:1211)
         at
    com.ca.cleverpath.framework.service.metadata.persistence.driver.jdoex.PSHelper.get(PSHelper.java:155)
         at
    com.ca.cleverpath.framework.service.metadata.persistence.driver.jdoex.JDOPublicationDAO.doGet(JDOPublicationDAO.java:611)
         at
    com.ca.cleverpath.framework.service.metadata.persistence.driver.jdoex.JDOPublicationDAO.get(JDOPublicationDAO.java:339)
         at
    com.ca.cleverpath.framework.service.metadata.persistence.driver.jdoex.test.TestPublicationDAO.test_get_invalidPassword(TestPublicationDAO.java:285)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at junit.framework.TestCase.runTest(TestCase.java:154)
         at junit.framework.TestCase.runBare(TestCase.java:127)
         at junit.framework.TestResult$1.protect(TestResult.java:106)
         at junit.framework.TestResult.runProtected(TestResult.java:124)
         at junit.framework.TestResult.run(TestResult.java:109)
         at junit.framework.TestCase.run(TestCase.java:118)
         at
    com.ca.cleverpath.test.junit.extensions.CleverPathTestRunner.runTestSuite(Unknown
    Source)
         at
    com.ca.cleverpath.test.junit.extensions.CleverPathTestRunner.main(Unknown
    Source)
    NestedThrowablesStackTrace:
    java.sql.SQLException: Logon failed. Msg 18456, Severity 14, State 1,
    Login failed for user 'ingres'., Server , Procedure , Line 0
         at net.sourceforge.jtds.jdbc.Tds.<init>(Unknown Source)
         at net.sourceforge.jtds.jdbc.TdsConnection.allocateTds(Unknown Source)
         at net.sourceforge.jtds.jdbc.TdsConnection.<init>(Unknown Source)
         at net.sourceforge.jtds.jdbc.Driver.connect(Unknown Source)
         at
    com.solarmetric.datasource.DataSourceImpl$AbstractPool.createConnection(DataSourceImpl.java:943)
         at
    com.solarmetric.datasource.DataSourceImpl$AbstractPool.getConnection(DataSourceImpl.java:569)
         at
    com.solarmetric.datasource.DataSourceImpl.getConnection(DataSourceImpl.java:332)
         at
    com.solarmetric.datasource.DataSourceImpl.getConnection(DataSourceImpl.java:325)
         at
    com.solarmetric.kodo.impl.jdbc.runtime.DataSourceConnector.getConnection(DataSourceConnector.java:63)
         at
    com.solarmetric.kodo.impl.jdbc.schema.DBDictionaryFactory.getDictionary(DBDictionaryFactory.java:179)
         at
    com.solarmetric.kodo.impl.jdbc.JDBCSimpleConfiguration.getDictionary(JDBCSimpleConfiguration.java:370)
         at
    com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerFactory.createSQLExecutionManager(SQLExecutionManagerFactory.java:65)
         at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.newSQLExecutionManager(JDBCStoreManager.java:763)
         at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.getSQLExecutionManager(JDBCStoreManager.java:673)
         at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.initialize(JDBCStoreManager.java:343)
         at
    com.solarmetric.kodo.runtime.StateManagerImpl.loadInitialState(StateManagerImpl.java:215)
         at
    com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectByIdFilter(PersistenceManagerImpl.java:1310)
         at
    com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectById(PersistenceManagerImpl.java:1211)
         at
    com.ca.cleverpath.framework.service.metadata.persistence.driver.jdoex.PSHelper.get(PSHelper.java:155)
         at
    com.ca.cleverpath.framework.service.metadata.persistence.driver.jdoex.JDOPublicationDAO.doGet(JDOPublicationDAO.java:611)
         at
    com.ca.cleverpath.framework.service.metadata.persistence.driver.jdoex.JDOPublicationDAO.get(JDOPublicationDAO.java:339)
         at
    com.ca.cleverpath.framework.service.metadata.persistence.driver.jdoex.test.TestPublicationDAO.test_get_invalidPassword(TestPublicationDAO.java:285)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at junit.framework.TestCase.runTest(TestCase.java:154)
         at junit.framework.TestCase.runBare(TestCase.java:127)
         at junit.framework.TestResult$1.protect(TestResult.java:106)
         at junit.framework.TestResult.runProtected(TestResult.java:124)
         at junit.framework.TestResult.run(TestResult.java:109)
         at junit.framework.TestCase.run(TestCase.java:118)
         at
    com.ca.cleverpath.test.junit.extensions.CleverPathTestRunner.runTestSuite(Unknown
    Source)
         at
    com.ca.cleverpath.test.junit.extensions.CleverPathTestRunner.main(Unknown
    Source)
    com.solarmetric.kodo.runtime.DataStoreException:
    com.solarmetric.kodo.impl.jdbc.sql.SQLExceptionWrapper:
    [SQL=SELECT t0.LAT, t0.CreationDate, t0.Date, t0.Description,
    t0.DescriptionID, t0.InstancePersistenceSource, t0.LastChangeAuthor,
    t0.LastChangeDate, t0.MetadataType, t0.Note, t0.NoteID, t0.OriginalAuthor,
    t0.ResourceBundleName, t0.Status, t0.UserAccessKey,
    t0.UserServiceReference FROM Publication t0 WHERE t0.InstanceID =
    'PublicationNote1']
    [PRE=SELECT t0.LAT, t0.CreationDate, t0.Date, t0.Description,
    t0.DescriptionID, t0.InstancePersistenceSource, t0.LastChangeAuthor,
    t0.LastChangeDate, t0.MetadataType, t0.Note, t0.NoteID, t0.OriginalAuthor,
    t0.ResourceBundleName, t0.Status, t0.UserAccessKey,
    t0.UserServiceReference FROM Publication t0 WHERE t0.InstanceID = ?]
    Logon failed. Msg 18456, Severity 14, State 1, Login failed for user
    'ingres'., Server , Procedure , Line 0 [code=0;state=null]
    NestedThrowables:
    com.solarmetric.kodo.impl.jdbc.sql.SQLExceptionWrapper:
    [SQL=SELECT t0.LAT, t0.CreationDate, t0.Date, t0.Description,
    t0.DescriptionID, t0.InstancePersistenceSource, t0.LastChangeAuthor,
    t0.LastChangeDate, t0.MetadataType, t0.Note, t0.NoteID, t0.OriginalAuthor,
    t0.ResourceBundleName, t0.Status, t0.UserAccessKey,
    t0.UserServiceReference FROM Publication t0 WHERE t0.InstanceID =
    'PublicationNote1']
    [PRE=SELECT t0.LAT, t0.CreationDate, t0.Date, t0.Description,
    t0.DescriptionID, t0.InstancePersistenceSource, t0.LastChangeAuthor,
    t0.LastChangeDate, t0.MetadataType, t0.Note, t0.NoteID, t0.OriginalAuthor,
    t0.ResourceBundleName, t0.Status, t0.UserAccessKey,
    t0.UserServiceReference FROM Publication t0 WHERE t0.InstanceID = ?]
    Logon failed. Msg 18456, Severity 14, State 1, Login failed for user
    'ingres'., Server , Procedure , Line 0
         at
    com.solarmetric.kodo.impl.jdbc.runtime.SQLExceptions.throwDataStore(SQLExceptions.java:64)
         at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.initialize(JDBCStoreManager.java:352)
         at
    com.solarmetric.kodo.runtime.StateManagerImpl.loadInitialState(StateManagerImpl.java:215)
         at
    com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectByIdFilter(PersistenceManagerImpl.java:1310)
         at
    com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectById(PersistenceManagerImpl.java:1211)
         at
    com.ca.cleverpath.framework.service.metadata.persistence.driver.jdoex.PSHelper.get(PSHelper.java:155)
         at
    com.ca.cleverpath.framework.service.metadata.persistence.driver.jdoex.JDOPublicationDAO.doGet(JDOPublicationDAO.java:611)
         at
    com.ca.cleverpath.framework.service.metadata.persistence.driver.jdoex.JDOPublicationDAO.get(JDOPublicationDAO.java:366)
         at
    com.ca.cleverpath.framework.service.metadata.persistence.driver.jdoex.test.TestPublicationDAO.test_getPriority_invalidPassword(TestPublicationDAO.java:479)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at junit.framework.TestCase.runTest(TestCase.java:154)
         at junit.framework.TestCase.runBare(TestCase.java:127)
         at junit.framework.TestResult$1.protect(TestResult.java:106)
         at junit.framework.TestResult.runProtected(TestResult.java:124)
         at junit.framework.TestResult.run(TestResult.java:109)
         at junit.framework.TestCase.run(TestCase.java:118)
         at
    com.ca.cleverpath.test.junit.extensions.CleverPathTestRunner.runTestSuite(Unknown
    Source)
         at
    com.ca.cleverpath.test.junit.extensions.CleverPathTestRunner.main(Unknown
    Source)
    NestedThrowablesStackTrace:
    java.sql.SQLException: Logon failed. Msg 18456, Severity 14, State 1,
    Login failed for user 'ingres'., Server , Procedure , Line 0
         at net.sourceforge.jtds.jdbc.Tds.<init>(Unknown Source)
         at net.sourceforge.jtds.jdbc.TdsConnection.allocateTds(Unknown Source)
         at net.sourceforge.jtds.jdbc.TdsConnection.<init>(Unknown Source)
         at net.sourceforge.jtds.jdbc.Driver.connect(Unknown Source)
         at
    com.solarmetric.datasource.DataSourceImpl$AbstractPool.createConnection(DataSourceImpl.java:943)
         at
    com.solarmetric.datasource.DataSourceImpl$AbstractPool.getConnection(DataSourceImpl.java:569)
         at
    com.solarmetric.datasource.DataSourceImpl.getConnection(DataSourceImpl.java:332)
         at
    com.solarmetric.datasource.DataSourceImpl.getConnection(DataSourceImpl.java:325)
         at
    com.solarmetric.kodo.impl.jdbc.runtime.DataSourceConnector.getConnection(DataSourceConnector.java:63)
         at
    com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerImpl.getConnectionFromFactory(SQLExecutionManagerImpl.java:185)
         at
    com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerImpl.getConnection(SQLExecutionManagerImpl.java:147)
         at
    com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerImpl.prepareStatementInternal(SQLExecutionManagerImpl.java:727)
         at
    com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerImpl.executePreparedQueryInternal(SQLExecutionManagerImpl.java:691)
         at
    com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerImpl.executeQueryInternal(SQLExecutionManagerImpl.java:600)
         at
    com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerImpl.executeQuery(SQLExecutionManagerImpl.java:355)
         at
    com.solarmetric.kodo.impl.jdbc.SQLExecutionManagerImpl.executeQuery(SQLExecutionManagerImpl.java:339)
         at
    com.solarmetric.kodo.impl.jdbc.ormapping.ClassMapping.loadByPK(ClassMapping.java:1001)
         at
    com.solarmetric.kodo.impl.jdbc.runtime.JDBCStoreManager.initialize(JDBCStoreManager.java:348)
         at
    com.solarmetric.kodo.runtime.StateManagerImpl.loadInitialState(StateManagerImpl.java:215)
         at
    com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectByIdFilter(PersistenceManagerImpl.java:1310)
         at
    com.solarmetric.kodo.runtime.PersistenceManagerImpl.getObjectById(PersistenceManagerImpl.java:1211)
         at
    com.ca.cleverpath.framework.service.metadata.persistence.driver.jdoex.PSHelper.get(PSHelper.java:155)
         at
    com.ca.cleverpath.framework.service.metadata.persistence.driver.jdoex.JDOPublicationDAO.doGet(JDOPublicationDAO.java:611)
         at
    com.ca.cleverpath.framework.service.metadata.persistence.driver.jdoex.JDOPublicationDAO.get(JDOPublicationDAO.java:366)
         at
    com.ca.cleverpath.framework.service.metadata.persistence.driver.jdoex.test.TestPublicationDAO.test_getPriority_invalidPassword(TestPublicationDAO.java:479)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at
    sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at
    sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at junit.framework.TestCase.runTest(TestCase.java:154)
         at junit.framework.TestCase.runBare(TestCase.java:127)
         at junit.framework.TestResult$1.protect(TestResult.java:106)
         at junit.framework.TestResult.runProtected(TestResult.java:124)
         at junit.framework.TestResult.run(TestResult.java:109)
         at junit.framework.TestCase.run(TestCase.java:118)
         at
    com.ca.cleverpath.test.junit.extensions.CleverPathTestRunner.runTestSuite(Unknown
    Source)
         at
    com.ca.cleverpath.test.junit.extensions.CleverPathTestRunner.main(Unknown
    Source)

  • Strange behavior when "trying" to burn a disk.

    At least I think this is strange behavior, following the instructions in the help viewer, topic "Backing up your music to a CD or DVD." One thing for sure, it's not burning a disc and it ain't telling me why.
    I select the playlist and click "Burn Disc"
    Requests a blank disc. I insert one.
    Message "checking media"
    after about a minute, the disc ejects
    Message "checking media" displays another 30 seconds
    No other messages displayed.
    What the ??? Shouldn't it at least display an error message??
    Super-Drive information..... from System Profiler
    MATSHITA DVD-R UJ-845C:
    Firmware Revision: DPP9
    Interconnect: ATAPI
    Burn Support: Yes (Apple Shipped/Supported)
    Cache: 2048 KB
    Reads DVD: Yes
    CD-Write: -R, -RW
    DVD-Write: -R, -RW, +R, +RW
    Burn Underrun Protection CD: Yes
    Burn Underrun Protection DVD: Yes
    Write Strategies: CD-TAO, CD-SAO, DVD-DAO
    Media: No
    Using Sony DVD+R discs.
    Mac Mini   Mac OS X (10.4.8)  

    Whoops, sorry, this was while burning a playlist.
    I've also tried some Pleomax CD disks (Samsung), with no luck. I've tried burning directly from iTunes, and from Toast 7.
    Of the types I've tried, the Sony DVD's have been the best for me. Haven't tried many types though. Maybe I can get disks one at a time until I find a brand my burner likes.
    Still, isn't it strange that there is NO error message? It just quits?
    Mac Mini   Mac OS X (10.4.8)  

  • Strange Behavior with gMSA in Server 2012 R2

    Greetings,
    I have been doing some testing with gMSA Accounts in a Server 2012 R2 environment (two separate environments, actually), and I have noticed something very strange that occurred in both environments, which does not appear to be occurring in one of our customer's
    self-managed environments.
    We created a Group Managed Service Account using the following article:
    http://blogs.technet.com/b/askpfeplat/archive/2012/12/17/windows-server-2012-group-managed-service-accounts.aspx
    Everything went smoothly, and the account installs/tests successfully on both of the hosts that we are testing on. I am able to set my services to run under the account, and most of them appear to work fine. I am having some issues with a few of my services,
    and I believe that the strange behavior I am seeing may have something to do with this - described below: 
    As soon as I set the service's Log On Account (via the Log On Tab under the Service's Properties), the entirety of the "Log On" tab changes to "greyed out," and I am unable to change the Log On account back via the GUI (Screenshot
    attached).
    I found that I am able to successfully change the account via Command Line using sc.exe, but the Log On tab remains greyed out! So far, I have found nothing to remedy this, but confirmed that it happens for any service I set to use the gMSA as the Logon
    Account, and that it happens in 2 separate test environments, but not in a Customer's production environment - very strange.
    All servers in this environment are running Server 2012 R2, and domain Functional Level is currently Server 2012.
    I have been unable to find any information online about this behavior, so I am hoping someone has seen this before, and can explain why this is happening.
    Nick

    VIvian,
    Yes, we used the Install-AdServiceAccount gMSA command on each host using the gMSA account, and then ran Test-AdServiceAccount gMSA, which returned "True."
    However, one thing I noticed is that if I run Test-ADServiceAccount gMSA as a Local Administrator, it fails with the following:
    PS C:\Users\Administrator> Test-AdServiceAccount gMSA$
    Test-AdServiceAccount : The server has rejected the client credentials.
    At line:1 char:1
    + Test-AdServiceAccount gMSA$
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : SecurityError: (:) [Test-ADServiceAccount], AuthenticationException
        + FullyQualifiedErrorId : ActiveDirectoryCmdlet:System.Security.Authentication.AuthenticationException,Microsoft.A
       ctiveDirectory.Management.Commands.TestADServiceAccount
    If I run Test-ADServiceAccount gMSA as Domain Administrator, it returns true:
    PS C:\Users\Administrator.<domainname>> Test-AdServiceAccount gMSA$
    True
    Is this normal?
    Overall, I think the issue I am running into is at the Application Level, and not a problem with the gMSA, as it appears to be working. (Can Start/Stop services without any issues). I will be investigating my issue further with 3rd-party vendors, unless
    you think there is something wrong with my gMSA accounts based on the information I have provided.
    Nick

Maybe you are looking for

  • Is it yet possible to upgrade the internal hard drive on a 13" Macbook Pro with Retina Display?

    Hi all, I have a MacBook Pro (Retina, 13-inch, Mid 2014) with a 2.6 GHz Intel Core i5 processor, a 8 GB 1600 MHz DDR3 memory and a 128GB built in flash storage drive. I do a lot of video and sound work requiring a lot of space however 128GB is just n

  • How to catch URL parameter from Portal URL in Web Dynpro iView

    Hi All, I have a web dynpro application running as a portal iView successfully. Now the client wants to make it internationalized with 7 languages. Currently they access the portal - and via role assignment they get to the portal tab with the wd iVie

  • R.I.P. FreeHand

    The depth of my hatred for Adobe tonight is nearly boundless. Like most longtime FreeHand users, I greeted Adobe's purchase of FreeHand with a sense of foreboding and dismay. I hoped that Adobe would continue to support and develop this extraordinary

  • Reporting Builder in E-Business Suite R12

    Hi, I want to know if can is use an other report builder other than Oracle Report to generate reports in E-business suite R12? For exemple, can i use Jasper Report. Regards, Saad

  • Urgent:  EDI Aperak

    Hi, We have an urgent requirement where we have to provide acknowledgement in APERAK format. Entire scenario could be explained as follows: This is an EDI-IDoc scenario where source is EDIFACT D96A and the target is ORDERS05 IDoc.This scenario is wor