-
as seen on Stack Overflow
- Search for 'Stack Overflow'
public ApplicationView(string[] args)
{
InitializeComponent();
string configFilePath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "log4net.config");
FileInfo configFileInfo = new FileInfo(configFilePath);
XmlConfigurator.ConfigureAndWatch(configFileInfo);
…
>>> More
-
as seen on Programmers
- Search for 'Programmers'
We are in the business of building customizable web applications. We have the core team that provides what we call as the core platform (provides services like security, billing etc.) on top of which core products are built. These core products are industry specific solutions like telecom, utility…
>>> More
-
as seen on Super User
- Search for 'Super User'
Which kernels do you think are or will be more multicore friendly?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm struggling with getting IOC to work in a remoting scenario. I have my application server set up to publish Services (SingleCall) which are configured via XML.
This works just like this as we all know:
RemotingConfiguration.Configure(ConfigFile, true);
lets say my service looks like that (pseudocode)
public…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I'm getting an exception calling Resolve:
KernelException: Could not instantiate custom activator
Inner Exception:
{"Constructor on type 'MyProj.MyAdapter`1[[MyProj.MyBusinessObject, MyAsm, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]' not found."}
There's definitely a public parameterless…
>>> More