Apr 08 2010

Free (technical) Microsoft Courses

Category: .microsoft,.ms.futureAmit Bahree @ 9:38 pm

Channel 9 has a number of free technical courses on a number of emerging MS technologies covering a wide range such as Azure, Win7, Identity, SQL Server 2008 R2, Visual Studio 2010, .NET 4.0, Silverlight 4, MOSS 2010, Office 2010, etc.

These cover a number of the features and essentially have everything to get a developer quite comfortable with the stack. In some areas they go a little deep as well. I think its an excellent way to come up to speed.

Here is a quick example of the topics covered in some of the tracks:

  • Win7 – how to use the Taskbar, Multitouch, Ribbon, Sensors and Location, Session 0 Isolation, etc.
  • Azure – Azure Overview, Azure Storage, Deployment, SQL Azure, etc.
  • VS 2010 and .NET 4 – F#, ASP.NET 4, Parallel Computing, ALM, etc.
Share

Tags:


Feb 14 2010

Bing Maps adding Flickr images, live video, stars

Category: .microsoft,.miscAmit Bahree @ 3:56 pm

Bing Maps adding Flickr images, live video and stars – very cool.

Update: The official TED video below is quite cool and in addition to the one above, also adds more interesting features such as video – check it out.

Share

Tags: ,


Dec 11 2009

Extending WCF Adapters in BizTalk

Category: .microsoftAmit Bahree @ 6:40 pm

I know a little bit about WCF :) but never really used it in anger in BizTalk and also did not get an opportunity to extend the adapter.

I was looking for something else and came across this post form Paolo which explains in a lot of detail how does one go about extending and customizing WCF adapters. If you don’t know anything about WCF the first part explains that in general before going in to the BizTalk specific things.

Share

Tags:


Dec 06 2009

BizTalk Flat File schema optional attribute issue

Category: .geek,.microsoftAmit Bahree @ 11:37 pm

I encountered this interesting issue and thanks to Colin we were able to resolve it. There will be situations you will encounter when adding additional optional attributes to a Flat File (FF) schema in BizTalk will cause problems. To get around this you basically will need to set the following properties to relax the parsing of the attributes which break.

  • parser_optimization="complexity"
  • allow_early_termination="true"
  • early_terminate_optional_fields="true"

This got me thinking more and wanting to understand what does changing these attributes mean under the covers. Below is what I found out on each of these.

On parser_optimization:

  • Setting the parser_optimization to complex essentially generates a more complicated grammar (it uses both a top down and bottom up parsing); this grammar is then used to parse the FF.
  • The complicated grammar is better when parsing records with more optional nested options – however it still cannot handle all the layout conditions and can still break in some situations.
  • And given the runtime is doing more things, this will be slower than the other option called ‘speed’ (yeah no kidding Sherlock!).
    • The reason the ‘speed’ option is faster is because it uses top-down parsing only.
  • In addition you should also set lookahead_depth to zero (more on this below) to avoid validation failures (against a schema) when there are many optional nodes in the same group/record.

Changing the lookahead_depth itself is trivial but you need to be a little more aware of what this means:

  • This essentially tells the parser when making a parsing prediction how far ahead to look in the token stream.
  • Setting this to Zero essentially means ‘infinite lookahead’ which in turn means more memory will be consumed.
    • Depending on how busy your BizTalk servers are and how much memory pressure you already experience processing various files (and their sizes), this might be an issue.

Basically, the FF parser is a streaming parser and implemented as a leftmost derivation which takes in a CFG. Essentially when we change the lookahead_depth to zero we change do not restrict this and the parser can recognize tokens using DFA perhaps (of course we don’t know the real implementation).

For those old school like me, and have played with yacc – that is a LL(1) parser – essentially parse the grammar with one token lookahead.

On allow_early_termination="true":

  • When working with FF’s BizTalk expects that every line is of the same length (either because of the data contained padded with spaces). However if it finds a newline (CR + LF) character then it breaks and you get an error something along the lines of “Unexpected data found while looking for: \r\n”.
  • Adding the allow_early_termination setting helps fix this. Read more here.
  • Also note that only the right-most positional field is allowed to early terminate.

Lastly, the early_terminate_optional_fields attribute enables early termination of optional trailing fields. A couple of points to note on this:

  • If your schema does not have this annotation and you open that in the BizTalk editor, then it will automatically add this annotation explicitly and set it to the default value of False.
  • This only takes affect if you also have the allow_early_termination annotation set to True.
  • More details on this here.

And in case you were wondering this is a supported option by Microsoft as shown in this KB article.

Share

Tags: ,


Mar 19 2009

Win 7 and loading ISO’s

Category: .ms.futureAmit Bahree @ 6:13 pm

If you are on Win 7 (any build) you will find quickly that Daemon tools don’t work on that. Even if it was working, I would in any case recommend ditching Daemon tools and recommend using Virtual Clone Drive which not only is free but also works like a champ. I use it on Vista as well.

Share

Tags:


Jan 16 2009

Enabling Bitlocker Pin on Win 7

Category: .microsoftAmit Bahree @ 10:58 am

You should be using Bitlocker on your machine (which btw is faster on Win 7 compared to Vista). When I enabled this on my laptop running Win 7 – I did not get the option to also add a PIN – not sure if I did something wrong or by default it does not ask for it.

In any case, if you also want to add the a PIN on boot up then you can use the following command in a command prompt or power shell (with admin privileges) to enable this. Of course replace the “c:” with the drive you want to do this for.

manage-bde -protectors -add c: -TPMAndPIN

Share

Tags:


Nov 11 2008

PDC Sessions

Category: .microsoftAmit Bahree @ 12:16 am

Irrespective if you attended PDC or not and want to get your hands on the ppt’s and/or video of each of the sessions then Mike has a cool post listing each of the sessions including the friendly name instead of the non-helpful code.

Share

Tags:


Oct 24 2008

PDC’ing

Category: .ms.futureAmit Bahree @ 8:33 am

I am going to be at PDC – anyone else I know going to be there? If you are reading this, and are going to be there then it is quite likely you know how to ping me and let me know you going. It also might be a good idea to check out the Devil’s field guide to the PDC.

I will be blogging from there – but not during the sessions – need to ensure I am not distracted – especially as the Avalanche is coming! Expect to get some posts later in the evenings.

Share

Tags:


Oct 14 2008

Win 7 called Win 7

Category: .ms.futureAmit Bahree @ 11:08 pm

Not since the days of NT 4.0 (which stood for New Technology btw) has this happened that Microsoft is calling a Windows version what is really is – so Windows 7 will be called Windows 7! I say Yay! It is about time the stop all the malarkey about funky code names and boring “release names”.

Share

Tags:


Oct 10 2008

The Microsoft “Avalanche”

Category: .microsoftAmit Bahree @ 3:19 pm

No, I am not referring to any new codename or product but rather talking about the slew of new products and technologies that are in the works and coming out in the near future from Microsoft. Below is a list of things (in no particular order) which either were just released or in the pipeline.

I wish I could talk more about some of these – maybe after PDC when most of these are out in the public domain and the NDA’s are relaxed – until then all the links are only to material already in the public domain. Smile

  1. Windows Server 2008
  2. Windows Server 2008 R2
  3. SQL Server 2008
  4. Windows “7
  5. Office “14
  6. Visual Studio 2010 (“Rosario”)
  7. Red Dog
  8. Strata
  9. Zurich
  10. Oslo
  11. .NET 4.0
  12. M” and “Quadrant”
  13. Mesh
  14. SQL Server “Kilimanjaro” and Project “Madison”
  15. Dublin
  16. Exchange “14

Sigh, so much to learn/play-with and so little time! Sad

Update: Added #16

Share

Tags:


Jun 24 2008

Live Mesh Update

Category: .microsoftAmit Bahree @ 4:44 pm

As I said in the last post I have been using Live Mesh for a few weeks now. Since then, Microsoft has released an update to Mesh; those of you who are using it and not updated it yet, I would suggest you do. It will restart the Windows shell once the update is finished, but I would recommend to save your work before you start the update and bounce Windows after that (even though it does not require it).

  • Live Mesh is now available in all English-speaking countries (not just the U.S.)
  • Removed the User Account Control (UAC) requirement when installing and using Live Mesh with Windows Vista SP1
  • Index for Desktop Search now works with Live Mesh folders
  • Fixed bug where an underscore in a Hotmail account name returned an "Invalid Hotmail Address" error
  • Fixed bug with Silverlight 2 Beta 2 failing to load in Silverlight Media View
  • Fixed bug where the notifier tool-tip incorrectly indicated that Live Mesh Remote Desktop was unavailable for a computer running in non-admin mode
  • Fixed bug where the Live Mesh folder icon was not displayed in the e-mail inviting someone to share a folder
  • Fixed one of the bugs that caused Live Mesh to fail to start
  • Fixed problem with Live Mesh returning errors when waking from sleep/hibernate

Share

Tags:


Mar 04 2008

.NET 3.5 ThreadPool increases

Category: .microsoftAmit Bahree @ 10:15 am

This is probably old news now, but something which has me concerned as it can cause lots of unseen issues. In .NET 3.5 the default ThreadPool count has been increased ten-fold from 25 to 250 per processor per process! ThreadPools as we know are quite handy – not only do they help when an application comes under load instead of adding more pressure in a stressful situation. They also allow us to readily "reach into" a pool of threads and "pick one" to use – saving the costly overhead of creating and destroying threads (in case you did not know creating and destroying threads is an expensive process).

Yeah OK; so why do I care? Well, most people won't but there are situations where this will cause unexpected behaviour and even lead to Out of Memory exceptions.

Essentially each thread created takes 1 Mb of stack space. Say you are creating a server app and spawn a different thread for IO and if are running on a 8-proc Win x32 box, with this change your application will cap out now at 2000 threads (8 x 250)! With each of them taking 1 mb that is a total of 2GB – which is the total addressable space in Win x32! Ouch!

Of course you can change this – for a web app this is a simple change to the web.config file; however if it is not a web app then this does require a change to the code albeit simple. So, if you suddenly start seeing out of memory exceptions, with nothing really changing, then this might be the cause.

Share

Tags:


« Previous PageNext Page »
Get Adobe Flash player