Kodo.util.*Identity not working in 3.3.2?

Hi, I have been trying to use one of the kodo identity classes for
application identity:
<class name="Person"
identity-type="application"
objectid-class="kodo.util.LongIdentity"
unfortunately the enhancer fails on a missing constructor??
[jdoc] kodo.util.FatalUserException: The objectid-class specified
by type "class kodo.Person" does not have public a no-args constructor.
2nd related question: I developed my own LongIdentity that has the missing
constructor and was planning to use it for most of my object model. on
some occasions, kodo seems to get confused about using the same
object-id-class for more than 1 persistent class:
<class name="Person"
identity-type="application"
objectid-class="kodo.AddressId" <!-- similar to
kodo.util.LongIdentity, used as well by persistent class Address -->
trying to load by id a Person:
Person person = (Person) ((KodoPersistenceManager)
pm).getObjectById(Person.class, ""+2000); // select
6750 TRACE [main] kodo.jdbc.SQL - <t 31737213, conn 19287723> [0 ms]
executing prepstmnt 26665270 SELECT t0.CITY, t0.STREET FROM ADDRESS t0
WHERE t0.ID = ? [params=(long) 2000] [reused=0]
kodo.util.ObjectNotFoundException: The instance "2000 [kodo.AddressId]"
does not exist in the data store.[2000 [kodo.AddressId]]
     at
kodo.runtime.PersistenceManagerImpl.getObjectById(PersistenceManagerImpl.java:2090)
     at
kodo.runtime.PersistenceManagerImpl.getObjectById(PersistenceManagerImpl.java:2005)
     at
kodo.runtime.PersistenceManagerImpl.getObjectById(PersistenceManagerImpl.java:2285)
the problem is that a select on the address table gets executed??
note: if I make a copy/paste of my AddressId and rename it PersonId, then
this works fine.
if all pk are of type long, are we expected to subclass
kodo.util.LongIdentity and add the default constructor for each persistent
class?
thanks for the help,
v.

here you go:
<?xml version="1.0" encoding="UTF-8"?>
<jdo>
     <package name="kodo">
          <class name="Address" identity-type="application">
               <extension vendor-name="kodo" key="jdbc-class-map"
value="base"></extension>
               <extension vendor-name="kodo" key="jdbc-class-map/table"
value="ADDRESS"></extension>
               <extension vendor-name="kodo" key="jdbc-version-ind"
value="none"></extension>
               <extension vendor-name="kodo" key="jdbc-class-ind-name"
value="none"></extension>
               <extension vendor-name="kodo" key="detachable"
value="serialize"></extension>
               <field name="id" primary-key="true">
                    <extension vendor-name="kodo" key="sequence-assigned"
value="true"></extension>
                    <extension vendor-name="kodo" key="jdbc-field-map"
value="value"></extension>
                    <extension vendor-name="kodo" key="jdbc-field-map/column"
value="ID"></extension>
               </field>
               <field name="city">
                    <extension vendor-name="kodo" key="jdbc-field-map"
value="value"></extension>
                    <extension vendor-name="kodo" key="jdbc-field-map/column"
value="CITY"></extension>
               </field>
               <field name="street">
                    <extension vendor-name="kodo" key="jdbc-field-map"
value="value"></extension>
                    <extension vendor-name="kodo" key="jdbc-field-map/column"
value="STREET"></extension>
               </field>
          </class>
          <class name="Person" identity-type="application">
               <extension vendor-name="kodo" key="jdbc-class-map"
value="base"></extension>
               <extension vendor-name="kodo" key="jdbc-class-map/table"
value="PERSON"></extension>
               <extension vendor-name="kodo" key="jdbc-version-ind"
value="none"></extension>
               <extension vendor-name="kodo" key="jdbc-class-ind-name"
value="none"></extension>
               <extension vendor-name="kodo" key="detachable"
value="serialize"></extension>
               <field name="addresses" default-fetch-group="true">
                    <collection element-type="kodo.Address">
                    </collection>
                    <extension vendor-name="kodo" key="jdbc-field-map"
value="one-many"></extension>
                    <extension vendor-name="kodo" key="jdbc-field-map/ref-column.ID"
value="P_ID"></extension>
                    <extension vendor-name="kodo" key="jdbc-field-map/table"
value="ADDRESS"></extension>
               </field>
               <field name="firstname">
                    <extension vendor-name="kodo" key="jdbc-field-map"
value="value"></extension>
                    <extension vendor-name="kodo" key="jdbc-field-map/column"
value="FIRSTNAME"></extension>
               </field>
               <field name="id" primary-key="true">
                    <extension vendor-name="kodo" key="sequence-assigned"
value="true"></extension>
                    <extension vendor-name="kodo" key="jdbc-field-map"
value="value"></extension>
                    <extension vendor-name="kodo" key="jdbc-field-map/column"
value="ID"></extension>
               </field>
               <field name="lastname">
                    <extension vendor-name="kodo" key="jdbc-field-map"
value="value"></extension>
                    <extension vendor-name="kodo" key="jdbc-field-map/column"
value="LASTNAME"></extension>
               </field>
          </class>
     </package>
     <!--
          To use additional vendor extensions, create a vendor-extensions.xml file
that
          contains the additional extensions (in extension tags) and place it in
your
          projects merge dir.
     -->
</jdo>
Patrick Linskey wrote:
Hi Vincent,
Can you post the .jdo file that XDoclet is creating please?
-Patrick
Vincent Sevel wrote:
I tried that but run into another exception:
* @jdo.persistence-capable identity-type="application"
* @jdo.class-vendor-extension vendor-name="kodo" key="jdbc-class-map"
value="base"
* @jdo.class-vendor-extension vendor-name="kodo"
key="jdbc-class-map/table" value="PERSON"
* @jdo.class-vendor-extension vendor-name="kodo" key="jdbc-version-ind"
value="none"
* @jdo.class-vendor-extension vendor-name="kodo"
key="jdbc-class-ind-name" value="none"
* @jdo.class-vendor-extension vendor-name="kodo" key="detachable"
value="serialize"
public class Person implements Serializable {
* @jdo.field primary-key="true"
* @jdo.field-vendor-extension vendor-name="kodo"
key="sequence-assigned" value="true"
* @jdo.field-vendor-extension vendor-name="kodo" key="jdbc-field-map"
value="value"
* @jdo.field-vendor-extension vendor-name="kodo"
key="jdbc-field-map/column" value="ID"
private Long id;
javax.jdo.JDOFatalInternalException
     at kodo.Person.jdoNewObjectIdInstance(Person.java)
     at kodo.util.ApplicationIds.create(ApplicationIds.java:280)
     at
kodo.runtime.PersistenceManagerImpl.makePersistent(PersistenceManagerImpl.java:2424)
     at
kodo.runtime.PersistenceManagerImpl.makePersistent(PersistenceManagerImpl.java:2371)
>>
Person p1 = new Person();
p1.setFirstname("vince");
p1.setLastname("sevel");
Address adr1 = new Address();
adr1.setStreet("1er mai");
adr1.setCity("geneve");
p1.getAddresses().add(adr1);
pm.makePersistent(p1);
I must be missing a flag or property somewhere??
thanks,
v.
Abe White wrote:
When using single field identity in JDO, you don't list an objectid-class
at
>>
all
in your metadata. Just set identity-type to "application".

Similar Messages

  • Fingerprint utility is not working for normal users - Tecra M11

    Hi All,
    I installed windows 7 pro in Tecra M11 laptop and the Toshiba finger print utility is not working for normal users.
    It is working only for domain administrators. The TFPU is not working for, normal domain users, local users, local administrators. If we run the utility it will ask to enter the windows password and once we applied the password then the message saying "entered password is not valid" will prompt even if we are trying to use the utility first time.
    If we try with a domain admin account it will work without any problem. Can somebody help me to trouble shoot this issue?
    Thanks.

    People nowadays experienced that no matter How many times we glide our finger it have no response.In this instance, you might be very afraid of Windows password lost by reason that there is a plenty of important data on your PC.
    Then what should you do? One choose is fix the Fingerprint scanners, but this method will cost a lot of money. The other is use the Windows password function to solve the problem. Certainly, this is a very safer, faster and easier to use method for you.
    According my personal experience, you can try these three ways to re-access to your PC:
    Method 1: Login with the default administrator account
    * Step 1: Start Windows PC
    * Step 2: When you can see the Windows login screen, press ctrl+alt+del keys Twice and it'll show Classic Login box
    * Step 3: Type Administrator as Username and leave the password field blank
    * Step 4: Press the Enter Key and then you can be able to login the default windows administrator account which is it created by default when install windows.
    *Note:* This trick is only work for Windows XP. And when you input the key combination Please don't put the cursor on any account. And if you change the name or password before, you cannot login by this way.
    Method 2: Use the previous password reset disk
    This method describes how to create and use a password reset disk for a computer that is a member of a domain. You can use a Windows password reset disk to gain access to your Microsoft Windows Professional-based computer if you forget your Windows password. Please click here to learn more.
    Method 3: Using Windows Password Unlocker
    Using Windows password remove software is could be the fastest and easiest way for you to reset your Windows password while you didn't create a password reset disk before.
    There are 2 options for you: recover Windows password with a bootable CD/DVD or recover Windows password with a USB flash drive.
    Before starting, a bootable CD/DVD or USB flash drive and a computer with CD drive are required. (Internal CD drive and external CD drive are both OK.
    Option 1: Recover Windows password by burning a bootable CD/DVD
    Option 2: Recover Windows password by burning a USB flash drive
    The whole Windows password recovery process can be divided to 3 big steps:
    * >> Step 1: Burn a USB flash drive to remove lost Windows password
    * >> Step 2: Set your target computer to boot from USB
    * >> Step 3: Recover forgotten Windows password with the burned USB flash drive
    In fact, all you need is a *Windows Password Unlocker www.passwordunlocker.com/windows-password-recovery.html which can help you directly reset your windows xp password, and then you can login your XP without a password required. Of course, there are also some other ways to do it, but this way may be most convenient one.

  • Disk Utility is not working for me.

    I have had a nightmare trying to install a Boot Camp partition on my brand new 27" iMac with 3TB Fusion Drive and running 10.8.4.
    When trying to use Boot Camp Assistant, it would start the partition, then not finish.  I quit BCA, tried repairing both the partition and the disk, that didn't help either.  So I went into Disk Utility to create a new partition with no file system on it, assuming I could just use Boot Camp Assistant to format it when the partition was created.  It would start, but not finish.  I tried Repairing the disk and the partition, neither helped.
    So I booted with CMD+R, launched Disk Utility, and tried to create a 500GB empty partition.  It started and just never quit, so I CMD+Q, got out of it, went back to Disk Utility, I found that I now have a 1.22TB empty partition and a 1.78TB Mac Partition.  This is probably my own fault, I should have just let it run, but after 20 minutes, it wasn't moving.
    I figured that would work okay, so I tried installing with BCA, but found it's looking for an HFS+ partition to resize and wouldn't work with an empty partition, so I figured I'd just format the empty partition as HFS+ and install with BCA.  Unfortunately, I can't get Disk Utility to format the partition.  I select the empty space, it puts a white block on it like normal titled Untitled 2, I select Mac OS Extended (Journaled), hit apply, something flashes very briefly over the "capacity" line, and then nothing happens.  Hit revert and it shows up with the Macintosh HD partition and the empty partition.  No matter what format I choose, nothing happens.  If I try to exit, it tells me that changes have not been saved.
    I'm trying to just extend the Mac partition, but the resizing option is not available.  I can't drag it to cover the Free Space partition, I can't type in the Size to resize it by number, I can't do anything.  I've tried to repair the disk and the partition, nothing happens.  I can't reclaim the space no matter what I do.
    At this point, all I want to do is recover the entire space of the hard drive for Mac OS.  I'll try again with Boot Camp Assistant after Apple works the kinks out.
    Any help would be appreciated.

    The Boot Camp Assistant in 10.8.4 should be able to partition your 3TB+ drive so you can have Windows. If Disk Utility is not working then your disk is corrupt. Backup all your data using Time Machine. Erase the volume and restore from Time Machine backup. You can use the ‘OS X Recovery Disk Assistant’ (http://support.apple.com/kb/DL1433). Open Recovery Disk Assistant and follow the on screen instructions to create a Recovery HD on the external drive. When the Recovery Disk Assistant completes, the partition will not be visible in the Finder. To access the external Recovery HD, connect the drive, then restart the computer and hold the Option key. Select Recovery HD from the Startup Manager. You would need to re-install Mountain Lion up to 10.8.4.  Then ran Boot Camp Assistant and then install Windows.   Once you have confirmed that Windows is running then open up Migration Assistant (in the utilities folder) and migrate your Time Machine backup back on to the hard drive.

  • RAID Utility does not work after Vista upgrade

    Hi,
    I have a Qosmio G30 with 2 HD 120GB each. After I upgraded to Windows Vista from Windows XP, the Toshiba RAID Utility does not work anymore. In WXp it worked OK, but in Vista there is no way I can mirror the HD. That is, the utility itself work, but the button that should say Mirror, or something like that is not shown. I have set the drives to RAID-1 in the BIOS, but no go.
    Is there any way to get the software RAID to work again?

    Hi,
    just a little question: While installing vista, did you installed the RAID-driver at installation time? Maybe this could be the reason why RAID cannot be activated properly.
    Please give some feedback, if you installed the RAID drivers for Vista during the installation..
    Cheers

  • Disk utility functions not working properly

    Most functions on my disk utility are not working FOr example the burn button is dimmed and out of function I tried erasin the com.apple.diskutility.plst but nothing happen
    Message was edited by: DDGT

    DDGT:
    Let me just post some general directions and see if you recognize them as the way you did them:
    1. Repair Disk Permissions
    While booted from your internal HDD
    Go to (Applications > Utilities > Disk Utility.
    Select your HDD (manufacturer ID) in left column and First Aid in main column.
    Click Repair Disk Permissions at bottom left.
    2. Repair Disk
    Insert Installer disk and Restart, holding down the "C" key until grey Apple appears.
    Go to Installer menu (Panther and earlier) or Utilities menu (Tiger) and launch Disk Utility.
    Select your HDD (manufacturer ID) in the left panel.
    Select First Aid in the Main panel.
    (Check S.M.A.R.T Status of HDD at the bottom of right panel, and report if it says anything but Verified)
    Click Repair Disk on the bottom right.
    If DU reports disk does not need repairs quit DU and restart.
    If DU reports errors Repair again and again until DU reports disk is repaired.
    If DU reports errors it cannot repair you will need to use a utility like Tech Tool Pro or Disk Warrior
    +A problem with the restore function also accured ( i tried to restore my Macintosh HD to an external if anything wrong happens Un fortunatly the Hd has something wrong and DU cant fix it properly+
    First tell me about the HDD to which you are trying to install.
    • Is it a firewire, firewire/USB, or USB HDD?
    • Does the HDD have anything on it currently?
    • Was the HDD formatted Mac OS Extended before you attempted installation?
    • What method did you use in trying to backup the internal HDD to the external? e.g. what software did you use? Were you using Disk Utility or another backup software?
    You responses will help me give you specific directions in terms of how to go about accomplishing what you wish to do.
    Please post back with information on the points noted above.
    Cheers
    cornelius

  • The change pronunciation feature of my VoiceOver utility is not working

    The change pronunciation feature of my VoiceOver utility is not working.  When I change the pronunciation of a word it makes no difference, the voice over still uses the original pronunciation.  This has happened both in Lion and Mountain Lion.  Any ideas what could be causing this?  How to rectify it?

    If this post is correct, it can't be changed.
    https://discussions.apple.com/message/4988176#4988176

  • Updated airport utility will not work on older Airport Extreme

    I have a mid-2011 Macbook Air with OS 10.9.4. So that's up-to-date. I recently updated my Airport Utility to version 6.2. I have an old Airport Extreme. The new Airport utility will not work with the old Airport Extreme. Apple will not let me download the older Airport Utility, because I have a newer one installed: classic Catch-22. Any ideas? I need to find out my SSID to connect with a new Denon AVR receiver. Is there any way to find out my SSID with Airport Utility?

    You must first uninstall AU 6.2 before you can install an older version. This may be removed by the mods so get it while you can:
    AirPort Utility 5.6.1 on OS X 10.9 Mavericks | Corey J. Mahler
    Installing the Old AirPort Utility (Version 5.6) on Mountain Lion | frank.is

  • "HP laserjet professional utility" does not work in osx 10 (Yosemite)

    All the major functions of this printer work fine in Yosemite, but not the "HP laserjet professional utility"The driver shown in System Preferences/Printer for my Laserjet P1606dn is version 6.9 (I am unable to knowif this is the version provided by the latest HP printer update, which was installed via the App Store.) I note this exact issue was raised for OSX7 in November 2014, but for a diiferent model printer.  My printer is on my local wifi network, and that earlier case seemed to invove a direct USB connection. The solution offered in that thread, 4694464,may not be applicable now, so I seek advice In the panel for my 1606dn within System Preferences/Printer offers a button to launch the "HP Professional Utility", but when clicked an app launches called the "HP Professional Utility" but then nothing.  I am trying to access the printer controls that will keep it from turning itself off when idle, and the documentation says the "HP Professional Utility" will allow that change. Please advise 

    Hey , Welcome to the HP forums! I hope you enjoy your stay here. I see that you are having some issues with adjusting the power save mode settings on your Laserjet P1606dn. I can help with that. First make sure the printer is plugged directly into a wall outlet and not a surge protector. If the printer is connected with an ethernet cable to a router then you may be able to do this instead:On the printer hold down the button that looks like a sheet of paper with an arrow on it for about ten seconds. This should print out a report.On your Mac open a browser and enter the printer's IP Address in your Address bar exactly as it appears on the page. When you are finished click on enter/return.This will open the printer's Embedded Web Server. In here you may be able to find some options to adjust the power save settings.If the above does not work then this troubleshooting may assist you with the utility:Go to Applications, and if you have it open the Hewlett-Packard folder.Run HP Uninstaller to remove any existing software from you system.On the Mac go to the Apple icon and Sytem Preferences.Open Printers and Scanners.Hold down the Command key and click on the picture of your printer on the left.Click on Reset Printing System.Go to Applications and Utilities.Open Disk Utility.Click on Macintosh HD on the left.Click on Verify Disk Permissions. This should take about ten minutes.Click on Repair Disk Permissions. This should take about ten minutes.Restart your Mac.Plug in the USB cable between the printer and the router.Check for Product Updates on your Mac.Try running the tool again.If this resolves everything please let others know by clicking on Accept as Solution below my post.
    I hope this helps and I hope you have a great day! 

  • Discimagemounter and Disc Utility does not work, can't open .dmg HELP PLEASE

    Hello.
    I've got a problem with my Mac when I try to open .dmg files I've downloaded. When I open the file it opens then instantly closes down, and when I choose "open with" and try to open with Disc Utility, it says that it quit unexpectedly and asks me to send a report or close it down. I also tried downloading stuff like "iGetter" to open files with, but since I can't open downloaded files I'm stuck in this mess.
    I can't repair permissions either, since neither Disc Utility or DiscImagemounter works.
    What do I do?

    Backup your files off the machine to a storage drive (not TimeMachine only) disconnect
    Most commonly used backup methods
    then run through these Steps
    ..Step by Step to fix your Mac
    If it's too much for you, call a local professional to assist you.

  • My iphone configuration utility  is not working, it says its on the wrong network

    my iphone configuration is not working it says it on a network resource that is unavailable, so im not able to import my picture from my iphone to my computer

    Have tried connecting to the correct WiFi network?  Settings > Wi-Fi under Choose a Network.

  • My Disk Utility is not working, also can't eject a mp3 player

    I attached the mp3 player to the computer and downloaded some music on it. This went OK. When I went to eject it by right clicking on the player and choosing eject, it would not eject. So I opened Disk Utility to try and eject the disk and now find that Disk Utility won't open.
    When I do force-quit Disk Utility the message says Disk Utility is not responding so there is a problem with Disk utility.
    This is the first time I've had problems with Disk Utility and with ejecting a disk.
    I don't want to pull the mp3 player out as it could do something funny to the disk as that happened before when I accidentally removed the mp3 player without ejecting it first.
    However, the mp3 player has been OK for a while now and this happens.
    What can I do?
    Should I restart the computer and see if that solves the problems?

    Are you receiving an error message when you try to eject via the Finder? Normally you should get a message along the lines "The disk * could not be ejected because the application * is using it" or something like that.
    You could just shut down and unplug the mp3 player then, but it would be interesting to find out the cause of the problem. Do you know exactly what files are on the player?

  • IMessage - Blue/Green Identity Not Working!

    Successfully updated iPhone 4 to iOs5 and icloud.
    Want to use iMesage but it is not working. I have checked it is enabled.
    When I compose a new message, I have selected my friend who is an iPhone user who HAS also updated over night.
    The message is coloured green which I believe is normal SMS and it should be coloured blue if it is using iMessage.
    I have tried it with 3 other iPhone users (all updated to ios5) but none of messages are colouring blue!
    Any ideas?

    I had to turn on MMS. Go to /settings/general/network/Cellular Data Network/
    and enter here all the MMS data.
    Then make sure that under /settings/Messages/MMS Messages in on.
    When I did this "the blue bubble" appeared in the message app for contacts using imessage. Also the @ symbol appears next to the spacebar on the keybpard so that you can enter an email address.
    Hope this helps

  • Apple Loops Utility does not work at all for imported file

    I have imported an MP3 into Logic Pro 8, which converts it to an AIFF file, and am trying to configure the project to sync to that tracks tempo. From what I understand, I do this by opening it in the ALU and having it add tempo information to the file.
    My problem is that when I open the file in the ALU, and I have version 2.0.1, literally almost NOTHING works. I can hit the play/stop/jump to start buttons and they work. However, the volume control does nothing. Likewise, the Tempo slider as well as the transpose dropdown don't do anything.
    On the Transients tab, the Transient Division dropdown and Sensitivity slider are grayed out. Since I've never used this tool before, I would assume that this is how I get the utility to detect the beats in the song. The waveform view just shows the song waveform, with no markers as it does if I open an Apple Loop.
    If I switch to the Tags tab, ever single checkbox is grayed out. Finally, if I go to the file menu, all Save options are grayed out.
    My first thought, is of course, that I'm just an idiot and that I don't know what I'm doing. However, in searching the forum, I found this post from a year ago where someone is complaining about what seems to be the exact same problem, and they did not receive a single response.
    http://discussions.apple.com/thread.jspa?messageID=8516386&#8516386
    Any ideas on either how to get ALU to work or to get my project to sync to the MP3 without requiring the ALU?
    Thanks!
    Mark

    In case you are importing a whole track you won't get the results you are expecting with ALU....
    Under *File Type* in the Tags tab select Looping so that the Transients Division and the rest of the settings be active.
    Hope this helps
    A

  • HP Photosmart 5510- Unable to Communicate with Printer Utility Check not working!!!!! HELP

    I work with Windows 7 the error message I am getting is Unable to Communicate with Printer. I have never had a problem with a printer. First night worked amazing, All software is downloaded on the computer but then  went to go print to day it didnt work. REBOOTED EVERYTHING, wireless router, computer and printer. Then ReConnected the printer to the router through what the Manuel says. FINALLY starts printing, waited about 30-45mins went to go print again and of course it didnt work.
    I have attempted to do the Utility Check- States I am connected online both computer and printer to the router. From what I gather there is an issue with the printer- computer connection. I bought this specific Printer because it was wireless and highly recommended because HP brand, now I am wondering if this was a big mistake.
    This question was solved.
    View Solution.

    Hi again;
    Wish you are doing well despite this issue 
    Ok here is a page in the Cisco website with documentation in regards your Router check in here how to verify what is the current version of router's firmware. if needed you can find the latest version of here as well.
    In how to get to the routers EWS to do this follow this steps;
    To reveal Relevant TCP/IP settings include in windows this settings
    •IP address
    •subnet (subnet-mask)
    •gateway address (also the router's or AP's IP address, which is useful for opening the router's web page
    or Embedded Web Server (EWS) page.
    Important communication test! Once you have obtained the gateway address, type this address into your Web browsers URL field to open your router's EWS,  e.g., 192.168.0.1*. * This value will vary by router manufacturer.
    Checking TCP/IP settings in most Microsoft operating systems
    Step Action
      1 Click on Start (Window button on your keyboard).
      2 Type CMD (do not hit enter select from the menu with right click and select from the sub menu select run as  
         Administrator).  
      3 At the prompt, type ipconfig or "ipconfig" or "ipconfig /all" with out the quotes. 
      4 Press ENTER on the keyboard, and note the values of the settings mentioned above.
    Hope it helps and best of luck;
    RobertoR 
    You can say THANKS by clicking the KUDOS STAR. If my suggestion resolves your issue Mark as a "SOLUTION" this way others can benefit Thanks in Advance!

  • EOS Utility will not work after update - 70D and Windows 8.1

    I hope someone can help. I updated my EOS Utility on July 20, 2015, and switched to EOS Utility 2, incl. the updater (an add-on installation on the Canon site). After that, nothing happens when I connect the camera and try to open EOS Utility. I can hear (jingle) that the computer still recognizes the camera. Around that day, my computer also installed a Windows update. I have unistalled EOS and reinstalled it, both with and without the updater. Still nothing happens. Has anyone else had the same issue? On another forum, disabling wifi seemed to work, but I checked that wifi is already disabled (even by enabling and re-disabling it). Any ideas are gratefully accepted. Thank you.

    You would be much better off to add an exception for the software you're getting a flase positive on, than to disable AVG. You can do this within AVG by looking for "Exceptions" under the "Advanced Settings" dialog (found in the Options menu). This is not uncommon and it just means there's some byte pattern in your file that is similar to a known virus.  If you disable AVG you're opening yourself up to attacks while it's off.  By adding an exception AVG will just ignore that file, and since you know it's OK, that's safe.

Maybe you are looking for

  • HT1689 My I pod was stolen and I have the serial number can I somehow trace it?

    My kid had his I touch stolen Can I traceit somehow if I have the serial number and his password?

  • Mac wont play online videos and photobooth is pink and green pixels?

    Recently my MacBook Pro has been very slow and has now decided not to play videos on E.g Youtube. I thought it was just the internet playing up, but going to use PhotoBooth the camera screen is all pink and green pixels?? Overall my mac is very slow

  • PO Output Message Disappears

    Hi All,   We have some PO's created in 2011,2012,2013,2014 for which the output message has disappeared. Client wants to see to whom from supplier side the purchase order has been sent, so they wants to see the output type in PO now. But we have chec

  • Logout of iWeb password protected site?

    I have made a site and set it to be password protected. As it stands now once you log in, the authentication is saved and you don't have to enter it again. Is there a way to either log out via a button or link? Or even to be able to ask for a log in

  • How to disable ferry on maps?

    Hello, I am using maps on ios 6. I don't want to use ferry but for example if i try to go to "Yalova" from "Istanbul", it shows me 3 ways that all of them using ferry. I don't want neither. So what should I do to get the navigation without using ferr