Crystal Reports ClickOnce install fails after upgrade to run time 13.0.2

I realize this is very similar to two other posts but the ClickOnce failure was not addresses in the two threads I found.
Visual Studio 2010 V 10.0.40219.1 SP1Rel
.NET Framework V 4.0.30319 SP1Rel
Crystal Reports for .NET Framework 4.0 BuildVersion=13.0.2.469.Cortez_CR4VS (from ProductId.txt in the download folder)
Application was original developed using CR BuildVersion=13.0.1.220.Cortez_CR4VS
So since I upgraded this week, if a user clicks the Launch link on the deployment web page the application loads the appl;ication update and starts. Does not even check with Crystal Reports but everything seems to work.
The new version of the Crystal Reports runtime tries to install for users I have that enjoy clicking the run button. The install fails and points at a log file, the key part of which is
Installing using command 'C:\WINDOWS\system32\msiexec.exe' and parameters ' -I "C:\DOCUME1\clyle\LOCALS1\Temp\VSDC8.tmp\Crystal Reports for .NET Framework 4.0\CRRuntime_32bit_13_0_2.msi" -q '
Process exited with code 1603
Status of package 'SAP Crystal Reports Runtime Engine for .NET Framework 4.0' after install is 'InstallFailed'
Uninstalling the previous version manually alleviates the failure as does manually running the msi on the target machine. But that kind of defeats the purpose of ClickOnce. Looking at product.xml that accompanies the runtime download I see it tests for the 13.0.2 version and bypasses the install if it finds it but it does not check for earlier versions.
Another thread I read indicated changing the switches in the install command would work but I am not clear on how to do that from ClickOnce, I cannot locate where the command is being given. Is there a way to get it to test for previous versions and delete them or force an overwrite using the ClickOnce?

Ludek,
Did this issue above every get resolved? 
Here is what I have:
ClickOnce, Windows form app that uses Crystal.  I upgraded to VS 2012 and Crystal right along
with it. 
I only want the 32bit version to install, even on 64bit
machines.  I have modified the
product.xml file to allow for this.  Also
have some machines with version 13.0.0 and 13.0.1 of the Crystal ClickOnce msi
file.  Would like to get everyone up to
13.0.6.
I am doing ALL this testing on clean VMWare installs.
Windows 7 x64 and Windows XP x86.
I force the 32bit install in the product file. (This I believe
is working correctly) And I do a version check, this is where the problem comes
in… Below, from the product file:
  <InstallChecks>
    <RegistryCheck
Property="CRRuntime32Version" Key="HKLM\SOFTWARE\SAP
BusinessObjects\Crystal Reports for .NET Framework 4.0\Crystal Reports"
Value="CRRuntime32Version" />
  </InstallChecks>
Note to path in the registry. This path which is installed
by CR is different for Win7 vs WinXP, not sure why?  In Win7 the path is: 
HKLM\SOFTWARE\Wow6432Node\SAP
BusinessObjects\Crystal Reports for .NET Framework 4.0\Crystal Reports
Also if you have version 13.0.0 installed there is no entry
in the registry for the version number at all!
The log file also show that it can’t find the version if 13.0.0 is
installed.
Admittedly the error log shows that it is somehow finding
the version if it is 13.0.1 (nothing for 13.0.0)? But even though I have it set
to skip the 13.0.6 install if the version check is 13.0.1 or higher Crystal
attempts to install anyway, and it fails in the process, halting the entire
ClickOnce install.
In summary.  I need to
be able to check the version currently installed and update it to 13.0.6.  This fails and seems to be a bug?   Hopefully there is a work around. 
Thanks,
Jim
The product.xml file I have modified is below for review.
<?xml version="1.0" encoding="utf-8" ?>
<Product
  xmlns="http://schemas.microsoft.com/developer/2004/01/bootstrapper"
  ProductCode="SAP.CrystalReports14.NET.2.0"
>
  <!-- Defines list of files to be copied on build -->
  <PackageFiles>
    <PackageFile Name="CRRuntime_32bit_13_0_6.msi"
      HomeSite="http://downloads.businessobjects.com/akdlm/crnetruntime/clickonce/CRRuntime_32bit_13_0_6.msi"
      PublicKey="30818902818100cbc8f3d8b4bc4db86f150116f4ad7f2fd2d91d29ae6f752c2aa6489cbda10670a0b97b8840d03dd8d082bfb985882b1278504bdd15a1f2a00b629cd70bf26d94b3933a9647a12c819ca67acd1c32ac942e1b824aad4fd8e8a989c45cf4a13770fe2b233f598ea06b62081174be6b7701f347612c126d42c2f9b759ff00164eb30203010001"/>
  </PackageFiles>
  <RelatedProducts>
    <DependsOnProduct Code="Microsoft.Net.Framework.2.0" />
    <DependsOnProduct Code="Microsoft.Data.Access.Components.2.8" />
  </RelatedProducts>
  <InstallChecks>
    <RegistryCheck Property="CRRuntime32Version" Key="HKLM\SOFTWARE\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Crystal Reports" Value="CRRuntime32Version" />
  </InstallChecks>
  <Commands Reboot="Defer">
    <Command PackageFile="CRRuntime_32bit_13_0_6.msi"
      Arguments=''
      EstimatedInstalledBytes="50000000"
      EstimatedInstallSeconds="220">
      <!-- These checks determine whether the package is to be installed -->
      <InstallConditions>
        <!-- Comment out the below BypassIf entry if you want to install the 32bit version CRRuntime redist in the target machine -->     
        <!-- ByPass if the Processor is not x86 -->
        <!-- <BypassIf Property="ProcessorArchitecture" Compare="ValueNotEqualTo" Value="Intel"/> -->
        <!-- ByPass if the installed version is same or higher -->
        <BypassIf Property="CRRuntime32Version" Compare="VersionGreaterThanOrEqualTo"  Value="13.0.1"/>
        <!-- Block install if user does not have admin privileges -->
        <FailIf Property="AdminUser" Compare="ValueEqualTo" Value="false" String="AdminRequired"/>
        <!-- Block install on Win95 -->
        <FailIf Property="Version9x" Compare="VersionLessThan" Value="4.10" String="InvalidPlatformWin9x"/>
        <!-- Block install on NT 4 or less -->
        <FailIf Property="VersionNT" Compare="VersionLessThan" Value="5.00" String="InvalidPlatformWinNT"/>
      </InstallConditions>
      <ExitCodes>
        <ExitCode Value="0" Result="Success"/>
        <ExitCode Value="1641" Result="SuccessReboot"/>
        <ExitCode Value="3010" Result="SuccessReboot"/>
        <DefaultExitCode Result="Fail" FormatMessageFromSystem="true" String="GeneralFailure" />
      </ExitCodes>
    </Command>
  </Commands>
</Product>

Similar Messages

  • Installing JDK after upgrading JRE several times - WIndows XP

    I am not certain if this is the correct forum for posting JDK installation questions (for Windows XP)? If not, please direct me to the correct one.
    I would like to install the JDK for the very first time but I noticed that I have at least two versions of the JRE and a few updates for both. Should I uninstall both JRE's and their updates before installing the latest JDK OR do I merely overinstall?
    I have the following:
    J2SE Runtime 5.0 Update 10
    J2SE Runtime 5.0 Update 11
    Java 2 Runtime, SE v1.4.2_01
    Java 6 Update 20
    Java SE Runtime 6 Update 1
    Not sure what the difference between J2SE and Java 6 and whether or not I need both to run applications.
    Thanks in advance for clearing up my confusion.

    user13707424 wrote:
    I am not certain if this is the correct forum for posting JDK installation questions (for Windows XP)? If not, please direct me to the correct one.Well you want to install a JDK thus you must have development purposes. So yes, this would be the correct forum. You do eventually want to do programming, right?
    >
    I would like to install the JDK for the very first time but I noticed that I have at least two versions of the JRE and a few updates for both. Should I uninstall both JRE's and their updates before installing the latest JDK OR do I merely overinstall?For the sake of making your life as easy as possible I would uninstall what is already there and install a clean JDK + JRE (the latest version of course). You only need one instance of Java to rule them all.
    Not sure what the difference between J2SE and Java 6 and whether or not I need both to run applications.
    Well I would make your next step finding that out. I suggest you start your adventures here: http://download.oracle.com/javase/tutorial/

  • Database login failed after upgrade to VS 2008

    I am having trouble with one of my reports after upgrading a project from VS 2005 to VS 2008. All reports work fine except for one. The one that doesn't work has a subreport and I am assuming that the subreport is the cause of the problem.
    My configuration is  - using Crystal Reports Professional XI  (11.5.8.826)
    The web server has Crystal reports server install, but I know very little about it. When I installed it, I had so much trouble configuring it, I don't know what it is that I finally got to work on the server. I think I ended up installing one of the runtimes a while back to get it working.
    When I upgraded my project, I simply opened the project in VS 2008, set the target as .net 3.5, built it and everything works except for this one report.
    Can someone please tell me what I need to install, or change on the server to make this work properly?
    Is there a way that I can determine how my reports are being served up? As I said, I'm not very familiar with the CR server and I had a lot of trouble with it when I did the initial configuration.
    Thanks

    Thanks for the reply. I got the upgrade complete, but I am still getting the database logon error.  I am using Visual Studio 2008, C#, Crystal Reports 2008 (dll version 12.0.2), Sql Server 2000. All of my reports work fine except for this one. The difference in this one is that it has a subreport. The report and subreport are using stored procedures. I have tried using the sa account to login to them. They login to two different databases on the same database server.
    Here is the code that I am using to login to the database.
    public enum ReportDatabase{MGA, Brokers, Intranet, TimeClock };
            public void SetDBLogonForTables(Tables tables, ReportDatabase database)
                string _userid = string.Empty;
                string _password = string.Empty;
                switch (database)
                    case ReportDatabase.MGA:
                        _userid = "abc";
                        _password = "123";
                        break;
                    case ReportDatabase.Brokers:
                        _userid = "abc";
                        _password = "123";
                        break;
                    case ReportDatabase.Intranet:
                        _userid = "abc";
                        _password = "123";
                        break;
                    case ReportDatabase.TimeClock:
                        _userid = "abc";
                        _password = "123";
                        break;
                ConnectionInfo _connection = new ConnectionInfo();
                _connection.ServerName = "123.123.123.212";
                _connection.DatabaseName = database.ToString();
                _connection.UserID = _userid;
                _connection.Password = _password;
                foreach (Table table in tables)
                    TableLogOnInfo _logoninfo = table.LogOnInfo;
                    _logoninfo.ConnectionInfo = _connection;
                    table.ApplyLogOnInfo(_logoninfo);

  • Vpn fails after upgrade to 10.8.5

    After upgrading from SL to Mountain Lion the Apple vpn client connections fail. They were connecting fine before the upgrade. They also work fine from other computers (Windows) on my network to the same addresses, so the remote side is functioning, and there have been no changes on the remote side.
    The error message is "The L2TP-VPN server did not respond. Try reconnecting. If the problem continues, verify your settings and contact your Administrator." The Console messages indicate the server does in fact respond, but there is a problem with Phase 1 IKE. Message lines are pasted here with the IP addresses masked (the addresses are correct though).
    10/12/13 5:33:39.340 PM configd[18]: SCNC: start, triggered by SystemUIServer, type L2TP, status 0
    10/12/13 5:33:39.360 PM pppd[2104]: pppd 2.4.2 (Apple version 596.15.2) started by admin, uid 503
    10/12/13 5:33:39.363 PM pppd[2104]: L2TP connecting to server '999.999.999.999' (999.999.999.999)...
    10/12/13 5:33:39.363 PM pppd[2104]: IPSec connection started
    10/12/13 5:33:39.379 PM racoon[2105]: Connecting.
    10/12/13 5:33:39.380 PM racoon[2105]: IPSec Phase1 started (Initiated by me).
    10/12/13 5:33:39.380 PM racoon[2105]: IKE Packet: transmit success. (Initiator, Main-Mode message 1).
    10/12/13 5:33:39.465 PM racoon[2105]: IKE Packet: receive success. (Initiator, Main-Mode message 2).
    10/12/13 5:33:39.469 PM racoon[2105]: IKE Packet: transmit success. (Initiator, Main-Mode message 3).
    10/12/13 5:33:39.583 PM racoon[2105]: IKE Packet: receive success. (Initiator, Main-Mode message 4).
    10/12/13 5:33:39.588 PM racoon[2105]: IKE Packet: transmit success. (Initiator, Main-Mode message 5).
    10/12/13 5:33:42.671 PM racoon[2105]: IKE Packet: transmit success. (Phase1 Retransmit).
    10/12/13 5:33:45.754 PM racoon[2105]: IKE Packet: transmit success. (Phase1 Retransmit).
    10/12/13 5:33:45.760 PM racoon[2105]: Received retransmitted packet from 999.999.999.999[500].
    10/12/13 5:33:48.839 PM racoon[2105]: IKE Packet: transmit success. (Phase1 Retransmit).
    10/12/13 5:33:57.752 PM racoon[2105]: Received retransmitted packet from 999.999.999.999[500].
    10/12/13 5:34:00.832 PM racoon[2105]: IKE Packet: transmit success. (Phase1 Retransmit).
    10/12/13 5:34:09.465 PM pppd[2104]: IPSec connection failed
    10/12/13 5:34:09.466 PM racoon[2105]: IPSec disconnecting from server 999.999.999.999
    About the configuration -- the apple client is using preshared key with ppp user/password auth. The user/password and psk all work in other clients, have re-entered them many times, have deleted then recreated the connection in Network Preferences. Have restarted the racoon service, and even rebooted several times.
    Googled around and found a number of reports of similar problem after upgrade to Lion or Mountain Lion, haven't found anything that works so far. Have disabled my antivirus, have rebooted network router, have changed access control in Keychain Access to allow access from all applications. Can't change the remote side configuration because of other users, need to find a way to solve this on my client side. I do have backups that would allow me to roll back to Snow Leopard, but does anyone have any other solution, would like to have a better alternative. Appreciate any/all suggestions, thanks.

    Thanks again, good point. I wasn't doing this on first few tries but eventually realized I needed to clean up Keychain Access because of all the duplicates I created (orphans) so yes I did delete connection and corresponding keychains then recreate then change access. Along the way I noticed that every time I later applied a change to an existing connection setting I had to return to Keychain Access and change the access control settings again, they revert back to 'confirm' from 'all access' at each change. So even if it worked for me I realize it isn't a permanent fix.
    And iCloud is 'inactive', so I guess Back to My Mac is disabled too, I don't know that app but assume so since it needs iCloud. Is there a better way to be sure it can't interfere? I do think I'm getting some phase 1 traffic out and back to the remote server evidenced by the console log, so seems the ports are not being blocked.

  • Crystal Reports ActiveX Designer Failed to open document

    Yesterday I created a report in Visual Studio 2008 with about 20 subreports, each subreport containing a single aggregate query (i.e count or sum). I then saved the report file. Hours later when I attempted to reopen the report in Visual Studio I recived the message box "Crystal Reports ActiveX Designer Failed to open document". The report file was completely unusable - it could not be opened for editting.
    Today I repeated the process twice (once ith multiple subreports and once with all aggregate queries combined in a single subreport), only to have the new report files become unusable with the same error message. I am completely shocked at this behaviour from Crystal Reports. I have now spent 10+ hours with no usable report. I realy need a fix for this ASAP!!! Any suggestions would be greatlhy appreciated.

    Hi Jeff,
    Just wanted to confirm you were on SP1.
    I've found that these types of error are usually due to corrupt system files or sometimes even Anti-virus software denying access. If there is no error it's not CR corrupting the file.
    Look in your AV logs to see if it's logging anything.
    Another possibility is with MS pushing out patches they can also cause problems. I've see them change permissions on our dependencies that can cause problems.
    Sorry I can't be specific but without seeing your report or any details you'll have to determine at which step in the report it stops working.
    Can you save any reports now?
    Steps to debug, create a new report with no subreports and save it. Then re-open, if that works then start adding one subreport and then save/open. It may be something related to either the subreports or the number of subreports.
    You could try doing a repair install of VS and SP1.
    Was this working at one time or is this something new, do you have other reports that are similar that have problems?
    You need to debug the report and find out what is causing it to be corrupted. Try adding the 20th subreport and then delete it also.
    Don

  • Crystal Reports Dev8 install

    I am trying to get Crystal Reports Dev8 installed along with Seagate Info Desktop 7.5. I have tried installing Crystal first and then Info Desktop first. After installing the two, when an .rpt file is double clicked, Crystal will open but displays a blank gray page. The .rpt file can be dragged into the window and will open or File->Open will also open it. I have tried all sorts of extension association and reassociation with no luck. Does anyone out there know how to remedy this?

    Hmm. You're working with products that have been out of support for over 10 years... so answers will probably be quite hard to come by. My suggestion; download the latest fix pack or service pack for CR 8 and see if that helps. The downloads are here:
    https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/bobj_download/main.htm
    BTW., I'm not even sure if Seagate Info Desktop 7.5 was able to run version 8 reports, but that you can test easily enough.
    Ludek

  • Unit test fails after upgrading to Kodo 4.0.0 from 4.0.0-EA4

    I have a group of 6 unit tests failing after upgrading to the new Kodo
    4.0.0 (with BEA) from Kodo-4.0.0-EA4 (with Solarmetric). I'm getting
    exceptions like the one at the bottom of this email. It seems to be an
    interaction with the PostgreSQL driver, though I can't be sure. I
    haven't changed my JDO configuration or the related classes in months
    since I've been focusing on using the objects that have already been
    defined. The .jdo, .jdoquery, and .java code are below the exception,
    just in case there's something wrong in there. Does anyone have advice
    as to how I might debug this?
    Thanks,
    Mark
    Testsuite: edu.ucsc.whisper.test.integration.UserManagerQueryIntegrationTest
    Tests run: 15, Failures: 0, Errors: 6, Time elapsed: 23.308 sec
    Testcase:
    testGetAllUsersWithFirstName(edu.ucsc.whisper.test.integration.UserManagerQueryIntegrationTest):
    Caused an ERROR
    The column index is out of range: 2, number of columns: 1.
    <2|false|4.0.0> kodo.jdo.DataStoreException: The column index is out of
    range: 2, number of columns: 1.
    at
    kodo.jdbc.sql.DBDictionary.newStoreException(DBDictionary.java:4092)
    at kodo.jdbc.sql.SQLExceptions.getStore(SQLExceptions.java:82)
    at kodo.jdbc.sql.SQLExceptions.getStore(SQLExceptions.java:66)
    at kodo.jdbc.sql.SQLExceptions.getStore(SQLExceptions.java:46)
    at
    kodo.jdbc.kernel.SelectResultObjectProvider.handleCheckedException(SelectResultObjectProvider.java:176)
    at
    kodo.kernel.QueryImpl$PackingResultObjectProvider.handleCheckedException(QueryImpl.java:2460)
    at
    com.solarmetric.rop.EagerResultList.<init>(EagerResultList.java:32)
    at kodo.kernel.QueryImpl.toResult(QueryImpl.java:1445)
    at kodo.kernel.QueryImpl.execute(QueryImpl.java:1136)
    at kodo.kernel.QueryImpl.execute(QueryImpl.java:901)
    at kodo.kernel.QueryImpl.execute(QueryImpl.java:865)
    at kodo.kernel.DelegatingQuery.execute(DelegatingQuery.java:787)
    at kodo.jdo.QueryImpl.executeWithArray(QueryImpl.java:210)
    at kodo.jdo.QueryImpl.execute(QueryImpl.java:137)
    at
    edu.ucsc.whisper.core.dao.JdoUserDao.findAllUsersWithFirstName(JdoUserDao.java:232)
    at
    edu.ucsc.whisper.core.manager.DefaultUserManager.getAllUsersWithFirstName(DefaultUserManager.java:252)
    NestedThrowablesStackTrace:
    org.postgresql.util.PSQLException: The column index is out of range: 2,
    number of columns: 1.
    at
    org.postgresql.core.v3.SimpleParameterList.bind(SimpleParameterList.java:57)
    at
    org.postgresql.core.v3.SimpleParameterList.setLiteralParameter(SimpleParameterList.java:101)
    at
    org.postgresql.jdbc2.AbstractJdbc2Statement.bindLiteral(AbstractJdbc2Statement.java:2085)
    at
    org.postgresql.jdbc2.AbstractJdbc2Statement.setInt(AbstractJdbc2Statement.java:1133)
    at
    com.solarmetric.jdbc.DelegatingPreparedStatement.setInt(DelegatingPreparedStatement.java:390)
    at
    com.solarmetric.jdbc.PoolConnection$PoolPreparedStatement.setInt(PoolConnection.java:440)
    at
    com.solarmetric.jdbc.DelegatingPreparedStatement.setInt(DelegatingPreparedStatement.java:390)
    at
    com.solarmetric.jdbc.DelegatingPreparedStatement.setInt(DelegatingPreparedStatement.java:390)
    at
    com.solarmetric.jdbc.DelegatingPreparedStatement.setInt(DelegatingPreparedStatement.java:390)
    at
    com.solarmetric.jdbc.LoggingConnectionDecorator$LoggingConnection$LoggingPreparedStatement.setInt(LoggingConnectionDecorator.java:1
    257)
    at
    com.solarmetric.jdbc.DelegatingPreparedStatement.setInt(DelegatingPreparedStatement.java:390)
    at
    com.solarmetric.jdbc.DelegatingPreparedStatement.setInt(DelegatingPreparedStatement.java:390)
    at kodo.jdbc.sql.DBDictionary.setInt(DBDictionary.java:980)
    at kodo.jdbc.sql.DBDictionary.setUnknown(DBDictionary.java:1299)
    at kodo.jdbc.sql.SQLBuffer.setParameters(SQLBuffer.java:638)
    at kodo.jdbc.sql.SQLBuffer.prepareStatement(SQLBuffer.java:539)
    at kodo.jdbc.sql.SQLBuffer.prepareStatement(SQLBuffer.java:512)
    at kodo.jdbc.sql.SelectImpl.execute(SelectImpl.java:332)
    at kodo.jdbc.sql.SelectImpl.execute(SelectImpl.java:301)
    at kodo.jdbc.sql.Union$UnionSelect.execute(Union.java:642)
    at kodo.jdbc.sql.Union.execute(Union.java:326)
    at kodo.jdbc.sql.Union.execute(Union.java:313)
    at
    kodo.jdbc.kernel.SelectResultObjectProvider.open(SelectResultObjectProvider.java:98)
    at
    kodo.kernel.QueryImpl$PackingResultObjectProvider.open(QueryImpl.java:2405)
    at
    com.solarmetric.rop.EagerResultList.<init>(EagerResultList.java:22)
    at kodo.kernel.QueryImpl.toResult(QueryImpl.java:1445)
    at kodo.kernel.QueryImpl.execute(QueryImpl.java:1136)
    at kodo.kernel.QueryImpl.execute(QueryImpl.java:901)
    at kodo.kernel.QueryImpl.execute(QueryImpl.java:865)
    at kodo.kernel.DelegatingQuery.execute(DelegatingQuery.java:787)
    at kodo.jdo.QueryImpl.executeWithArray(QueryImpl.java:210)
    at kodo.jdo.QueryImpl.execute(QueryImpl.java:137)
    at
    edu.ucsc.whisper.core.dao.JdoUserDao.findAllUsersWithFirstName(JdoUserDao.java:232)
    --- DefaultUser.java -------------------------------------------------
    public class DefaultUser
    implements User
    /** The account username. */
    private String username;
    /** The account password. */
    private String password;
    /** A flag indicating whether or not the account is enabled. */
    private boolean enabled;
    /** The authorities granted to this account. */
    private Set<Authority> authorities;
    /** Information about the user, including their name and text that
    describes them. */
    private UserInfo userInfo;
    /** The set of organizations where this user works. */
    private Set<Organization> organizations;
    --- DefaultUser.jdo --------------------------------------------------
    <?xml version="1.0"?>
    <!DOCTYPE jdo PUBLIC
    "-//Sun Microsystems, Inc.//DTD Java Data Objects Metadata 2.0//EN"
    "http://java.sun.com/dtd/jdo_2_0.dtd">
    <jdo>
    <package name="edu.ucsc.whisper.core">
    <sequence name="user_id_seq"
    factory-class="native(Sequence=user_id_seq)"/>
    <class name="DefaultUser" detachable="true"
    table="whisper_user" identity-type="datastore">
    <datastore-identity sequence="user_id_seq" column="userId"/>
    <field name="username">
    <column name="username" length="80" jdbc-type="VARCHAR" />
    </field>
    <field name="password">
    <column name="password" length="40" jdbc-type="CHAR" />
    </field>
    <field name="enabled">
    <column name="enabled" />
    </field>
    <field name="userInfo" persistence-modifier="persistent"
    default-fetch-group="true" dependent="true">
    <extension vendor-name="jpox"
    key="implementation-classes"
    value="edu.ucsc.whisper.core.DefaultUserInfo" />
    <extension vendor-name="kodo"
    key="type"
    value="edu.ucsc.whisper.core.DefaultUserInfo" />
    </field>
    <field name="authorities" persistence-modifier="persistent"
    table="user_authorities"
    default-fetch-group="true">
    <collection
    element-type="edu.ucsc.whisper.core.DefaultAuthority" />
    <join column="userId" delete-action="cascade"/>
    <element column="authorityId" delete-action="cascade"/>
    </field>
    <field name="organizations" persistence-modifier="persistent"
    table="user_organizations" mapped-by="user"
    default-fetch-group="true" dependent="true">
    <collection
    element-type="edu.ucsc.whisper.core.DefaultOrganization"
    dependent-element="true"/>
    <join column="userId"/>
    <!--<element column="organizationId"/>-->
    </field>
    </class>
    </package>
    </jdo>
    --- DefaultUser.jdoquery ---------------------------------------------
    <?xml version="1.0"?>
    <!DOCTYPE jdo PUBLIC
    "-//Sun Microsystems, Inc.//DTD Java Data Objects Metadata 2.0//EN"
    "http://java.sun.com/dtd/jdo_2_0.dtd">
    <jdo>
    <package name="edu.ucsc.whisper.core">
    <class name="DefaultUser">
    <query name="UserByUsername"
    language="javax.jdo.query.JDOQL"><![CDATA[
    SELECT UNIQUE FROM edu.ucsc.whisper.core.DefaultUser
    WHERE username==searchName
    PARAMETERS java.lang.String searchName
    ]]></query>
    <query name="DisabledUsers"
    language="javax.jdo.query.JDOQL"><![CDATA[
    SELECT FROM edu.ucsc.whisper.core.DefaultUser WHERE
    enabled==false
    ]]></query>
    <query name="EnabledUsers"
    language="javax.jdo.query.JDOQL"><![CDATA[
    SELECT FROM edu.ucsc.whisper.core.DefaultUser WHERE
    enabled==true
    ]]></query>
    <query name="CountUsers"
    language="javax.jdo.query.JDOQL"><![CDATA[
    SELECT count( this ) FROM edu.ucsc.whisper.core.DefaultUser
    ]]></query>
    </class>
    </package>
    </jdo>

    I'm sorry, I have no idea. I suggest sending a test case that
    reproduces the problem to support.

  • How to install iPhoto after upgrading to yosemite?

    how to install iPhoto after upgrading to yosemite?

    Download it from the App Store as Matt suggested.  You may have to move the current version to the Trash Bin (don't delete yet), go to the App Store and look for iPhoto 9.6 under purchases.  It will be free.
    What iPhoto version did you have prior to the Yosemite upgrade?  If it was iPhoto 7 (08) or earlier you'll also have to download and run the iPhoto Library Upgrader 1.1 on your library before opening it with iPhoto 9.6.

  • I can't find some installed apps after upgraded to iOS6.0.1 by sync from iTunes

    I can't find some of installed apps after upgraded to iOS6.0.1 by sync fom iTunes. when i try to download them from app store again, it shows OPEN button only but not INSTALL button. is there anyone got this problem too?
    I use iPhone 4s.

    thanks for ur reply, i tried restart my phone, the most used apps back now. anyway, thank u!
    sberman wrote:
    If you know where the app is (in a folder, for example), go to that folder and find the app there.
    Maybe you tried holding the app down in the search screen.  I didn't say clearly you have to go to the app eherever it is, but not in the search screen.

  • HostXYZ.cacheserver - Crystal Reports Cache Server: Failed to start/stop

    Hi,
    We are  unable to  open any of the BO Crystal Reports through our 'Clarity PPM Web Application'.When we logged on to the BO CMC portal in the production environment, In the 'Servers' section, we could see the 'HostXYZ.cacheserver in 'Stopped' state.When we are trying to restart that server, it results in an error "HostXYZ.cacheserver - Crystal Reports Cache Server: Failed to start/stop".Could you please help me how to proceed further?Please let me know, if you need any other information.
    Thanks,
    Sandeep

    WHich version of BO do you use? Go into the CMC navigate to Servers and check the Metrics section of your Central management server. There should be a version number like x.y.z.w there. Can you please post it here?
    Regards,
    Stratos

  • Anybody know why superdrives fail after upgrading os

    anybody know why superdrives fail after upgrading os

    Upgrading the OS often also triggers issues with PRAM.  If the PRAM battery is over 4 years old, then the Superdrive can fail.    If it is under 4 years old, zapping it can fix some issues like these.

  • After upgrade to mavericks: time machine keeps asking for my back up disk and won't open unless i plug in the disk. any solutions?

    after upgrade to mavericks: time machine keeps asking for my back up disk and won't open unless i plug in the disk. any solutions?
    before the upgrade, i could open time machine without the need for having the back up disk plugged in.

    Ok. I got it to work, sort of....
    As I mentioned before I tried the "disk password" and the "Time capsule Password" options to see if I can start the back up again or start a new backup. Neither worked. So I tried the firmware down grade, but like you said that did not work. I then decided to try the "Account password" option and I have never used this option before becasue it states that if there is data on the drive it would not be acessable after creating an account. Since I wiped out the disk that was nno problem. When I created the new account and choose the drive it asked for the user name and password. I entered the info for the new account I just created(FYI this has nothing to do with your login username and password), bingo! It worked!
    Now I have two partitions on the TC disk. The old one and now the new account. I am guessing this is to be used if I have multiple computers, which I don't.
    I any case, I am going to wipe out everything again and try again to do a backup the way I had it before.

  • Installing LabVIEW DSC 8.6 Run Time on Windows XP Embedded flash memory

    I'm trying to install LabVIEW DSC 8.6 Run Time on an embedded PC running Windows XP Embedded. This has a small local disk (c), so I would like to install DSC Run Time on a secondary flash memory drive (d). The installer tells me that I don't have enough free space on drive c, but I cannot browse to select drive d. What do I need to do to get this installed?
    Thanks,
    Josh

    The DSC module can't easily be installed to external flash memory. You'll want to move any extra data onto the flash drive to free up space on the internal memory for installing the DSC module. 
    Mark E.
    National Instruments
    Schedule a Free 1-Hour online LabVIEW Tutorial with an NI Applications Engineer

  • "Load report failed" after upgrading to Crystal Report for VS 2010

    I switched to Visual Studio 2010 few months ago. Today, I needed to update my Crystal Report reports, so I installed the Crystal Report for Visual Studio 2010 on my local server. I updated my reports and it works fine on my local server.
    On my remote server, I installed the Crystal Report runtime engine for Framework 4.0 (note that my project use the framework 3.5) and published my project. But now I got the following error when I want to create a report "Load report failed". I double-checked the path of my report and its permissions (note that it was working before the update).
    Am I missing a step ?
    Thanks for your help.
    Edited by: David1111_ on Mar 1, 2011 6:08 PM
    Edited by: David1111_ on Mar 1, 2011 6:09 PM

    Googling 'FILE LOCKED WITH ONLY READERS' I came up with the following:
    http://forum.sysinternals.com/topic21378.html
    So, no, that does not appear to be the issue.
    However my assertion - given that the correct dlls are loading - is still that either the report is not there (do you see it loaded in Process Monitor?) or the process has no access to either the actual rpt or the temp files that the print engine creates. Those really are the only reasons for report load errors.
    This being a web app, try a simple win app - as a test. All you need is the viewer and CrystalreportViewer1.ReportSource = <path to report> (use a saved data report). Compile, throw the exe on the server. Run. What happens there?
    - Ludek

  • Some reports do not work after upgraded to Crystal Report 2008

    Hi All,
    After upgraed from Crystal Report XI to Crystal Report 2008, some reports work fine. others not. All of the not-working reports have the same problem: Database connection failed.
    And I can even not be able to create a brand new report. The problem looks like following:
        1. Created a new ASP.NET solution in Visual Studio 2008. The page file is default.aspx
        2. Created an empty Crystal Report file: CrystalReportTEST.rpt
        3. Asign CrystalReportTEST.rpt to default.aspx
        4. Run default.aspx. It works fine
        5. Just connect to database without place any field to the report
        6. Run default.aspx again. It does not work. It shows blank screen with the message "Database logon failed." on the top-left corner.
    Regards,
    Triple

    Hi Amit,
    I have tested many times again for creating new report in new solution. It looks like that, the preview in VS2008 always work fine, but when runing the application, sometimes it works sometimes does not work. I have not still found the role. Following step shows my testing process:
    1. Start Visual Studio 2008
    2. Go to menu "File->New->Web Site..."
    3. In dialogbox "New Web Site"
              a. Highlight "ASP.NET Crystal Reports Web Site"
              b. Select location "File System"
              c. Select language "Visual C#"
              d. Select "E:\JL\CrystalReportsWebSite1"
              e. Click button "OK"
    4. It appears dialogbox "Crystal Reports Gallery"
              a. Select "Using the Report Wizard" in portion of "Create a New Crystal Report Document"
              b. Select "Standard" in portion of "Choose an Expert"
              c. Click button "OK"
    5. It appears dialogbox "Standard Report Creation Wizard"
              a. Click button "Cancel"
    6. It is back to page edit view of "CrystalReport1.rpt"
    7. Click button "Main Report Preview". It shows the preview with blank page
    8. Click button "Main Report". It came back to the edit view
    9. Go to menu "Crystal Reports -> Database -> Database Expert...", dialogbox "Database Expert" appears. Select table u201Cactivity_cdu201D as showing in following screen shot:
    10. Click button u201COKu201D. It returns to the edit view without any changes
    11. Place some fields into the report, then click button "Main Report Preview". It shows the preview with data
    12. Run application by pressing key F5 or key combinition Ctrl+F5, it shows up database connection import screen
    13. Close the browser and back to file Default.aspx, change u201CEnableDatabaseLogonPromptu201D to u201DFalseu201D and run the application again, it shows following message "Database logon failed."
    Regards,
    Triple

Maybe you are looking for

  • SOA Suite 10g and SOA Suite 11g? what are the major changes in these two?

    Hi Experts, I am keen in knowing about Soa Suite 11g. SOA Suite 10g and SOA Suite 11g, BPEL changes? what are the major changes in these two product/tool wise? Is now OSB is part of Soa Suite 11g? it would be helpful for us to know what are the major

  • Creating service orders in R/3 from CRM

    Hi Experts I am working on an scenario in the Interaction Center WinClient where complaints can be registered concerning iobjects. For now, we have made the design using activities, where the objective is to simple register complaints. However we wou

  • Converting Planned Order to Purchase Requisition

    Is their configuration that can automatically convert planned order to purchase requisition based on information like planned delivery time, etc.?  Or, does the conversion of planned order have to be done via MD15 either manually or by batch job?

  • How to create a custom theme for discussions similar to jive?

    I have worked in Jive earlier and saw that there was greater flexibility in the way you can work with themes. Oracle has extended it and looks most of the features are removed. In Jive, I was able to create a new theme and was able to change the look

  • Why is my ipod touch battery drain out so fast

    My ipod touch is 4g 8gb and I had it for two years, it is also ios 6.1.6 . I bought my ipod in 2013 and it was working great, but later on in the second year it wasn't. Every time it was fully charge and I take it out of the charger in one second or