Category: .Net

Increasing BizTalk map performance by mapping in C# 0

Increasing BizTalk map performance by mapping in C#

I have been struggling with some performance issues with mappings last year. The received messages could get up to 200 MB and a lot of data had to be looked up from other records in that same request message during the mapping. The only way to improve performance was by using XSLT, on which I wrote a post last year. Eventually even that was not enough and I had to resort to using C#....

0

Automatically generate c# serialization classes from XSDs

So I have put my first code sample up on MSDN’s Code Gallery. The code sample demonstrates a way to automatically generate serialization classes from XSD schemas using a Text Template (T4 Template). There’s no need to run XSD.exe each time, instead you can run the Custom Tool of the Text Template and have all serialization classes generated of your XSDs. Click here to navigate to the code sample. Copy of the...

NuGet #2: Elmah – Error Logging Modules and Handlers for ASP.NET 0

NuGet #2: Elmah – Error Logging Modules and Handlers for ASP.NET

Well, that’s the real title of the package. It’s a really cool package in my opinion. Where you had to configure it before (well, 3 lines of web.config), it now automatically installs through NuGet. Just one click and you have your error logging installed. You often don’t know what errors happen when people visit your website/application. People just got a yellow screen of death and didn’t know what to do...

0

NuGet #1: MVCScaffolding with MVC3 and an existing entity model

MVCScaffolding is a NuGet package. The name itself explains what the package does. It scaffolds your MVC applications. It generally generates all your CRUD functions. It uses the Entity Framework 4.1 and also works together with EFCodeFirst. With this combination you are no longer required to have your database setup. You can just make you classes and Visual Studio/.Net will generate the database for you. Whether it’s a file (SQL...

Assembly Oracle Dataaccess Version2.111.7.0… was not found. Reinstall the assembly or Visual Studio. The application cannot continue and will exit. 0

Assembly Oracle Dataaccess Version2.111.7.0… was not found. Reinstall the assembly or Visual Studio. The application cannot continue and will exit.

Assembly Oracle.DataAccess, Version=2.111.7.0 … was not found. Reinstall the assembly or Visual Studio. The application cannot continue and will exit. This will be a short one. Comment out all lines containing the following names from your machine.config (32 AND 64 bit!). Mind you, your Oracle adapters probably won’t work anymore! oracleDBAdapterInboundTransactionBehavior oracleEBSAdapterInboundTransactionBehavior <add name=”oracleDBAdapterInboundTransactionBehavior” …> <add name =”oracleEBSAdapterInboundTransactionBehavior” …>