by community-syndication | Apr 8, 2009 | BizTalk Community Blogs via Syndication
After following through various step-by-step instructions on getting the JQuery intellisense to work with Visual Studio 2008 SP1, I was still having issues getting it to work correctly. The first and slightly more obvious reason for the intellisense to not work was down to using absolute paths for the script file.
<script type=”text/javascript” src=”/Scripts/jquery-1.3.2.min.js”></script>
This should be
<script type=”text/javascript” src=”~/Scripts/jquery-1.3.2.min.js”></script>
The second and far more idiosyncratic problem was occurring when I had also referenced other script files. So, I would have something like the following.
<script type=”text/javascript” src=”~/Scripts/jquery-1.3.2.min.js”></script>
<script type=”text/javascript” src=”~/Scripts/another-script.js”></script>
Strangely enough every time I referenced an additional script to the jquery core in my Site.Master the intellisense would suddenly stop working. It turns out that there is a dependency on an associated file named with a -vsdoc suffix to the script filename.
For the above example you would need an “another-script-vsdoc.js” file located in the same folder as the actual script file. It doesn’t matter whether this contains any comments to support Visual Studio intellisense, it merely needs to exist.
An additional note to point out is that the intellisense will not work if you are using any kind of server side scripting in the path, which is also pretty obvious if you think about it.
<script type=”text/javascript” src=”<%=ResolveUrl(“~/Scripts/jquery-1.3.2.min.js”)%>“></script>
by community-syndication | Apr 8, 2009 | BizTalk Community Blogs via Syndication
MSDN has released a new set of virtual labs for Visual Studio 2008 & .Net framework 3.5 for anyone willing to get their hands dirty with silverlight, wcf, wpf, rest and more. Check them out from below:
Build Data-driven Web Applications – Fast
ASP.NET Dynamic Data provides a framework that lets you […]
by community-syndication | Apr 8, 2009 | BizTalk Community Blogs via Syndication
BizMock is a new framework usedfor quick testing of BizTalk orchestrations, maps and more.Create unit tests with regular C# MS tests, enhanced with a fluent interface API and a TDD approach.Use its mocking capabilities, to avoid relying on dependent infraestructure like web services or DBs.
The following list shows all the standard artifact types that BizMock […]
by community-syndication | Apr 8, 2009 | BizTalk Community Blogs via Syndication
Microsoft Press is giving away 40% Discount on selective 25 books to celebrate their 25th Anniversary.
Some of the books include:
Introducing Microsoft Silverlight 2.0 2nd Edition
Microsoft Visual C# 2008 Step by Step 3rd Edition,
Programming Microsoft ASP.NET 3.5
MCTS Self Paced Training Kit (Exam 70-503): Microsoft .NET Framework 3.5 Windows Communication Foundation Book/DVD/CD Package
Microsoft SQL Server 2008 T-SQL […]
by community-syndication | Apr 7, 2009 | BizTalk Community Blogs via Syndication
Hi folks,
Windows Azure is Microsoft’s cloud services operating system, based on Windows Server 2008 and .Net Framework 3.5 SP1. Azure is currently in a Community Technology Preview stage and you can register and try it out for free on this page.
Many of you may have wondered what is the experience of hosting WCF services in the Azure cloud. We have created a full set of samples on our newly launched Code Gallery site:
The samples show hosting WCF services for use by Silverlight clients and ASP.NET AJAX clients, as well as REST WCF services built using the new WCF REST Starter Kit.
You may also find some useful workarounds on the WCF known issues page.
Cheers,
-Yavor Georgiev
Program Manager, Connected Framework Team
by community-syndication | Apr 7, 2009 | BizTalk Community Blogs via Syndication
By default tracking in BizTalk is enabled for a couple of components that are useful during development and testing, but mostly overkill for a process that is solid, and has been running for a while.
The first thing is to create a separate host that is dedicated solely for tracking:
The other things to increase performance is to disable tracking in orchestrations:
The third thing is to disable the pipeline tracking:
by community-syndication | Apr 7, 2009 | BizTalk Community Blogs via Syndication
Hi all
Some may have noticed it – others will know it now 🙂
BizTalk 2009 is available for download from MSDN.
the official BizTalk site doesn’t
reflect the new version yet, though, so please have patience if you need the trial
version or the likes.
—
eliasen
by community-syndication | Apr 7, 2009 | BizTalk Community Blogs via Syndication
Saravana Kumar has just published the BizTalk Blog Docs site on BizTalk 24/7.
This is a really cool looking new resource which aggregated some of the popular blog articles and presents them in a structured format which is similar to the MSDN Library
http://blogdoc.biztalk247.com/default.aspx
My profile on BizTalk Blog Docs is: http://blogdoc.biztalk247.com/michael-stephenson
by community-syndication | Apr 7, 2009 | BizTalk Community Blogs via Syndication
If you ever receive the following error,
“Error: btsdeploy is not recognized as an internal or external command”
Reason: This usually happens if the BizTalk server is not able to recognize the BTSDeploy.exe command, this can happen if you had recently installed the BizTalk server and have not restarted the machine.
Solution: restart the machine after successful BizTalk installation
Note: BTSDeploy is deprecated and has been replaced by BTSTask with the new release, but is included to support scripts that administrators have developed for previous versions of BizTalk Server.
by community-syndication | Apr 6, 2009 | BizTalk Community Blogs via Syndication
Microsoft has released WCF Champ which not only contains all information for beginners, intermediate and experts on WCF, WCF Services, etc but also contains information about REST, Azure .Net Services, WCF and WF in .Net 4.0 and more…
Check out WCF Champ from here.
Enjoy!
