Need to append the assembly entry in web.config file while installing NuGet

Hi,
Consider that I need to create three NuGets. Second and third are dependents for first one. Each one has its own web.config file, which file content is same except one tag's value. While I'm installing the first NuGet, it will install the second and third too
which is fine. The NuGets are installing one by one. But the issue is while I'm installing the NuGet in an ASP.NET project, the web.cofig file gets replace with one another that means the last NuGet's web.config file is only remains at last. But I need to
append that tag value one by one. Is there any possibilities to create NuGets in that way? Please help me as soon as possible. Thanks in advance.
I need this...
<assemblies>
<add assembly="Abc.EM, Version=10.0.0.1, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" />
<add assembly="Def.EM, Version=10.0.0.1, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" />
<add assembly="Ghi.EM, Version=10.0.0.1, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" />
</assemblies>
But I got this...
<assemblies>
<add assembly="Ghi.EM, Version=10.0.0.1, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" />
</assemblies>

Hi mathikp,
One solution is to use the DTE object model to find the ASP.NET project, enumerate all the project items in the project to find the Web.config file. Then change the content by your self. This will be done after you install the Nuget package in the project.
https://msdn.microsoft.com/en-us/library/envdte.project.projectitems.aspx
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.

Similar Messages

  • Need to Append the records in file and want to Overwrite the file

    Dear SDners,
    I facing one scenario i am sending 5lacs records in 50k slots want to append these records in same file in one day and next day i want to overwrite the existing file............
    Plz suggest......
    Regards
    Ganga

    hI Santosh,
    I am not duplicating the posting .now i have now change my interface design my interface is not meeting my req ,by this append opreation as you also know that first want to append the records whole day in one file and then next day with same processing i want to over write the file.
    I think now u will get my point......................:)
    Regards
    Edited by: gangadhar kh on Feb 4, 2010 2:24 PM

  • The setting ExternalProxy in the Web.Config file was not valid.

    Since installing Exchange 2010 SP1 (Upgrade from RTM) I get this in the event viewer.
    The setting ExternalProxy in the Web.Config file was not valid. The previous value was null and has been changed to .
    Any ideas what to check?

    I'm also getting a number of these errors on Exchange 2010 SP1 RU1, the settings that I get notified include (the values have been changed to a number of diferent values):
    ExternalProxy
    BootstrapMailDeliveryDelay
    MobileUpdateInformationURL
    BootstrapCABForWM61HostingURL
    FullServerVersion
    ADCacheMaxOrgCount
    ADCacheExpirationTimeout
    MaxDocumentDataSize
    MaxDocumentLibrarySearchResults
    MaxGALSearchResults
    BadItemEmailToText
    BadItemIncludeEmailToText
    BadItemIncludeStackTrace
    MaxClientSentBadItems
    MailboxSearchTimeoutNoContentIndexing
    MailboxSearchTimeout
    MaxMailboxSearchResults
    MaxRequestsQueued
    MaxWorkerThreadsPerProc
    MaxCollectionsToLog
    ProxyConnectionPoolConnectionLimit
    ProxyHandlerShortTimeout
    ProxyHandlerLongTimeout
    BackOffErrorWindow
    BackOffTimeOut
    BackOffThreshold
    ProxyVirtualDirectory
    BlockLegacyMailboxes
    BlockNewMailboxes
    SchemaValidate
    SchemaDirectory
    SyncLogDirectory
    SyncLogEnabled
    DisableCaching
    DeviceClassCacheADCleanupInterval
    DeviceClassPerOrgMaxADCount
    DeviceClassCachePerOrgRefreshInterval
    DeviceClassCacheMaxADUploadCount
    DeviceClassCacheMaxStartDelay
    MaxWindowSize
    MaxRetrievedItems
    EventQueuePollingInterval
    ADCacheRefreshInterval
    MaxSizeOfMailboxLog
    NumOfQueuedMailboxLogEntries
    MaxNumOfFolders
    Can these be resolved in a similar manner. Some additional information would be great (as sjoegarrett I can also ignore them, but would prefer if these could be eliminated).

  • How to address the folder out of web site place in web.config file?

    Hi to all,
    I have a website. I want that some folder place out of web site location,then address their in web.config file.
    but don't how to do?
    please guide me.
    Thanks ;)
    Good luck!

    Hi Bahare Aghabarari,
    Welcome to MSDN forums.
    This is a forum for questions about Visual C# language. For ASP.NET questions, please post in
    ASP.NET forums. You can get more valuable replies there.
    Thanks for your understanding.
    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.

  • Search for a specific string in web.config file

    Hi
    Is there a way we can search a specific word in web.config using powershell.
    I have an entry of "user name" in the connection string. I want to find what the user name is and whether its a correct user name or not based on the criteria set in the script.
    i believe its a simple matter of if statement but due to connection string i am unable to do this.
    this is my connection string from web.config
        <connectionStrings>
        <add name="Membership" connectionString="Data Source=testdb;Initial Catalog=test;user   
        name=testUser;password=123456;MultipleActiveResultSets=true" 
        providerName="System.Data.SqlClient"/>
        </connectionStrings>
    My criteria is. if user name -eq testUser write-host "correct user name" else "user name is incorrect"
    This is the script which i am using
        $webConfig = 'C:\Users\test\web.config'
        $cfg = [xml](gc $webConfig)
    Not sure how the if statement will work in searching the document and applying critera

    Here is the full web.config file. i just modified the credentials.
    <?xml version="1.0" encoding="utf-8"?>
    <configuration>
      <configSections>
        <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection,
    EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
        <section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog" />
        <sectionGroup name="common">
          <section name="logging" type="Common.Logging.ConfigurationSectionHandler,
    Common.Logging" />
        </sectionGroup>
        <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468
    -->
      </configSections>
      <connectionStrings>
        <add name="Membership" connectionString="Data Source=TestDB;Initial Catalog=Test;user
    id=TestUser;password=1234556;MultipleActiveResultSets=true" providerName="System.Data.SqlClient" />
        <add name="Administrator" connectionString="Data Source=TestDB;Initial Catalog=Test;user
    id=TestUser;password=1234556;MultipleActiveResultSets=true" providerName="System.Data.SqlClient" />
      </connectionStrings>
       <startup>
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1" />
      </startup>
      <entityFramework>
        <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory,
    EntityFramework" />
      </entityFramework>
      <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    throwExceptions="true">
      <targets>
           <target name="f1" xsi:type="File" fileName="test.log.txt"
    layout="${threadname} ${longdate}
         ${callsite} ${logger}[${level}] ${message}" />
           <target name="console" xsi:type="Console" layout="${threadname}
    ${longdate} ${callsite}
         ${logger}[${level}] ${message}" />
         </targets>
     <rules>
          <!--<logger name="Quartz.*" level="Warn" />-->
          <logger name="*" writeTo="f1" minlevel="Info" />
          <logger name="*" writeTo="console" minlevel="Debug"
    />
        </rules>
      </nlog>
      <common>
        <logging>
          <factoryAdapter type="Common.Logging.NLog.NLogLoggerFactoryAdapter, Common.Logging.NLog20">
            <arg key="configType" value="INLINE" />
          </factoryAdapter>
        </logging>
      </common>
      <appSettings>
       <add key="V3Import.Import.TestMode" value="true" />
        <add key="MSMQ.QueueName" value="TestQueue" />
        <add key="MSMQ.ErrorQueueName" value="TestQueue" />
        <add key="AdminSignaturePath" value="C:\user\test\myfolder" />
        <add key="SyncQueueJobCRON" value="0 0/2 * 1/1 * ? *" />
      </appSettings>
      <system.web>
        <authentication mode="Forms">
          <forms loginUrl="~/Account/Login" timeout="5000000" />
        </authentication>
        <membership defaultProvider="AspNetMembershipProvider">
          <providers>
            <add connectionStringName="Membership" enablePasswordRetrieval="false"
    enablePasswordReset="false" requiresQuestionAndAnswer="false" applicationName="/Test" requiresUniqueEmail="false" passwordFormat="Hashed" maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6"
    minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10" passwordStrengthRegularExpression="" name="AspNetMembershipProvider" type="System.Web.Security.SqlMembershipProvider, System.Web, Version=2.0.0.0,
    Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
          </providers>
        </membership>
        <profile>
          <providers>
            <add name="AspNetProfileProvider" connectionStringName="Membership"
    applicationName="/Test" type="System.Web.Profile.SqlProfileProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
          </providers>
        </profile>
        <roleManager>
          <providers>
            <add name="AspNetRoleProvider" connectionStringName="Membership"
    applicationName="/Test" type="System.Web.Security.SqlRoleProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
          </providers>
        </roleManager>
      </system.web>
      <system.net>
      </system.net>
      <runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
          <dependentAssembly>
            <assemblyIdentity name="dotless.Core" publicKeyToken="96b446c9e63eae34"
    culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-1.3.1.0" newVersion="1.3.1.0"
    />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"
    culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-5.1.0.0" newVersion="5.1.0.0"
    />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"
    culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0"
    />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="EntityFramework" publicKeyToken="b77a5c561934e089"
    culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0"
    />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="NLog" publicKeyToken="5120e14c03d0593c"
    culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-2.1.0.0" newVersion="2.1.0.0"
    />
          </dependentAssembly>
          <dependentAssembly>
            <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed"
    culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0"
    />
          </dependentAssembly>
        </assemblyBinding>
      </runtime>
    </configuration>

  • Maximum size video upload settings in web config file

    Hi, i am providing video support in my application, whereas i need to provide support to upload video without any size limit, say for example atleast 1GB video should be uploaded and played via html5 and iframe tag. I have made some changes in web config
    file like maxrequestlength attribute and maxallowedcontentlength attribute set to support maximum of 1 GB video. But it does not affect my application in anyway. Any suggestions please??

    This forum supports setup of the .NET Framework itself.
    As you question concerns configuration of a web application, I recommend that you ask here:
    http://forums.asp.net/26.aspx/1?Configuration+and+Deployment

  • Web.config file

    I purchased a SSL certificate - the company who I purchased it through said I had to do a web.config file and a redirect file - can anyone help me - please?

    I did it was godaddy.com and they told me I needed the web.config file - but if I understand it I think I just need to point the site to the https - and I thought I could do that in dreamweaver under site management - but it didn't work.  In other words, https://www.mymomentumservices.com is on the web and you can get to it if you key it in - but the site was originally set-up http://www.mymomentumservices.com - hope that make sense - thank you for any help you can give me.

  • "The instillation process has encountered an error while installing shared technologies."

    Basically, when ever I attempt download Adobe Premiere Elements 11 on my Windows Vista computer, half way through a message pops up saying "The instillation process has encountered an error while installing shared technologies. Please restart your system and try again."
    Each time I insert the disc, I select trial version, in case I download the full version and it no longer lets me use my serial code.
    Some one said the destination folder couldn't contain more then 250 characters, so I changed its location from 'C:\Program Files\Adobe\' to 'C:\' but it still came up with the same message!
    I have downloaded the new Adobe Reader 10, but this makes no difference to the process.. no matter what I've tried it always comes up with the same message.
    I also turn of my anti-virus software when installing Adobe Premiere Elements. Still this doesn't do the trick. And I've restarted my computer and tried downloading it and un-downloading it multiple times!
    Every time the same message comes up, and I have no idea how to fix it... Its defiantly not my memory that is a problem, as I currently have 50GB free on my OS C:\ drive.
    I also have QuickTime version 7.6.9, which is apparently needed?
    If you know something I haven't tried that may work, or the problem causing this and a solution to the problem, please can you notify me, Thanks!

    Refer to this:
    Troubleshoot installation | Photoshop Elements, Premiere Elements | Windows
    Mylenium

  • Solution: The installation process has encountered an error while installing Shared Technologies

    I purchased an upgrade to Elements 11 and Premiere 11 for Windows a couple of days ago. When I tried to install, I received the following error message:
    "The installation process has encountered an error while installing Shared Technologies. Please restart your system and try again."
    There was an invitation to Troubleshoot using a button that downloaded Adobe Support Advisor. No joy, it didn't find any issues.
    I restarted and tried to install again. Same error message. The solutions here didn`t help so I started up a chat with Adobe Support.
    The TSR asked me to run  Set-Up.exe in Adobe Photoshop Elements 11 Install\PSE 11\ElementsSTIInstaller. That returned an error about the path being too long. He had me try some other ideas, none worked.
    The TSR then asked to do a remote session. After realizing that it would not work from  the install on our server, he copied the PSE11 directory locally. He again ran Set-up.exe from the PSE 11\ElementsSTIInstaller directory. This time it completed!
    After that, he ran Setup.exe in the PSE11 directory. This time, the setup completed and I was able to open Elements 11!
    Hope this helps someone else who gets this error message!
    Best,
    John

    Welcome to the forum.
    Take a look at this thread: http://forums.adobe.com/message/5200642#5200642
    That OP found that the problem with their installation was due to Norton running, during the installation, but there are other links, with maybe other solutions.
    Good luck,
    Hunt

  • [svn:bz-trunk] 21260: Update the qa-frameworks. zip to remove all comments from the base xml when merging config files.

    Revision: 21260
    Revision: 21260
    Author:   [email protected]
    Date:     2011-05-16 07:46:54 -0700 (Mon, 16 May 2011)
    Log Message:
    Update the qa-frameworks.zip to remove all comments from the base xml when merging config files.
    Modified Paths:
        blazeds/trunk/qa/resources/frameworks/qa-frameworks.zip

    Try options=('!makeflags') in PKGBUILD.

  • Problem in Navigating the Journal Entry through Web Services

    Dear All,
    We are using the Webservice(B1WS) to navigate the Journal Entry data. its showing the error message '坨ᷧymentMen' in Enum 'PaymentMeansTypeEnum', the valid values are '', 'CHK', 'BTR', 'CAS', 'CRD'" and record is not navigated.
    I analyzed that Journal Entry in SAP Business One. Its generated for the Outgoing Payments.
    Please suggest me where i have the wrong step.
    Best Regards,
    Netra Pal

    Dear Gordon,
    Thanks for the reply.
    The Journal Entry navigation is working with other JE documents. Its creating the problem in those JE which are generated for Outgoing Pyaments.
    I have gone through the JE web services there is only one variable "FCCurrency". I think that its not related to currency codes.
    Waiting for a positive reply from you.
    Best Regards,
    Netra Pal

  • Need help finding the right codec to play QT files

    Like many others who have posted, all the quicktime files on my drive have turned to black. Previously when I opened the file, I saw picture and sound. Now every single file has only audio, but the picture is black.
    I am operation on Mac O.S. 10.4.11. I am using Quicktime Pro 7.5. I have been trying to fix this problem for a month now. Many people have suggested I need to find the right codec, but so far I have not found it. I have tried: A52codec.component, AC3codec, MacOS 8.x, 9.1.x, Apple Intermediate Codec.com, Apple MPEG2.codec.component, Avilmporter-r7.component, DivX Decoder.component, DivX Encoder.component, DivX Pro 6.8.0.19 + keymaker, EnsharpEncoderMacOsX.cmg, Fbx 20091quicktime_macemu.pkg.tar, Fbx QT.pkg, Flipsformac, WMV Advanced.component, Flipsformac WMV Advanced Exports.component, Flipsformac WMV Import.component, IMXCodec.component, LAAME Universal Installer.mpkg, LAAMEncoder.component, QSSP_2.1.dmg, QSXEssentials.component, QSXEssentials.dmg, QTFvx.component, Red Quicktime Codec v3.1.pkg, Red Code iedcod.qt.component, Spectrograph.component, TSCC.component xiphqt.component, XviD_codec-r58.component, XviDELEGATE.component
    Nothing worked!
    I also tried to install Perian. This did not work.
    What should I do? Should I re-install my operating system and start over? About a month ago, all the video clips played just fine. Is there any solution?
    Thanks

    Hi Wangerer!
    I haven't even heard of half of those! You may have reached overkill on codecs!
    Get rid of some of them and read this:
    These are the downloads and the settings you need in order to view/hear pretty much everything that the net can throw at you: The setup described below has proved repeatedly successful on both PPC and Intel macs, but nothing in life carries a guarantee!
    It is known to work in the great majority of cases with Safari 3.0.4, 3.1, 3.1.1, QT 7.3, 7.4.x and 7.5 and OS 10.4.11.
    Assuming you already run Tiger versions OS 10.4.11 and have Quicktime 7.4 or above, and are using Safari 2 or 3, download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer 11 (which is no longer in beta) for Mac from:
    http://www.versiontracker.com/dyn/moreinfo/macosx/15540
    Flip4Mac WMV Player from http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    You should read this support page http://perian.org/#support in case you need to delete older codecs.
    Adobe FlashPlayer should first be uninstalled using the appropriate uninstaller available here:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14157&sliceId=2
    and then the latest version obtained from here:
    http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash
    and installed.
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS, but please see my footnote if you are running Leopard.)
    In earlier versions than QT 7.1.3 in Quicktime Preferences, under advanced, UNcheck Enable Flash, and under Mime settings/Miscellananeous only check Quicktime HTML (QHTM).
    You should also ensure, if you are running Tiger 10.4.11, that you have downloaded and installed all the correct version for your Mac of Security Updates up to and including 2008-004. (N.B. Security Updates require both a restart and a permission repair.)
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them). However it should be noted that Perian is not an internet plugin and will not play DivX files imbedded on a website. For that you will need the DivX Player browser plugin available from http://www.divx.com/divx/mac/
    Now go to Safari Preferences/Security, and tick the boxes under Web Content (all 4 of them) to enable Java.
    Lastly open Audio Midi Setup (which you will find in the Utilities Folder of your Applications Folder) and click on Audio Devices. Make sure that both Audio Input and Audio Output, under Format, are set to 44100 Hz, and that you have selected 'Built in Audio'.
    Important: Now repair permissions and restart.
    You should also consider having the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.
    There is an additional 'fix' you could try if you are having problems with Flash and Quicktime, depending on which type of Mac you have:
    On Intel Macs, make sure that you are not running Safari in Rosetta. You can check this, and change it, in the Get Info window.
    On PPC Macs, go to the Hard Disk/Library/Internet Plug-Ins folder, and drag the file 'QuickTime Plugin.webplugin' to the desktop. Quit and restart Safari. If things have improved you can trash that file. If they haven't put it back, as the lack of this plug-in can cause QT content in some widgets to cease functioning.
    And now there is an additional kid on the block: SilverLight. Microsoft has created their own version of what a replacement for Flash should be. You can read more about it here:
    http://silverlight.net/
    So, if you go to any sites that have been designed for this new Silverlight stuff, you can download the plug-in from here (but make certain that you are downloading SilverLight v.1.0 for OS X (10.4.8 upwards):
    http://silverlight.net/GetStarted/
    FOOTNOTE
    If you are running Leopard:
    Some users have mentioned that the latest Flash Player (v.9.0.115.0) conflicts with Leopard, and that they have needed to revert to v. 9.0.47. This can be downloaded from here:
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14266&sliceId=1

  • Help needed in accessing the url from which a swf file has been loaded

    Hi All,
    Can anyone help me out in finding the url of the swf file
    from which it has been loaded? The purpose of the url is, I am
    loading some flv files using relative path. I just want to achieve
    the same by appending the relative path to the parent swf url from
    where the parent was loaded.
    I am a newbie to AS3, So please don t mind if this is a silly
    question.
    Can anyone help me on this.
    Thanks in advance,
    Prabakaran Srinivasan.

    Hi,
    Thanks for the reply. I think the option you gave is only
    applicable when the AS3 class comes in the DisplayObject hierarchy.
    I want this information in an AS3 class which does not extend any
    of the Sprite or its super class hierarchy. Can you let me know the
    possibility of fetching the value from such a class which i
    specified???
    Thanks,
    Prabakaran Srinivasan.

  • I have an iMac 17" 1.83ghz intel core from 2006. I need to reformat the hard drive. Which system do I install - the system disk in came with or can I install 10.6.8 which is what it's running now. And does the system have to be for an iMac?

    I have an iMac 17" 1.83ghz intel core from 2006. I need to reformat the hard drive. Which system do I reinstall - the system disk in came with or can I install 10.6.8 which is what it's running now. And does the system have to be for an iMac?

    Reformat usiing the original install disc then update to v10.6.8.
    Mac OS X 10.6: Reinstalling Mac OS X

  • What is meant by tns_name in the repositoryconn parameter in Reports Config file

    After going through the Oracle White paper, Forms Services Reports 6i integration, I am unable to understand what value should go for the repositoryconn parameter in Reports Services Configuration file. This is mentioned in page 28 of the White paper:
    repositoryconn=<schema name>/<password>@tns_name
    For ex. our d/b connection string in the tnsnames file under
    c:\oracle\806\net80\admin is
    TEST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (COMMUNITY = tcp.world)(PROTOCOL = TCP)(Host =
    sundev.company.com)(Port = 1521))
    (CONNECT_DATA = (SID = TEST))
    When we tried with scott/tiger@test, the Report services gives an error
    'Operation failed in server reporsitory'.
    So what exactly are the values of the parameter we need to make.
    Thanks in advance.

    Hi Raj,
    The repositoryconn informaton is needed to store Reports Server job history information in a table in the database.
    Before you attempt to start the Reports Server after having made these entries in the Rep-Server-Name.ora file, you
    will need to run the RW_SERVER.sql file located in the OH\Report60\SQL directory .
    Also note that this script will have to be run by the user who starts the Reports Server.
    Having run this script there should be no more errors.
    Regards,
    Vishwanath U

Maybe you are looking for

  • XMLAnonymizer: namespace deleted

    Hi All, I am trying to use the XMLAnonymizer bean with the Receiver File adapter. My problem is that, the namespace prefix is getting substituted correctly, but the namespace itself is getting deleted from the node. i..e.: the XML looks like this: <n

  • It won't even start

    I finished a song in Garageband and I was exporting it to iTunes and my computer froze, so I just turned it off with the power button. Ever since, Garageband has not opened. Every time I click on the application, it bounces and then doesn't do anythi

  • Problem getting data in Report

    Hi, I have the following code in my report. data: it_adrc type table of adrc. data: wa_adrc type adrc. perform get_address tables it_adrc                         using  add_partner. loop at it_adrc into wa_adrc.       wa_output-country = wa_adrc-coun

  • Essbase Configuraion Error 11 1 2 2

    Intially we have installed EPMA,HPCM,shared services,workspace of 11.1.2.2 version we thought of configuring with the existing Essbase which is 11.1.2. As it is not possible we have installed Essbase and Essabase Studio Server from 11.1.2.2 version .

  • Images Not Appearing Right Size

    Hi, I have a mcbook pro retina and using photoshop CS6.  This was working properly but all of sudden am having this problem.  Let's say I download an image off a google that is 640X480.  It appears a certain size in Chrome and Illustrator and Flash a