2.5.2 JDOEnhancerTask ignores classpath element

I use java task with the same classpath and everything works JDOEnhancerTask
fails with java.lang.NoClassDefFoundError: javax/jdo/InstanceCallbacks
or for another project it can load my config file. I can assure you that jdo
jar in my class path (java task works just fine)
<target name="enhance" depends="compile" description="JDO Enchance">
<taskdef name="enhancer"
classname="com.solarmetric.modules.integration.ant.JDOEnhancerTask">
<classpath>
<path refid="classpath"/>
</classpath>
</taskdef>
<enhancer>
<classpath>
<path refid="classpath"/>
<pathelement location="${build.classes}"/>
<pathelement location="${usorg-jdo.classpath}"/>
</classpath>
<fileset dir=".">
<include name="**/*.jdo" />
</fileset>
<config properties="${name}-jdo.properties" />
</enhancer>
<java classname="com.solarmetric.kodo.enhance.JDOEnhancer" fork="yes" >
<classpath>
<pathelement location="${build.classes}"/>
<path refid="classpath"/>
<pathelement location="${usorg-jdo.classpath}"/>
</classpath>
<arg value="${build.classes}/peacetech/gao/ccs/jdo/package.jdo"/>
<jvmarg
value="-Dcom.solarmetric.kodo.properties=${name}-jdo.properties"/>
</java>
</target>

Sorry Alex, I misread your ant file so that the classpath declaration was
in the task itself. Can you try in the system classpath to see if its an
Ant resource bug?
On Mon, 14 Jul 2003 10:50:35 -0400, Alex Roytman wrote:
Stephen,
There is no need to put any jars on ant system class path. please see
http://ant.apache.org/manual/CoreTasks/taskdef.html
but it is beyond the point. The very first exception I get is about
inability to load property file
Caused by: java.util.MissingResourceException: usorg-jdo.properties
at
com.solarmetric.kodo.conf.DefaultConfiguration.setProperties(DefaultConfigur
ation.java:131)
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
org.apache.tools.ant.IntrospectionHelper$5.set(IntrospectionHelper.java:711)
at
org.apache.tools.ant.IntrospectionHelper.setAttribute(IntrospectionHelper.ja
va:426)
... 20 more
once again my JDOEnhancerTask fails while calling JDOEnhancer straight works
fine. Notice I use the same classpath and property file in both
please make sure you test it with latest released ant - 1.5.3
Thank you
Alex
<taskdef name="enhancer"
classname="com.solarmetric.modules.integration.ant.JDOEnhancerTask">
<classpath>
<path refid="classpath"/>
</classpath>
</taskdef>
<enhancer>
<classpath>
<path refid="classpath"/>
<pathelement location="${build.classes}"/>
</classpath>
<fileset dir="${build.classes}">
<include name="**/*.jdo"/>
</fileset>
<config properties="${name}-jdo.properties"/>
</enhancer>
</target>
<java classname="com.solarmetric.kodo.enhance.JDOEnhancer" fork="yes" >
<classpath>
<pathelement location="${build.classes}"/>
<path refid="classpath"/>
</classpath>
<arg value="${build.classes}/peacetech/gao/usorg/jdo/package.jdo"/>
<jvmarg
value="-Dcom.solarmetric.kodo.properties=${name}-jdo.properties"/>
</java>
"Stephen Kim" <[email protected]> wrote in message
news:[email protected]...
The classpath is used for the task itself to resolve where to find the
target class (e.g. tutorial.Animal does not need to be in the system
classpath. However, it does not affect how the task itself is loaded
which is in the system classpath.
On Sun, 13 Jul 2003 02:23:17 -0400, Alex Roytman wrote:
that's not correct. you can define class path for a task in taskdef
element
"Stephen Kim" <[email protected]> wrote in message
news:[email protected]...
Are you sure jdo1_0.jar is in the System classpath? While java task
can
take in a dynamic classpath, the actual tasks themselves require
jdo1_0.jar to be in Ant's System classpath (if you use the ant/ant.bat
scripts, in the $ANT_HOME/lib directory).
You can also echo the classpath to see if it is listed there.
On Sat, 12 Jul 2003 20:33:06 -0400, Alex Roytman wrote:
I use java task with the same classpath and everything works
JDOEnhancerTask
fails with java.lang.NoClassDefFoundError:
javax/jdo/InstanceCallbacks
or for another project it can load my config file. I can assure youthat
jdo
jar in my class path (java task works just fine)
<target name="enhance" depends="compile" description="JDO Enchance">
<taskdef name="enhancer"
classname="com.solarmetric.modules.integration.ant.JDOEnhancerTask">
<classpath>
<path refid="classpath"/>
</classpath>
</taskdef>
<enhancer>
<classpath>
<path refid="classpath"/>
<pathelement location="${build.classes}"/>
<pathelement location="${usorg-jdo.classpath}"/>
</classpath>
<fileset dir=".">
<include name="**/*.jdo" />
</fileset>
<config properties="${name}-jdo.properties" />
</enhancer>
<java classname="com.solarmetric.kodo.enhance.JDOEnhancer"fork="yes" >
<classpath>
<pathelement location="${build.classes}"/>
<path refid="classpath"/>
<pathelement location="${usorg-jdo.classpath}"/>
</classpath>
<arg
value="${build.classes}/peacetech/gao/ccs/jdo/package.jdo"/>
<jvmarg
value="-Dcom.solarmetric.kodo.properties=${name}-jdo.properties"/>
</java>
</target>--
Steve Kim
[email protected]
SolarMetric Inc.
http://www.solarmetric.com
Steve Kim
[email protected]
SolarMetric Inc.
http://www.solarmetric.com
Steve Kim
[email protected]
SolarMetric Inc.
http://www.solarmetric.com

Similar Messages

  • Jaxb unmarshalling: how to ignore unknown elements?

    Hi,
    I use jaxb 1.1 for communication with an external partner. (Took schema, compiled it, used generated classes for unmarshalling like this:
    Document doc = /* some document building */
    JAXBContext jaxbContext = JAXBContext.newInstance(MyConstants.JAXB_PACKAGE);
    Unmarshaller unMarshaller = jaxbContext.createUnmarshaller();
    myObject = (MyObject) unMarshaller.unmarshal(doc);) Everything worked fine until they decided to add new elements to their xml-Document without notifiing me (nothing very unusual I think...). Now I get a javax.xml.bind.UnmarshallingException with Message "Unexpected Element". Is there any way to ignore such elements and just take the known Elements from the xml-stream?
    Thanks in advance
    Thomas

    Update your schema with the following after you known elements.
    <xs:any namespace="##any" processContents="skip" minOccurs="0" maxOccurs="unbounded">
    <xs:annotation>
    <xs:documentation>An extension point for arbitrary xml value fragments</xs:documentation>
    </xs:annotation>
    </xs:any>
    Hunter

  • Why does loadXML over-write attributes in data DOM even if 'ignore root element' argument is true?

    I'm running Acrobat 9.4 if that makes any difference.  This question was spurred by another discussion on inserting an item into a list.  Basically loadXML is erasing the attributes on the reference node.  For example, if domNode is a node in the data DOM and newXML is a replica of domNode's XML with some child elements changed and newXML_str is the string representation of newXML, then the statement domNode.loadXML(newXML_str,true,true) eliminates the attributes in domNode.  A commenter in the above link states that it happens because the attribute is not stored in the data DOM as an attribute but rather as a child node with prefix '@' but if that were the case it would seem that saveXML should show it as a child element and not as an attribute.  However, saveXML (as shown below) correctly shows the attribute as an attribute.
    What I would like to happen is to have the child attribute node(s) preserved and the child element nodes replaced.  It seems to me that if the second argument is true (ignore root element in xmlArg) then the root element in the data DOM (including attributes) should be unchanged but that is not what happens.  
    Here is some sample XML:
    <docroot>
        <contact uid="29033737">
            <firstName>George</firstName>
            <lastName>Sinkenschneider</lastName>
        </contact>
    </docroot>
    Here's some JavaScript:
    var domNode = xfa.resolveNode("xfa.data.docroot.contact.(uid.value=='29033737')");
    var domNodeXML_str = domNode.saveXML();
    console.println("  contact data node saveXML (domNode) = ".concat(domNodeXML_str));
    console.println("  domNode.uid.value=".concat(domNode.uid.value));
    var newXML_str = domNodeXML_str.replace("George", "Johnny");
    console.println("  newXML_str = ".concat(newXML_str));
    domNode.loadXML(newXML_str, true, true);
    console.println("  DOM node after executing loadXML(newXML_str, true, true) = ".concat(domNode.saveXML()));
    xfa.form.remerge();
    Here's the console output from the script (including all the ugly line-feeds):
      contact data node saveXML (domNode) = <?xml version="1.0" encoding="UTF-8"?>
    <contact uid="29033737"
    ><firstName
    >George</firstName
    ><lastName
    >Sinkenschneider</lastName
    ></contact
    >
      domNode.uid.value=29033737
      newXML_str = <?xml version="1.0" encoding="UTF-8"?>
    <contact uid="29033737"
    ><firstName
    >Johnny</firstName
    ><lastName
    >Sinkenschneider</lastName
    ></contact
    >
      DOM node after executing loadXML(newXML_str, true, true) = <?xml version="1.0" encoding="UTF-8"?>
    <contact
    ><firstName
    >Johnny</firstName
    ><lastName
    >Sinkenschneider</lastName
    ></contact
    >
    Note that the uid attribute is missing from the final DOM node.

    Looks like you may have found a bug .....If I append the new xml I see that the uid attribute is maintained (oit is not touching the root attribute). If I replace it then it seems that the attribute is ignored when the node is re-written. We will need to open a bug with support ...do you want to do that?
    Paul

  • InDesign CS2 - don't want to ignore Whitespace elements

    Hi,
    I am working of InDesign CS2 on XP-SP2, while doing manual XML import i can successfully uncheck "Do not import contents of whitespace-only elements" but i can't do the same using script....
    I am using following chunk of script in CS2 which doesn't work with ESTK2.
    mydoc.xmlImportPreferences.ignoreWhitespace = false;
    I noticed this works well with CS3 plugins in CS2. I need to resolve this with CS2 only. Let me know if you have any clue.
    Thanks.

    Under Document Offset, specify the number of lines that are to be ignored at the beginning of the document.
    This enables you to skip comment lines or column names during processing. If you do not make an entry, the default value is zero lines.
    http://help.sap.com/saphelp_nw04/helpdata/en/2c/181077dd7d6b4ea6a8029b20bf7e55/frameset.htm
    But in Receiver File adapter
    NameA.addHeaderLine=0
    is used to have no Header line in the target structure
    http://help.sap.com/saphelp_nw04/helpdata/en/2c/181077dd7d6b4ea6a8029b20bf7e55/frameset.htm

  • What the hey - ANT classpath element?

    I've fallen into this trap before. A book I have (java development with ANT) AND the ant manual itself reference a type called "classpath". See here:
    http://ant.apache.org/manual/using.html#path
    When used however, ant dies with an error stating that the "classpath" type does not exist. And with good reason: looking at the ANT source code I cannot find this type anywhere!
    What gives? Was it removed starting from some version? I know you can just replace "classpath" with "path" and it wil work :s

    I'll try the classpath subtype just in case I missed
    that by mistake, but the ANT source code alone does
    not contain a classpath type anywhere that I can findI'm still confused by what you mean by "type" and "subtype".
    Ant defines tasks, which appear in the buildfile as children of the <project> element. Each task has a type that implements it, derived from org.apache.tools.ant.Task. A task definition provides setters for each of its attributes, and these may be invoked either in response to attributes in the task's element, or from child elements.
    A "type" as referenced by http://ant.apache.org/manual/conceptstypeslist.html is a bit misleading. As Ant processes the buildfile, it will attempt to convert task attributes so that they can be passed to the appropriate setters. This is described in http://ant.apache.org/manual/develop.html#writingowntask along with the allowable conversions.
    As to "classpath": if you look at the javadoc for org.apache.tools.ant.taskdefs.Java, you'll see a method setClasspath(Path s). As Ant scans the buildfile, it will look for an attribute or child element with the name "classpath", then attempt to apply a conversion that will allow it to call that setter method.
    Again, what is it that you're trying to do? Asking that question will probably get you better results than questions about Ant's implementation.

  • Javac ignores CLASSPATH

    Hi everybody,
    I am new to Java and currently I have a problem compiling my source files. I set the CLASSPATH to the directory in which my source files are stored, but it seems that jdk1.3.1 ignores the CLASSPATH.
    Example:
    My CLASSPATH is: F:\javaprojects;.
    My PATH is: F:\jdk1.3.1_01\bin;.
    My source file: F:\javaprojects\HelloWorld.java
    The following error occurs:
    C:\>javac HelloWorld.java
    error: cannot read: HelloWorld.java
    1 error
    What does this mean? When I am changing my current directory to F:\javaprojects no error occurs and I am able to run the program:
    F:\javaprojects>javac HelloWorld.java
    F:\javaprojects>java HelloWorld
    Hello World
    Did I set a wrong CLASSPATH? Or has the current directory always to be the same as the directory in which my source files are stored? Somebody knows a solution?

    If you are using Win98, ME, or 95, go to "Start" -->> "Run" ------>> type "sysedit". A couple of files should pop up, al dstacked one ontop of the other. Don't mess with them if you don't know what you are doing!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Your system may become horsed up. The file you want is "autoexec.bat"
    at the bottom of the file specify where your java is installed by typing exaxctly the following, assuming that your jdk1.3.1 is installed in C:\Paogram Files\jdk1.3.1\bin, if its not, use the proper path and don't forget to include the ;%path% at the end now type::
    Path C:\progra~1\jdk1.3.1\bin;%path%
    hit <ENTER> now type:
    set classpath=.;C:\mydocu~1\Javaz\classes;C:\progra~1\jdk1.3.1\lib\tools.jar;%classpath%
    the .;C\mydocu~1\Javaz\classes; assumes that you are using some other third party classes and packages that are in a folder path c:\my documents\Javaz\classes\
    if you don't have third party *.class files go ahead and type only this instead - assumung your folder path is correct :
    set classpath=.;C:\progra~1\jdk1.3.1\lib\tools.jar;%classpath%
    the .; before C:\ enables you to run the java comoiler and JVM fron any folder without having to ever re-specify the path again.
    If you know how to use dos, you may also want to use "doskey" so you can use the up and down arrows on your keyboard without having to re-type the same command over and over and over again for one project/program. to do that hit <ENTER> then on a fresh line type:
    Doskey/insert
    check all spellings and path names. If they are correct then, you are done, now
    "File" ----->> "Save" and close the big window, Reboot your pc
    <Let the javaring begin!! wow!!>

  • Executing JAR file ignores classpath

    I have recently been working with JAR files, and manifest.mf files. I have discovered that the only classpath that the jar file will ever use is the one defined in the manifest file.
    Apparently, specifying the classpath on the command line, or through the CLASSPATH environment variable is ignored by the JAR file.
    Can anyone explain why this is the behavior for jar files?

    Can anyone explain why this is the behavior for jar
    files?Because the Class-Path parameter in the jar's manifest file is the value that controls where Java looks for your classes.

  • How to remove/ignore the element using SAXParser

    hello all,
    I want to parse the text content in string from the existed xml file. but had problem with the parser. Does anyone have good idea, how to remove or ignore the <link> tag in tag <text>?
    IS: the output is only the rest of part text behind <link style="blue" src="www.test.com" />.
    Wanted: the whole text in <text> tags. like "Reach more customers by creating targeted micro-sites using test's multi-store retailing functionality."
    Given below is my code :
    <?xml version="1.0"?>
    <test xmlns="http://www.test.com/test">
    <title>test title</title>
    <text>Reach more customers by creating targeted micro-sites using test's<link style="blue" src="www.test.com" /> multi-store retailing functionality.</text>
    </test>java code using SAXParser
      public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException {
      public void endElement(String uri, String localName, String qName) throws SAXException {
        if (qName.equals("text")) {
          System.out.println("content: " + text);
      public void characters(char[] ch, int start, int length) throws SAXException {
        String str = new String(ch, start, length);
        if (str.length() > 0)
          text = text == null ? str : text + str;
    ...Edited by: lauehuang on Sep 9, 2008 4:37 AM

    i think u can't modify the xml file using SAX
    SAX is only for reading XML
    for any modifications in xml file u have to use DOM parser....
    correct me if i m wrong....
    Thanks & Regs
    Ravi

  • Ignore overlapping elements

    Is there a way I could create a button (on any shape) that has a hover state that is not overridden by the button's face text (text) that overlaps it?
    Case scenario:
    - I have a symbol with two shapes (button body) and (button text)
    - On hovering over "button body", the desired animation plays...
    - BUT, if the mouse reached the "button text" region, the animation is cancelled as the shape underneath "button body" loses focus.
    - Essentially, the element "button text" must be visible but must be entirely inactive to mouse/touch events.
    I have tried a few hacks for this but since the scene has many state changes, I would like to know if there's a real solution...

    You might find this video helpful. As well as others by the same.
    http://tv.adobe.com/watch/create-like-crazy-with-adobe-edge/episode-4-create-dynamic-reusa ble-components-with-edge-animate/

  • Web service wrapper in FB4 ignores Element when Attribute exists

    I created a web service wrapper in Flash Builder 4 using the "Data --> Connect to Data/Service... ".
    The WSDL contains a type like this:
    <xs:complexType name="Description">
    <xs:simpleContent>
      <xs:extension base="xs:string">
       <xs:attribute name="languageCode" type="xs:string"/>
      </xs:extension>
    </xs:simpleContent>
    </xs:complexType>
    In the response XML this type looks like this:
    <ns2:Description languageCode="en_US">My Description</ns2:Description>
    In this case the code generator ignores the element value ("My Description") and just creates a property for the attribute (languageCode="en_US").
    BTW: Not mixing elements and attributes in one type would be a possible solutions, but I usually deal with web services I did not implement and I therefore can't change.
    Has anyone had this problem and hopefully solved it?
    Regards,
    Martin

    Thanks for sharing your tips on this forum, as it will be useful for other users, that run into this issue.
    Feedback like this will also help us improve error reporting in the next release, as missing class files in the packaged application is a common issue when developers are moving from the embeded oc4j instance packaged with JDewveloper to standalone instances.
    -Eric

  • Nested class path element in ANT task

    I am having some problems with the nested classpath element in the
    enhancer ANT task. Does anyone else use this? If so can you share your
    config with me.
    class loader could not resolve the class name "XYZ"
    sean.

    Sean Hager wrote:
    I am having some problems with the nested classpath element in the
    enhancer ANT task. Does anyone else use this? If so can you share your
    config with me.
    class loader could not resolve the class name "XYZ"Impossible to say what your error means without looking at your build.xml.
    My enhancer task looks like:
    <taskdef name="jdoc" classpathref="eclipse.classpath"
    classname="com.solarmetric.modules.integration.ant.JDOEnhancerTask"/>
    <jdoc>
    <fileset dir="${src.dir}">
    <include name="**/*.jdo" />
    </fileset>
    <fileset dir="${testsrc.dir}">
    <include name="**/*.jdo" />
    </fileset>
    <classpath>
    <pathelement location="bin/"/>
    <path refid="eclipse.classpath"/>
    </classpath>
    </jdoc>
    Hope that helps.
    Tom

  • How can I add one more path in the classpath tag in xml

    I have added the following line in the global-web-application.xml, and it works.
    <classpath
    path="/apps01/o9ias/j2ee/home/default-web-app/WEB-INF/properties"
    />
    But whenever I add one more path into it, the oc4j can't start.
    The Oracle manual Oracle9iAS Container for J2EE is beta. It doesn't tell the grammer to do that.
    Hopefully you can share some ideas and let me know how to add some more path into it.
    Thanks.
    Wei

    Hi Wei,
    I have just done a quick search of the following URLs
    http://www.orionserver.com
    http://www.orionsupport.com
    http://www.atlassian.com
    http://www.elephantwalker.com
    And -- as is nearly always the case -- found a shamefully minute amount
    of information, and what I did find was totally useless.
    Oracle have not produced any real documentation for OC4J -- they
    claim it's coming in the next release -- and, as I already said, I
    couldn't find anything on the Internet about "global-web-app.xml" or
    "classpath" element. Therefore (surprise, surprise) your only option
    (as I see it) is just experiment and try to hack the code.
    I wish someone would please tell me if there's another option, because,
    like you, I find it very frustrating to have to continually play
    "guessing games" when trying to work with OC4J. I imagine other people
    seem to enjoy this -- since I don't see anyone else complaining.
    In any case, have you tried multiple "path" attributes, for example:
    <classpath path="/your/path/" path="/your/other/path/"/>
    Got nothing to lose, have you :-)
    Good Luck,
    Avi.

  • Reading .csv Files & Empty List Elements

    I have an application allowing users to upload .csv files for
    import into a database.
    The issue is however, that in some cases every column in the
    csv file will be populated, and in others, not.
    As ColdFusion ignores empty list elements I cannot accurately
    import data based on it's column numbers.
    I'm curious how others get around this issue.

    ckbentdesigns wrote:
    > As ColdFusion ignores empty list elements
    Yes, most list functions ignore empty elements. If you are
    using CF8, try the listToArray function. It has a new attribute
    includeEmptyElements.
    Otherwise, there are several solutions. I listed a few of
    them in this thread. Though there are others. You should google
    something like:
    ColdFusion csv Files Empty List Elements to see other
    options and the +/- of each.
    http://www.tek-tips.com/viewthread.cfm?qid=1490791&page=1

  • Missing element To when using SOAP 1.2 with WS Addressing 1.0 in Response

    Hi, 
    I'm developing WCF using  SOAP 1.2 with WS Addressing 1.0 between Windows Server 2012 and JAVA client Oracle JAX-WS 2.1.5.
    The Request from the client contains the element <To>, but the Response from the Server somehow will ignore that element, which is required for the client, even I tried to add manually.(refer to http://stackoverflow.com/questions/15808852/how-to-correctly-implement-custom-soap-1-2-headers-and-ws-addressing-in-a-wcf-se)
    Is this normal behavior that the Response will ignore the element <To>?
    And is there another way to add the element?
    Thanks.

    I'm developing server side service using .net framework 4.0.
    Microsoft Service Trace Viewer shows that in ServiceLevelReceiveRequest the element <To> is exist, but then it is gone in the following step, ServiceLevelSendReply, and TransportSend.
    Thanks.

  • Downloading from Nikon Coolscan V into Elements 10 on a Mac os x

    Before opting for a trial of Elements 10 I asked in this forum if it was possible to download images from my Nikon Coolscan V scanner onto my Mac OS X via Elements 10. I was advised that I should move the TWAIN plug-in from optional plug-ins (in applications - Elements 10 - support files - import modules) to plug-ins.
    I did this after downloading Elements 10 & moved the TWAIN from the optional plug-ins folder to the plug-ins folder, a simple move. However, in neither the organizer nor the editor can I find any route to downloading from the Nikon. In the organizer - file - get photos & videos - the options are camera or card reader (trying that shows no device found), or other options dealing with importing images from the hard drive. In help, the only mention of assistance with scanners is for Windows only, & no information at all about Macs.
    I'm sure I'm missing something elementary & my general ignorance of Elements 10 is probably a major factor in this - but Elements 10 looks to be a much more versatile tool than the Nikon recommended Silverfast programme (the trial of which downloaded with instantaneous ease from the Nikon). My intention is to use scanned stills in Premiere Pro CS5 so the 'marrying'  of two adobe programmes seems a logical thing to aim for - if I can download & edit my stills from the Nikon scanner into Elements 10 ..any help for a novice would be appreciated greatly!      
    Thanks
    Brian Fanning

    Dear Barbara,
    Thanks for your help (& education) - in Elements editor file, import gives me four options - both anti-aliased pict & pict resource open my finder & I have used the Nikon folder to seek a connection via Nikon scan plug-in 4, (which is grayed & will not open). The other options are HPscan (I have disconnected my HP scanner/printer to simplify things) & frame from video (obviously not relevant here). I have presumed to select the Nikon folder in my Finder for lack of any other logical option to select.
    From your guidance I imagined file, import would name the Nikon Coolscan on the initial list in the editor, but whatever, I still do not know how to link the nikon to Elements. The Nikon scan was uninstalled previously because it was inactive on my Mac, & Nikon advised that this should be the case. I wondered if I should re-install, but when trying the Silverfast software the image was imported instantly via image/ prescan, denoting that the Nikon software was uneeded
    In return for your further assistance I hereby pledge never again to confuse my imports with my downloads!!
    Thanking you
    Brian Fanning

Maybe you are looking for

  • How can I download a file over the internet from a WebDAV server?

    I am trying to download a file over the internet from a WebDAV server. I've tried doing it with Datasocket as suggested in these articles, <a href="http://digital.ni.com/public.nsf/websearch/f3cc5f7e60a75cb2862567e700696abf?opendocument">Retrieving a

  • Flash Builder 4.6 Installer Error

    I'm trying to install Flash Builder 4.6, but I'm getting an error immediately when the installer starts. It says "Beta or prerelease versions of Adobe Flash Builder are installed on the machine, and must be uninstalled before this installation can pr

  • Special Spanish Characters - What do i need?

    I am using Photoshop 7 to create graphics for a training series that is being translated into Spanish. I am using FCP 6.03 on a G5. What do I need from Adobe in order to create the graphics in the Spanish language? i only have access to some of the s

  • No Flash Player Audio on YouTube

    I have W7, MIE9.  I have no audio on any youtube selection.  I have uninstalled/reinstalled flashplayer numerous times with no success.  I just went through all the suggestions on Adobe's website with no success.  When I select youtube I momentarily

  • Executing OpenScript from OTM fails-Failed to connect forms

    Hi, Iam Sandeep,i've recorded an E-Business Suite script using OpenScript 9.21 and tried to playback the same.While playing back it's failed in the middle,the error was "Failto connect to form after 30000 milli seconds".Later i'd changed the Event Ti