Sai Stuff to Developers

November 19, 2012

BadImageFormatException: Could not load file or assembly ‘x’ or one of its dependencies. An attempt was made to load a program with an incorrect format.

Filed under: DotNet — tosaik @ 12:01 pm
Tags: , , , , ,

Exception:

BadImageFormatException: Could not load file or assembly ‘x’ or one of its dependencies. An attempt was made to load a program with an incorrect format.

Solution:

Hi Recenty i had faced this exception and when i digg in to this issue…. and i forgot that when we are using any COM Interop DLL components in our .EXE application we need to target the respective .EXE application platform as x86

Please change the target platform to x86 in the properties section and build again before using it..

 

 

 

 

 

 

 

Hope this solution works for you too………

May 15, 2012

Making Our Component to be dynamically loading the Config File

Filed under: DotNet — tosaik @ 11:00 am
Tags: , , ,

Introduction
Generally there could be a requirement such that any independent component needs to be having its own configuration settings like for example, let say I have a vc++ application which acts as a container so that it can load any Active X Control in it. Now as a new technology I want to use some plugin to be built in Visual C# Language using .NET Framework. As we already know we can build the Active X Component using .NET Framework. Now let’s say my component plugin need to interact with Database so I need to provide it a Connection string and I can’t hard code it inside my Component so I decided to have application configuration file (i.e., App.Config file), but how can I map this file to my plugin when it is running in my VC++ container?
This article explains how we can solve this issue, and how can we map this config file even when it is converted to Active X Control and running in other environment.
Background
Need to have a basic knowledge in creating Active X Control or look for my next article “How to create an Active X Control using .NET Framework”.
Explanation
I don’t want to make it complex for you, as we are on path what we want now by reading the Introduction section.
We may have other options like maintaining separate xml file and have all the complex custom access through the xml file using xpath technology. But the way we access this configuration file using System. Configuration.ConfigurationManager Class is very Flexible and comfortable.
The solution is simple we need to create a class and name ig from my side I named as “ChangeMyAppConfig” and this class need to be Implement “AppConfig” Class.

public class ChangeAppConfig : AppConfig
{
private readonly string oldConfig =
AppDomain.CurrentDomain.GetData(“APP_CONFIG_FILE”).ToString();

private bool disposedValue;

public ChangeAppConfig(string path)
{
AppDomain.CurrentDomain.SetData(“APP_CONFIG_FILE”, path);
ResetConfigMechanism();
}

public override void Dispose()
{
if (!disposedValue)
{
AppDomain.CurrentDomain.SetData(“APP_CONFIG_FILE”, oldConfig);
ResetConfigMechanism();

disposedValue = true;
}
GC.SuppressFinalize(this);
}

private static void ResetConfigMechanism()
{
typeof(ConfigurationManager)
.GetField(“s_initState”, BindingFlags.NonPublic |
BindingFlags.Static)
.SetValue(null, 0);

typeof(ConfigurationManager)
.GetField(“s_configSystem”, BindingFlags.NonPublic |
BindingFlags.Static)
.SetValue(null, null);

typeof(ConfigurationManager)
.Assembly.GetTypes()
.Where(x => x.FullName ==
“System.Configuration.ClientConfigPaths”)
.First()
.GetField(“s_current”, BindingFlags.NonPublic |
BindingFlags.Static)
.SetValue(null, null);
}
}

The main AppDomain has the property called “APP_CONFIG_FILE” where it stores the configuration file information now we need to fetch this property using AppDomain.GetData() method and set our new configuration file path using AppDomain.SetData() Method. It’s not enough to change the value of the property with this we need to reset the configuration mechanism as we are doing the same in ResetConfigMechanism() method in the above code.

That’s it Now you need to call the ChangeAppConfig() Method from your component by providing the valid configuration path.
After calling this method you can now access the Configuration file settings using System. Configuration.ConfigurationManager Class as we do normally in every application in .NET Environment.
Example:
public string strCommonFolder = ConfigurationManager.AppSettings[“FolderPath”];

Happy Coding 🙂

Blog at WordPress.com.