The data in the file [file name] has already been added to the response file

I'm obtaining this error when trying to import(Add) new PDF forms into the PDF Portfolio response file distributed with PDF's. It's a new problem. I've never seen this before. In fact, I imported a few dozen forms back in November. Now, I can only import one PDF form, after which this error is returned for any attempt to import additional PDF's.
I have renamed PDF's, redistributed the Portfolio file, and hunted for any unique identifier in the PDF forms that might be tracked in the Portfolio file, or perhaps a database of imported documents which might now be corrupted. As ANY PDF form can be imported, but only one form, I am suspicious that the issue isn't related to uniqueness, but rather related to something problematic with the PDF forms themselves, or the Portfolio file.
Now I'm completely stumped. Any ideas?
The same behavior appears in both environments that I use: Acrobat 10.1.4.38 forms (Reader Enabled) built and distributed with LiveCycle Designer ES2 Version 9.0.0.2.2... on XP Professional and on Windows Server 2003.
I posted this issue over on the LC Google Group a few days ago. There hasn't been any reply there.
https://groups.google.com/forum/?fromgroups=#!topic/livecycle/MZWkpecy8jk
Kind regards,
Brian D

Hi I had the same problem, it was telling me that 'a.pdf' was already in the response file although the data wasn't there. I exported all the data from that response file as a .csv and in the first column it had 'a.pdf' incorrectly listed in the same row as data from 'b.pdf' but 'b.pdf' was not listed as a source file. I deleted this offending row from the response file and then imported 'a.pdf' and 'b.pdf' again and it worked.
Hope that helps, no idea what caused the glitch although both 'a.pdf' and 'b.pdf' were submitted by the same person in a short time frame so maybe that has something to do with it.

Similar Messages

  • *.mp3 has already been added to the Burn List. It will not be added again. (In Creative MediaSour

    Hi everyone, I keep getting the error message: *.mp3 (mp3 filename) has already been added to the Burn List. It will not be added again. I know I can "Allow duplicate tracks" in Tools - Settings - Burn CDs, but it will not work with MP3s. Trouble is, I have MP3s of the same name with different artists that I want to burn to an MP3 CD. Is there any way around this in Creative MediaSource without having to edit anything? I really want to use one program to arrange and burn CDs/MP3s. Other than this error message I have been happy with Creative MediaSource. Thanks!

    Thanks! I thought it was a fault with just this program, but it does the same with Nero. What I did was change the way the filename was saved. Instead of just the song title, I did artist and song title.
    Thanks again for the reply, much appreciated!

  • GetOutputStream() has already been called for this response

    I have a problem with my servlet,
    i compiled my code,it works normally but there is an error occured when it works.
    The error is :
    java.lang.IllegalStateException: getOutputStream() has already been called for this response
    *     at org.apache.catalina.connector.Response.getWriter(Response.java:607)*
    *     at org.apache.catalina.connector.ResponseFacade.getWriter(ResponseFacade.java:196)*
    *     at org.apache.jasper.runtime.JspWriterImpl.initOut(JspWriterImpl.java:125)*
    *     at org.apache.jasper.runtime.JspWriterImpl.flushBuffer(JspWriterImpl.java:118)*
    *     at org.apache.jasper.runtime.PageContextImpl.release(PageContextImpl.java:179)*
    *     at org.apache.jasper.runtime.JspFactoryImpl.internalReleasePageContext(JspFactoryImpl.java:116)*
    *     at org.apache.jasper.runtime.JspFactoryImpl.releasePageContext(JspFactoryImpl.java:76)*
    *     at org.apache.jsp.KaptchaExample_jsp._jspService(KaptchaExample_jsp.java:209)*
    *     at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)*
    *     at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)*
    *     at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331)*
    *     at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)*
    *     at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)*
    *     at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)*
    *     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)*
    *     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)*
    *     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)*
    *     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)*
    *     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)*
    *     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)*
    *     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)*
    *     at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:174)*
    *     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:874)*
    *     at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)*
    *     at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)*
    *     at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)*
    *     at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:689)*
    *     at java.lang.Thread.run(Thread.java:534)*
    here is my code :
    Iterator iter = ImageIO.getImageWritersByFormatName(imageFormat);
    *          if( iter.hasNext() ) {*
    *          ImageWriter writer = (ImageWriter)iter.next();*
    *          ImageWriteParam iwp = writer.getDefaultWriteParam();*
    *          if ( imageFormat.equalsIgnoreCase("jpg") || imageFormat.equalsIgnoreCase("jpeg") ) {*
    *          iwp.setCompressionMode(ImageWriteParam.MODE_EXPLICIT);*
    *          iwp.setCompressionQuality(imageQuality);*
    *          //writer.setOutput(ImageIO.createImageOutputStream(response.getWriter()));*
    *          IIOImage imageIO = new IIOImage(bufferedImage, null, null);*
    *          writer.write(null, imageIO, iwp);*
    *          response.flushBuffer();*
    please help me,would u give me a solutions for my problem..i really appreciate if you want to give a solution.
    Regards,
    Dany Fauzi

    Actually the stack trace indicates the the error is happening in KaptchaExample.jsp, not in a Servlet. I'm guessing that the code you've presented is in a scriptlet (i.e. inside the JSP in <% %> brackets). This is altogether the wrong place for it. JSPs are purely for generating HTML and to try and generate image responses in one is doomed to failure. Write a servlet class to generate your image file. If you want to embed a dynamically generated image in an HTML page, then you need to generate HTML which accesses the Servlet through the <img src=... tag, i.e. the browser retrieves the image data as a separate transaction.
    The immediate source of the crash is that the JSP already opened the output stream in order to write HTML output, so it's too late to try and open it for the writing of image data.

  • Item has already been added. Key in dictionary: '???' Key being added: '???'

    Since 1 week I am unable to access any of the Sharepoint 2010 sites that exist in my farm. The error that is shozn is:
    Item has already been added. Key in dictionary: '???'  Key being added:
    Here is the stacktrace:
    [ArgumentException: Item has already been added. Key in dictionary: '???' Key being added: '???']
    System.Collections.Hashtable.Insert(Object key, Object nvalue, Boolean add) +10065554
    System.Collections.Specialized.StringDictionary.Add(String key, String value) +89
    Microsoft.SharePoint.SPWeb.GetProperties() +563
    Microsoft.SharePoint.Utilities.SPPropertyBag..ctor(GetProperties getProperties, UpdateProperties updateProperties) +62
    Microsoft.SharePoint.SPWeb.get_Properties() +130
    Microsoft.Office.Server.Utilities.PageUtility.GetPagesListName(SPWeb web) +39
    Microsoft.SharePoint.Publishing.PublishingWeb.get_PagesListName() +152
    Microsoft.SharePoint.Publishing.CachedArea..ctor(PublishingWeb area, String id, String parentId, CachedUserResource title, String url, CachedUserResource description, CachedObjectFactory factory) +3914
    Microsoft.SharePoint.Publishing.CachedArea.CreateCachedArea(PublishingWeb area, CachedObjectFactory factory, String parentId) +590
    Microsoft.SharePoint.Publishing.CachedObjectFactory.CreateWebFromUrlNoUpperCase(String url, Guid webIdHint, String urlCaseHint) +555
    Microsoft.SharePoint.Publishing.WebControls.ConsoleUtilities.IsMasterPageGalleryUrlForSite(Uri uri) +117
    Microsoft.SharePoint.Publishing.WebControls.ConsoleVisibleUtilities.ConsoleAppliesInCurrentContext() +41
    Microsoft.SharePoint.Publishing.Internal.WebControls.PublishingRibbon.OnLoad(EventArgs e) +95
    System.Web.UI.Control.LoadRecursive() +66
    System.Web.UI.Control.LoadRecursive() +191
    System.Web.UI.Control.LoadRecursive() +191
    System.Web.UI.Control.LoadRecursive() +191
    System.Web.UI.Control.LoadRecursive() +191
    System.Web.UI.Control.LoadRecursive() +191
    System.Web.UI.Control.LoadRecursive() +191
    System.Web.UI.Control.LoadRecursive() +191
    System.Web.UI.Control.LoadRecursive() +191
    System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2428
    Also, when I am trying to access my homepage on the root sitecollection, I see this error:
    The DataSourceID of 'V4QuickLaunchMenu' must be the ID of a control of
    type IHierarchicalDataSource.  A control with ID 'QuickLaunchSiteMap' could not
    be found.

    Recently have you removed, deleted, changed password of any account used in sharepoint.
    Check in > Security > Manage account
    Check in IIS > Application pool, if any pool is stopped.
    If you have a old copy of web.config files, check if they were modified.
    Was any new solution\wsp deployed in farm
    please share ULS logs, event viewer and fiddler traces.
    If this helped you resolve your issue, please mark it Answered

  • I keep trying to sign into my mail,,, icloud.... And it keeps telling me it has already been added to this device

    I wanna check my icloud mail ..every time I tap on the icon it brings up a list of places that have emails... Such as AOL, yahoo, outlook , icloud . Etc..then when check icloud and put in user name and password , it tells me this account has already been added to the device ... It worked fine yesterday ...

    Hello Mlw6608
    Go to Settings > iCloud and see if mail is turned off, if it is turn it back on and you should be good to go.
    iCloud: Change iCloud feature settings
    http://support.apple.com/kb/PH2613
    Regards,
    -Norm G.

  • Java.io.IOException:Data has already been flushed to the client

    hi,
    will u please anyone tell about this exception? its very urgent to me?
    i am getting exception when i ma forwarding a page in jsp.
    exception is :
    java.io.IOException : Data has already been flushed to the client.
    my code where i am getting this exception is:
    if(filled_var .equalsIgnoreCase("y"))
    %>
    <jsp:forward page="/editForm.jsp">
    <jsp:param name="formNum" value="<%= formNum%>"/>
    </jsp:forward>
    <%      
    here i am getting that error. please help me to find a solution in this.

    A forward can only be performed if the "response is not committed". The response is committed when:
    1) you do a forward
    2) enough data is outputted for the buffer to be flushed
    3) you flush the buffer manually (or you do an include with a flush="true" for example)
    It must be either 2 or 3 in the case of a JSP. So if you output a lot of data before the forward, make sure you try to do the forward BEFORE you output all that data.

  • OC4J Error== java.io.IOException: Data has already been flushed to the cli

    Hi All,
    I deployed a J2EE Application in Oracle Application Server OC4J Instance.
    while testing the application i got the error
    java.io.IOException: Data has already been flushed to the client
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.2.0)].server.http.EvermindJSPWriter.clear(EvermindJSPWriter.java:308)
    at PricingCriteria.jspService(_PricingCriteria.java:135)
    [SRC:/PricingCriteria.jsp:401]
    at com.orionserver[Oracle Application Server Containers for J2EE 10g (10.1.2.2.0)].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
    at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:356)
    at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:498)
    at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:402)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.evermind[Oracle Application Server Containers for J2EE 10g(10.1.2.2.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:834)
    at com.evermind[Oracle Application Server Containers for J2EE 10g(10.1.2.2.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:340)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.2.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.2.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:228)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.2.0)].server.http.AJPRequestHandler.run(AJPRequestHandler.java:133)
    at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.2.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:534)
    Please help me in this issue.
    Thanks in Advance,
    Salih KM
    null

    Your error is because you have already flushed or closed your output stream. Your response is done but you are trying to forward after the fact.

  • Crawl Error GetVirtualServerPolicyInternal - An item with the same key has already been added

    Hi,
    I did an index reset and now I can't start any crawl. It's complaining "An item with the same key has already been added".  Exception seems to from Microsoft.Office.Server.Search.Internal.Protocols.SharePoint2006.CSTS3Helper.GetVirtualServerPolicyInternal. 
    What should I check? Thanks.
    The SharePoint item being crawled returned an error when requesting data from the web service. ( Error from SharePoint site: *** An item with the same key has already been added., CorrelationID: 9e69ff9c-f925-50bf-5110-d1b0e74c77bc; SearchID = 522CB441-0028-4E7D-BED4-4230D7ADD14B
    04/22/2015 19:37:10.93  mssdmn.exe (0x1A34)                      0x225C SharePoint Server Search       Connectors:SharePoint        
     dm1k Medium   Exception Type: System.ArgumentException *** Message : An item with the same key has already been added. *** StackTrace:    at System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean
    add)     at Microsoft.Office.Server.Search.Internal.Protocols.SharePoint2006.CSTS3Helper.GetVirtualServerPolicyInternal(String strStsUrl, WssVersions serverVersion, sPolicyUser[]& vUsers, sPolicyUser& anonymousUser, String&
    strVersion, String[]& vServerWFEs, Boolean& fIsHostHeader, Boolean& fIsAllUsersNT, Boolean& fIncludeSiteIdInCompactURL)     at Microsoft.Office.Server.Search.Internal.Protocols.SharePoint2006.CSTS3Helper.GetVirtualServerPolicy(String
    strStsUrl, sPolicyUser[]& vUsers, sPolicyUser& anonymousUser, String& strVersion, String[]& vServerWFEs, Boolean& fIsHostHeader, Boolean... 7a91de3b-a271-43c3-9f1a-935558902623
    04/22/2015 19:37:10.93* mssdmn.exe (0x1A34)                      0x225C SharePoint Server Search       Connectors:SharePoint        
     dm1k Medium   ...& fIsAllUsersNT, Boolean& fIncludeSiteIdInCompactURL) 7a91de3b-a271-43c3-9f1a-935558902623
    04/22/2015 19:37:10.93  mssdmn.exe (0x1A34)                      0x225C SharePoint Server Search       Connectors:SharePoint        
     fsa0 Monitorable GetVirtualServerPolicy fail. error 2147755542, strStsUrl
    http://serverurl 7a91de3b-a271-43c3-9f1a-935558902623
    04/22/2015 19:37:10.93  mssdmn.exe (0x1A34)                      0x225C SharePoint Server Search       Connectors:SharePoint        
     dvt6 High     SetSTSErrorInfo ErrorMessage = Error from SharePoint site: *** An item with the same key has already been added., CorrelationID: ae5aff9c-2940-50bf-5110-da6764f258d7 hr = 80042616  [sts3util.cxx:6988] 
    search\native\gather\protocols\sts3\sts3util.cxx 7a91de3b-a271-43c3-9f1a-935558902623
    04/22/2015 19:37:10.93  mssdmn.exe (0x1A34)                      0x225C SharePoint Server Search       Connectors:SharePoint        
     dvi3 High     Couldn't retrieve server
    http://serverurl policy, hr = 80042616  [sts3util.cxx:1865]  search\native\gather\protocols\sts3\sts3util.cxx 7a91de3b-a271-43c3-9f1a-935558902623
    04/22/2015 19:37:10.93  mssdmn.exe (0x1A34)                      0x225C SharePoint Server Search       Connectors:SharePoint        
     dvu0 High     STS3::StoreCachedError: Object initialization failed.  Message:  "Error from SharePoint site: *** An item with the same key has already been added., CorrelationID: ae5aff9c-2940-50bf-5110-da6764f258d7"
    HR: 80042616  [sts3util.cxx:7083]  search\native\gather\protocols\sts3\sts3util.cxx 7a91de3b-a271-43c3-9f1a-935558902623
    04/22/2015 19:37:10.93  mssdmn.exe (0x1A34)                      0x225C SharePoint Server Search       Connectors:SharePoint        
     dvg4 High     Server serverurl security initialization failed, hr = 80042616 error Message Error from SharePoint site: *** An item with the same key has already been added., CorrelationID: ae5aff9c-2940-50bf-5110-da6764f258d7 
    [sts3util.cxx:1591]  search\native\gather\protocols\sts3\sts3util.cxx 7a91de3b-a271-43c3-9f1a-935558902623
    04/22/2015 19:37:10.93  mssdmn.exe (0x1A34)                      0x225C SharePoint Server Search       Connectors:SharePoint        
     dv5x High     CSTS3Accessor::InitServer: Initialize STS Helper failed. Return error to caller, hr=80042616  [sts3acc.cxx:1932]  search\native\gather\protocols\sts3\sts3acc.cxx 7a91de3b-a271-43c3-9f1a-935558902623
    04/22/2015 19:37:10.93  mssdmn.exe (0x1A34)                      0x225C SharePoint Server Search       Connectors:SharePoint        
     dv3t High     CSTS3Accessor::InitURLType fails, Url
    http://serverurl, hr=80042616  [sts3acc.cxx:288]  search\native\gather\protocols\sts3\sts3acc.cxx 7a91de3b-a271-43c3-9f1a-935558902623
    04/22/2015 19:37:10.93  mssdmn.exe (0x1A34)                      0x225C SharePoint Server Search       Connectors:SharePoint        
     dvb1 Medium   CSTS3Accessor::Init fails, Url
    http://serverurl, hr=80042616  [sts3handler.cxx:337]  search\native\gather\protocols\sts3\sts3handler.cxx 7a91de3b-a271-43c3-9f1a-935558902623
    04/22/2015 19:37:10.93  mssdmn.exe (0x1A34)                      0x225C SharePoint Server Search       Connectors:SharePoint        
     dvb2 Medium   CSTS3Handler::CreateAccessorExD: Return error to caller, hr=80042616            [sts3handler.cxx:355]  search\native\gather\protocols\sts3\sts3handler.cxx 7a91de3b-a271-43c3-9f1a-935558902623
    04/22/2015 19:37:10.93  mssdmn.exe (0x1A34)                      0x225C SharePoint Server Search       Crawler:FilterDaemon         
     e4ye High     FLTRDMN: URL
    http://serverurl Errorinfo is "Error from SharePoint site: *** An item with the same key has already been added., CorrelationID: ae5aff9c-2940-50bf-5110-da6764f258d7"  [fltrsink.cxx:566]  search\native\mssdmn\fltrsink.cxx 
    04/22/2015 19:37:10.93  mssearch.exe (0x1118)                    0x0628 SharePoint Server Search       Crawler:Gatherer Plugin      
     cd11 Warning  The start address http://serverurl cannot be crawled.  Context: Application 'Enterprise_Search_Service_Application', Catalog 'Portal_Content'  Details:  The SharePoint item being
    crawled returned an error when requesting data from the web service.   (0x80042616) 
    04/22/2015 19:37:10.99  NodeRunnerContent1-84b5adb7-0d6 (0x2090) 0x06B4 Search                         Fuzzy Name Search            
     ajyfa Unexpected CCANameProjector : Exception:Exception : Access to the path 'C:\Program Files\Microsoft Office Servers\15.0\Data\Office Server\CanonicalResources\ProjectionModels\EN_EN.mdl' is denied. encountered while attempting to 
    load the Projection Model Catalog C:\Program Files\Microsoft Office Servers\15.0\Data\Office Server\CanonicalResources\ProjectionModels\EN_EN.mdl for Language : en encountered while attempting to load the projection model. ab403221-f69c-43ef-a8cc-7df384f6a4b3
    04/22/2015 19:37:10.99  NodeRunnerContent1-84b5adb7-0d6 (0x2090) 0x06B4 Search                         Fuzzy Name Search            
     ajyd9 Unexpected CCAMetadataProducer : Fuzzy metadata generation failed to load resource for language: en. ab403221-f69c-43ef-a8cc-7df384f6a4b3
    04/22/2015 19:37:10.99  NodeRunnerContent1-84b5adb7-0d6 (0x2090) 0x06B4 Search                         Fuzzy Name Search            
     ajyed Monitorable CCAMetadataProducer : Fuzzy metadata generation failed for the current record. Check logs for more details. ab403221-f69c-43ef-a8cc-7df384f6a4b3
    04/22/2015 19:37:11.00  NodeRunnerContent1-84b5adb7-0d6 (0x2090) 0x240C Search                         Fuzzy Name Search            
     ajyfa Unexpected CCANameProjector : Exception:Exception : Access to the path 'C:\Program Files\Microsoft Office Servers\15.0\Data\Office Server\CanonicalResources\ProjectionModels\EN_EN.mdl' is denied. encountered while attempting to 
    load the Projection Model Catalog C:\Program Files\Microsoft Office Servers\15.0\Data\Office Server\CanonicalResources\ProjectionModels\EN_EN.mdl for Language : en encountered while attempting to load the projection model. 2bbbeea9-aeb8-4497-a774-2927bd21ba98
    04/22/2015 19:37:11.00  NodeRunnerContent1-84b5adb7-0d6 (0x2090) 0x240C Search                         Fuzzy Name Search            
     ajyd9 Unexpected CCAMetadataProducer : Fuzzy metadata generation failed to load resource for language: en. 2bbbeea9-aeb8-4497-a774-2927bd21ba98
    04/22/2015 19:37:11.00  NodeRunnerContent1-84b5adb7-0d6 (0x2090) 0x240C Search                         Fuzzy Name Search            
     ajyed Monitorable CCAMetadataProducer : Fuzzy metadata generation failed for the current record. Check logs for more details. 2bbbeea9-aeb8-4497-a774-2927bd21ba98
    04/22/2015 19:37:11.00  NodeRunnerContent1-84b5adb7-0d6 (0x2090) 0x10E4 Search                         Fuzzy Name Search            
     ajyfa Unexpected CCANameProjector : Exception:Exception : Access to the path 'C:\Program Files\Microsoft Office Servers\15.0\Data\Office Server\CanonicalResources\ProjectionModels\EN_EN.mdl' is denied. encountered while attempting to 
    load the Projection Model Catalog C:\Program Files\Microsoft Office Servers\15.0\Data\Office Server\CanonicalResources\ProjectionModels\EN_EN.mdl for Language : en encountered while attempting to load the projection model. e15da110-f86d-4e3d-8d73-a67dccaa82cd
    04/22/2015 19:37:11.00  NodeRunnerContent1-84b5adb7-0d6 (0x2090) 0x10E4 Search                         Fuzzy Name Search            
     ajyd9 Unexpected CCAMetadataProducer : Fuzzy metadata generation failed to load resource for language: en. e15da110-f86d-4e3d-8d73-a67dccaa82cd
    04/22/2015 19:37:11.00  NodeRunnerContent1-84b5adb7-0d6 (0x2090) 0x10E4 Search                         Fuzzy Name Search            
     ajyed Monitorable CCAMetadataProducer : Fuzzy metadata generation failed for the current record. Check logs for more details. e15da110-f86d-4e3d-8d73-a67dccaa82cd
    04/22/2015 19:37:11.03  NodeRunnerContent1-84b5adb7-0d6 (0x2090) 0x240C Search                         Fuzzy Name Search            
     ajyfa Unexpected CCANameProjector : Exception:Exception : Access to the path 'C:\Program Files\Microsoft Office Servers\15.0\Data\Office Server\CanonicalResources\ProjectionModels\EN_EN.mdl' is denied. encountered while attempting to 
    load the Projection Model Catalog C:\Program Files\Microsoft Office Servers\15.0\Data\Office Server\CanonicalResources\ProjectionModels\EN_EN.mdl for Language : en encountered while attempting to load the projection model. 58d54385-497b-466d-9f02-aeba664bc1b6
    04/22/2015 19:37:11.03  NodeRunnerContent1-84b5adb7-0d6 (0x2090) 0x240C Search                         Fuzzy Name Search            
     ajyd9 Unexpected CCAMetadataProducer : Fuzzy metadata generation failed to load resource for language: en. 58d54385-497b-466d-9f02-aeba664bc1b6
    04/22/2015 19:37:11.03  NodeRunnerContent1-84b5adb7-0d6 (0x2090) 0x240C Search                         Fuzzy Name Search            
     ajyed Monitorable CCAMetadataProducer : Fuzzy metadata generation failed for the current record. Check logs for more details. 58d54385-497b-466d-9f02-aeba664bc1b6

    Hi,
    For troubleshooting your issue, please take steps as below:
    1. Try to crawl your content source using farm admin account.
    2.
    Disable loopback check .
    3.Add reference  SPS3s://WEB into your content source start addresses.
    For more information, please refer to these blogs:
    http://sharepoint.stackexchange.com/questions/5215/crawling-fails-with-404-error-message-but-the-iis-log-tell-a-different-story
    http://www.cleverworkarounds.com/2011/07/22/troubleshooting-sharepoint-people-search-101/
    http://blogs.msdn.com/b/biyengar/archive/2009/10/27/psconfig-failure-with-error-an-item-with-the-same-key-has-already-been-added.aspx
    Best Regards,
    Eric
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Unable to load the tables in the Power Pivot Window – An Item with the Same Key has already been added

    Hi there,
    I recently had the following situation, where I changed the source of my CSV file in Power Query.
    Once I had reloaded the file, it would then not load into Power Pivot. So I disabled the loading from Power Query into Power Pivot. I then enabled the loading to the Data Model. Which then successfully loaded the data into Power Pivot.
    But once I went into Power Pivot, had a look, then saved the Excel file. Once saved I closed the Excel file. I then opened the Excel file again and all the sheets that interact with the Power Pivot data work fine.
    But if I go and open Power Pivot I get the following error: Unable to load the tables in the Power Pivot Window – An Item with the Same Key has already been added.
    This is what I get from the Call Stack
       at System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)
       at Microsoft.AnalysisServices.Common.LinguisticModeling.SynonymModel.AddSynonymCollection(DataModelingColumn column, SynonymCollection synonyms)
       at Microsoft.AnalysisServices.Common.LinguisticModeling.LinguisticSchemaLoader.DeserializeSynonymModelFromSchema()
       at Microsoft.AnalysisServices.Common.SandboxEditor.LoadLinguisticDesignerState()
       at Microsoft.AnalysisServices.Common.SandboxEditor.set_Sandbox(DataModelingSandbox value)
       at Microsoft.AnalysisServices.XLHost.Modeler.ClientWindow.RefreshClientWindow(String tableName)
    I would assume that the issue is with the synonyms and for some reason, when I disabled the loading of my data into the Power Pivot Model, it did not remove the associations to the actual table and synonyms.
    If I renamed the table in Power Pivot it all works fine. So that was my work around. Fortunately I did have a copy of the Excel workbook before I made this change. So I could then go and add back in all the relevant data to my table.
    Has anyone had this before and know how to fix it?
    http://www.bidn.com/blogs/guavaq

    Hi there
    I can share the work book, if possible to send me an email address. As the workbook size is about 9Mb.
    Thanks
    Gilbert
    http://www.bidn.com/blogs/guavaq

  • SharePoint Search Service upgrade to 2013 fails: "Inner Exception: An item with the same key has already been added."

    Here's the situation:
    Upgrading a SharePoint Server 2010 Search Service Application dB to our SharePoint 2013 SP 1 development environment, using the Management Shell
    Running the following commands: 
    $applicationPool= Get-SPServiceApplicationPool -Identity 'SearchService_AppPool'
    $searchInst = Get-SPEnterpriseSearchServiceInstance -local
    Restore-SPEnterpriseSearchServiceApplication -Name 'SearchServiceApplication' -applicationpool $applicationPool -databasename 'SearchServiceApplicationDB' -databaseserver SERVERNAME -AdminSearchServiceInstance $searchInst
    Creates the search dBs (crawl, links, analytics) successfully; however, in the end, I get....
    "Exception: Action 15.0.107.0 of Microsoft.Office.Server.Search.Upgrade.SearchAdminDatabaseSequence failed."
    Looking at the ULS logs, I find the following:
    Inner Exception: An item with the same key has already been added.
    at System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)     at Microsoft.Office.Server.Search.Administration.OOTBSchemaDefinition.FindAndFixExistingManagedProperties()     at Microsoft.Office.Server.Search.Administration.OOTBSchemaDefinition.InstallManagedProperties(Boolean
    upgrade)     at Microsoft.Office.Server.Search.Administration.OOTBSchemaDefinition.Upgrade()     at Microsoft.Office.Server.Search.Upgrade.UpdateAllOOTBProperties.Upgrade()     at Microsoft.SharePoint.Upgrade.SPActionSequence.Upgrade()
    Exception: Action 15.0.107.0 of Microsoft.Office.Server.Search.Upgrade.SearchAdminDatabaseSequence failed.
    at Microsoft.SharePoint.Upgrade.SPActionSequence.Upgrade()     at Microsoft.SharePoint.Upgrade.SPDatabaseSequence.Upgrade()     at Microsoft.Office.Server.Search.Upgrade.SearchDatabaseSequence.Upgrade()     at Microsoft.SharePoint.Upgrade.SPUpgradeSession.Upgrade(Object
    o, Boolean bRecurse)
    Anyone encounter anything like this during their search upgrade process? I'm not honestly even sure what duplicate value to look for at this point, if I were to run a SELECT Id, ClassId, ParentId, Name, Status, Version, Properties FROM Objects on
    "SharePoint_Config" in SSMS. Any insight or opinions on the matter are welcome; and thanks to those who choose to reply to this, in advance.

    Hi ,
    You can enable the ULS log on verbose level (note, remember to reset to default level after finished troubleshooting) for more information per the following article, then check there should be more useful message for helping solve the issue.
    http://www.brightworksupport.com/enabling-verbose-logging-to-compare-against-c/
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/12c99279-d3aa-46de-bc57-d5d250692ff0/upgrade-of-search-service-application-from-2010-to-2013-failure?forum=sharepointadmin
    https://www.simple-talk.com/blogs/2014/04/22/sharepoint-2010-to-2013-search-service-application-upgrade-issueaction-15-0-80-0-fails/http://blogs.msdn.com/b/biyengar/archive/2009/10/27/psconfig-failure-with-error-an-item-with-the-same-key-has-already-been-added.aspx
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected] 
    Daniel Yang
    TechNet Community Support

  • When i try to do a software update, it finishes and then says that the update cannot be saved because it has probably been corrupted during the download. This has happened a number of times and i do not know why, any help?

    When i try to do a software update, it finishes and then says that the update cannot be saved because it has probably been corrupted during the download. This has happened a number of times and i do not know why, any help?

    asifmanzoor wrote:
    i have 10.7.2, this download is 10.7.5
    Are you Downloading it from here  >  http://support.apple.com/kb/dl1582
    asifmanzoor wrote:
    yes, i am using wifi
    1)  Turn your Wi-Fi router OFF... wait 30 seconds... Turn it back ON.
    OR...
    Do not use Wi-Fi and connect Directly to your Internet via ethernet cable.

  • How do you pay for apps with credit on your account from an itunes gift card that has already been redreemed and the credit id on the account?

    how do you pay for apps with credit on your account from an itunes gift card that has already been redreemed and the credit id on the account?

    jen19 wrote:
    how do you pay for apps with credit on your account from an itunes gift card that has already been redreemed and the credit id on the account?
    Just buy something.

  • 1. How can we search the Forum to see if a question has already been asked? 2. Can I send a Web Page and not just its Link?

    1. How can we search the Forum to see if a question has already been asked? Search goes back to Help and out of the Forum.
    2. Can I send a Web Page and not just its Link? Explorer allows it.

    1. How can we search the Forum to see if a question has already been asked? Search goes back to Help and out of the Forum.
    2. Can I send a Web Page and not just its Link? Explorer allows it.

  • Has anyone tried changing the drummer on a drummer part that has already been placed into a track stack?

    Has anyone tried changing the drummer on a drummer part that has already been placed into a track stack?
    I find that if I do that, the parts in the stack all get merged together with no way to expand them (ie the triangle you would click on to expand the stack disappears).
    I believe this is a bug, and wonder if anyone else has encountered it?

    Mac Fool wrote:
    Unfortunately, when I click on the link I get "Error: you do not have permission to view the requested forum or category".
    i believe the thread was removed due to the discussion was not in accordance with the ToU of the forum. it was a heated discussion as well (i was following it).
    here's a similar discussion from the Apple TV forum. note the very last post ...
    http://discussions.apple.com/thread.jspa?threadID=2313089&start=0&tstart=30
    JGG

  • I can't register the iPhone I just bought although it has definitely been unregistered by the previous owner

    I can't register the iPhone I just bought although it has definitely been unregistered by the previous owner

    This is the message I get (the previous owner has a confirmation email confirming the de-registration):
    According to our records, this serial number is registered to another Apple ID. If you have more than one Apple ID, log in to My Support Profile with that Apple ID to see your other registered products. Not sure if you have another Apple ID? Find out.
    Thanks for your attention,
    Andrew

Maybe you are looking for

  • Multiple controllers accessing the same model object?!

    Hi all, I have a rather simple but really fundamental question. I am implementing an application which communicates with a camera. My application main window is controlled by "MyController" class, which has a "Camera" object "myCam" and a "capture" b

  • Hp Drive Encryption Recovery key

    Good day my hp probook needs a recovery key on the screen its written recovery key; hp Drive Encryption

  • Unable to take export from particular tables from the schema.

    i created a schema duser data is imported and now i want to take select tables from this schema. the tables are (partyhdr,partyaddressdtl,partycontactdtl,partydsdtl,partytdsexcludedtl,partycurrencydtl) D:\>EXP DUSER/LOG@ORCL FILE=20121221PARTY0228PM.

  • Portal 7.1 u2 and DS 6.2 database corruption

    Has anyone had any issues with installing portal using DS 6.2 ? I configured portal 7.1 u2 three seperate times and each time after the configure finished I would recycle AM and it would give me a no-config available error because one of the services

  • Data Not Populating for report

    Hi, i am using Oracle BI Applications 7.9.6, i just loaded few sample data using universal adaptor. In "Financials GL - Budget and Expenses" subject area, there are two facts: Facts-Budget, Facts-Actuals. I could get the data with dimensions across t