active questions tagged configuration - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T02:09:43Zhttp://stackoverflow.com/feeds/tag/configurationhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1814323/what-is-timeout-setting-under-apache2handler-in-the-php-ini-does-affect-session0What is timeout setting under apache2handler in the php.ini? Does affect session time out?Ole Media2009-11-29T01:09:16Z2009-11-29T01:35:43Z
<p>Hello,</p>
<p>I would like to know what the following means under apache2handler in the php.ini</p>
<pre><code>Timeouts Connection: 10 - Keep-Alive: 10
</code></pre>
<p>I have I problem with session timing out after 10 minutes of inactivity, and I was wondering if the above is what is causing session to time out in 10 minutes instead of 4 hours like I have it below.</p>
<p>Currently my sessions settings under the php.ini are set like this:</p>
<pre><code>session.cache_expire 180 180
session.cache_limiter nocache nocache
session.entropy_length 0 0
session.gc_divisor 10 1000
session.gc_maxlifetime 14400 14400
session.gc_probability 1 1
</code></pre>
http://stackoverflow.com/questions/1808898/cisco-ios-xr-router-configuration-cli-to-xml-conversion0Cisco IOS-XR Router configuration CLI to XML conversion.flash2009-11-27T13:51:12Z2009-11-27T19:08:37Z
<p>We have been using CLI commands to configure MPLS TE Tunnels on cisco IOS XR 12000 series routers now as the router supports xml we are trying to convert the cli commands into corresponding xml configurations.</p>
<p>to start with this is an example to delete atunnel now I need to have a corresponding xml message that I need to send to the router..</p>
<p>no interface tunnel-te (tunnel-id)
commit</p>
<p>any help about the information on the resources that are available online..any guidance is appreciated..</p>
http://stackoverflow.com/questions/1809241/php-application-config-file-stored-as-ini-php-sql-cached-php-class-json-php-a4PHP - Application config file stored as - ini,php,sql,cached,php class,JSON,php array?Mark2009-11-27T15:00:28Z2009-11-27T15:31:52Z
<p>I am trying to decide on the best way to store my applications configuration settings. There are so many options.</p>
<p>The majority of applications I have seen have used a simple require and a PHP file that contains variables. There seem to be far more advanced techniques out there. </p>
<p>What have you used?
What is most efficient?
What is most secure?</p>
http://stackoverflow.com/questions/1806846/rake-dbmigrate-gives-a-uninitialized-class-variable-configuration-in-rails-err0rake db:migrate gives a uninitialized class variable @@configuration in Rails errorPK2009-11-27T05:02:45Z2009-11-27T13:39:59Z
<pre><code>uninitialized class variable @@configuration in Rails
/usr/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/initializer.rb:19:in `configuration'
/usr/lib/ruby/gems/1.8/gems/thoughtbot-factory_girl-1.2.2/lib/factory_girl.rb:24
/usr/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:36:in `gem_original_require'
</code></pre>
<p>This is the initial part of the enviroment.rb:</p>
<pre><code>RAILS_GEM_VERSION = '2.1.0' unless defined? RAILS_GEM_VERSION
require File.join(File.dirname(__FILE__), 'boot')
Rails::Initializer.run do |config|
config.gem "oauth", :version => "0.2.7", :lib => "oauth"
</code></pre>
http://stackoverflow.com/questions/1794405/where-do-you-define-spring-bean-configuration-files1Where do you define spring bean configuration filesAnkur2009-11-25T03:11:36Z2009-11-27T13:00:21Z
<p>I am separating my spring bean configuration files as follows:</p>
<p>myapp-service.xml
myapp-servlet.xml</p>
<p>However I am getting the error;</p>
<blockquote>
<p>Error creating bean with name 'beanName' defined in ServletContext resource [/WEB-INF/myapp-servlet.xml]: Cannot resolve reference to bean 'beanService' while setting bean property 'beanService'; nested exception is org.springframework.beans.factory.NoSuchBeanDefinitionException: No bean named 'beanService' is defined</p>
</blockquote>
<p>All I need to do (I think) is figure out how to tell Spring to read the myapp-service.xml file where the path to beanService is defined.</p>
<p>Which file/location is that done in?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/92540/save-and-restore-form-position-and-size2Save and Restore Form Position and SizeRichard Kisker2008-09-18T13:31:01Z2009-11-27T11:48:34Z
<p>In a WinForms 2.0 C# application, what is the typical method used for saving and restoring form position and size in an application?</p>
<p>Related, is it possible to add new User scoped application settings AT RUNTIME? I totally see how to add settings at design time, that's not a problem. But what if I want to create one at runtime?</p>
<p>More details:</p>
<p>My application is a conversion of an existing Visual FoxPro application. I've been trying to read as much as I can about application settings, user settings, etc. and get myself clear on the .Net way of doing things, but there are still several things I am confused on.</p>
<p>In the Fox app, saved settings are stored in the registry. My forms are subclassed, and I have base class code that automatically saves the form position and size in the registry keyed on the form name. Whenever I create a new form, I don't have to do anything special to get this behavior; it's built in to the base class. My .Net forms are also subclassed, that part is working well.</p>
<p>In .Net, I get the impression I'm supposed to use User scoped settings for things like user preferences. Size and location of a form definitely seem like a user preference. But, I can't see any way to automatically add these settings to the project. In other words, every time I add a new form to my project (and their are 100's of forms), I have to remember to ADD a User scoped application setting and be sure to give it the same name as the form, i.e., "FormMySpecialSizePosition" to hold the size and position. I'd rather not have to remember to do that. Is this just tough luck? Or am I totally barking up the wrong tree by trying to use User scoped settings? Do I need to create my own XML file to hold settings, so that I can do whatever I want (i.e, add a new setting at runtime)? Or something else?</p>
<p>Surely this is a very common and somebody can tell the "right" way to do it. Thanks in advance!</p>
http://stackoverflow.com/questions/1805461/how-to-make-php-explorer-project-explorer-area-persistent-between-sessions-i2How to make "PHP Explorer" (project explorer?) area persistent between sessions in eclipse/PDT?mac2009-11-26T20:10:05Z2009-11-26T22:11:41Z
<p><strong>PHP Explorer</strong> is the eclipse PDT tab (the leftmost in standard configuration) where you can browse the folders of your project. I believe the same tab in standard eclipse is called "Project Explorer" but I am not sure.</p>
<p>What happens to me is that when I close and reopen eclipse, although the files that were open at close time are still open on relaunch of eclipse, all <strong>my folder hierarchy in PHP Explorer (where I had various folders open at close time) is displayed collapsed</strong>.</p>
<p>Is there away to tell eclipse to reopen all my folders the way they were at close time?</p>
<p>Thank you in advance for your time!</p>
http://stackoverflow.com/questions/1805653/postgresql-doesnt-starts-after-editing-the-postgresql-conf0postgresql doesn't starts after editing the postgresql.confjutky2009-11-26T21:11:17Z2009-11-26T22:04:21Z
<p>Hi all,
I tried to enlarge the value of the "shared_buffers" settings to be larger then a default 24Mb, and the server doesn't starts with other values (I tried some) except of the default one. Just an empty logfile is created.
It's a clean installation of the postgresql on the linux server, so all other settings are default.
Does anybody know what could be the reason.</p>
http://stackoverflow.com/questions/1804023/what-is-the-most-convenient-way-of-handling-nested-config-data-in-net0What is the most convenient way of handling nested config data in .Net?the-locster2009-11-26T14:36:53Z2009-11-26T14:46:38Z
<p>I often store application config data in an app.config file in teh following format:</p>
<pre><code><configuration>
<appSettings>
<add key="foo" value="foo value"/>
<add key="bar" value="bar value"/>
</appSettings>
</configuration>
</code></pre>
<p>This can then be easily accessed at runtime with:</p>
<pre><code>string fooValue = ConfigurationManager.AppSettings["foo"];
</code></pre>
<p>However this approach does not seem to allow for handling nested/hierarchichal data or multiple items with the same key, e.g. I want to be able to list a number of config items that specify namespace prefix/uri pairs.</p>
<p>I'm findign the documentation is somewhat confusing so was wonderign what the consensus was on teh easiest/quickest and most convenient way of dealign with nested application config data. This is a simple per application/installation configuration - not per user.</p>
http://stackoverflow.com/questions/1799561/string-format-for-castle-dictionaryadapter0String format for Castle DictionaryAdapteralexandrul2009-11-25T19:56:31Z2009-11-25T22:43:57Z
<p>I'm using Castle DictionaryAdapter in order to get the application settings from the <strong>app.config</strong> as an interface ( based on <a href="http://blog.andreloker.de/post/2008/09/05/Getting-rid-of-strings-%283%29-take-your-app-settings-to-the-next-level.aspx" rel="nofollow">Getting rid of strings (3): take your app settings to the next level</a> ):</p>
<pre><code>public interface ISettings {
int MaxUsers { get; }
string FeedbackMail { get; }
DateTime LastUserLogin { get; }
}
</code></pre>
<p><strong>app.config</strong></p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="MaxUsers" value="20"/>
<add key="FeedbackMail" value="foo@localhost"/>
<add key="LastUserLogin" value="2009-06-15T13:45:30.0900000"/>
</appSettings>
</configuration>
</code></pre>
<p>Is it possible to configure DictionaryAdapter to use a custom string format like <strong>"yyyyMMdd-HHmm"</strong> for converting the value stored in <strong>app.config</strong> ?</p>
http://stackoverflow.com/questions/1800157/automatically-update-or-infer-assembly-in-app-config-configsections0Automatically update (or infer) assembly in app.config configSectionsDathan2009-11-25T21:41:14Z2009-11-25T21:41:14Z
<p>I'm writing an app with a custom configuration section, and I'm having some issues with it. The use case is somewhat unusual, so bear with me.</p>
<p>The application is a data entry system for internal use only. The deployable executable is simply a bootstrapper that pulls binary-serialized COFF images from the database, loads as in-memory assemblies, uses some reflection to determine the entry point, and runs it. It also handles config files by saving them to a temporary directory and creating an <code>ExeConfigurationFileMap</code> to the config file. We do this because we don't have to re-deploy the executable to all users to publish feature updates, bug fixes, etc., which we do a couple or three times a week. Instead, we simply push new file versions to the database and everyone gets the new version when they restart the bootstrapper. It's pretty slick.</p>
<p>Everything ran great until we started running the bootstrapper as a published app in Remote Desktop Services. Now, when we publish new application files to the database, they're not picked up by the bootstrapper (full description of this problem <a href="http://stackoverflow.com/questions/1772245/assembly-resolution-in-remote-desktop-published-app">here</a>). I solved that issue (mostly) by strongly naming all assemblies - now even if old versions aren't unloaded, new versions are at least resolved correctly.</p>
<p>The problem with this strategy is that due to the assembly caching (I think - still not sure what's causing that problem, though please answer the linked question above if you know), my custom config section class isn't resolved correctly when I post a new version. In order to get it to resolve correctly, I have to include the assembly strong name: <code><config name="CustomConfig" type="Some.Namespace.CustomConfig, AssemblyStrongNameHere"/></code>. That means that every time we publish, I have to verify the app.config is in sync, which is a pain.</p>
<p>So, my question is: is there a way around having to update the app.config with the strong name every time? Bearing in mind that in my tests, due to some feature of the environment (I'm assuming assembly caching by the RDS session host), just putting the assembly name isn't working for me.</p>
http://stackoverflow.com/questions/1797703/php-sqlite-configuration-in-windows-not-working0PHP Sqlite Configuration in Windows Not WorkingDFM2009-11-25T15:30:04Z2009-11-25T15:34:13Z
<p>Hello:</p>
<p>I am having difficulty getting PHP(5) on Windows to work with Sqlite. After some research, I found that I have to change the php.ini file so that it reads (without semi-colons): </p>
<pre><code>extension=php_pdo.dll
extension=php_sqlite.dll
</code></pre>
<p>I ran the phpinfo() command, and verified that my computer is reading the right php.ini file. Additionally, I have both php_sqlite.dll and php_pdo_sqlite.dll located in an ext file located in the folder with the php.ini file. However, phpinfo indicates that the PDO drivers are "no value", and there is no indication of sqlite anywhere.</p>
<p>I am now stuck, because all of my resources state that the above should work. I noticed that my php.ini file has the following: extension=php_pdo_sqlite.dll and extension=php_sqlite.dll. The "extension=php_pdo_sqlite.dll" is different from "extension=php_pdo.dll" in my above example. I tried removing the extension and adding "extension=php_pdo.dll", but that did not make a difference.</p>
<p>Does anyone know how to resolve this issue?</p>
<p>Thank you,</p>
<p>DFM</p>
http://stackoverflow.com/questions/1797283/iphone-configuration-is-it-possible-to-configure-apn-programmatically0IPhone Configuration : is it possible to configure APN programmatically?Max Brice2009-11-25T14:33:34Z2009-11-25T14:33:34Z
<p>Hello everybody,</p>
<p>in my iPhone app, I would like to switch from an APN (Access Point Name) to another without using a configuration profile. Does Apple allow a dynamic change of APN ?</p>
<p>Do you have any idea ?</p>
<p>Regards</p>
http://stackoverflow.com/questions/1796940/working-with-modules-in-intellij-idea1Working with modules in IntelliJ IDEARoman2009-11-25T13:33:59Z2009-11-25T13:46:29Z
<p>As I understand, using modules allows us to control some dependencies. </p>
<p>I mean that we can allow one module to interact with another one but not vise versa. We also can make some reusable things and we can make deploying easier, if, for example, put all tests stuff into a separate module and won't deploy it to production.</p>
<p>I haven't ever use modules but if described things are really possible I'd like to know how to make them. </p>
<ol>
<li>How to set dependencies?
<li>How to do this without IDE and any tools?
<li>How to do it in IntelliJ IDEA?
</ol>
http://stackoverflow.com/questions/1796064/what-names-do-you-use-for-the-solution-platforms-in-visual-studio0What names do you use for the “Solution Platforms” in Visual Studio?Martín Marconcini2009-11-25T10:37:44Z2009-11-25T11:38:54Z
<p>The Visual Studio Default config says: “Any CPU”, does anybody change that? If so, what would you use and why?</p>
http://stackoverflow.com/questions/1275532/windows-xp-pro-service-runs-using-user-logon-not-using-local-system0Windows XP Pro Service runs using User logon, not using Local SystemJohn Mealing2009-08-13T22:05:58Z2009-11-25T05:00:03Z
<p>I wrote a Windows Service using VS 2005 and C# on WinXP Pro SP3. It starts another program which runs to completion and then exits. </p>
<p>The service is installed using installutil and serviceInstaller. It is built release and put into the C:\Program Files\MyService directory. The serviceProcessInstaller Account is set to LocalSystem in it's Properties.</p>
<p>If I set the Log On to Local system I get an 'Access Denied' error (using a try-catch block), but if I set the Log On to my account with the correct password, it runs perfectly.</p>
<p>What am I doing wrong? Any suggestions will be very welcome.</p>
http://stackoverflow.com/questions/1791721/castle-windsor-how-to-know-that-the-container-has-been-initialized-or-configured1Castle Windsor: how to know that the container has been initialized or configured ?Thierry2009-11-24T17:43:06Z2009-11-24T20:03:59Z
<p>Hello.</p>
<p>I'm using Castle Windsor with a configuration from my App.config file. </p>
<p>In the code I use :</p>
<pre><code>IWindsorContainer container = new WindsorContainer(new XmlInterpreter());
</code></pre>
<p>to get the container. </p>
<p>But for some configurations of my application I don't want to use CastleWindsor (for some migration issues...) and therefore, I don't want to add any Castle section in my App.config. </p>
<p>And the problem is that if there is no castle config, then </p>
<pre><code>IWindsorContainer container = new WindsorContainer(new XmlInterpreter());
</code></pre>
<p>throws an exception "Could not find section 'castle' in the configuration file associated with this domain."</p>
<p>So basically in my code I want to do something like:</p>
<pre><code>if (IsCastleWindsorInitialized()) {/* do something */ } else { /* do something else */ }
</code></pre>
<p>where 'IsCastleWindsorInitialized()' returns true when the App.config contains a castle section. </p>
<p>In order to implement that function I can certainly use the ConfigurationManager but I'm wondering if I can use Castle Windsor API to do that.</p>
http://stackoverflow.com/questions/1768270/how-do-i-access-a-text-file-from-within-my-war2How do I access a text file from within my warAnkur2009-11-20T04:04:41Z2009-11-24T17:26:47Z
<p>How do I know what file reference to use to get a file from my WAR.</p>
<p>The structure of the WAR is:</p>
<blockquote>
<p>WAR<br>
src<br>
- model<br>
- web<br>
build<br>
WebContent<br>
META-INF<br>
WEB-INF<br>
LIB</p>
</blockquote>
<p>The JSPs are under WebContent, I have put the config.txt file under the WebContent folder and tried to get to it with </p>
<blockquote>
<p>BufferedReader in = new BufferedReader(new FileReader("WebContent/config.txt"));</p>
</blockquote>
<p>But this doesn't work. Does anyone know what reference I need to pass or how I can figure it out.</p>
http://stackoverflow.com/questions/1461502/how-to-configure-apache-tomcat-to-use-a-different-java-home-when-its-installed-a0How to configure apache tomcat to use a different java home when it's installed as a windows service?jobrahms2009-09-22T17:38:51Z2009-11-24T16:45:30Z
<p>I want to redistribute tomcat as part of my application. I'll be distributing a bundled jre as well, and I need to have my app's installer a) install the tomcat service in windows and b) not have it use JAVA_HOME if it's already set on the machine. That is, I need tomcat to point to my bundled jre.</p>
<p>I read <a href="http://tomcat.apache.org/tomcat-6.0-doc/windows-service-howto.html" rel="nofollow">here</a> that you can pass a command line parameter to tomcat6w.exe to change the jre that tomcat uses. Will this change persist even after stopping the tomcat service?</p>
<p>I also noticed that the tomcat service manager program stores its settings in the registry under <code>HKEY_LOCAL_MACHINE\SOFTWARE\Apache Software Foundation\Procrun 2.0\Tomcat6\Parameters</code>. Is it enough to change the Java\Jvm key to the jvm.dll of my bundled jre?</p>
http://stackoverflow.com/questions/1787995/configuration-system-failed-to-initialize-in-net-exe0Configuration system failed to initialize in .NET exeBabu2009-11-24T05:29:16Z2009-11-24T16:04:13Z
<p>I have an .NET winforms application(A). I am calling another .NET exe(B) file from the winforms application. When executes, it throws the following error.</p>
<p>I haven't kept any configuration file for the second exe file(B).</p>
<p>"Configuration system failed to initialize"
Please help me.</p>
<p>Thanks in Advance </p>
http://stackoverflow.com/questions/1787321/how-can-i-use-an-xml-file-to-select-dyanmic-templates-for-an-asp-net-repeater1How can I use an XML file to select dyanmic templates for an ASP.net Repeater?Mike C2009-11-24T01:59:19Z2009-11-24T16:00:43Z
<p>I am developing an application that has a repeater that will use dynamic templates for each row based on the underlying DataItem (in this case a product). What I would like to do is have some sort of XML file that will store which templates are to be used with which templates, and then use a default template if there is not one specified for the product. My product catalog does not contain a particularly large number of products, but having to open and parse an XML file for each row would almost certainly have adverse performance effects. What I would like to do is have the ASP.net engine compile the entries in the XML file into some sort of global collection that can easily be accessed when needed. Ideally, the application would be able to determine when I have made changes to the file and would automatically recompile the collection and restart the application if necessary. If my understanding is correct, this is already how the engine deals with the web.config file. </p>
<p>Does anyone know if an approach like this is possible, and how I might be able to accomplish it?</p>
<p>Thanks,</p>
<p>Mike</p>
http://stackoverflow.com/questions/1790069/where-does-this-permanent-sqlexpress-connectionstring-come-from-not-web-config0Where does this permanent SQLExpress connectionstring come from (not web.config)?boris callens2009-11-24T13:28:55Z2009-11-24T13:34:14Z
<p>Today I noticed that in my <code>ConfigurationManager.ConnectionStrings</code> the very first instance is <code>.\SQLEXPRESS</code>. I remembered explicitly removing this entry from my web.config so I checked again, but didn't find a thing. Then I did a search over my entire solution, not a single match.<br>
Where the hell is this connection string coming from and how can I remove it?</p>
http://stackoverflow.com/questions/1505224/configuration-error-finding-assembly-after-i-swapped-referenced-dll-out-visual0Configuration Error , Finding assembly after I swapped referenced dll out. Visual Studio 2003TampaRich2009-10-01T17:05:57Z2009-11-24T12:00:05Z
<p>Here is the situation. I had a clean build of my asp.net web application working. I then went into the bin folder under the web app and replaced two referenced dll's with two older version of the same dll's. (Same name etc.) After testing I replaced those dll's back to the new ones and now my application keeps throwing the configuration error </p>
<p>=== Pre-bind state information ===
LOG: DisplayName = xxxxx.xxxx.Personalization
(Partial)
LOG: Appbase = file:///c:/inetpub/wwwroot/appname
LOG: Initial PrivatePath = bin</p>
<h1>Calling assembly : (Unknown).</h1>
<p>LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).</p>
<p>I found this issue on the web and tried all the solutions to it but nothing worked. I then went into all my projects that it references under the solution and cleared out the bin/debug folder in each, I cleared out the obj folder under each and also deleted the temporary files associated with the application. I rebuilt it and it still will not work due to this error</p>
<p>Not sure what is causing this or how to fix this issue. I have tried restarting IIS, stopping index services which was said to be a known issue. This is .net framework 1.1 app and visual studio 2003</p>
<p>Any suggestions would be great. Thanks.</p>
http://stackoverflow.com/questions/1785437/unrecognized-configuration-section-connectionstrings0"Unrecognized configuration section connectionStrings."Matty U2009-11-23T19:35:21Z2009-11-24T05:05:26Z
<p>I had been working on a project in VS2005 that utilized a local connection to an Access DB.</p>
<p>In the past week, I installed .NET framework 3.5 for use w/ a different project as well as VS6.</p>
<p>I went back to my VS2005 application and suddenly there are big issues:</p>
<p>In the designer for any class utilizing my OLEDB connection showed this:</p>
<p>Unable to cast object of type 'System.Configuration.DefaultSection' to type 'System.Configuration.ConnectionStringsSection'.
Hide </p>
<p>at System.Configuration.Configuration.get_ConnectionStrings()
at Microsoft.VisualStudio.Shell.Design.Serialization.ConfigurationHelperService.ReadConnectionStrings(String configFileName, DocData configDocData, String prefix)
at Microsoft.VisualStudio.Editors.SettingsDesigner.AppConfigSerializer.Deserialize(DesignTimeSettings Settings, String SectionName, DocData AppConfigDocData, MergeValueMode mergeMode, IUIService UIService)
at Microsoft.VisualStudio.Editors.SettingsGlobalObjects.SettingsFileGlobalObject.LoadSettings(String fileName)
at Microsoft.VisualStudio.Editors.SettingsGlobalObjects.SettingsFileGlobalObject.BuildType()
at Microsoft.VisualStudio.Editors.SettingsGlobalObjects.SettingsFileGlobalObject.GetObjectType()
at Microsoft.VisualStudio.Shell.Design.GlobalType.get_ObjectType()
at Microsoft.VisualStudio.Shell.Design.GlobalObject.GetHashCode()
at Microsoft.VisualStudio.Shell.Design.GlobalObjectService.GlobalKey.GetHashCode()
at System.Collections.Generic.ObjectEqualityComparer<code>1.GetHashCode(T obj)
at System.Collections.Generic.Dictionary</code>2.FindEntry(TKey key)
at Microsoft.VisualStudio.Shell.Design.GlobalObjectService.GetGlobalObjects(Type baseType)
at Microsoft.VisualStudio.Shell.Design.GlobalObjectService.GetGlobalObjects()
at Microsoft.VisualStudio.Design.Serialization.CodeDom.AggregateTypeResolutionService.GetTypeFromGlobalObjects(String name, Boolean throwOnError, Boolean ignoreCase)
at Microsoft.VisualStudio.Design.Serialization.CodeDom.AggregateTypeResolutionService.GetType(String name, Boolean throwOnError, Boolean ignoreCase)
at Microsoft.VisualStudio.Design.Serialization.CodeDom.AggregateTypeResolutionService.GetType(String name, Boolean throwOnError)
at System.ComponentModel.Design.Serialization.CodeDomSerializerBase.GetType(ITypeResolutionService trs, String name, Dictionary<code>2 names)
at System.ComponentModel.Design.Serialization.CodeDomSerializerBase.FillStatementTable(IDesignerSerializationManager manager, IDictionary table, Dictionary</code>2 names, CodeStatementCollection statements, String className)
at System.ComponentModel.Design.Serialization.TypeCodeDomSerializer.Deserialize(IDesignerSerializationManager manager, CodeTypeDeclaration declaration)
at System.ComponentModel.Design.Serialization.CodeDomDesignerLoader.PerformLoad(IDesignerSerializationManager manager)
at Microsoft.VisualStudio.Design.Serialization.CodeDom.VSCodeDomDesignerLoader.PerformLoad(IDesignerSerializationManager serializationManager)
at Microsoft.VisualStudio.Design.Serialization.CodeDom.VSCodeDomDesignerLoader.DeferredLoadHandler.Microsoft.VisualStudio.TextManager.Interop.IVsTextBufferDataEvents.OnLoadCompleted(Int32 fReload) </p>
<p>And when I ran the app, I encounter the following exception on startup:</p>
<p>"Unrecognized configuration section connectionStrings."</p>
<p>In looking online, these issues seem to commonly relate to things built in VS2005 and deployed on .net 1.1 framework; but this is all running as a windows forms application locally within VS (not on IIS). I've tried uninstalling and reinstalling VS2K5 to no avail.</p>
<p>Any thoughts?
Thanks,
Matt</p>
http://stackoverflow.com/questions/1293884/collection-with-equal-elements-in-net-configuration-section0Collection with equal elements in .Net configuration sectionTabernakli2009-08-18T13:33:49Z2009-11-24T04:00:03Z
<p>I am interested, if it is possible to have collection with same elements in .Net configuration.
Like this, for example:</p>
<pre><code> <RetrySettings>
<RetryTurn PeriodBeforeRetry="0:05:00"/>
<RetryTurn PeriodBeforeRetry="0:10:00"/>
<RetryTurn PeriodBeforeRetry="0:30:00"/>
<RetryTurn PeriodBeforeRetry="1:00:00"/>
<RetryTurn PeriodBeforeRetry="4:00:00"/>
<RetryTurn PeriodBeforeRetry="8:00:00"/>
<RetryTurn PeriodBeforeRetry="8:00:00"/>
<RetryTurn PeriodBeforeRetry="8:00:00"/>
<RetryTurn PeriodBeforeRetry="8:00:00"/>
<RetryTurn PeriodBeforeRetry="8:00:00"/>
<RetryTurn PeriodBeforeRetry="8:00:00"/>
</RetrySettings>
</code></pre>
<p>without adding annoying <code>id="someUniqueId"</code> attributes to each <code>RetryTurn</code> member?</p>
<p>I don't see how to make this, using custom collection, derived from <code>ConfigurationElementCollection</code>... Any possible solution for this?</p>
http://stackoverflow.com/questions/1029621/one-section-many-implementations-in-c1One section, many implementations in C#2009-06-22T21:59:04Z2009-11-24T03:14:30Z
<p>I would like to download a file, parse it and put it somewhere. So I have a few sections outlined below and I would like to use the directives below to guide what the program should be doing. I like this form of config and I would like to figure out how to get this to work somehow but I know it won't work exactly like this because I can't use the same section more than once. I am just hoping someone could throw some ideas my way on how to get this idea to work.</p>
<pre><code> <configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
<sectionGroup name="processor">
<sectionGroup name="process">
<!-- AVAILABLE TRANSPORTS -->
<section name="ftp_transport" type="someFTPClass1, someAssembly"/>
<section name="web_transport" type="someHTTPClass2, someAssembly"/>
<!-- AVAILABLE PARSERS -->
<section name="fixed_line_parser" type="someParserClass3, someAssembly" />
<section name="regular_expression_parser" type="someParserClass4, someAssembly" />
<!-- AVAILABLE LOADERS -->
<section name="database_loader" type="someDbLoaderClass5, someAssembly" />
</sectionGroup>
</sectionGroup>
</configSections>
</code></pre>
<p>and then something like this to drive the program:</p>
<pre><code><processor>
<process name="File1">
<ftp_transport>...</ftp_transport>
<fixed_line_parser>...</fixed_line_parser>
<database_loader>...</database_loader>
</process>
<process name="File2">
<web_transport>...</web_transport>
<fixed_line_parser>...</fixed_line_parser>
<database_loader>...</database_loader>
</process>
</processing>
</code></pre>
http://stackoverflow.com/questions/1781947/how-to-integrate-drupal-this-way0How to integrate drupal this way?Mask2009-11-23T09:15:52Z2009-11-23T19:02:33Z
<p>I don't want to use it to construct the whole site,</p>
<p>instead I want to use it just to manage part of the posts on the site.</p>
<p>Is drupal fit for this kind of job?</p>
<p><strong>EDIT</strong></p>
<p>If the answer is yes,can you provide some guidance here?</p>
<p>I just want to use it to edit/manage the posts,but show it with my own code. </p>
http://stackoverflow.com/questions/1025462/unable-to-create-ssl-socket-factory-for-client0Unable to create SSL Socket Factory for client vijay2009-06-22T04:34:53Z2009-11-23T19:00:04Z
<p>Hello,
I am using Java 1.5.0_16 (JBoss-4.2.3.GA application). My application implements a WS client which needs to integrate with an external Web Service. This communication needs to be handled through https.I am getting following error when i trying to call remote Api via web services.can anybosy help me out what could be the cause</p>
<pre><code>14:25:17,609 WARN [HTTPClientInvoker] Unable to create SSL Socket Factory for client invoker: Error initializing socket factory SSL context: Can not find truststore url.
14:25:18,203 INFO [STDOUT] ERROR:
14:25:18,203 ERROR [STDERR] javax.xml.ws.WebServiceException: java.io.IOException: Could not transmit message
14:25:18,203 ERROR [STDERR] at org.jboss.ws.core.jaxws.client.ClientImpl.handleRemoteException(ClientImpl.java:404)
14:25:18,203 ERROR [STDERR] at org.jboss.ws.core.jaxws.client.ClientImpl.invoke(ClientImpl.java:314)
14:25:18,203 ERROR [STDERR] at org.jboss.ws.core.jaxws.client.ClientProxy.invoke(ClientProxy.java:172)
14:25:18,203 ERROR [STDERR] at org.jboss.ws.core.jaxws.client.ClientProxy.invoke(ClientProxy.java:152)
14:25:18,203 ERROR [STDERR] at $Proxy95.getConnectionDetails(Unknown Source)
14:25:18,203 ERROR [STDERR] at testjava.Test.testWebservice(Test.java:113)
14:25:18,203 ERROR [STDERR] at com.digital88.billing.dao.WholesalerDAOImpl.findByUserNameAndPassword(WholesalerDAOImpl.java:61)
14:25:18,203 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
14:25:18,203 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
14:25:18,203 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
14:25:18,203 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
14:25:18,203 ERROR [STDERR] at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
14:25:18,203 ERROR [STDERR] at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
14:25:18,203 ERROR [STDERR] at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
14:25:18,203 ERROR [STDERR] at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:106)
14:25:18,203 ERROR [STDERR] at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
14:25:18,203 ERROR [STDERR] at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
14:25:18,203 ERROR [STDERR] at $Proxy79.findByUserNameAndPassword(Unknown Source)
14:25:18,203 ERROR [STDERR] at com.digital88.billing.services.WholesalerServiceImpl.authenticate(WholesalerServiceImpl.java:67)
14:25:18,203 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
14:25:18,203 ERROR [STDERR] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
14:25:18,203 ERROR [STDERR] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
14:25:18,203 ERROR [STDERR] at java.lang.reflect.Method.invoke(Method.java:585)
14:25:18,203 ERROR [STDERR] at flex.messaging.services.remoting.adapters.JavaAdapter.invoke(JavaAdapter.java:406)
14:25:18,203 ERROR [STDERR] at net.sf.gilead.blazeds.adapter.PersistentAdapter.invoke(PersistentAdapter.java:123)
14:25:18,203 ERROR [STDERR] at flex.messaging.services.RemotingService.serviceMessage(RemotingService.java:183)
14:25:18,203 ERROR [STDERR] at flex.messaging.MessageBroker.routeMessageToService(MessageBroker.java:1417)
14:25:18,203 ERROR [STDERR] at flex.messaging.endpoints.AbstractEndpoint.serviceMessage(AbstractEndpoint.java:878)
14:25:18,203 ERROR [STDERR] at flex.messaging.endpoints.amf.MessageBrokerFilter.invoke(MessageBrokerFilter.java:121)
14:25:18,203 ERROR [STDERR] at flex.messaging.endpoints.amf.LegacyFilter.invoke(LegacyFilter.java:158)
14:25:18,203 ERROR [STDERR] at flex.messaging.endpoints.amf.SessionFilter.invoke(SessionFilter.java:49)
14:25:18,203 ERROR [STDERR] at flex.messaging.endpoints.amf.BatchProcessFilter.invoke(BatchProcessFilter.java:67)
14:25:18,203 ERROR [STDERR] at flex.messaging.endpoints.amf.SerializationFilter.invoke(SerializationFilter.java:146)
14:25:18,203 ERROR [STDERR] at flex.messaging.endpoints.BaseHTTPEndpoint.service(BaseHTTPEndpoint.java:274)
14:25:18,203 ERROR [STDERR] at flex.messaging.MessageBrokerServlet.service(MessageBrokerServlet.java:377)
14:25:18,203 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
14:25:18,203 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
14:25:18,203 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
14:25:18,203 ERROR [STDERR] at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
14:25:18,203 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
14:25:18,203 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
14:25:18,203 ERROR [STDERR] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
14:25:18,203 ERROR [STDERR] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
14:25:18,203 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:182)
14:25:18,203 ERROR [STDERR] at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
14:25:18,203 ERROR [STDERR] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
14:25:18,203 ERROR [STDERR] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
14:25:18,203 ERROR [STDERR] at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:157)
14:25:18,203 ERROR [STDERR] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
14:25:18,203 ERROR [STDERR] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:262)
14:25:18,203 ERROR [STDERR] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
14:25:18,203 ERROR [STDERR] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
14:25:18,203 ERROR [STDERR] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:446)
14:25:18,203 ERROR [STDERR] at java.lang.Thread.run(Thread.java:595)
14:25:18,203 ERROR [STDERR] Caused by: java.io.IOException: Could not transmit message
14:25:18,203 ERROR [STDERR] at org.jboss.ws.core.client.HTTPRemotingConnection.invoke(HTTPRemotingConnection.java:255)
14:25:18,203 ERROR [STDERR] at org.jboss.ws.core.client.SOAPProtocolConnectionHTTP.invoke(SOAPProtocolConnectionHTTP.java:73)
14:25:18,203 ERROR [STDERR] at org.jboss.ws.core.CommonClient.invoke(CommonClient.java:339)
14:25:18,203 ERROR [STDERR] at org.jboss.ws.core.jaxws.client.ClientImpl.invoke(ClientImpl.java:302)
14:25:18,203 ERROR [STDERR] ... 52 more
14:25:18,203 ERROR [STDERR] Caused by: org.jboss.remoting.CannotConnectException: Can not connect http client invoker. cannot retry due to redirection, in streaming mode. Response
: Found/302.
14:25:18,203 ERROR [STDERR] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:348)
14:25:18,203 ERROR [STDERR] at org.jboss.remoting.transport.http.HTTPClientInvoker.transport(HTTPClientInvoker.java:137)
14:25:18,203 ERROR [STDERR] at org.jboss.remoting.MicroRemoteClientInvoker.invoke(MicroRemoteClientInvoker.java:122)
14:25:18,203 ERROR [STDERR] at org.jboss.remoting.Client.invoke(Client.java:1634)
14:25:18,203 ERROR [STDERR] at org.jboss.remoting.Client.invoke(Client.java:548)
14:25:18,203 ERROR [STDERR] at org.jboss.ws.core.client.HTTPRemotingConnection.invoke(HTTPRemotingConnection.java:233)
14:25:18,203 ERROR [STDERR] ... 55 more
14:25:18,203 ERROR [STDERR] Caused by: java.net.HttpRetryException: cannot retry due to redirection, in streaming mode
14:25:18,203 ERROR [STDERR] at sun.net.www.protocol.http.HttpURLConnection.followRedirect(HttpURLConnection.java:1695)
14:25:18,203 ERROR [STDERR] at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1106)
14:25:18,203 ERROR [STDERR] at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:367)
14:25:18,203 ERROR [STDERR] at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:318)
14:25:18,203 ERROR [STDERR] at org.jboss.remoting.transport.http.HTTPClientInvoker.useHttpURLConnection(HTTPClientInvoker.java:282)
14:25:18,203 ERROR [STDERR] ... 60 more
14:25:18,203 INFO [STDOUT] connectionDetails..
</code></pre>
http://stackoverflow.com/questions/1782540/grails-integration-with-another-spring-app-datasource-being-overloaded2Grails Integration with another Spring app - dataSource being overloaded.James Camfield2009-11-23T11:23:07Z2009-11-23T14:36:18Z
<p>Hi,</p>
<p>I'm currently in the process of building a CRUD tool for an existing Spring-based application.
The application is being included in the Grails app as a JAR library which seems to work fine.</p>
<p>To make use of the library's own spring context, I used to load it through:</p>
<pre><code>def ctx = new ClassPathXmlApplicationContext( 'classpath:/applicationContextName.xml')
</code></pre>
<p>in my service. Unfortunately the context builds its own datasource (the library's default) which is no good, as I need to use the dataSource defined in Grails.</p>
<p>So, my solution was to just include the library's spring configuration with the Grails context by adding an import to the grails-app\conf\spring\resources.xml file.</p>
<p>This seems to work (in so much as all beans are loaded into the same context and I can now autowire the beans straight in to my service classes by using <code>def variableName</code>.</p>
<p>Unfortunately, the dataSource defined in the library's spring config is overloading the dataSource defined in my Grails DataSource.groovy file!</p>
<p>Is there any way I can tell Grails to load the libary's spring configuration first, so that it then gets overridden by the rest of Grails config (and thus using Grails' DataSource)?</p>
<p>Thanks for your help,</p>
<p>James</p>
<p>...</p>
<p>As a tenporary measure, I've removed the dataSource entry in the dependancy's spring config file and its beans have been injected the dataSource created by the Grails config - this isn't ideal though, as I've had to make a 'special' build of the dependancy jar.</p>
http://stackoverflow.com/questions/1781618/configure-mysql-to-work-with-django0Configure MySQL to work with DjangoNimbuz2009-11-23T07:34:50Z2009-11-23T14:01:25Z
<p>Just installed Django (with easy_install) and created a project, but can't get mysql to work. </p>
<p><code>python manage.py syncdb</code> throws this error:</p>
<pre><code>.....
File "/Library/Python/2.6/site-packages/Django-1.1.1-py2.6.egg/django/db/backends/mysql/base.py", line 13, in <module>
raise ImproperlyConfigured("Error loading MySQLdb module: %s" % e)
django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module: No module named MySQLdb
</code></pre>
<p>I have MAMP installed and path to MySQL is probably: <code>/Applications/MAMP/Library/bin/mysql</code></p>
<p>Thanks!</p>