by community-syndication | Oct 21, 2013 | BizTalk Community Blogs via Syndication
Our BizTalk Practice has recently embarked on the endeavor of creating a tracking portal for one of our new BizTalk solution accelerators. One of the initial steps for me was to devise a proof of concept for querying the BAM Database using the two included web services with BAM, BAMManagementService and BAMQueryService. Microsoft does not […]
Blog Post by: Kevin Morillo
by community-syndication | Oct 19, 2013 | BizTalk Community Blogs via Syndication
In my case this error occurred when I was recovering an old BizTalk Server 2004 development environment: “The master secret has not been backed up. If you lose the master secret all the information stored in the SSO system will be lost permanently and your systems may fail to work correctly. Please use the SSO […]
Blog Post by: Sandro Pereira
by community-syndication | Oct 19, 2013 | BizTalk Community Blogs via Syndication
This post is the twenty-first in a weekly series intended to briefly spotlight those things that you need to know about new features in BizTalk Server 2013. Over the last few years, I’ve had my fair share of times describing to people the installation/configuration process for BizTalk Server and more specifically the Business Activity Monitoring […]
Blog Post by: Nick Hauenstein
by community-syndication | Oct 18, 2013 | BizTalk Community Blogs via Syndication
In Windows Azure, I sometimes have several virtual machines that are part of the same vNet but are spread across different cloud services. Several VMs in the same cloud service are not started in parallel,. However, I have several cloud services so I may want to deploy in parallel my VMs from one script.
In my example, I want to start the following VMs in the same vNet:
They will be part of the following cloud services:
So I thought of foreach-parallel and found this thread in stackoverflow:
http://stackoverflow.com/questions/4016451/can-powershell-run-commands-in-parallel
This lead me to the following script:
‘deswebsvm’, ‘deswebsIIS’, ‘deswebstomcat’ | %{
echo $_
$scriptBlock = {
param($serviceName)
Import-Module azure
$subscription = ‘xxx’
Set-AzureSubscription -SubscriptionName $subscription -CurrentStorageAccount ‘xxx’
Set-AzureSubscription -DefaultSubscription $subscription
$allvms = Get-AzureVM -ServiceName $serviceName
$allvms | select name
$allvms | Start-AzureVM
}
Start-Job $scriptBlock -ArgumentList $_
}
# Wait for it all to complete
While (Get-Job -State "Running")
{
Start-Sleep 10
echo ‘—————————‘
Get-Job
}
# Getting the information back from the jobs
Get-Job | Receive-Job
Remove-Job *
With this, I have virtual machines starting in cloud services deswebsvm, deswebsiis and deswebstomcat in parallel.
In order to stop the same VMs, I have the following script:
‘deswebsvm’, ‘deswebsIIS’, ‘deswebstomcat’ | %{
echo $_
$scriptBlock = {
param($serviceName)
Import-Module azure
$subscription = ‘xxx’
Set-AzureSubscription -SubscriptionName $subscription -CurrentStorageAccount ‘xxx’
Set-AzureSubscription -DefaultSubscription $subscription
$allvms = Get-AzureVM -ServiceName $serviceName
$allvms | select name
$allvms | Stop-AzureVM -Force
}
Start-Job $scriptBlock -ArgumentList $_
}
# Wait for it all to complete
While (Get-Job -State "Running")
{
Start-Sleep 10
Get-Job
}
# Getting the information back from the jobs
Get-Job | Receive-Job
Remove-Job *
Benjamin Guineberti%u00e8re (@benjguin)
Blog Post by: Benjamin GUINEBERTIERE
by community-syndication | Oct 18, 2013 | BizTalk Community Blogs via Syndication
I use the BizTalk Deployment Framework (BTDF) a lot for deployment of BizTalk solutions. BTDF is using MSBUILD tasks to deploy a assembly. Last week we found a problem with deployment of a specific solution. The problem was MS-BUILD was not performing…(read more)
Blog Post by: Patrick Wellink
by community-syndication | Oct 16, 2013 | BizTalk Community Blogs via Syndication
This blog post explains how to create a universal mapping to receive the namespaces on any inbound schema. The solution uses the Microsoft.XLANGs.Any schema and goes into detail on how to execute this within a stored procedure.
by community-syndication | Oct 16, 2013 | BizTalk Community Blogs via Syndication
Tomorrow there will be another BizTalk event. Venue will be Microsoft Italy in Milan. I will be speaking there with other Microsoft Integration MVP’s, Microsoft and people from Microsys (main sponsor). This will be another opportunity to engage the BizTalk community.
Interactions with the BizTalk community are vital to keep us MVP’s focused. We can be viewed as an intermediary between them and
by community-syndication | Oct 15, 2013 | BizTalk Community Blogs via Syndication
While working on my most recent project using the Kendo UI Library I came across the following error when trying to inject html from a partial view into a Kendo UI Window.
SCRIPT5007: Unable to get property ‘top’ of undefined or null reference kendo.all.min.js, line 26 character 30328
This error would only occur in IE8 and not […]
Blog Post by: Nick Rubino
by community-syndication | Oct 15, 2013 | BizTalk Community Blogs via Syndication
We are known for our constant releases every 4-5 months ones adding 3-4 core features and getting it to the customers as soon as possible. But BizTalk360 version 7.0 is something different and special for us. This is not one of our regular releases. Our original intention was just to give a make over, but […]
The post BizTalk360 version 7.0 – Story behind the creation appeared first on BizTalk360 Blog.
Blog Post by: Saravana Kumar
by community-syndication | Oct 14, 2013 | BizTalk Community Blogs via Syndication
So far, I’ve looked at options for hosting .NET and Node.js applications in the cloud. But what about the services that web applications rely on? It’s unlikely that your cloud application will use many on-premises services, so you’ll need things like databases nearby. There are a LOT of relational and NoSQL cloud databases out there. […]
Blog Post by: Richard Seroter