Logon failed. Details: mscorlib : Could not find file.... XSD

I have been searching the forums and the web for hours and have not found a solution to a problem we are having.  We upgraded our reports from VS.NET 2003 to VS.NET 2008 and started getting the below error upon our Report.Export code.
Logon failed. Details: mscorlib : Could not find file 'C:\Inetpub\wwwroot\xxx\ConsolidatedReports\Designers\xxxFringe\xxxFringeFunderDetail.xsd'. Failed to export the report. Error in File C:\WINDOWS\TEMP\temp_90ed8e07-481c-4bdb-8c50-885854a143d0 {B8EC61FE-7931-4979-AD92-432C21013D77}.rpt: Unable to connect: incorrect log on parameters.
So when I verify the XSD and set the data source location (XML File Path: C:\Inetpub\wwwroot\xxx\ConsolidatedReports\Designers\xxxFringe\xxxFringe.xsd)  the report works fine.  The problem is that when another developer trys to run the report on their machine and their machine has a different path for the code, the report fails.  The odd thing is that some of our reports are working fine, it is only a few that basically are looking for the hard coded XSD path.
So, as far as I can tell the XSD are not needed (Re: ADO.Net (XML) Data Source File Path).  I have applied SP1 for Crystal Reports.  I am totally confused why this started and why the report is looking for a "hard coded" path to the XSD.

The RunReport is called by a button click on a form.  This method calls ExportFile which works until the line "Report.Export()" is hit. 
    Public Overrides Function RunReport(ByVal ReportID As Short) As String
        Dim Utility As New Utility(Session("CNReportPath"))
        Dim Report As New rptIndividualSalaryFringe
        Dim db As New BudgetDB(Session("CNReportPath"))
        Dim pDB As New ProgramDB(Session("CNReportPath"))
        Dim dsRep, dsSub As DataSet
        Dim AgencyID As Integer = Program1.AgencyID
        Dim ProgramID As Integer = Program1.ProgramID
        Dim FyID As Integer = FiscalYear1.SelectedValue
        Dim ShowOnlyCSCFunded As Integer = IIf(chkShowCSCFunded.Checked = True, 1, 0)
        Dim ContractNumber, AgencyName As String
        Dim ReportEnv As String = Environment
        Dim ReportDB As String = DBName
        dsRep = db.GetIndividualSalaryFringe(AgencyID, ProgramID, FyID, ShowOnlyCSCFunded)
        'dsRep.WriteXmlSchema(Server.MapPath("~/ConsolidatedReports/Designers/IndividualSalaryFringe/IndividualSalaryFringe.xsd"))
        AgencyName = pDB.GetAgencyName(AgencyID)
        With Report.Section1
            CType(.ReportObjects("txtAgency"), TextObject).Text = AgencyName
            CType(.ReportObjects("txtProgram"), TextObject).Text = pDB.GetProgramName(ProgramID)
            CType(.ReportObjects("txtFiscalYear"), TextObject).Text = "Fiscal Year " & FiscalYear1.SelectedText
        End With
        ContractNumber = pDB.GetContractNumber(ProgramID)
        If Not IsNothing(ContractNumber) Then
            If Not ContractNumber = "" Then
                With Report.Section6
                    .SectionFormat.EnableSuppress = False
                    CType(.ReportObjects("txtContractNumber"), TextObject).Text = "Contract #:" & ContractNumber
                End With
            End If
        End If
        With Report.Section5
            CType(.ReportObjects("txtAgencyName"), TextObject).Text = AgencyName
        End With
        If dsRep.Tables(0).Rows.Count <= 0 Then
            Report.secNoData.SectionFormat.EnableSuppress = False
            Report.Section2.SectionFormat.EnableSuppress = True
            Report.Section4.SectionFormat.EnableSuppress = True
            Report.Section7.SectionFormat.EnableSuppress = True
            Report.Section9.SectionFormat.EnableSuppress = True
            Report.Section10.SectionFormat.EnableSuppress = True
            Report.secFunderDetail.SectionFormat.EnableSuppress = True
        Else
            dsSub = db.GetIndividualSalaryFringeFunderDetail(ProgramID, FyID)
            'dsSub.WriteXmlSchema(Server.MapPath("~/ConsolidatedReports/Designers/IndividualSalaryFringe/IndividualSalaryFringeFunderDetail.xsd"))
            Report.OpenSubreport("subFunderDetail").SetDataSource(dsSub)
        End If
        'Ehn 41 add environment and db name
        CType(Report.Section5.ReportObjects("DBName"), TextObject).Text = "DB: " + ReportDB
        CType(Report.Section5.ReportObjects("Environment"), TextObject).Text = IIf(ReportEnv = "", ReportEnv, "Env: " + ReportEnv)
        Report.SetDataSource(dsRep)
        'You must set the ReportGroup equal to Crystal to make it work correctly
        ReportGroup = ReportGroup.Crystal
        'Leave this line of code
        ReportFile = Utility.ExportFile(Report, ExportFilter1.ExportType, Server.MapPath("~/ReportFiles/"))
        Return String.Empty
    End Function
    Public Function ExportFile(ByVal Report As ReportDocument, ByVal ExportType As ExportType, ByVal OutputPath As String, Optional ByVal ds As DataSet = Nothing) As String
        Dim crDiskFileOpts As New DiskFileDestinationOptions
        'Dim strFilePath As String
        'Dim strLinkPath As String
        Dim crExportOptions As New ExportOptions
        Dim crExcelOptions As New ExcelFormatOptions
        Dim crPDFOptions As New PdfRtfWordFormatOptions
        Dim crWordOptions As New PdfRtfWordFormatOptions
        Dim ReportName As String = String.Empty
        Try
            crExportOptions = Report.ExportOptions
            Select Case ExportType
                Case ExportType.Excel
                    ReportName = Left(Guid.NewGuid.ToString, 15) & ".xls"
                    With crExcelOptions
                        .ExcelTabHasColumnHeadings = True
                        .ExcelUseConstantColumnWidth = True
                    End With
                    crExportOptions.ExportFormatType = ExportFormatType.Excel
                    crExportOptions.FormatOptions = crExcelOptions
                Case ExportType.PDF
                    ReportName = Left(Guid.NewGuid.ToString, 15) & ".pdf"
                    crExportOptions.ExportFormatType = ExportFormatType.PortableDocFormat
                    crExportOptions.FormatOptions = crPDFOptions
                Case ExportType.Word
                    ReportName = Left(Guid.NewGuid.ToString, 15) & ".doc"
                    crExportOptions.ExportFormatType = ExportFormatType.WordForWindows
                    crExportOptions.FormatOptions = crWordOptions
                Case SamisConstants.ExportType.ExcelRaw
                    ReportName = Left(Guid.NewGuid.ToString, 15) & ".xls"
                    ''If Not IsNothing(ds) Then
                    ''    Dim oExcel As New ExcelExport.ExcelExport
                    ''    oExcel.CreateWorkbook(OutputPath & ReportName, ds)
                    ''End If
            End Select
            Select Case ExportType
                Case ExportType.Excel, ExportType.PDF, ExportType.Word
                    crDiskFileOpts.DiskFileName = OutputPath & ReportName
                    With crExportOptions
                        .DestinationOptions = crDiskFileOpts
                        .ExportDestinationType = ExportDestinationType.DiskFile
                    End With
                    Report.Export() ' ERROR HAPPENS HERE!!!!!!
            End Select
            Return "ReportFiles/" & ReportName
        Catch ex As Exception
            Throw ex
        End Try
    End Function

Similar Messages

  • Execution of workflow automation failed due to "Could not find a part of the path 'D:\Program

    Hi,
    Execution of workflow automation failed due to "Could not find a part of the path 'D:\Program Files\NetApp\WFA\jboss\standalone\tmp\wfa\workflow_data\35517.xml"
    Netapp case has been raised  and confirmed there is no issue with the WFA application, no clue to diagnose the issue.
    Execution fails continously 3 or 4 runs then get success, intermittent failure occurs.
    WFA version :2.2
    OS: Windows 2008
    Can someone please help me to fix the issue?
    Thanks
    Deepak

    Parag also pointed out that the BURT number is 833488 which has been fixed in 3.0.Please read the public report for more details. RegardsAbhi

  • RFC call failed: JCO.Server could not find server function 'SET_SLD_DATA'

    Hi, All
    the system is PI 7.0 EHP1 oraclei Win2003 server, I configured SLD but I run RZ70, having error "RFC call failed: JCO.Server could not find server function 'SET_SLD_DATA' ". I know there are lot of tread about this error, but none of themsolve my problem. all JCO, RFC connections and SDL DATA supplier(VA) seem OK. error message in SM21 is "Could not send SLD data"
    detail from SM21
    The system could not send the data that has been collected automatical
    for the System Landscape Directory (SLD). Check whether the gateway
    configured in transaction RZ70 has been started and whether the SLD
    bridge has been registered with this gateway.
    You can use transaction SM59 to check this in the sending system for t
    implemented RFC destinations. The RFC destinations have the standard
    names "SLD_UC" for Unicode sending systems and "SLD_NUC" for non-Unico
    sending systems. If a different RFC destination has been entered in
    RZ70, check this destination instead.
    You can use the Gateway Monitor to check the target gateways. In ABAP
    systems, this monitor is started with transaction SMGW, or you can use
    the external SAP program "gwmon". Check whether the specified gateway
    has an active registration.
    OF COURSE I checked  RFC of  SLD_UC and SMGW
    any different ideas
    Regards
    ABH

    Hi
    Please check the following notes are implemented
    Note 906454                           
    Note 907729
    You may be aware but if you are not --->RZ70 creates the required SLD* RFCs during runtime - therefore if you have defined these RFCs manually first using the same namespace you can get RFC conflicts which result in a failed submission    
    Please also check the user in the RFC is known to both systems and has required authorization to write to SLD
    Generally with SLD you have to install or select a suitable gateway to handle incoming data supply traffic
    Also the gateway you are using has be known to SLD and reflected in RZ70 - i.e these defintions have to be the same
    It is also recommended to delete all references to SLD_* RFCs in data supplier and target SLD
    after a failed submission attempt to allow RZ70 to recreate these consistently once the above has been checked
    Best wishes
    Stuart

  • Could not find file in Temp directory

    Hey all!
    I received the follwoing error when exporting a report into a pdf file using the ExportToStream method:
    Could not find file "C:\DOCUME1\CHL0337\ASPNET\LOCALS1\Temp\export_e269c3d0-e775-4351-b2ea-09507859a79a.tmp".
    I am using VS 2003 and CR 9.1.5, and I didn't have any problems with this report until I enlarged the header field for a column. After this error occurred, I reverted back to the original report, but it still threw the error. I then restarted IIS, rebuilt the application, and then ran the report again. Still no luck.
    Any ideas on what is causing this problem? Is this a version issue?
    (I have four other reports that are still working fine, it just seems to be this one report)

    Here is the full dump of the error message:
    Exception=System.IO.FileNotFoundException
    Message=Could not find file "C:\DOCUME1\CHL0337\ASPNET\LOCALS1\Temp\export_d03e5522-a635-47c0-b649-a238063b0223.tmp".
    FileName=C:\DOCUME1\CHL0337\ASPNET\LOCALS1\Temp\export_d03e5522-a635-47c0-b649-a238063b0223.tmp
    TargetSite=Void WinIOError(Int32, System.String)
    StackTrace= at System.IO.__Error.WinIOError(Int32 errorCode, String str)
    at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, Boolean useAsync, String msgPath, Boolean bFromProxy)
    at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share)
    at CrystalDecisions.CrystalReports.Engine.FormatEngine.ExportToStream(ExportRequestContext reqContext)
    at CrystalDecisions.CrystalReports.Engine.ReportDocument.ExportToStream(ExportFormatType formatType)
    at FixedAssets.FAPageBase.InvokeCrystalReport(String ReportName) in c:\dev\source\comptrollers\fixedassets\dev\web\fapagebase.aspx.cs:line 588
    at FixedAssets.Reports.CreateAssetDisposalsReport.btnRunReport_Click(Object sender, EventArgs e) in C:\dev\source\comptrollers\FixedAssets\Dev\web\Reports\AssetDisposalsReport.aspx.cs:line 70
    at System.Web.UI.WebControls.Button.OnClick(EventArgs e)
    at System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument)
    at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
    at System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData)
    at System.Web.UI.Page.ProcessRequestMain()
    Source=mscorlib

  • Could not find file ERROR while connecting to access (mdb) file

    I am getting the following error while connecting to the database:
    javax.servlet.ServletException: [Microsoft][ODBC Microsoft Access Driver] Could not find file 'C:\WINNT\system32\Database1.mdb'.
    Following is my code:
    <%
         Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
         String database="jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=";
         String filename="D://BeaTemp//Database1";
         database+= filename.trim() + ";DriverID=22;READONLY=true}";
         Connection con=DriverManager.getConnection(database, "", "");
         Statement st=con.createStatement();
         ResultSet rs=st.executeQuery("select * from Database1.Employee");
         ResultSetMetaData rsmd=rs.getMetaData();
         while(rs.next()){
              for(int i=1;i<=rsmd.getColumnCount();i++) {
                   out.println(rs.getString(i));
    %>
    What could be the problem..??
    Thankx in advance..
    Satish.

    Got the solution.
    The statement:
    ResultSet rs=st.executeQuery("select * from Database1.Employee");
    should be changed as:
    ResultSet rs=st.executeQuery("select * from Employee");
    Now, it is working fine.
    Regards,
    Satish.

  • Error could not find file/pathurl for id file::QTMRead

    Hi,
    I'm very puzzled as to this error I have gotten on multiple projects when trying to check back out.
    Error could not find file/pathurl for id file::QTMRead
    I'm halfway through a project with a deadline of next week, and have been using edit proxies, so am just worried about being able to export the final project if the Server cannot find the file.
    It seems to get this error after a glitchy upload where the server locks up and I have to force quit. Has anyone had this message before/have any ideas how to solve it?
    Some speedy help would be very much appreciated.
    Thanks,
    Dania

    You need to make sure that you imported the Reports.xml file into the FDM application. Also, you will want to login to the application using the workbench client and click on the Reports tab and expand the English > Check Reports and right-click on the check report and choose "Set as Validation Report".

  • InfoSpoke fails with message "Could not open file on application server"

    BW Experts,
    I created an InfoSpoke that is configured to extract to a flat file. The name of the file is specified using a logical filename. During extraction, the infospoke reports the error message "Could not open file on application server" adnd  marks the extraction process as red(failed). I have tried to run the InfoSpoke in background mode and in dialog mode and the same error appears. After i run in dialog mode, i checked SU53 for authorization errors and did not find any. I also tried changing the Logical filename setup in transaction FILE to a more "friendly" directory in which i'm sure i have authorizations (e.g. my UNIX home directory) and im still getting errors.
    Can you please share your thoughts on this? Any help will greatly appreciated. I also promise to award points.

    Hi Nagesh,
    Thanks for helping out.
    If i configure the InfoSpoke to download to a file using "File Name" option and also check the "Application server" checkbox, the extract works correctly (extraction to the defualt SAP path and filename=infospoke name). If i configure the InfoSpoke to download to the local workstation, the InfoSpoke also works correctly. It's only when i configure it to download to the application server and use the "Logical filename" option, that i encounter a failed extract.
    Here are the messages is the Open Hub Monitor:
    (red icon) Request No.147515
    0 Data Records
    Runtime 1 sec.
    (red icon)Run No. 1
    0 Data Records
    Runtime 1 sec.
    Messages for Run
    Extraction is running RSBO 305
    Could not open file on application server RSBO 214
    Request 147515 was terminated before extraction RSBO 326
    Request 1475151: Error occured RSBO 322
    If i clink on the error message, no messages nor clues are displayed. Note, this is a new InfoSpoke that is currently in the dev system.
    Please help.

  • Error: Could not find file for old Adobe Reader Bundle

    We are running Zenworks 11.2.3a (just upgraded to this version last week) on a linux server. Today, I received calls from a number of users, their computers were displaying the following error message:
    Could not find the file "/var/opt/novell/zenworks/content-repo/tmp/zpm/plp//windows/x86/en/E8833D51-5176-4B73-B6D2-A47603C3270D.plp" to install.
    They are getting this pop-up message 2 times every time Zenworks refreshes.
    I tried to find this file on the Zenworks server but the directory does not exist on the server. In fact, I can only navigate as far as /var/opt/novell/zenworks/content-repo/tmp/zpm - there is only one folder in this directory named dauzip.
    Here is the error message from the zmd-messages.log on one of the workstations:
    [GenericActions.FileCouldNotBeFound] [Could not find the file "/var/opt/novell/zenworks/content-repo/tmp/zpm/plp//windows/x86/en/E8833D51-5176-4B73-B6D2-A47603C3270D.plp" to install.] [] [fd868047b8dda3fab8f372c803a2a4f3]
    Any idea what's causing this error or how to fix it?

    No idea what is causing this.
    To fix, maybe just delete the bundle and create a new one ?

  • Patch Failed -  error 004, Could not find etc\config\inventory

    Hi:
    I'm trying to upgrade a 10.1.0.2 database with the new patch (via Enterprise Manager) and although EM had all steps succeeding (cachePatchFile, checkTarget, stagePatch, expandPatch, applyPatchWIN, collectionStep) when I look at the logs, I see that the applyPatchWIN step actually failed. Does anyone know why this occurs? How do I make redo the last two tasks after making whatever changes I need to make?
    Thanks. (log contents follow).
    Output Log
    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.
    C:\oracle\product\10.1.0\Db_1\vaff01-vista03.foo.com_orcl\sysman\emd>C:\oracle\product\10.1.0\Db_1\vaff01-vista03.foo.com_orcl\sysman\emd>C:\oracle\product\10.1.0\Db_1\vaff01-vista03.foo.com_orcl\sysman\emd>
    C:\oracle\product\10.1.0\Db_1\vaff01-vista03.foo.com_orcl\sysman\emd>
    C:\oracle\product\10.1.0\Db_1\vaff01-vista03.foo.com_orcl\sysman\emd>
    C:\oracle\product\10.1.0\Db_1\EMStagedPatches\3761843>C:\oracle\product\10.1.0\Db_1\EMStagedPatches\3761843>
    C:\oracle\product\10.1.0\Db_1\EMStagedPatches\3761843>
    C:\oracle\product\10.1.0\Db_1\EMStagedPatches\3761843>
    C:\oracle\product\10.1.0\Db_1\EMStagedPatches\3761843>
    C:\oracle\product\10.1.0\Db_1\EMStagedPatches\3761843>
    C:\oracle\product\10.1.0\Db_1\EMStagedPatches\3761843>
    C:\oracle\product\10.1.0\Db_1\EMStagedPatches\3761843>
    C:\oracle\product\10.1.0\Db_1\EMStagedPatches\3761843>
    C:\oracle\product\10.1.0\Db_1\EMStagedPatches\3761843>C:\oracle\product\10.1.0\Db_1\EMStagedPatches\3761843>
    C:\oracle\product\10.1.0\Db_1\EMStagedPatches\3761843>
    C:\oracle\product\10.1.0\Db_1\EMStagedPatches\3761843>
    Running: C:\oracle\product\10.1.0\Db_1\sysman\admin\scripts\osm\ecmApplyOPatch.pl
    Argument count: 2
    Perl version: 5.006001
    Hostname: vaff01-vista03
    Operating system: MSWin32
    Time: Tue Oct 5 16:35:00 2004
    Tue Oct 5 16:35:00 2004 - Attempting to apply patch to Oracle home (C:\oracle\product\10.1.0\Db_1)...
    ---------- Error Message ----------
    Error: 004
    Could not find etc\config\inventory to apply patch
    ----------- End Message -----------
    Tue Oct 5 16:35:03 2004 - Patching failed.
    C:\oracle\product\10.1.0\Db_1\EMStagedPatches\3761843>C:\oracle\product\10.1.0\Db_1\EMStagedPatches\3761843>C:\oracle\product\10.1.0\Db_1\EMStagedPatches\3761843>More?

    Bug No. 3671290
    Metalink Note: Note:308709.1
    https://metalink.oracle.com/metalink/plsql/f?p=130:14:8628931871909914380::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,308709.1,1,1,1,helvetica

  • After using reset, i can't go to internet. box comes up "unhandled exception could not find file - c:\docum.....\mozi...\fire..prof\..3bn5nbjy. def.. It's in ol

    there was 2 options at the bottom of the box. one was to "continue" without fixing the exception,
    which I took. I don't remember option 2. I think I found the missing file under Desk Top icon "Old
    Firefox Data". The name of the file is - c:\documents and settings\bob\application data\mozilla\
    firefox\profiles\3bn5nbjy.default\prefs.js
    When I log on the Firefox home page comes up, I go to browser and click on AOL and the little
    grey rotating circle (counter clockwise) keeps going forever. never turns green.
    Hope this helps,
    Bob J

    Sounds that Firefox has been reset and a new profile got created and something went wrong with finishing the process.
    *https://support.mozilla.org/kb/reset-firefox-easily-fix-most-problems
    When Firefox is reset then a new profile is created and some personal data (bookmarks, history, cookies, passwords, form data) is automatically imported and the current profile folder will be moved to the desktop to an "Old Firefox Data" folder.
    Installed extensions and other customizations (toolbars, prefs) that you have made are lost and need to be redone.
    It is possible to recover more data from the old profile, but be cautious not to copy corrupted files to avoid carrying over the problem
    *https://support.mozilla.org/kb/Recovering+important+data+from+an+old+profile

  • Could not find file while installing Flash Player

    I downloaded [Adobe Flash Player version 9.0.124.0 for Intel-based Macs|http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=shockwaveFlash] and when I began installing it, right before it was almost done, this window came up:
    and when I clicked OK, this window came up:
    What do I need to do to be able to install Flash Player on my computer?
    Thanks in advance,
    -thealexness

    Thanks for the help didi_vinyl, the uninstallation/installation went very smoothly. Yet I still have a when I go to this one website.
    The specific website I am trying to access is at PrincetonReview.com>Student Tools>Your Test Scores/Reports>Your New SAT Online Student Center Score Report>A Diagnostic Test. When you click on the link to the test, it gives you a whole 8 pages of analyzation (for any of you who have taken a Princeton Review Diagnostic Test you know what I'm talking about, and when I click the +Printer Friendly Version+ it gives me two pages with the .
    Now according to [this website|http://forums.macosxhints.com/showthread.php?t=83434] that discusses the appearance of :
    The "lego" means that you either are missing the Quicktime plugin for that image or have an outdated/wrong plugin installed. Check the folder /Library/Quicktime and re-install any plugins you have there to be sure you're using the Intel version.
    So I checked Macintosh HD>Library>Quicktime and I have the following components
    1. AppleIntermediateCodec.component
    2. CanonMJPEGAVI.component
    3. DivX Decoder.component
    4. DivX Encoder.component
    5. Flip4Mac WMV Advanced.component
    6. Flip4Mac WMV Export.component
    7. Flip4Mac WMV Import.component
    Apart from components 2-7, which I believe are third-party plug-ins, does it look like I am missing any key Quicktime components? Or is this even a Quicktime plug-in issue?
    Thanks for all of the help!
    -thealexness

  • CRM 2015 Installing fails: Action MicrosoftCrm.Setup.Server.BackupUpgradeDataAction Failed Could not find the file 'C:\intpub\wwwroot\web.config'.

    I don't have many issues... but when I do it is usually a bad one.   
    I took my CRM 2013 install running on Server 2008 and did an upgrade to server 2012 R2.  No issues.   All updates applied.  From there I run the CRM 2015 installer to run the upgrade..... Yes, running as admin, and after the "Pre Flight
    Check"  everything is good.   From there the install starts to copy files.....  I get this error. 
    00:16:43|   Info| CrmAction execution time; BackupUpgradeDataAction; 00:00:03.0020974
    00:16:43|  Error| System.Exception: Action Microsoft.Crm.Setup.Server.BackupUpgradeDataAction failed. ---> System.IO.FileNotFoundException: Could not find file 'C:\inetpub\wwwroot\web.config'.
       at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
       at System.IO.File.InternalCopy(String sourceFileName, String destFileName, Boolean overwrite, Boolean checkHost)
       at Microsoft.Crm.Setup.Server.BackupUpgradeDataAction.Do(IDictionary parameters)
       at Microsoft.Crm.Setup.Shared.CrmAction.ExecuteAction(CrmAction action, IDictionary parameters, Boolean undo)
    I am finding no references to this issue any where.   Looking for suggestions.   It appears that this file does not actually exist.   Somewhere during the upgrade maybe it got deleted.     I have put an old web.config file in this
    path, rebooted everything and still get the same error.
    Looking for some suggestions.
    Pierre Hulsebus

    Sounds like a problem with the information about where the Crm website is installed. Crm uses 2 registry values 'website' and 'websitepath' under HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSCRM. Do these look correct, and is the Crm website under c:\inetpub\wwwroot,
    or elsewhere ?
    The last part of the 'website' value is the website id, which you can see in IIS Manager
    Microsoft CRM MVP - http://mscrmuk.blogspot.com/ http://www.excitation.co.uk

  • Fix MSBuild error = Could not find .datasource file

    Hi,
    I have a VS2010 solution that I opened in VS2013 and followed the automatic conversion process.  After that I edited the TFS build process template to remove the extraneous references to Version=10.0.0.0 which were duplicated due to a VS2010 bug (I
    found a blog by an MS employee that pointed to this issue).  The solution builds fine from my VS2013 but when I submit it to TFS build server using the modified build process template, I get an error (please see attached) referring to missing .datasource
    file for one of the WCF projects.
    What could I do in terms of possible adding build parameters to the MSBuild or changes to the WCF project to remove this error?
    Thanks
    $/E2E/Root Controller/Main Branch/OATI.E2E.WebService.sln - 1 error(s), 218 warning(s)
    C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets (178): Unable to copy file "Service References\GridPortInfoService\WcfServiceE2E.GridPortInfoService.HardwareInfoResponse.datasource" to
    "D:\Builds\8\132\Binaries\WcfServiceE2E\_PublishedWebsites\WcfServiceE2E\Service References\GridPortInfoService\WcfServiceE2E.GridPortInfoService.HardwareInfoResponse.datasource". Could not find file 'Service References\GridPortInfoService\WcfServiceE2E.GridPortInfoService.HardwareInfoResponse.datasource'.

    Hi LongD, 
    Thanks for your post.
    What’s the version of your TFS, TFS 2010 or TFS 2013?
    You want convert your VS 2010 solution to VS 2013 version, and built it using TFS 2013 Build?
    On your current build agent machine, try to manually build your converted solution using VS 2013 and MSBuild command separately, ensure you can manually build your solution on build agent machine successfully. If cannot manually build on build agent machine,
    please resolve this manually build issue first.
    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.

  • BizTalk 2009 WCF-SAP Adapter Could not load file or assembly 'Microsoft.Adapters.SAP.SAPGInvoker...' one of its dependencies error

    Hello,
    I have a BizTalk Server 2009 running on Windows Server 2003 x64. I am installing WCF-SAP adapter and have done the following for the same. However, I am getting an error as mentioned below when I click on the Configure button of WCF-SAP adapter in send
    port. I would appreciate if anyone could let me know how to fix this error and make the WCF-SAP adapter working.
    TITLE: BizTalk Server 2009 Administration Console
    Exception has been thrown by the target of an invocation. (mscorlib)
    ADDITIONAL INFORMATION:
    Exception has been thrown by the target of an invocation. (mscorlib)
    Could not load file or assembly 'Microsoft.Adapters.SAP.SAPGInvoker, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. This application has failed to start because the application configuration is incorrect. Reinstalling
    the application may fix this problem. (Exception from HRESULT: 0x800736B1) (Microsoft.Adapters.SAP)
    This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. (Exception from HRESULT: 0x800736B1)
    I have copied the following 32 bit & 64 bit unicode DLLs in SysWOW64 and System32 folders respectively.
    icudt30.dll
    icuin30.dll
    icuuc30.dll
    librfc32u.dll
    libsapu16vc71.dll
    libsapucum.dll
    Following r3dllinst DLLs are there in System32 folder.
    mfc42.dll
    mfc42u.dll
    mfc71.dll
    mfc71u.dll
    msvcp60.dll
    msvcp71.dll
    msvcp80.dll
    msvcr71.dll
    msvcr80.dll
    Following r3dllinst DLLs are there in SysWOW64 folder.
    mfc40.dll
    mfc40u.dll
    mfc42.dll
    mfc42u.dll
    mfc71.dll
    mfc71u.dll
    mfc80.dll
    mfc80u.dll
    msvcp50.dll
    msvcp60.dll
    msvcp71.dll
    msvcp80.dll
    msvcr71.dll
    msvcr80.dll
    I have the following softwares installed on the server.
    Microsoft Visual C++ 2008 Redistributable x64
    Microsoft Visual C++ 2008 Redistributable x86
    WCF LOB Adapter SDK (64-bit)
    BizTalk Adapter Pack 2.0 (64-bit)
    BizTalk Adapter Pack 2.0 (32-bit)
    The following bindings are also present in the machine.config under Framework\v2.0.50727\CONFIG and Framework64\v2.0.50727\CONFIG
    <system.serviceModel>
    <extensions>
    <bindingElementExtensions>
    <add name="sapAdapter" type="Microsoft.Adapters.SAP.SAPAdapterExtensionElement, Microsoft.Adapters.SAP, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
    </bindingElementExtensions>
    </extensions>
    <client>
    <endpoint binding="sapBinding" contract="IMetadataExchange" name="sap" />
    </client>
    </system.serviceModel>
    Thanks,
    Tarun

    Have you tried this?
    http://geekswithblogs.net/MoonWalker/archive/2013/07/17/could-not-load-file-or-assembly-microsoft.adapters.sap.sapginvoker.dll.aspx
    Morten la Cour

  • The share operation "master file" has failed. the operation could not be completed because an error occurred creating Frame 93164 (error-1). how can i find the frame?

    The share operation "master file" has failed. the operation could not be completed because an error occurred creating Frame 93164 (error-1). how can i find the frame?

    https://discussions.apple.com/thread/6219522

Maybe you are looking for

  • Please help.  Music files missing from itunes and computer!

    I know that this isn't exactly a new issue, but I have scanned the discussions and nothing that I have read seems to help. My son has a nano (4th gen). He isn't sure but he thinks that maybe he disconnected his ipod before a sync was complete or some

  • Photos app losing photo titles

    Some of the titles I type in for some of my photos in an album keep disappearing.  I enter them, then while I'm doing other things, editing another photo or moving some photos around, or looking in another album and then switching back, some, not all

  • Please Help! simple ? on updating Library

    There must be simple method of doing this but I can't figure it out! I was cleaning up my hard drive and deleted a lot of old music that I don't listen to anymore. Problem is, when I open my iTunes library, the music is still listed and just won't pl

  • Worst nokia care and awesome nokia technicians

    baught my lumia jus 1 month back...the screen was loosely fixed....and whenever i pressed a bit hard and swipe horizontally the screen would move..... send it to nokia care (Country:india, `state:kerala, place:Thrissur) on primary investigation from

  • HT1414 iPhone 4S photo help

    Hello does anybody know how I can retrieve my photos from my iPhone S4. I had to factory reset it & my pics was not backed up on iCloud or my computer.