Could not complete parsing, unmatched tags - Please Help

I am getting the following error with WLS 6.1, thanks for any help given:
          <Dec 4, 2001 10:11:13 AM PST> <Error> <HTTP>
          <[WebAppServletContext(4939071,digex_web,/digex_web)] Root cause of Servlet
          Exception
          weblogic.utils.ParsingException: Could not complete parsing, unmatched tags:
          correctNumber
          at weblogic.servlet.jsp.JspLexer.parse(JspLexer.java:1032)
          at weblogic.servlet.jsp.JspParser.doit(JspParser.java:78)
          at weblogic.servlet.jsp.JspParser.parse(JspParser.java:181)
          at weblogic.servlet.jsp.Jsp2Java.outputs(Jsp2Java.java:119)
          at
          weblogic.utils.compiler.CodeGenerator.generate(CodeGenerator.java:255)
          at weblogic.servlet.jsp.JspStub.compilePage(JspStub.java:327)
          at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:189)
          at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:154)
          at
          weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:36
          8)
          at
          weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
          :242)
          at
          weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
          :304)
          at
          weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
          :200)
          at
          weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
          ntext.java:2456)
          at
          weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
          :2039)
          at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
          at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
          >
          The following is the JSP code:
          <jsp:useBean id='form' scope='request'
          class='beans.app.forms.CreateAccountForm'/>
          <%@ taglib uri='cards' prefix='card' %>
          <jsp:setProperty name='form' property='*'/>
          <card:correctNumber number='<%=form.getCreditCardNumber() %>'
          type='<%=form.getCreditCardType() %>'
          expireMonth='<%=form.getCreditCardExpirationMonth() %>'
          expireYear='<%=form.getCreditCardExpirationYear() %>'>
          <% form.validateCard() %>
          <jsp:forward page='/validate-account-action.do'/>
          The following is the taglib:
          <?xml version="1.0" encoding="ISO-8859-1" ?>
          <!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library
          1.1//EN" "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
          <taglib>
          <tlibversion>1.1</tlibversion>
          <jspversion>1.1</jspversion>
          <shortname>CardTag</shortname>
          <uri>http://www.servletsuite.com/servlets/cardtag</uri>
          <info>Credit card number checking</info>
          <tag>
          <name>correctNumber</name>
          <tagclass>com.cj.ccnum.Correct</tagclass>
          <bodycontent>JSP</bodycontent>
          <info>Executes body for correct credit card number</info>
          <attribute>
          <name>number</name>
          <required>true</required>
          <rtexprvalue>true</rtexprvalue>
          </attribute>
          <attribute>
          <name>type</name>
          <required>true</required>
          The following is my web.xml tag definition:
          <taglib>
          <taglib-uri>cards</taglib-uri>
          <taglib-location>/WEB-INF/tlds/cardcheck.tld</taglib-location>
          </taglib>
          <rtexprvalue>true</rtexprvalue>
          </attribute>
          <attribute>
          <name>expireMonth</name>
          <required>true</required>
          <rtexprvalue>true</rtexprvalue>
          </attribute>
          <attribute>
          <name>expireYear</name>
          <required>true</required>
          <rtexprvalue>true</rtexprvalue>
          </attribute>
          </tag>
          </taglib>
          

You need to close the correctNumber tag.
          Mike
          "Gino" <[email protected]> wrote in message
          news:[email protected]...
          > I am getting the following error with WLS 6.1, thanks for any help given:
          >
          > <Dec 4, 2001 10:11:13 AM PST> <Error> <HTTP>
          > <[WebAppServletContext(4939071,digex_web,/digex_web)] Root cause of
          Servlet
          > Exception
          > weblogic.utils.ParsingException: Could not complete parsing, unmatched
          tags:
          > correctNumber
          > at weblogic.servlet.jsp.JspLexer.parse(JspLexer.java:1032)
          > at weblogic.servlet.jsp.JspParser.doit(JspParser.java:78)
          > at weblogic.servlet.jsp.JspParser.parse(JspParser.java:181)
          > at weblogic.servlet.jsp.Jsp2Java.outputs(Jsp2Java.java:119)
          > at
          > weblogic.utils.compiler.CodeGenerator.generate(CodeGenerator.java:255)
          > at weblogic.servlet.jsp.JspStub.compilePage(JspStub.java:327)
          > at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:189)
          > at weblogic.servlet.jsp.JspStub.prepareServlet(JspStub.java:154)
          > at
          >
          weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:36
          > 8)
          > at
          >
          weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
          > :242)
          > at
          >
          weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
          > :304)
          > at
          >
          weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
          > :200)
          > at
          >
          weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
          > ntext.java:2456)
          > at
          >
          weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
          > :2039)
          > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
          > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
          > >
          >
          > The following is the JSP code:
          >
          > <jsp:useBean id='form' scope='request'
          > class='beans.app.forms.CreateAccountForm'/>
          >
          > <%@ taglib uri='cards' prefix='card' %>
          >
          > <jsp:setProperty name='form' property='*'/>
          >
          > <card:correctNumber number='<%=form.getCreditCardNumber() %>'
          > type='<%=form.getCreditCardType() %>'
          > expireMonth='<%=form.getCreditCardExpirationMonth() %>'
          > expireYear='<%=form.getCreditCardExpirationYear() %>'>
          > <% form.validateCard() %>
          >
          > <jsp:forward page='/validate-account-action.do'/>
          >
          >
          > The following is the taglib:
          >
          > <?xml version="1.0" encoding="ISO-8859-1" ?>
          > <!DOCTYPE taglib PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library
          > 1.1//EN" "http://java.sun.com/j2ee/dtds/web-jsptaglibrary_1_1.dtd">
          >
          > <taglib>
          > <tlibversion>1.1</tlibversion>
          > <jspversion>1.1</jspversion>
          > <shortname>CardTag</shortname>
          > <uri>http://www.servletsuite.com/servlets/cardtag</uri>
          > <info>Credit card number checking</info>
          >
          > <tag>
          > <name>correctNumber</name>
          > <tagclass>com.cj.ccnum.Correct</tagclass>
          > <bodycontent>JSP</bodycontent>
          > <info>Executes body for correct credit card number</info>
          >
          > <attribute>
          > <name>number</name>
          > <required>true</required>
          > <rtexprvalue>true</rtexprvalue>
          > </attribute>
          >
          > <attribute>
          > <name>type</name>
          > <required>true</required>
          >
          > The following is my web.xml tag definition:
          >
          > <taglib>
          > <taglib-uri>cards</taglib-uri>
          > <taglib-location>/WEB-INF/tlds/cardcheck.tld</taglib-location>
          > </taglib>
          > <rtexprvalue>true</rtexprvalue>
          > </attribute>
          >
          > <attribute>
          > <name>expireMonth</name>
          > <required>true</required>
          > <rtexprvalue>true</rtexprvalue>
          > </attribute>
          >
          > <attribute>
          > <name>expireYear</name>
          > <required>true</required>
          > <rtexprvalue>true</rtexprvalue>
          > </attribute>
          >
          > </tag>
          >
          > </taglib>
          >
          >
          

Similar Messages

  • HT201364 I have a 2013 iMac, with OS X version 10.8.5.  Have been trying to download OS X Mavericks without success; error message "we could not complete your purchase, the product distribution file could not be verified, etc".  Please help; TQ

    I have a 2013 iMac, with OS X version 10.8.5.  Have been trying to download OS X version 10.9 (OS X Mavericks) without success; error message "we could not complete your purchase, the product distribution file could not be verified, etc".  Please help; TQ

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you boot, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • Sorry, we could not complete the operation. Please try again later or reload the web page

    I am a bizspark member and wanted to signup for Azure. 
    I did phone verification part and when I sign up I get this error 
    Sorry, we could not complete the operation. Please try again later or reload the web page
    Same happened with my colleagues ones too. But 2 invites got accepted after reloading the webpage for 100+ times. I am loosing my patience here. I have seen others getting this error as well. Do you guys have any idea how irritating this is? Azure support
    is also not responding properly. Its a big headache for developers like us. 
    When will you solve this issue? And I want an correct explanation why this error occurs. Don't tell me to clear cookies and cache. I've done everything. Tried different browsers. 

    Hi,
    It seems there is something wrong with your sign up process, sorry for the inconvenience, this is technical forum, the account issue is out of our range, please follow steps below to contact with azure support, it's a best choice for you.
    Get the support channel at:
    http://www.windowsazure.com/en-us/support/options/
    If you have any other concern, please feel free to let me know.
    Best Regards,
    Jambor
    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.
    Click
    HERE to participate the survey.

  • HT201304 ello my little brother has developed lock my iPhone and I could not see the unlocking code Please help and thank you

    Hello
    ello my little brother has developed lock my iPhone and I could not see the unlocking code Please help and thank you
    edited by host

    Hi Omar_a983,
    If you are having an issue with the passcode on your iPhone, you may find the following article helpful:
    iOS: Forgotten passcode or device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    Regards,
    - Brenden

  • HT201250 My Time Machine is not backing up and gives me this error report, 'The backup disk image "/Volumes/Data/Valarie'siMac.sparsbundle" is already in use.  Time machine could not complete backup.    Can anyone help me?

    My Time Machine is not backing up and gives me this error report:
    The backup disk image "/Volumes/Data/Valarie'siMac.sparsbundle" is already in use
    Time Machine could not complete backup
    Can anyone help me?

    Look at the discussion on the following forum:
    https://discussions.apple.com/thread/3882138?start=0&tstart=0
    The responses given there may help.

  • Could not complete your request...Help

    I am getting a Could not complete your request because it is not the right kind of document error on one particular file. I got this file from yousendit.com, it is a large photo file, 75megs, and I believe came from a mac...it has not extension. I tried adding an extension, thinking tif was probable. With a tif ext. I can open the file in Bridge CS4, but it will not open in PS CS4 or CameraRaw.
    I have opened the file in a binary text reader and in the header info, it mentions Accusoft Inc.and a bunch of other stuff (unknown to me) plus a lot of tiff specs.
    I have to have this image for a book I'm doing but am unable to resize, change to cymk etc.
    Any help will be greatly appreciated.
    thanks
    jon

    Glad that you got the file Opened.
    PS is very critical, while other programs are not so picky. In the valiant attempt to create 100% perfect output, Adobe is often more sensitive to input. Sometimes, you have to think outside of the Adobe box - not that the box is, in any way flawed, it's just sensitive.
    I use many tools, and sometimes have to wing it, with guesses on file extensions from Mac's. Sometimes, it takes many unsuccessful tries (guesses), to get it right.
    Thanks for reporting your success!
    Happy editing,
    Hunt
    PS - I often hear "Could not complete your request... " from my wife, and she does not even use Photoshop!!!!!

  • Activation Error: Could not complete the iTunes... (help!)

    Activation Error: "Could not complete the iTunes Store request. The store may be busy. Check your Internet connection or try again later"
    Ok that is the error I get every time I set my new iPhone in the dock.
    Details:
    I bought the 8GB iPhone at the Kenwood Mall in Cincinnati OH, brought it home installed version 7.3 of iTunes, plugged in the dock and the iPhone, I went through the activation process and after agreeing to all the terms and licenses, the iPhone said "activated," but iTunes was still trying to connect to AT&T for something and eventually timed out. I remove the iPhone and it seems to sync and all features seem to work fine including making and receiving calls. BUT... everytime I place the iPhone in the dock, I get the above error. I click OK and every works fine. This happens everytime I place the iPhone in dock. How do I get rid of it??? Is there still something else that needs to be done on my account. BTW, my Internet is working fine, as I am typing this message via my Internet connection in IE on apple's site.
    Thanks
    Dell XPS Gen-2   Windows XP Pro   1GB Mem, SP2

    I bought the 8GB model, only had a 45 minute wait in line at ATT store. Performed activation via iTunes over 10 hours ago with porting of old T-mobile number. Still receiving message that activation is not completed. Called ATT and after 3 transfers, 35 minute hold times and then a recorded message that "due to extremely high call volumes" we will not be able to answer your call" it then proceeds to disconnect you. Finally kept trying and talked with ATT rep. in portability and they confirmed my porting has been approved but that my account still shows iPhone not registered. They then provided 877-800-3701 for problems with iPhone activation. After speaking with this representative, he would not work with me until I provided Web Order #. I told him that I purchased the phone in person at store, so he said that I would need to contact the store to obtain this number and without this number they could not verify that I had the phone and therefore it couldn't be activated. I called the store and left message. A store rep. called me back and told me that I would need to contact that same 877 number as they could not support me. ***!! To make matters worse, my old phone is now been ported and deactivated so I am phone-less and have a iPhone sitting in the dock that is completely useless. I am very disgusted at this point and don't know what to do. I was not expecting such an awful customer experience with an Apple product. Anyone have any thoughts? I drove by the AT&T store and there is a huge line of buyers, so I am not sure what to do at this point.

  • I need to transfer information through firewire cable and could not remember how it works, please, help

    Please help, I need urgently to transfer information through firewire cable and I could not remember how it was that I do it. I've connected the computers and restarted one of them by pushing T on startup but it did not work.

    Shut down both Macs.  Connect them via FW cable.
    On the Mac you want to copy FROM.  Start up but make sure you are holding down the T key as soon as you press the power button.  And keep holding down the T key until the FireWire emblem appears on the screen - that's the indicator that the Mac is in Target Disk Mode (TDM).  Note: if you release the T key too soon the Mac won't go into Target Disk Mode.
    Start up the second Mac.  The first Mac will appear in the Finder as a disk.  You can use the Finder to copy whatever you want from the Mac that's in TDM.
    When you're done, shut down both Macs.  The Mac that's in Target Disk Mode can be shut down by holding down the power button until it turns off.

  • CRM order giving the document could not be saved exception! Please help!

    Hi Experts,
       I am changing the status of a order using CRM_STATUS_CHANGE_EXTERN and CRM_STATUS_CHANGE_INTERN.
       After this I call CRM_ORDER_INITIALIZE and the BAPI_BUSPROCESSND_SAVE.
       Finally commit.
               CALL FUNCTION 'CRM_ORDER_INITIALIZE'
                  EXPORTING
                    it_guids_to_init  = lt_crmd_guids
                    iv_init_frame_log = 'X'
                    iv_keep_lock      = 'X'
                  EXCEPTIONS
                    error_occurred    = 1
                    OTHERS            = 2.
                ls_obj_save-guid = v_header_guid.
                append ls_obj_save TO lt_obj_save.
                CALL FUNCTION 'BAPI_BUSPROCESSND_SAVE'
                   EXPORTING
                    UPDATE_TASK_LOCAL       = 'X'  "commented. Taking default
                     SAVE_FRAME_LOG          = 'X'
                   IMPORTING
                     LOG_HANDLE              = lv_log_handle
                    TABLES
                      OBJECTS_TO_SAVE         =  lt_obj_save
                      SAVED_OBJECTS           =  lt_obj_saved
                      RETURN                  =  lt_return.
        The function BAPI_BUSPROCESSND_SAVE is returning error: The document could not be saved in it_return. I am not getting any other details. What am I doing wrong? Please help!
    Thanks & Regards
    Gopal

    Hi Robert,
       The SPRO settings seems to be fine.
       The problem is that the order is not getting saved whenever there is backward status change. However if I see the item status via tcode "crmd_order" then it actually shows the new status. In other words status is changing but still order is not getting saved.
       When I debugged the code I found that first It has successfully executed the FM CRM_STATUS_CHANGE_EXTERN and then when CRM_ORDER SAVE is called the parameter et_saved_objects is empty. I am passing header Guid in  it_objects_to_save. If order is saved properly then et_saved_objects should be filled with order guid.
    CALL FUNCTION 'CRM_ORDER_SAVE'
                   EXPORTING
                     it_objects_to_save = lt_save
                   IMPORTING
                     et_saved_objects   = lt_saved_obj
                   EXCEPTIONS
                     document_not_saved = 1
                     OTHERS             = 2.
    On further debugging inside CRM_ORDER SAVE I found that the FM CRM_EVENT_PASS_INFO_EXE_OW returns lt_events empty. That means the given guid  is not registered for saving. Why is this so?
      are there objects registered for saving
        call function 'CRM_EVENT_PASS_INFO_EXE_OW'
          exporting
            iv_exetime     = gc_event_exec_time-save_order
            iv_order_guid  = ls_object_to_save
            iv_obj_kind    = gc_object_kind-orderadm_h
          importing
            et_event_calls = lt_events
          exceptions
            others         = 99.
        if lt_events is initial.
          delete ct_objects_to_save.
          continue.
        endif.
       The problem is when the order is not getting saved the status change is not getting transferred to BW or BI.
       What could be the issue?
    Thanks
    Gopal
    Edited by: gopalkrishna baliga on Apr 7, 2011 5:59 AM
    Edited by: gopalkrishna baliga on Apr 7, 2011 6:09 AM

  • Error Message saying could not reach activation server. Please Help.

    Hello Everybody. I have an Ipad Mini And when I go to update ios 7 I have to reset my settings. I ruined my ipad by doing this and now I am seing something saying that ipad could not be activated because it couldn't reach the activation server. Please somebody help save my poor little Ipad .  Can anybody help me save my little ipad as I don't know much about computers or tablets. Without an Ipad I don't know what to do? Does anybody have the same problem? Or am I the only one has this problem. Thanks From Nathan Knox.

    If you'll check other threads you'll see that a lot of us having update/activation problems.
    This is mostly a matter of waiting (and trying) to get connected to an Apple server.
    Patience!

  • After upgrades iMac will not completely restart.. lost please help

    Hi, I am new to the forum but I have been scouring the net for an answer to my problem. I have found some similar problems but nothing exact so I decided to post to make a deadline. Please help.
    Yesterday night I got one of those apple software updates. I cant remember what it was for but it was fot 3 different things nothing out of the ordinary. Once they were installed I had to restart my computer. I did this and when I did my computer booted up and froze at the blue screen after the white/grey apple screen and will go no further.
    Heres where it gets a little different from other posts I have found. I have a wireless keyboard and mouse so I cannot run the start up disks or get to safe mode. I bought a different usb mouse and keyboard today and am now able to put disks in and out of the disk drive by holding down the left button during start up. The only problem the keyboard came with software that needs to be installed to make it work. So it is still impossible to connect to a keyboard. So I still cant hold shift, control or c to get to safe mode or run my mac disks.
    Im not sure where to go from hear. I have a seagate external harddrive backing everything up so hopefully I didnt lose everything. Any help would be great I am lost.
    Thanks for your time

    When you get the new keyboard, start up from Disk Utility
    1. Insert the Mac OS X Install disc that came with your computer, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
    Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair. Disk Utility checks and repairs the disk.
    Reboot, then repair permissions from your hard drive.

  • IPhone will not complete sync...please help!

    I'm trying to help a client with his iPhone woes, every time I sync with his computer, I get the follwing error (or one similar to it):
    AppleMobileSync.exe|1984:17849760|/SourceCache/DeviceLinkX/DeviceLinkX-91.2/Wire Protocol/DeviceLinkConnection.c:_DLMainThreadMessagePortCallback| ERROR: Error creating components from read data: 'Conversion of data failed. The file is not UTF-8, or in the encoding specified in XML header if XML.'
    This error comes up either when I'm syncing his photos or his contacts.
    I've cleared the sync history a number of times, but this issue always comes back to bite me. This is on a Sony Vaio running Windows XP SP2 with Microsoft Outlook 2003. Any help is apprecitated!

    Android23,
    I would uninstall and reinstall all components listed in the following article:
    http://support.apple.com/kb/HT1925
    Hope this helps,
    Jennifer B.

  • I want to configure a new email address. Config could not be verified - can someone please help?

    It is an IMAP gmail address but doesn't end in @gmail.com because it's an alias addy. I can view it via gmail in my browser. The address is set up and functioning fine there. How can I configure the mail to come into my Thunderbird app?

    https://support.mozilla.org/en-US/kb/manual-account-configuration

  • CS5 RAW Could not complete your request because the file appears to be from a camera model which is not supported by the installed version of Camera Raw. Please visit the Camera Raw help documentation for additional information.

    I rented a Nikon D600 & D610 and CS5 cannot open the RAW files, i do not have any issued with my D700 RAW files. I am getting this error message -
    Could not complete your request because the file appears to be from a camera model which is not supported by the installed version of Camera Raw.
    Please visit the Camera Raw help documentation for additional information.
    Can anyone please help?

    yellowmledbetter wrote:
    Sorry, I am on a MAC. I downloaded the link you provided and it's giving the same error message as above. Running CS5.
    The error message you gave is from Camera Raw. I thought you said that DNG Converter didn't work?
    The link I gave you is an article on getting your raw files to open in Camera Raw. Did you read it? I lazily gave you the link because this is one of the most common problems in this forum, and I get tired of saying the same thing over and over again. I could break it down for your specific case, but I was hoping you could read through the article and work it out for yourself.
    But, here goes:
    Your cameras are newer than your raw converter, so it won't understand them.
    CS5 comes with Camera Raw 6, which can only be upgraded as far as 6.7.1. You can find out which version of Camera Raw you are running in three ways: in the settings title bar (Cmd-K), in the plug-in title bar (press F to start/stop full-screen mode to reveal the title bar), or Photoshop's Help menu (About Plug-ins).
    Downloading raw files from newer Nikon cameras with old versions of Nikon Transfer will actually make them unreadable in Adobe software. They can be fixed with a free utility. Again, it's all in the linked article. You should be using up-to-date Nikon Transfer, or Adobe Photodownloader to avoid this problem.
    All being well, you have good raw files on your computer. You can convert them to dng using Adobe DNG Converter. IF you are on OSX Leopard or Snow Leopard, you CAN'T use the latest version, because Adobe stopped support. But, if you ARE on a later OSX, you can download DNG Converter 8.6.
    DNG Converter is designed to convert FOLDERS of raw files at a time. You select a folder of raw files, and tell it to create DNG copies. BUT, you have to set up the converter before you start using it...
    If you load up DNG Converter, you'll notice a button labelled "Change Preferences". Clicking this, you'll see the first option is "Compatibility". Here, you must select the appropriate setting for the version of Camera Raw you HAVE (see above). If you can't work this out, just pick "Camera Raw 5.4 and later". THEN pick a folder of raw files and convert them to DNGs.
    All the above is already in the article, but I gave you a personalised response. If you still can't get it to work, please give us more than one sentence. Tell us exactly what you tried, and describe exactly what happened. Which version of OSX you're running, what device and software you downloaded your raw files with, how you used DNG Converter, and so on.
    I really should be in bed.

  • ***error could not complete because it is not the right kind of document please help!!!***

    I recently upgraded my system I am now having an issue when trying to open cs6 files it gives me the the error could not complete because it is not the right kind of document.  I tried closing and reopening the program rebooting my computer and updating both my AI and PS as well as trying multiple file types.  I have never had this issue before any help would be greatly appreciated.

    Hi 11rplace
    Please confirm the type or format of file you are trying to open and with which adobe application you are trying it.
    Screenshot of the problem would be great help.
    Regards,
    Sumit Singh

Maybe you are looking for

  • Https communication and authentication

    Hi all, I'm using JSSE and performing mutual authentication between client and server. In that scenario, I have 2 https communication being established between the same client and server. Please let me know if these two different https connections to

  • 1247 Error - Uncompiled PL/SQL

    We migrated from reports 3.0 to 6.0, specifically Report Builder 6.0.8.8.3. Seems like every time I go in now and modify a report, it does something and when a user tries to run the report, they get a 1247 error - Report contains uncompiled PL/SQL. I

  • Licensing - Windows Server Datacenter Edition

    Hello, I have 2hosts on which ESX have been installed. i have lots of VMs running on the hosts. Can i still buy Windows Server 2012 Datacenter edition LICENSE and use in my environment?? that is i want to buy datacenter edt and use the product key on

  • More Aperture improvements

    This article http://www.appleinsider.com/article.php?id=1752 says that the next OSX update, 10.4.7, will have help for Aperture users. Mark

  • Nothing happening on touchsmart button

    hello i have a touchsmart 300-1115uk i just bought this unit from a friend who updated his . so i did a freash install of windows 7 64bit and all has gone great but then watched some utubes about this machine and see them pressing the interface butto