Duplicating Signatures?

I am working on creating a form with a "Carbon Copy" type of section on it; where the user fills out one section of the form, and it automatically duplicates to the second section.
Everything is going fine, except for the signature fields. The input section of the form has two signature fields which should be "copied" to the read-only section. I'm not certain how this can be accomplished with the signature fields.
Simply setting the value of one signature field to the value of another does not work, and signature fields do not allow for global data binding. I know that you can't un-sign a signature field without the original signing key--but since at the time of input you DO have the original signing key, is there a way to sign two signature fields at once? Any input on this would be greatly appreciated.

N Santosh Kumar wrote:
When a user applies digital signature then it is for the entire document (not a specific section of the document)
That's not entirely true; you can specify collections, and have the digital signature only apply to specific collections. That way different people can sign off on different fields of the form.
Worst case senario, we will just have the users sign twice, or just have the second signature field changed to a text field that reads something like "Original copy signed" when the first signature field is signed off on. However, I'd really like to get it so that signing one field automatically signs the second field as well. This will better mimic the usability of the form from paper carbon copies to a digital format.
I hope this clarifies somewhat.

Similar Messages

  • Signature Duplicated when attachment added

    Hello,
    I've been getting an issue of sending my signature and the message sent twice in my emails, when I add an attachment to the message. You see the picture added at the bottom of the message, and then the message is duplicated in the top section of the email on the top without the image (but the sig. included)
    Anyone know how to fix this? I'm using IMAP on on Mac OSX 10.4.11 and Mac Mail version version 2 (not sure what type of .x it is)
    Anyone else have this problem or a solution? I'd be most grateful, Thanks in advance!

    Hello, I'd try this first.
    In your home folder, try trashing this folder after quitting Mail...
    /Library/Caches/Mail
    http://www.hawkwings.net/2006/02/08/rebuild-your-database-and-speed-up-mailapp/

  • Adobe Acrobat Pro 9 - Automate inserting signature & fields into document to be split

    Hi,
    I am a beginner with a huge task I am trying to automate.  Not sure its possible but here goes.  I am getting ready to "print" my 200+ teacher contracts to a PDF file from my Filemaker Pro database.  This creates one big PDF file with just over 200 "pages" as each contract is a page. Is there an easy way to insert two check boxes, a signature box, date field, print and e mail button on each page before I split the document into 200 individual pages to be emailed to each teacher or is this not an efficient way to handle it?  Any help would be greatly appreciated.  Thank you.

    Any form element can be duplicated. After you create them on the first page, right-click on them using the Select Object Tool and select Duplicate.
    You should be able to make copies of them on all the pages using this method.

  • Duplicate Digital Signatures

    Hello,
    I have a form where a single individual will need to sign in three places using the digitial signature "click" box.  This requires saving it multiple times, so I'm either trying to have him/her sign once and the block is auto duplicated (like any other block with the same name) or have it so he/she doesn't have to save it after each signature.
    I can't change the names of their sig block be the same for each one.  Thanks for your help!!

    Neither is possible. As you've found, a signature field has to have a unique name and each time a signature field is signed, the document has to be saved.

  • I cannot clear a signature!

    Hello!
    I'm using an Oberthur token for Digital Signature and my computer crashed after I have signed a document, but before I input de password for the token. Now the signature is not valid and I cannot erase it. The only options I have for that signature are: Validate Signature, View Signed Version, Show Signature Properties...
    Can somebody please explain in detail to me how can I erase this signature tor esign the document? I'm using the latest Adobe reader version! Thank you!

    The point is that this is trivial to achieve for anyone, even if the file is locked after signing.
    They just need to keep a copy of the unsigned file, delete the signed one, and replace it with the unsigned file. So such protection means nothing.
    Repudiating signatures is a very bad thing, but it can only have real meaning if someone or some process knew about the signing. Otherwise, it's like someone signing a piece of paper, and destroying their signed copy without showing it to anyone; it's as if it never happened, and nothing was gained.  If on the other hand a person has received the signed file, or a process has securely archived it, then removing a signature has no repudiating effect on the copy.
    It can be hard to convert paper-based to electronic-based workflows where files can be freely duplicated, shared etc.
    Clearly, though, if a person can sign a file, then others can act on that signature, and then the signer can still edit the original signed file, there is a big problem, not just of repudiation but of auditability.

  • Preview inserts signature but will not let me drag it or resize it

    I am running the latest version o Mac Preview on an iMac running Yosemite 10.10.2
    In some PDF's the signature insert works fine. In others, randomly occurring, I can insert a signature but it only goes to the middle of the page. I cannot resize the signature or drag it to my desired location after I insert it. I have opened and closed preview many times and also tried duplicating the PDF and opening it again with the same problems.
    Today, a PDF created from a web document allowed me to drag and re-size, but a PDF created from a Pages document did not. I really need a solution to this as printing duplicates of signed documents saves me a lot of time, so thanks in advance.

    I could see the images in Aperture.
    Susan, what do you see in Aperture's Viewer? Does the image look o.k.? Then you have at least good quality previews, that you could save.
    Create a new folder on your Desktop, select all recently imported images in the browser, and drag the images from Aperture's Browser window to that folder on your Desktop. That will save the Preview images as jpegs.
    You will not be able to restore the originals from the card, if it already has been formatted, unless you have set Aperture to backup directly on import.
    If you ctrl-click your Aperture library and select "Show Library Contents", then open the "Masters" folder - do you see any image files in the most recently added folder for "2013 > February > 4 (the day you imported)"?
    Regards
    Léonie

  • Multiple method signatures in an MBean

    The text formatting seems to be broken on this site. Sorry for the mass of text!
    I have an MBean containing some utility functions used within a custom authenticator. At the moment, there all use a single data source, but I need to extend them to use multiple datasources. I also need to maintain backwards compatability with the original system.
    I have therefore modififed the xml bean descriptor file and Impl java class by duplicating all the methods, adding a dataSource ID param, as follows:
    I started with this method descriptor:
    <pre>
    <MBeanOperation
    Name = "getMaintenanceMode"
    ReturnType = "boolean"
    Description = "Whatever"
    >
    <MBeanException>javax.management.MBeanException</MBeanException>
    <MBeanException>weblogic.management.utils.NotFoundException</MBeanException>
    </MBeanOperation>
    </pre>
    and impl:
    <pre>
    public boolean getMaintenanceMode() throws MBeanException , javax.management.MBeanException, weblogic.management.utils.NotFoundException
    </pre>
    and have now added this :
    <pre>
    <MBeanOperation
    Name = "getMaintenanceMode"
    ReturnType = "boolean"
    Description = "Whatever"
    >
    <MBeanOperationArg Name = "dataSourceId" Type = "int"
    Description = "Data Source ID"
    />
    <MBeanException>javax.management.MBeanException</MBeanException>
    <MBeanException>weblogic.management.utils.NotFoundException</MBeanException>
    </MBeanOperation>
    </pre>
    and
    <pre>
    public boolean getMaintenanceMode(int dataSourceId) throws MBeanException , javax.management.MBeanException, weblogic.management.utils.NotFoundException
    </pre>
    With these code changes in place, the MBean builds correctly, using the MBeanMaker, however WLS(814) falls over on startup with the exception:
    <pre>
    javax.management.JMRuntimeException: Two operations with the same name, "getMaintenanceMode", in MBean type: com.aol.universal.security.tools.DashboardUserTools
    at weblogic.management.commo.ModelMBeanTypeMBean.getExpandedMBeanInstanceInfo(ModelMBeanTypeMBean.java:1092)
    at weblogic.management.commo.ModelMBeanTypeMBean.<init>(ModelMBeanTypeMBean.java:250)
    at sun.reflect.GeneratedConstructorAccessor3.newInstance(Unknown Source)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
    at com.sun.management.jmx.MBeanServerImpl.internal_instantiate(MBeanServerImpl.java:2232)
    at com.sun.management.jmx.MBeanServerImpl.createMBean(MBeanServerImpl.java:763)
    at weblogic.management.internal.RemoteMBeanServerImpl.createMBean(RemoteMBeanServerImpl.java:897)
    at javax.management.loading.MLet.getMBeansFromURL(MLet.java:542)
    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 com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1633)
    at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1528)
    at weblogic.management.internal.RemoteMBeanServerImpl.private_invoke(RemoteMBeanServerImpl.java:988)
    at weblogic.management.internal.RemoteMBeanServerImpl.invoke(RemoteMBeanServerImpl.java:946)
    at weblogic.management.commo.Commo.initTypesAtLocation(Commo.java:1409)
    at weblogic.management.commo.Commo.initTypes(Commo.java:552)
    at weblogic.management.commo.Commo.initTypes(Commo.java:534)
    at weblogic.management.AdminServerAdmin.initializeCommo(AdminServerAdmin.java:656)
    at weblogic.management.AdminServerAdmin.initializeRepository(AdminServerAdmin.java:874)
    at weblogic.management.AdminServerAdmin.initialize(AdminServerAdmin.java:267)
    at weblogic.t3.srvr.T3Srvr.initializeHere(T3Srvr.java:771)
    at weblogic.t3.srvr.T3Srvr.initialize(T3Srvr.java:670)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:344)
    at weblogic.Server.main(Server.java:32)
    </pre>
    Granted there <i>are</i> two methods with the same name, but they have different signatures, so they are <i>different</i> methods! Its just simple OO method overloading, after all!
    Has anyone run into this in, too? Is there a solution?
    cheers
    Paul

    Hi,
    I doubt that the addition of a second signature actually invalidates (the red X icon) the first signature, but rather it shows the signature as Valid with Changes (the pen & yellow triangle icon). Technically, that is the correct signature status, but because it caused so much confusion, beginning with version 9, we've changed the user interface and stopped indicating changes to the PDF if the only change is a subsequent signature.
    If on the other hand you are getting the red X for the first signature please let me know as I'd be curious to see the file.
    Steve

  • Ink-Style Signature for Reader

    Good afternoon everybody,
    I am relatively new to Acrobat Pro and have something that I can't seem to wrap my brain around. I'm using Acrobat Pro 9 and Snow Leopard. I am trying to create a form that has a signature field that will allow a user to sign the PDF from within Acrobat Reader either with the mouse, a signature pad, or a Wacom tablet. For the life of me, I can not seem to create the signature field properly in Acrobat so that it works in Reader. All of the other fields (text boxes, checkboxes) work fine, it's just the signature field I can't grasp. Any suggestions, or walkthroughs, would be most appreciated on how to setup a signature field in Acrobat Pro so that a user can open the PDF in Reader, draw their signature with an input device, and then save it as a new PDF with all of the forms including the signature filled in with their responses. Thank you in advance for any and all help. Have a great day.

    G’ day „smith2012“,
    I have detected your entry about embedding ink signatures in Adobe forms. As the company I am working for is an Adobe Security software partner and frequently dealing with this topic I would like to give you some hints on that matter if you are interested in using the signature in a trustworthy manner.
    The original aim of signing on paper is that the signer declares an intent which is related to the content of the document. Nowadays many companies are capturing a signature image (graphic file, i.e. JPG, GIF) and paste it into documents or even a e-mail message. This image will not allow any further verification process if its authenticity is in doubt. It is more or less "decoration".
    Handwritten signatures on paper are often also described as "wet ink signatures". The electronic equivalent is a "digital ink signature". "Digital ink" became a common feature in the mainstream PCs with the launch of Windows Vista, e.g. for comments or annotations. Digital is a feature which is available in Microsoft Office 2007 or in Adobe Acrobat 9 ("Apply Ink Signature"). These features put a handwriting-like signature on a file that could be printed out or emailed, much in the same way a fax signature might work. These signatures can be manipulated, duplicated or deleted. There exists no protection against document tampering hence these kind of signature can be repudiated easily. It is important to keep in mind that a signature which was captured using digital ink is not securely bound to a document.
    There are tools such as “SignDoc” which may be used in addition to Adobe’s products for trustworthy signing. If you are interested you can read more details at www.signdoc.de/trust .
    You may also be interested in knowing that processing Signatures typically require the embedding in a workflow. Some examples how this can be executed also with zero installation effort on the client side are explained at www.softpro.de/signdocweb
    Hope this entry was of some help.
    Regards
    Joerg

  • Why is the Body-copy of my outgoing emails duplicated?

    People have been telling me that when they receive an e-mail from me, the contents are duplicated. Immediately below my message is a duplicate of the message, signature etc. It's odd, and irritating because it does not look very professional. Anyone got any ideas as to why this is happening?

    Try turning the account off and on : Settings > Mail, Contacts, Calendars , then tap the account on the right, slide Mail to 'off', exit settings and go back into the Mail app, and then go back to Settings and slide Mail back to 'on'
    If that doesn't work then try closing the Mail app completely : from the home screen (i.e.not with the Mail app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    Also do a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • [SOLVED] Duplicity getting 'stuck' when attempting to restart a backup

    Hey all,
    After a backup attempt failed partway through (first-time full backup) with this error:
    AsyncScheduler: scheduling task for asynchronous execution
    No handlers could be found for logger "paramiko.transport"
    AsyncScheduler: a previously scheduled task has failed; propagating the result immediately
    AsyncScheduler: task execution done (success: False)
    Backend error detail: Traceback (most recent call last):
    File "/usr/bin/duplicity", line 1391, in <module>
    with_tempdir(main)
    File "/usr/bin/duplicity", line 1384, in with_tempdir
    fn()
    File "/usr/bin/duplicity", line 1354, in main
    full_backup(col_stats)
    File "/usr/bin/duplicity", line 500, in full_backup
    globals.backend)
    File "/usr/bin/duplicity", line 399, in write_multivol
    (tdp, dest_filename, vol_num)))
    File "/usr/lib/python2.7/site-packages/duplicity/asyncscheduler.py", line 151, in schedule_task
    return self.__run_asynchronously(fn, params)
    File "/usr/lib/python2.7/site-packages/duplicity/asyncscheduler.py", line 215, in __run_asynchronously
    with_lock(self.__cv, wait_for_and_register_launch)
    File "/usr/lib/python2.7/site-packages/duplicity/dup_threading.py", line 100, in with_lock
    return fn()
    File "/usr/lib/python2.7/site-packages/duplicity/asyncscheduler.py", line 207, in wait_for_and_register_launch
    check_pending_failure() # raise on fail
    File "/usr/lib/python2.7/site-packages/duplicity/asyncscheduler.py", line 191, in check_pending_failure
    self.__failed_waiter()
    File "/usr/lib/python2.7/site-packages/duplicity/dup_threading.py", line 201, in caller
    value = fn()
    File "/usr/lib/python2.7/site-packages/duplicity/asyncscheduler.py", line 183, in <lambda>
    (waiter, caller) = async_split(lambda: fn(*params))
    File "/usr/bin/duplicity", line 398, in <lambda>
    async_waiters.append(io_scheduler.schedule_task(lambda tdp, dest_filename, vol_num: put(tdp, dest_filename, vol_num),
    File "/usr/bin/duplicity", line 296, in put
    backend.put(tdp, dest_filename)
    File "/usr/lib/python2.7/site-packages/duplicity/backends/sshbackend.py", line 191, in put
    raise BackendException("sftp put of %s (as %s) failed: %s" % (source_path.name,remote_filename,e))
    BackendException: sftp put of /tmp/duplicity-9_jssu-tempdir/mktemp-uqQRIn-42 (as duplicity-full.20120507T060530Z.vol41.difftar
    .gpg) failed: Server connection dropped:
    BackendException: sftp put of /tmp/duplicity-9_jssu-tempdir/mktemp-uqQRIn-42 (as duplicity-full.20120507T060530Z.vol41.difftar
    .gpg) failed: Server connection dropped:
    the process keeps getting stuck when I try to restart it. There's almost no CPU use and no useful error messages. Here's the output (the version and parameters are included) with -v debug:
    Using archive dir: /root/.cache/duplicity/1498ef4c9557164d69523e5aec4c78ce [83/4524]
    Using backup name: 1498ef4c9557164d69523e5aec4c78ce
    Import of duplicity.backends.sshbackend Succeeded
    Import of duplicity.backends.rsyncbackend Succeeded
    Import of duplicity.backends.botobackend Succeeded
    Import of duplicity.backends.webdavbackend Succeeded
    Import of duplicity.backends.hsibackend Succeeded
    Import of duplicity.backends.localbackend Succeeded
    Import of duplicity.backends.ftpsbackend Succeeded
    Import of duplicity.backends.giobackend Failed: No module named gio
    Import of duplicity.backends.ftpbackend Succeeded
    Import of duplicity.backends.cloudfilesbackend Succeeded
    Import of duplicity.backends.u1backend Succeeded
    Import of duplicity.backends.tahoebackend Succeeded
    Import of duplicity.backends.imapbackend Succeeded
    Import of duplicity.backends.gdocsbackend Succeeded
    Main action: inc
    ================================================================================
    duplicity 0.6.18 (February 29, 2012)
    Args: /usr/bin/duplicity --use-agent -vdebug --encrypt-key YYYYYYYY --sign-key XXXXXXX --full-if-older-than 60D --exclude /mn
    t/backup/bfd-training-data --exclude /mnt/backup/fsarchiver --exclude /mnt/backup/media --exclude /mnt/backup/usapparel --asyn
    chronous-upload /mnt/backup scp://[email protected]//backups/homeserver
    Linux homeserver 3.0.29-1-lts #1 SMP PREEMPT Mon Apr 23 09:41:11 CEST 2012 x86_64 AMD Sempron(tm) Processor 3400+
    /usr/bin/python2 2.7.3 (default, Apr 24 2012, 00:00:54)
    [GCC 4.7.0 20120414 (prerelease)]
    ================================================================================
    Using temporary directory /tmp/duplicity-OjWCPd-tempdir
    Registering (mkstemp) temporary file /tmp/duplicity-OjWCPd-tempdir/mkstemp-GZ2ieI-1
    Temp has 490532864 available, backup will use approx 60293120.
    Local and Remote metadata are synchronized, no sync needed.
    41 files exist on backend
    2 files exist in cache
    Extracting backup chains from list of files: ['duplicity-full.20120507T060530Z.manifest.part', 'duplicity-full-signat[51/4524]
    0507T060530Z.sigtar.part', 'duplicity-full.20120507T060530Z.vol1.difftar.gpg', 'duplicity-full.20120507T060530Z.vol2.difftar.g
    pg', 'duplicity-full.20120507T060530Z.vol3.difftar.gpg', 'duplicity-full.20120507T060530Z.vol4.difftar.gpg', 'duplicity-full.2
    0120507T060530Z.vol5.difftar.gpg', 'duplicity-full.20120507T060530Z.vol6.difftar.gpg', 'duplicity-full.20120507T060530Z.vol7.d
    ifftar.gpg', 'duplicity-full.20120507T060530Z.vol8.difftar.gpg', 'duplicity-full.20120507T060530Z.vol9.difftar.gpg', 'duplicit
    y-full.20120507T060530Z.vol10.difftar.gpg', 'duplicity-full.20120507T060530Z.vol11.difftar.gpg', 'duplicity-full.20120507T0605
    30Z.vol12.difftar.gpg', 'duplicity-full.20120507T060530Z.vol13.difftar.gpg', 'duplicity-full.20120507T060530Z.vol14.difftar.gp
    g', 'duplicity-full.20120507T060530Z.vol15.difftar.gpg', 'duplicity-full.20120507T060530Z.vol16.difftar.gpg', 'duplicity-full.
    20120507T060530Z.vol17.difftar.gpg', 'duplicity-full.20120507T060530Z.vol18.difftar.gpg', 'duplicity-full.20120507T060530Z.vol
    19.difftar.gpg', 'duplicity-full.20120507T060530Z.vol20.difftar.gpg', 'duplicity-full.20120507T060530Z.vol21.difftar.gpg', 'du
    plicity-full.20120507T060530Z.vol22.difftar.gpg', 'duplicity-full.20120507T060530Z.vol23.difftar.gpg', 'duplicity-full.2012050
    7T060530Z.vol24.difftar.gpg', 'duplicity-full.20120507T060530Z.vol25.difftar.gpg', 'duplicity-full.20120507T060530Z.vol26.diff
    tar.gpg', 'duplicity-full.20120507T060530Z.vol27.difftar.gpg', 'duplicity-full.20120507T060530Z.vol28.difftar.gpg', 'duplicity
    -full.20120507T060530Z.vol29.difftar.gpg', 'duplicity-full.20120507T060530Z.vol30.difftar.gpg', 'duplicity-full.20120507T06053
    0Z.vol31.difftar.gpg', 'duplicity-full.20120507T060530Z.vol32.difftar.gpg', 'duplicity-full.20120507T060530Z.vol33.difftar.gpg
    ', 'duplicity-full.20120507T060530Z.vol34.difftar.gpg', 'duplicity-full.20120507T060530Z.vol35.difftar.gpg', 'duplicity-full.2
    0120507T060530Z.vol36.difftar.gpg', 'duplicity-full.20120507T060530Z.vol37.difftar.gpg', 'duplicity-full.20120507T060530Z.vol3
    8.difftar.gpg', 'duplicity-full.20120507T060530Z.vol39.difftar.gpg', 'duplicity-full.20120507T060530Z.vol40.difftar.gpg', 'dup
    licity-full.20120507T060530Z.vol41.difftar.gpg']
    File duplicity-full.20120507T060530Z.manifest.part is not part of a known set; creating new set
    File duplicity-full-signatures.20120507T060530Z.sigtar.part is not part of a known set; creating new set
    Ignoring file (rejected by backup set) 'duplicity-full-signatures.20120507T060530Z.sigtar.part'
    File duplicity-full.20120507T060530Z.vol1.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol2.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol3.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol4.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol5.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol6.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol7.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol8.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol9.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol10.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol11.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol12.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol13.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol14.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol15.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol16.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol17.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol18.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol19.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol20.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol21.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol22.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol23.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol24.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol25.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol26.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol27.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol28.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol29.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol30.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol31.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol32.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol33.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol34.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol35.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol36.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol37.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol38.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol39.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol40.difftar.gpg is part of known set
    File duplicity-full.20120507T060530Z.vol41.difftar.gpg is part of known set
    Found backup chain [Sun May 6 23:05:30 2012]-[Sun May 6 23:05:30 2012]
    Last full backup left a partial set, restarting.
    Last full backup date: Sun May 6 23:05:30 2012
    Collection Status
    Connecting with backend: SftpBackend
    Archive dir: /root/.cache/duplicity/1498ef4c9557164d69523e5aec4c78ce
    Found 0 secondary backup chains.
    Found primary backup chain with matching signature chain:
    Chain start time: Sun May 6 23:05:30 2012
    Chain end time: Sun May 6 23:05:30 2012
    Number of contained backup sets: 1
    Total number of contained volumes: 41
    Type of backup set: Time: Num volumes:
    Full Sun May 6 23:05:30 2012 41
    No orphaned or incomplete backup sets found.
    RESTART: Volumes 41 to 42 failed to upload before termination.
    Restarting backup at volume 41.
    Registering (mktemp) temporary file /tmp/duplicity-OjWCPd-tempdir/mktemp-Fx_YTQ-2
    ^CRemoving still remembered temporary file /tmp/duplicity-OjWCPd-tempdir/mktemp-Fx_YTQ-2
    Removing still remembered temporary file /tmp/duplicity-OjWCPd-tempdir/mkstemp-GZ2ieI-1
    INT intercepted...exiting.
    Does anyone have some experience with this? It's a fairly good sized backup (well, for me at least) so I'd really hate to have to start over every time one fails!
    Thanks,
    Scott
    Last edited by firecat53 (2012-05-08 18:23:19)

    Ok, solved-ish. There were actually 3 issues:
    1. There's a problem in the 0.6.18 new python paraminko ssh internals that was preventing it from uploading more than about 1GB at a time, possibly because it's reusing the same ssh connection which some webhosts will kick off after a certain time or amount.
    2. The --num-retries parameter wasn't being read by the ssh backend
    3. There's a bug in some encryption validation code that had to be removed before a 'resume backup' operation would work correctly (it won't read the GPG encryption key correctly).
    So I reverted to 0.6.17 and removed a previously applied patch from the code found here.
    So far it seems to be working. The dev who answered me on Launchpad said that there's a memory leak with 0.6.17 so watch out when doing any backups over ~100GB or so.
    Scott

  • My email signature makes duplicate copies of my photo

    I am using Entouarge as my email client. For my email signature, I have my name, and a picture.
    Just lately, the picture has been duplicating itself on every email. I have tried everything from changing the image from a jpg to a png, to a pdf, etc. Nothing will work...
    Does anyone else have this problem? Thank you so very much in advance.

    HI and welcome to Apple Discussions...
    Just so you are aware, it's not memory, it's storage space.
    Connect your iPhone to your computer. Select your iPhone under Devices left side of the iTunes window then select the Summary tab. Click: Check for Update.
    If the iPhone software is already up to date, select the Photos tab. Try re syncing your photos.
    Carolyn

  • OSB duplicated calls

    Hi,
    I’m using webservice over https from OSB (10gR3) to a third part and when I call them they always gets duplicated calls from us.
    In the log it looks like OSB only tries to send the document once (I have enabled message tracing) and only recives one response, but if I activate debug for ssl on weblogic it looks like it makes two calls.
    I have used SoupUI to set up my own Mock Service and call it from the same OSB business service. I have used both http and https in my Mock Service and I always only get one call to my Mock Service.
    I have no problem if I make the same call direct from SoupUI to this third part service.
    Any ideas?
    Here is the log from the named server (somewhat cut since this form only allows 30000 characters):
    ####<Jul 6, 2011 2:57:23 PM CEST> <Info> <OSB Kernel> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1309957043255> <BEA-398202> <
    [OSB Tracing] Outbound request was sent.
    Service Ref = xxx/v1/businessservice/refund
    URI = https://xxx
    Request metadata =
        <xml-fragment>
          <tran:headers xsi:type="http:HttpRequestHeaders" xmlns:http="http://www.bea.com/wli/sb/transports/http" xmlns:tran="http://www.bea.com/wli/sb/transports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <http:Content-Type>text/xml; charset=utf-8</http:Content-Type>
            <http:SOAPAction>"urn:refund"</http:SOAPAction>
          </tran:headers>
          <tran:encoding xmlns:tran="http://www.bea.com/wli/sb/transports">utf-8</tran:encoding>
        </xml-fragment>
    Payload =
    <?xml version="1.0" encoding="UTF-8"?>
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soap:Header xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    </soap:Header><soapenv:Body><v1:refund xmlns:v1="https://xxx">
        <v1:shopName>xxx</v1:shopName>
        <v1:userName>xxx</v1:userName>
        <v1:password>xxx</v1:password>
        <v1:verifyID>xxx</v1:verifyID>
        <v1:amount>xxx</v1:amount>
        <!--Optional:-->
        <v1:extra>xxx</v1:extra>
    </v1:refund></soapenv:Body></soapenv:Envelope>
    >
    ####<Jul 6, 2011 2:57:23 PM CEST> <Info> <Security> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1309957043256> <BEA-090888> <SSL client running within the server does not have a certificate; it will use the servers certificate.>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043256> <BEA-000000> <SSLContextManager: reusing SSL context of channel DefaultSecure>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043256> <BEA-000000> <SSLContextManager: loading server SSL identity>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043256> <BEA-000000> <Reusing cached identity certs for keystore /opt/osbutv/wls/keystores/osbutv_Identity.jks, and alias osbutv>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043257> <BEA-000000> <SSLSetup: loading trusted CA certificates>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043260> <BEA-000000> <clientInfo has new style certificate and key>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043368> <BEA-000000> <Filtering JSSE SSLSocket>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043369> <BEA-000000> <SSLIOContextTable.addContext(ctx): 1933455503>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043369> <BEA-000000> <SSLSocket will  be Muxing>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043369> <BEA-000000> <write SSL_20_RECORD>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043374> <BEA-000000> <1585806395 SSL3/TLS MAC>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043374> <BEA-000000> <1585806395 received HANDSHAKE>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043374> <BEA-000000> <HANDSHAKEMESSAGE: ServerHello>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043375> <BEA-000000> <1585806395 SSL3/TLS MAC>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043375> <BEA-000000> <1585806395 received HANDSHAKE>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043375> <BEA-000000> <HANDSHAKEMESSAGE: Certificate>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043376> <BEA-000000> <Validating certificate 0 in the chain: Serial number: 152521643120410351437514410813256266768
    Issuer:C=US, O=Thawte, Inc., CN=Thawte SSL CA
    Subject:C=SE, ST=Stockholm, L=Stockholm, O=DebiTech AB, CN=xxx.xxx.se
    Not Valid Before:Thu Nov 11 01:00:00 CET 2010
    Not Valid After:Thu Dec 13 00:59:59 CET 2012
    Signature Algorithm:SHA1withRSA
    >
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043379> <BEA-000000> <weblogic user specified trustmanager validation status 0>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043379> <BEA-000000> <SSLTrustValidator returns: 0>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043379> <BEA-000000> <Trust status (0): NONE> 
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043379> <BEA-000000> <Performing hostname validation checks: xxx.xxx.se>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043379> <BEA-000000> <1585806395 SSL3/TLS MAC>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043379> <BEA-000000> <1585806395 received HANDSHAKE>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043379> <BEA-000000> <HANDSHAKEMESSAGE: ServerHelloDone>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043388> <BEA-000000> <HANDSHAKEMESSAGE: Finished>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043388> <BEA-000000> <SSLIOContextTable.findContext(sock): 631521323>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043388> <BEA-000000> <SSLIOContextTable.findContext(sock): 631521323>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043388> <BEA-000000> <activateNoRegister()>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043388> <BEA-000000> <SSLFilter.activate(): activated: 725533627 178870817>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <> <1309957043511> <BEA-000000> <1748707005 read(offset=0, length=4080)>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <> <1309957043511> <BEA-000000> <1585806395 SSL3/TLS MAC>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <> <1309957043511> <BEA-000000> <1585806395 received APPLICATION_DATA: databufferLen 0, contentLength 1900>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <> <1309957043511> <BEA-000000> <1585806395 SSL3/TLS MAC>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <> <1309957043511> <BEA-000000> <1585806395 received APPLICATION_DATA: databufferLen 0, contentLength 5>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <> <1309957043511> <BEA-000000> <1748707005 read databufferLen 5>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <> <1309957043511> <BEA-000000> <1748707005 read A returns 5>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <> <1309957043511> <BEA-000000> <1748707005 read(offset=1905, length=2175)>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <> <1309957043511> <BEA-000000> <1585806395 SSL3/TLS MAC>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <> <1309957043511> <BEA-000000> <1585806395 received ALERT>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <> <1309957043511> <BEA-000000> <NEW ALERT with Severity: WARNING, Type: 0
    java.lang.Exception: New alert stack
         at com.certicom.tls.record.alert.Alert.<init>(Unknown Source)
         at com.certicom.tls.record.alert.AlertHandler.handleAlertMessages(Unknown Source)
         at com.certicom.tls.record.MessageInterpreter.interpretContent(Unknown Source)
         at com.certicom.tls.record.MessageInterpreter.decryptMessage(Unknown Source)
         at com.certicom.tls.record.ReadHandler.processRecord(Unknown Source)
         at com.certicom.tls.record.ReadHandler.readRecord(Unknown Source)
         at com.certicom.tls.record.ReadHandler.read(Unknown Source)
         at com.certicom.io.InputSSLIOStreamWrapper.read(Unknown Source)
         at weblogic.socket.SSLFilter.isMessageComplete(SSLFilter.java:202)
         at weblogic.socket.SocketMuxer.readReadySocketOnce(SocketMuxer.java:912)
         at weblogic.socket.SocketMuxer.readReadySocket(SocketMuxer.java:859)
         at weblogic.socket.DevPollSocketMuxer.processSockets(DevPollSocketMuxer.java:120)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    >
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <> <1309957043512> <BEA-000000> <Alert received from peer, notifying peer we received it: com.certicom.tls.record.alert.Alert@59be2086>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <> <1309957043512> <BEA-000000> <CLOSE_NOTIFY received from peer, closing connection: >
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <> <1309957043512> <BEA-000000> <close(): 1748707005>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <> <1309957043512> <BEA-000000> <NEW ALERT with Severity: WARNING, Type: 0
    java.lang.Exception: New alert stack
         at com.certicom.tls.record.alert.Alert.<init>(Unknown Source)
         at com.certicom.tls.interfaceimpl.TLSConnectionImpl.closeWriteHandler(Unknown Source)
         at com.certicom.tls.interfaceimpl.TLSConnectionImpl.close(Unknown Source)
         at javax.net.ssl.impl.SSLSocketImpl.close(Unknown Source)
         at com.certicom.tls.record.alert.AlertHandler.handle(Unknown Source)
         at com.certicom.tls.record.alert.AlertHandler.handleAlertMessages(Unknown Source)
         at com.certicom.tls.record.MessageInterpreter.interpretContent(Unknown Source)
         at com.certicom.tls.record.MessageInterpreter.decryptMessage(Unknown Source)
         at com.certicom.tls.record.ReadHandler.processRecord(Unknown Source)
         at com.certicom.tls.record.ReadHandler.readRecord(Unknown Source)
         at com.certicom.tls.record.ReadHandler.read(Unknown Source)
         at com.certicom.io.InputSSLIOStreamWrapper.read(Unknown Source)
         at weblogic.socket.SSLFilter.isMessageComplete(SSLFilter.java:202)
         at weblogic.socket.SocketMuxer.readReadySocketOnce(SocketMuxer.java:912)
         at weblogic.socket.SocketMuxer.readReadySocket(SocketMuxer.java:859)
         at weblogic.socket.DevPollSocketMuxer.processSockets(DevPollSocketMuxer.java:120)
         at weblogic.socket.SocketReaderRequest.run(SocketReaderRequest.java:29)
         at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:42)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:145)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:117)
    >
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <> <1309957043512> <BEA-000000> <write ALERT, offset = 0, length = 2>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <> <1309957043512> <BEA-000000> <close(): 1748707005>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <> <1309957043513> <BEA-000000> <SSLIOContextTable.removeContext(ctx): 1933455503> 
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <> <1309957043513> <BEA-000000> <1748707005 closed by last read, readRecord returned 0>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <> <1309957043513> <BEA-000000> <close(): 1748707005>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <ExecuteThread: '4' for queue: 'weblogic.socket.Muxer'> <<WLS Kernel>> <> <> <1309957043513> <BEA-000000> <SSLIOContextTable.removeContext(ctx): 1933455503> 
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043513> <BEA-000000> <close(): 1748707005>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043513> <BEA-000000> <SSLIOContextTable.removeContext(ctx): 1933455503>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043629> <BEA-000000> <Filtering JSSE SSLSocket>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043635> <BEA-000000> <644832249 received HANDSHAKE>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043635> <BEA-000000> <HANDSHAKEMESSAGE: ServerHello>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043635> <BEA-000000> <644832249 SSL3/TLS MAC> 
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043635> <BEA-000000> <644832249 received HANDSHAKE>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043635> <BEA-000000> <HANDSHAKEMESSAGE: Certificate>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043636> <BEA-000000> <Validating certificate 0 in the chain: Serial number: 152521643120410351437514410813256266768
    Issuer:C=US, O=Thawte, Inc., CN=Thawte SSL CA
    Subject:C=SE, ST=Stockholm, L=Stockholm, O=DebiTech AB, CN=xxx.xxx.se
    Not Valid Before:Thu Nov 11 01:00:00 CET 2010
    Not Valid After:Thu Dec 13 00:59:59 CET 2012
    Signature Algorithm:SHA1withRSA
    >
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043638> <BEA-000000> <weblogic user specified trustmanager validation status 0>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043638> <BEA-000000> <SSLTrustValidator returns: 0>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043638> <BEA-000000> <Trust status (0): NONE> 
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043638> <BEA-000000> <Performing hostname validation checks: secure.incab.se>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043639> <BEA-000000> <644832249 SSL3/TLS MAC> 
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043639> <BEA-000000> <644832249 received HANDSHAKE>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043639> <BEA-000000> <HANDSHAKEMESSAGE: ServerHelloDone>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043646> <BEA-000000> <HANDSHAKEMESSAGE: Finished>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043768> <BEA-000000> <644832249 received APPLICATION_DATA: databufferLen 0, contentLength 5>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043769> <BEA-000000> <569879470 read databufferLen 5>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043769> <BEA-000000> <569879470 read A returns 5>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043769> <BEA-000000> <NEW ALERT with Severity: WARNING, Type: 0
    java.lang.Exception: New alert stack
         at com.certicom.tls.record.alert.Alert.<init>(Unknown Source)
         at com.certicom.tls.interfaceimpl.TLSConnectionImpl.closeWriteHandler(Unknown Source)
         at com.certicom.tls.interfaceimpl.TLSConnectionImpl.close(Unknown Source)
         at javax.net.ssl.impl.SSLSocketImpl.close(Unknown Source)
         at weblogic.net.http.HttpClient.closeServer(HttpClient.java:492)
         at weblogic.net.http.HttpClient.finished(HttpClient.java:274)
         at weblogic.net.http.KeepAliveStream.close(KeepAliveStream.java:126)
         at weblogic.net.http.KeepAliveStream.justRead(KeepAliveStream.java:38)
         at weblogic.net.http.KeepAliveStream.read(KeepAliveStream.java:77)
         at com.bea.wli.sb.transports.http.FullyConsumedInputStream.read(FullyConsumedInputStream.java:28)
         at com.bea.wli.sb.sources.BufferedSingleUseInputStream.peek(BufferedSingleUseInputStream.java:160)
         at com.bea.wli.sb.sources.StreamSource.peek(StreamSource.java:95)
         at com.bea.wli.sb.transports.MessageTracer.appendPayload(MessageTracer.java:453)
         at com.bea.wli.sb.transports.MessageTracer.trace(MessageTracer.java:77)
         at com.bea.wli.sb.transports.MessageTracer.traceOutboundResponse(MessageTracer.java:282)
         at com.bea.wli.sb.transports.Util$3.invoke(Util.java:245)
         at $Proxy84.getResponsePayload(Unknown Source)
         at com.bea.wli.sb.test.service.ServiceTransportListener.onReceiveResponse(ServiceTransportListener.java:128)
         at com.bea.wli.sb.transports.LoadBalanceFailoverListener.onReceiveResponse(LoadBalanceFailoverListener.java:233)
         at com.bea.wli.sb.transports.http.HttpOutboundMessageContext$RetrieveHttpResponseWork.handleResponse(HttpOutboundMessageContext.java:902)
         at weblogic.net.http.AsyncResponseHandler$MuxableSocketHTTPAsyncResponse$RunnableCallback.run(AsyncResponseHandler.java:531)
         at weblogic.work.ContextWrap.run(ContextWrap.java:41)
         at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:516)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043769> <BEA-000000> <write ALERT, offset = 0, length = 2>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043769> <BEA-000000> <close(): 569879470>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Debug> <SecuritySSL> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <> <1309957043769> <BEA-000000> <SSLIOContextTable.removeContext(ctx): 1081805524>
    ####<Jul 6, 2011 2:57:23 PM CEST> <Info> <OSB Kernel> <ux98.yyy.se> <OsbServer1B1> <[ACTIVE] ExecuteThread: '19' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <> <1309957043770> <BEA-398203> <
    [OSB Tracing] Outbound response was received.
    Service Ref = XXXOSB/v1/businessservice/refund
    URI = https://xxx
    Message ID = 8346891062911905034--a770f8a.130ff24ddbd.-7d05
    Response metadata =
    <xml-fragment>
       <tran:headers xsi:type="http:HttpResponseHeaders" xmlns:http="http://www.bea.com/wli/sb/transports/http" xmlns:tran="http://www.bea.com/wli/sb/transports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
         <tran:user-header name="P3P" value="CP=&quot;NOI IVAa OUR NOR UNI&quot;"/>
         <tran:user-header name="X-Server-Name" value="frontend1"/>
         <http:Connection>close</http:Connection>
         <http:Content-Type>text/xml;charset=utf-8</http:Content-Type>
         <http:Date>Wed, 06 Jul 2011 12:57:23 GMT</http:Date>
         <http:Server>Apache</http:Server>
         <http:Transfer-Encoding>chunked</http:Transfer-Encoding>
       </tran:headers>
       <tran:response-code xmlns:tran="http://www.bea.com/wli/sb/transports">0</tran:response-code>
       <tran:response-message xmlns:tran="http://www.bea.com/wli/sb/transports">OK</tran:response-message>
       <tran:encoding xmlns:tran="http://www.bea.com/wli/sb/transports">utf-8</tran:encoding>
       <http:http-response-code xmlns:http="http://www.bea.com/wli/sb/transports/http">200</http:http-response-code>
    </xml-fragment>
    Payload =
    <?xml version='1.0' encoding='utf-8'?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body><ns:refundResponse xmlns:ns="https://xxx"><ns:return type="com.verifyeasy.server.ReturnData"><ns:aCSUrl xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" /><ns:acquirerAddress xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" /><ns:acquirerAuthCode></ns:acquirerAuthCode><ns:acquirerAuthResponseCode></ns:acquirerAuthResponseCode><ns:acquirerCity xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" /><ns:acquirerConsumerLimit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" /><ns:acquirerErrorDescription xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" /><ns:acquirerFirstName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" /><ns:acquirerLastName xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" /><ns:acquirerMerchantLimit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" /><ns:acquirerZipCode xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" /><ns:amount>10</ns:amount><ns:errorMsg></ns:errorMsg><ns:infoCode xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" /><ns:infoDescription xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" /><ns:pAReqMsg xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:nil="true" /><ns:resultCode>102</ns:resultCode><ns:resultText>refund_OK</ns:resultText><ns:verifyID>122935024</ns:verifyID></ns:return></ns:refundResponse></soapenv:Body></soapenv:Envelope>
    >

    Hi,
    we had the same problem and we were able to resolve it with the above advice with a small difference.
    we were calling our business service with a service call out and applying routing options had no affect in this situation. we changed the call out to a routing node and the routing options had the desired effect.
    also, we are using osb 11g so this i'snt specific to 10g.
    does anyone know of the patch number that should be applied to resolve this (if there is one)?
    cheers
    toby

  • Once a PDF is digitally signed, how to I disable the "Clear signature" option?  I cannot allow appli

    I need to set up digital signatures for a number of documents, but once signed, the signatures must be permenant.  Currently the owner has the option (right clicking on the signature), to "clear signature" - how do I disable this?
    Thanks in advance!

    The point is that this is trivial to achieve for anyone, even if the file is locked after signing.
    They just need to keep a copy of the unsigned file, delete the signed one, and replace it with the unsigned file. So such protection means nothing.
    Repudiating signatures is a very bad thing, but it can only have real meaning if someone or some process knew about the signing. Otherwise, it's like someone signing a piece of paper, and destroying their signed copy without showing it to anyone; it's as if it never happened, and nothing was gained.  If on the other hand a person has received the signed file, or a process has securely archived it, then removing a signature has no repudiating effect on the copy.
    It can be hard to convert paper-based to electronic-based workflows where files can be freely duplicated, shared etc.
    Clearly, though, if a person can sign a file, then others can act on that signature, and then the signer can still edit the original signed file, there is a big problem, not just of repudiation but of auditability.

  • Event ID 58 - Disk signature error only while backup job

    Hi,
    Host 2012R2 with Hyper-V-role, Backups are done with DPM 2012R2.
    While job is working, three warnings are recorded in event-log of the guest:
    partmgr / Event ID 58 / The disk signature of disk 2 is equal to the disk signature of disk 1.
    partmgr / Event ID 58 / The disk signature of disk 2 is equal to the disk signature of disk 1.
    partmgr / Event ID 58 / The disk signature of disk 3 is equal to the disk signature of disk 0.
    This happens in all guests (with different disk numbers). No corresponding error on Host or DPM. Registry of each guest is growing in these keys:
    HKEY_LOCAL_MACHINE\SYSTEM\MountedDevices
    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\MountPoints2
    The popular hint "attach the VHDs, bring them on- and offline, detach" brings no solution. As Mike Jacquet from Microsoft told in
    this thread, it is a problem of Hyper-V and not DPM.
    Has anyone a solution for this? Thanks!

    Hi,
    I don’t found the issue, please install all the update then try the backup action again.
    Through the error message it clearly mentions Disk Signature conflict, please try the following troubleshooting steps, then tell us the result.
    1. Download DEVNODECLEAN.zip from http://www.microsoft.com/en-pk/download/details.aspx?id=42286 and extract it on the affected server.
    2. Now using an elevated command prompt change directory to the folder where contents of DevNodeClean.zip are extracted.
    3. Run the command DevNodeClean.exe /N >PhantomDev.txt
    4. After the above command run another command DEVNODECLEAN.exe
    5. After the command is executed you will see an output to conform it has deleted the Phantom devoices you can run the command from step 4 again and the output shall be blank.
    6. After this you can try to run the DPM Consistency Check again and check if the same events are getting logged as before complaining about Duplicated Disk and Signatures.
    More information:
    Fixing Disk Signature Collisions
    http://blogs.technet.com/b/markrussinovich/archive/2011/11/08/3463572.aspx
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • ITunes & Windows Vista Home - Error File C:\Program Data\Apple Computer\Installer\Cache\iTunes 10.5.142\iTunes.msi was rejected by digital signature policy.

    Tried
    https://discussions.apple.com/thread/2713232?start=0&tstart=0
    and
    http://www.vistax64.com/vista-general/159940-computer-blocking-anything-no-digit al-signature.html
    with no avail!!!
    iTunes opens after I click OK on the above message however I cannot do anything within the app its like Windows it preventing it from running.
    PLEASE HELP!!!

    Update:
    I tried what the diagnostic told me to do, and repaired the installation. I was able to burn a CD in iTunes, but after I restarted, the drives have disappeared again! Here's the diagnostic info now:
    Microsoft Windows Vista Home Edition (Build 6000)
    MICRO-STAR INC. MS-6728
    iTunes 7.6.0.29
    QuickTime 7.4
    CD Driver 2.0.6.1
    CD Driver DLL 2.0.6.2
    Apple Mobile Device 1.1.3.26
    iTunes Serial Number 20D6EAF059AB94B4
    Current user is not an administrator.
    The current local date and time is 2008-01-15 19:09:32.
    iTunes is not running in safe mode.
    Video Display Information
    ATI Technologies Inc., Radeon X1600/X1650 Series
    ATI Technologies Inc., Radeon X1600/1650 Series Secondary
    ** External Plug-ins Information **
    Plug-in Name: Last.fm iTunes plugin
    Plug-in Loaded: Yes
    Plug-in Version: 0.0.13
    Plug-in File Version: 2.0.13.0
    Plug-in Path: C:\Program Files\iTunes\Plug-ins\itw_scrobbler.dll
    No drives showed up to be tested.

Maybe you are looking for

  • How to stop spotlight indexing?

    When I start working in the morning the iMac is slow due to spotlight indexing. How do I stop this until later that day?

  • I'am looking for Firefox 4 web browser to download.

    I am having trouble with this web site because it has a lot of pop's which my work use's this web base software. And the company said that at this time the web site only supports Firefox 4 or Internet explorer 8. I am trying to download Firefox 4 but

  • PPro CS6 hangs computer

    All of a sudden, PPro stops responding - correction, the WHOLE COMPUTER stops responding. Mouse won't move, alt-tab doesn't work, ctrl-alt-del doesn't work - I actually have to power cycle the machine. This is not a very complex project (the project

  • Raw conversion from a nikon??

    I can't seem to open my raw files in Photoshop CS6?

  • Java 3D - Importing objects

    Hi, I'm new to using Java3D and am having trouble using models created in truespace5 within my program. I have tried using the ncsa loaders but these generate errors.... Unrecognised token line ** Although i may not be using the loader correctly so t