Sign In
Field Notes Of An Enterprise Software Consultant
Knowledge is POWER
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
.NET FW & Runtime
Addin
beta
C#
collection-admin
collections
CompiledCode
CustomSymbolDictionary
delete documents
DLR
Hosting API
HowTo
IronPython
IronRuby
methods
ReadConfiguration
Release
reset collection
sample
ScriptIO
ScriptRuntime
ScriptRuntimeSetup
ScriptScope
v0.9
Visual Studio
Archive
Archives
September 2010
(1)
December 2008
(1)
November 2008
(1)
September 2008
(4)
August 2008
(3)
July 2008
(6)
June 2008
(2)
April 2007
(1)
August 2006
(4)
June 2006
(4)
March 2006
(1)
February 2006
(1)
December 2005
(1)
November 2005
(3)
October 2005
(3)
MSDN Blogs
>
Field Notes Of An Enterprise Software Consultant
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Field Notes Of An Enterprise Software Consultant
FAST ESP : Deleting all documents in a collection
Posted
over 2 years ago
by
seshapv
2
Comments
A typical FAST ESP solution has multiple collections. For example, there might be a collection for the data crawled and indexed Sharepoint , another collection for data crawled from a database using JDBC Connector and so on. Suppose that you are developing...
Field Notes Of An Enterprise Software Consultant
Codeplex.com\dlr is now setup to receive regular source updates
Posted
over 4 years ago
by
seshapv
0
Comments
Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 ...
Field Notes Of An Enterprise Software Consultant
DLR v0.9 beta released in CodePlex
Posted
over 4 years ago
by
seshapv
3
Comments
We are happy to announce the release of the DLR Project in Codeplex . This beta of the v0.9 of the DLR consists of a source and binary release . This excellent release note by our PM Bill Chiles gives a nice short overview of what's in this release. We...
Field Notes Of An Enterprise Software Consultant
Using LINQ and the DLR in the same application
Posted
over 4 years ago
by
seshapv
1
Comments
The recent beta release of the DLR allows the usage of LINQ and other CSharp 3.0 features in an application that hosts the DLR. Harry , our IronPython PM has a detailed post explaining why this was not possible before and whats changed now.
Field Notes Of An Enterprise Software Consultant
DLR Hosting API : How to create a ScriptRuntime object without using App.Config files using language specific hosting API
Posted
over 4 years ago
by
seshapv
1
Comments
This previous post demonstrates the use of App.Config files to create script runtimes to host dynamic languages in an application. It is also possible to create runtimes without using a config file. The API to create a runtime and a python engine without...
Field Notes Of An Enterprise Software Consultant
DLR Hosting Sample : Simple dlr host using the new App.Config based ScriptRuntime creation
Posted
over 4 years ago
by
seshapv
5
Comments
Due to the recent changes to the DLR Hosting API , dlr hosts now have to use the App.Config file to configure the languages they intend to use in the application. It’s probably a little bit more complex than before to get started on Hosting the DLR after...
Field Notes Of An Enterprise Software Consultant
DLR Hosting API : latest version of the spec is available online (includes changes to runtime initialization)
Posted
over 4 years ago
by
seshapv
7
Comments
The latest version of the Hosting API spec is available here . The most recent source code drop to the IronPython codeplex site conforms to this spec (except for some open bugs). The biggest change this spec introduces to the beta4 binaries is the...
Field Notes Of An Enterprise Software Consultant
DLR Hosting API : How to create ScriptScopes using backing symbol dictionaries to implement dynamic variable lookup
Posted
over 4 years ago
by
seshapv
2
Comments
The factory methods used to create a ScriptScope object have overloads that take a 'IAttributeCollection' object to create the scope using the collection as a backing store. This feature is very useful and any app that needs non trivial Hosting would...
Field Notes Of An Enterprise Software Consultant
Quick notes on ScriptScope
Posted
over 4 years ago
by
seshapv
2
Comments
ScriptScope is one of the key types available in the DLR Hosting API. They act as a context in which hosts execute code and record the effects of execution like changes in object values, creation of new objects etc. Prior to any code execution, ScriptScopes...
Field Notes Of An Enterprise Software Consultant
IronPython 2.0 beta 4 released
Posted
over 4 years ago
by
seshapv
1
Comments
IronPython 2.0 Beta 4 has been released here . Since the DLR and Hosting API components ship with IronPython, this beta also contains newer versions of Hosting API. So you can use this version to try out any of the Hosting API samples from this blog’s...
Field Notes Of An Enterprise Software Consultant
4 different ways to execute IronPython code using the DLR Hosting API
Posted
over 4 years ago
by
seshapv
1
Comments
Normal 0 false false false EN-US ZH-TW X-NONE MicrosoftInternetExplorer4 ...
Field Notes Of An Enterprise Software Consultant
How to create IronPython objects of types defined in C#
Posted
over 4 years ago
by
seshapv
2
Comments
The DLR Hosting API lets the hosted script instantiate objects of types defined in the hosting C# / VB module. This post describes how to do that using the appropriate methods from the API. Here are the simple steps - 1) Load the assembly containing...
Field Notes Of An Enterprise Software Consultant
IronEditor - Editor for IronPython, IronRuby and other DLR languages
Posted
over 4 years ago
by
seshapv
1
Comments
Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 ...
Field Notes Of An Enterprise Software Consultant
DLR Hosting Sample : QikScript - Handle Visual Studio 2008 extensibility events in IronPython
Posted
over 4 years ago
by
seshapv
2
Comments
The DLR Hosting API offers a well defined interface for managed applications to host and utilize the power of the DLR (Dynamic Language Runtime) to enable end user scripting. The objective of this sample (and the forthcoming series of posts based on this...
Field Notes Of An Enterprise Software Consultant
Using the 'Find' box in VS to do some cool stuff
Posted
over 4 years ago
by
seshapv
1
Comments
Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 ...
Field Notes Of An Enterprise Software Consultant
How to redirect output from python using the DLR Hosting API
Posted
over 4 years ago
by
seshapv
3
Comments
Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 ...
Field Notes Of An Enterprise Software Consultant
How to invoke a IronPython function from C# using the DLR Hosting API
Posted
over 4 years ago
by
seshapv
5
Comments
Like I wrote in my previous post , the Hosting API lets you do some very interesting and powerful things with the DLR. One of the things I had listed was the ability to invoke a method implemented in python from C#. This post describes how to set up...
Field Notes Of An Enterprise Software Consultant
How to write a simple DLR host in C# using Hosting API
Posted
over 4 years ago
by
seshapv
3
Comments
Normal 0 false false false EN-US X-NONE X-NONE MicrosoftInternetExplorer4 ...
Field Notes Of An Enterprise Software Consultant
Beta1 of Visual Studio 'Orcas' available for download now
Posted
over 5 years ago
by
seshapv
0
Comments
Here is the announcement from Soma . This provides a good backdrop for me to update my personal status. I am now part of the Visual C# QA team. My area of resposibility is the compiler's support for intellisense and its interaction with the IDE. So please...
Field Notes Of An Enterprise Software Consultant
Visual Studio.Net 2003 SP1
Posted
over 6 years ago
by
seshapv
0
Comments
The long wait is over. the Visual Studio.Net 2003 is available in microsoft.com. Use this link to download it. Happy patching :-)
Field Notes Of An Enterprise Software Consultant
MiniMSFT Vs MSDN blogs
Posted
over 6 years ago
by
seshapv
4
Comments
The number of blogs in MSDN (at the time of writing this entry) is 3146. It's pretty safe to assume that more than 99% of the entries paint a positive picture about Microsoft, its practices and its culture. Its interesting to see that even all of these...
Field Notes Of An Enterprise Software Consultant
Weird LNK 2019 on a VS 2005 ported dll
Posted
over 6 years ago
by
seshapv
2
Comments
1>stdafx.obj : error LNK2019: unresolved external symbol "void * __cdecl operator new[](unsigned int,struct std::_DebugHeapTag_t const &,char *,int)" (??_U@YAPAXIABU_DebugHeapTag_t@std@@PADH@Z) referenced in function "public: char * __cdecl std...
Field Notes Of An Enterprise Software Consultant
WSOD - Sony Ericsson W550i
Posted
over 6 years ago
by
seshapv
99
Comments
I bought a Sony Ericsson W550i 2 months back. Its a great phone and gives excellent value for its cost. So all was well and i thought i will live happily ever after. But no, since yesterday the phone is stuck in WSOD - White Screen of Death. The phone...
Field Notes Of An Enterprise Software Consultant
Microsoft and the Scoble phenomenon
Posted
over 6 years ago
by
seshapv
1
Comments
I feel sad that Robert scoble is moving out of MSFT. Ironically the news came exactly on the day I finished reading his book - Naked Conversations. I had spent the last 2-3 weeks reading the book and appreciating how much he has impacted Microsoft and...
Field Notes Of An Enterprise Software Consultant
Here's .NET framework 3.0
Posted
over 6 years ago
by
seshapv
3
Comments
WinFX will hence be called .NET Framework 3.0. Read more about this at Soma 's blog and find answers to some questions on this at jasonz 's blog. Soma is the VP of Dev Div and Jason is the GM for the .NET FW – Dev FX group. So please let them have your...
Page 1 of 2 (36 items)
1
2