Case where an external content type created did not show up in the external content type picker control. This case was amazing as we (me and the customer) found the cause while on call! The problem statement was simple! We create an external content type using SPD2010. This time though we decide to implement not all the CRUD operation, but as an example just Create Item operation. We saved the external content type to the BCS service application. When we create an external…(read more)
BCS and External List Learning – Part3
March 10th, 2010Student Insiders take YOU inside of MIX10 Web Design, Developer, and Builder Conference
March 10th, 2010How the Program Management Office Views Enterprise Architecture…
March 10th, 2010HilaryPike
There’s an interesting analysis available through the PMO Executive Board on “Project Interdependencies.” In the problem statement, the author correctly observes:
As the volume and size of projects grow, the old problem of managing project and program interdependencies is becoming more acute: three quarters of PMOs consider “managing interdependencies” to be one of their most critical program management challenges.
First statement is cool.
Unfortunately, the next concept is somewhat troubling to me. According to the author, the solution to this problem is one of process
“… the ability to track and communicate project interdependencies boils down to two essential managerial disciplines: good risk management and clarity of communication with senior executives.”
In other words, we can track and communicate interdependencies better if improve our ability to manage risk and communicate interdependencies. Is that argument convincing to you? Seems pretty circular to me.
Digging a little deeper
Let’s take a look at the “project interdependency problem” for a [...]
Commerce Server 2009 Will Support Microsoft SharePoint 2010
March 10th, 2010NickMalik
We are pleased to confirm that Microsoft Commerce Server 2009 will support Microsoft SharePoint 2010 through the release of a Template Pack in the second half of 2010. SharePoint 2010 better enables companies to reach their customers on the web, generate revenue, and build brand loyalty. Commerce Server acts as the transactional engine for SharePoint sites. The combination of SharePoint 2010 and Commerce Server 2009 will empower organizations to go to market quickly with a robust, scalable and flexible…(read more)
NOW AVAILABLE: Microsoft Dynamics GP 2010 BETA “CorePlus” HyperV Ver. 2 – 32 Bit Technical Demonstration Toolkit
March 10th, 2010Lynnette McL
The Microsoft Dynamics GP 2010 BETA “CorePlus” Version #2 – 32 Bit Technical Demonstration Toolkit running on Microsoft Windows Server 2008 R2 HyperV has been released.
This Technical Demonstration Toolkit will include the following technologies/applications (This Technical Demonstration Toolkit is designed for Advanced Management type demonstrations):
Microsoft Dynamics GP 2010 – BETA
Microsoft Windows Server 2003 Enterprise
Microsoft SQL Server 2008
Microsoft Office 2007
Microsoft Management Reporter 2.0 – BETA
Microsoft Business Portal 5.0 for Microsoft Dynamics GP 2010
Insight/Dashboards
Microsoft SQL Server Reporting Services Reports
Microsoft Office Excel Reports
Microsoft Dynamics Workflow
Analysis Cubes
Microsoft Office Word Forms Integration
Microsoft SharePoint Server 2010 – BETA – Integration to External Lists (Requires Microsoft Dynamics GP2010 DC ‘Light-up’ image)
Technical Requirements:
64-Bit Chipset (BIOS support for virtualization)
Processor: Dual Core (Current Class Hardware)
eSATA Port
Windows Server 2008 R2 Hyper-V
8 GB of RAM
300 GB HD Minimum – 7200 RPM Drive (Optional [...]
March Architect Webcasts – Azure and more!
March 10th, 2010anuchaw
Each month through June 2010, we’ll bring you a 60-minute Architect focused Webcast to educate on the latest trends/topics and how new technologies can align with your business needs.
March 25, 2010 at 1:00pm – 2:00pm EST
Title: Extending Your Sites Reach with IE8 Add On Features
Abstract Today’s users are getting more sophisticated and they expect more features from the sites and services they use. In this session learn about how to implement low effort, high value add-ons that expand your sites reach and bring value to your customer base .
Link to Register: https://swrt.worktankseattle.com/webcast/4240/preview.aspx
Presenter: Jim Cirone Architect Evangelist, Microsoft
Jim Cirone is an Architect Evangelist with Microsoft’s Developer and Platform Evangelism team. He joined the DPE team 3 years ago after spending 10 years in Microsoft’s services group architecting and delivering complex solutions. In his current role he is focused on new and emerging web technologies.
————————————————————————————————————————————————————————————
March 26, 2010 at 1:00pm – [...]
Microsoft Further Education Briefing 2010 – London 19th March
March 10th, 2010kevinboyle
The booking deadline is approaching for our Further Education Briefing day, which this year falls on 19th March in London. If you haven’t registered yet, then it’s worth taking a look at the agenda, as we’ve built it to make sure that you can get lots of value from the day – whether it is learning about new products that will be covered by an existing Campus Agreement, or it is thinking about the ways that you can use your ICT strategy to save money across your college.
Microsoft will be holding our annual Further Education Briefing on 19th March 2010 at our London offices in Victoria. The agenda for the event runs from 9:45 to 3:00 with breaks to catch up with colleagues from other colleges.
As well as getting the latest news on Microsoft’s product roadmap, there will be the opportunity to hear from other colleges and to hear [...]
BCS and External List Learning – Part2
March 10th, 2010Rayfl
In Part1 , I covered a specific scenario related to viewing external list and BDC throttling settings. In this post, I’ll cover a similar specific scenario but related to authentication. When we create an external content type using SPD2010, the screen where we specify the data source information has 3 options for authentication mode as shown in Screen1. The “Connect with User’s Identity” is the “PassThrough” authentication mode we had in MOSS 2007 BDC. The other 2 relates…(read more)
.NET Framework 4.0 Newbie : File.ReadLines
March 10th, 2010sridhara
In .NET Framework 4.0 instead of you using File.ReadAllLines() use ReadLines() to get a better performance. Question is why? File.ReadLines() uses IEnumerable to get the lines. Unlike File.ReadAllLines() it does not first read full files and the starts reading if you have implemented the iteration. Also File.ReadAllLines() does not implement MoveNext().
But there is a catch, if you test your application to compare through sampling you may find File.ReadAllLines() is performing faster. As reading a bigger chunk at a time is faster that reading line by line. Also File.ReadLines() does not read anything unless you iterate it. So the time span between opening a file and start reading is actually nominal compared to File.ReadAllLines().
Use File.ReadLines() is always better and consider it for VERY large files.
Interesting observation
static void Main(string[] args)
{
Stopwatch sw = new Stopwatch();
sw.Start();
CallingReadLines();
//CallingReadAllLines();
sw.Stop();
string sTime1 = sw.ElapsedMilliseconds.ToString();
Console.WriteLine(“Time taken in Milliseconds : {0}”, sw.ElapsedMilliseconds.ToString() [...]
dynaTrace + VS 2010 Load Tests = 1 Powerful Solution for Performance Analysis of Java Applications
March 10th, 2010wriju
dynaTrace offers a terrific integration with VS 2008 to enable performance analysis of java and mixed .NET + java applications.
The integration is now even deeper with VS 2010. With VS 2010, you can drill straight from a specific slow Web page in a load test to the dynaTrace truePath for that page. The truePath shows the performance breakdown for the page, detailing which tiers of the application were slow for that page. This enables you to jump immediately to the performance problem.
This is similar to the functionality offered in the integration between VS load tests and the VS profiler, but goes even further as the dynaTrace solution works for both .NET and java applications, and can even trace performance across .NET and java tiers, for example if your .NET web application makes a call to a Web service running in a java application server.
Check out Andreas’s blog post [...]