DotNetShoutout - Latest published stories in Architecture (page 4)
4
Shouts

Adding multiple endpoints to your Windows Azure Virtual Machines by using a CSV file

published 169 days, 13 hours, 59 minutes ago posted by sandrinosandrino 179 days, 9 hours, 46 minutes ago
Monday, December 03, 2012 4:06:01 PM GMT Friday, November 23, 2012 8:19:07 PM GMT
In order to manage endpoints of a Virtual Machine you have 2 options: use the portal or use Powershell. If you use the portal it’s not so easy to add a list or a range or ports, you would need to add these ports one by one. The other way you can manage these endpoints is by writing Powershell scripts and that’s what I did over and over again for the past few months. What I wanted was some way to easily add endpoints to newly created Virtual Machines. A CSV file would be perfect for this. It’s easy to ma... (more)
category: Architecture | clicked: 15 | comment | | source: fabriccontroller.net
tags:
3
Shouts

Encrypting the session with SSL in SQL Server | TechBubbles

published 172 days, 19 hours, 18 minutes ago posted by kalyanms1kalyanms1 176 days, 17 hours, 27 minutes ago
Friday, November 30, 2012 10:46:51 AM GMT Monday, November 26, 2012 12:38:24 PM GMT
Network packets are human-readable using a packet sniffer when SQL results passing between client machine and SQL server. Tabular Data Stream(TDS) is the protocol used by SQL server to form packets to be sent through the network. This post explains the steps to encrypt a session with SSL in SQL Server. (more)
category: Architecture | clicked: 12 | comment | | source: www.techbubbles.com
tags:
3
Shouts

Passive FTP and dynamic ports in IIS8 and Windows Azure Virtual Machines

published 173 days, 20 hours, 17 minutes ago posted by sandrinosandrino 182 days, 4 hours, 57 minutes ago
Thursday, November 29, 2012 9:48:00 AM GMT Wednesday, November 21, 2012 1:08:15 AM GMT
Today Windows Azure supports up to 150 endpoints which is great for those applications that rely on persistent connections, like an FTP Server. You can run an FTP Server in 2 modes: •Active mode: The server connects to a negotiated client port •Passive mode: The client connects to a negotiated server port Passive mode is by far the most popular choice since it doesn’t require you to open ports on your machine together with firewall exceptions and port forwarding. With passive mode it’s up to the serve... (more)
category: Architecture | clicked: 13 | comment | | source: fabriccontroller.net
tags:
3
Shouts

DictionaryTableEntity: Working with untyped entities in the Table Storage Service

published 176 days, 16 hours, 15 minutes ago posted by sandrinosandrino 186 days, 8 hours, 5 minutes ago
Monday, November 26, 2012 1:50:26 PM GMT Friday, November 16, 2012 9:59:34 PM GMT
Taking a deeper look TableEntity You’ll see a few changes compared to the old TableServiceEntity class: •The ETag property was added •The Timestamp is now a DateTimeOffset (much better for working with different timezones) •2 new virtual methods: ReadEntity and WriteEntity By default, these methods are implemented as follows: •ReadEntity: Will use reflection to get a list of all properties for the current entity type. Then it will try to map the values received in the properties parameter and try to ma... (more)
category: Architecture | clicked: 13 | comment | | source: fabriccontroller.net
tags:
5
Shouts

5 Good and useful .NET Profilers

published 179 days, 17 hours, 44 minutes ago posted by http://isenthil.myopenid.com/http://isenthil.myopenid.com/ 188 days, 23 hours, 57 minutes ago
Friday, November 23, 2012 12:20:35 PM GMT Wednesday, November 14, 2012 6:07:51 AM GMT
I have been making some R&D on the tools or the profilers to test the performance of one of my .NET application. Below are list of some of the compiled collection of .NET Profilers that I could gather. (more)
category: Architecture | clicked: 83 | comment | | source: www.ginktage.com
tags:
2
Shouts

Webinar on Software Best Practices and ROI

published 182 days, 12 hours, 40 minutes ago posted by brunomarquesbrunomarques 191 days, 23 hours, 6 minutes ago
Tuesday, November 20, 2012 5:24:50 PM GMT Sunday, November 11, 2012 6:58:48 AM GMT
Webinar on Software Best Practices and ROI by Steve McConnell. Author of several books, such as "Software Estimation: Demystifying the Black Art" (more)
category: Architecture | clicked: 14 | comment | | source: geeklyeverafter.blogspot.pt
tags:
2
Shouts

GeoLocation using browser

published 182 days, 12 hours, 40 minutes ago posted by abhi2434abhi2434 192 days, 8 hours, 43 minutes ago
Tuesday, November 20, 2012 5:24:50 PM GMT Saturday, November 10, 2012 9:22:25 PM GMT
Getting Geolocation from a browser using Javascript API inbuilt within the browser and continuously getting the position update while the device is in move. (more)
category: Architecture | clicked: 20 | comment | | source: www.helloworldgeeks.com
2
Shouts

Creating simple windows store App with C# | TechBubbles

published 187 days, 14 hours, 30 minutes ago posted by kalyanms1kalyanms1 196 days, 19 hours, 7 minutes ago
Thursday, November 15, 2012 3:34:53 PM GMT Tuesday, November 06, 2012 10:57:55 AM GMT
This post describes the steps to create windows store App with C# and xaml. Before you start you need to have window 8 installed and you also need to install Microsoft Visual studio 2012 express for windows 8 which can be downloaded from here and also need developer license, you obtain the developer license from store menu (more)
category: Architecture | clicked: 21 | comment | | source: www.techbubbles.com
tags:
2
Shouts

IIS 8.0 Application Initialization module in a Windows Azure Web Role

published 187 days, 14 hours, 30 minutes ago posted by sandrinosandrino 196 days, 10 hours, 29 minutes ago
Thursday, November 15, 2012 3:34:53 PM GMT Tuesday, November 06, 2012 7:35:51 PM GMT
Back in 2009 the IIS team announced the beta release of the Application Warm-Up Module as a downloadable extension. Today this module was renamed to Application Initialization andis included in IIS8. Activating it will add a few interesting capabilities to your IIS installation (more)
category: Architecture | clicked: 11 | comment | | source: fabriccontroller.net
tags:
5
Shouts

Creating an OData service on the .NET Framework | TechBubbles

published 188 days, 16 hours, 4 minutes ago posted by kalyanms1kalyanms1 197 days, 16 hours, 36 minutes ago
Wednesday, November 14, 2012 2:00:51 PM GMT Monday, November 05, 2012 1:29:12 PM GMT
Open Data Protocol is a web protocol for accessing information via services. It is built upon technologies such as XML and JSON. The main component for building the OData service on .NET Framework is WCF Data Service. OData service can support different data source models including ADO.NET Entity Framework. LINQ to SQL etc. This post outlines the steps to creating an OData service on the .NET Framework through WCF Data service and ADO.NET Entity Framework data model. (more)
category: Architecture | clicked: 28 | comment | | source: www.techbubbles.com
tags:
3
Shouts

Continuous Deployment with Windows Azure Websites and Bitbucket

published 196 days, 19 hours, 34 minutes ago posted by sandrinosandrino 204 days, 9 hours, 51 minutes ago
Tuesday, November 06, 2012 10:31:15 AM GMT Monday, October 29, 2012 8:13:58 PM GMT
A little over a month ago Scott Guthrie announced support for continuous deployment in Windows Azure Web Sites with GitHub and CodePlex. Yesterday while I was browsing the azure tag on StackOverflow, I noticed a very interesting answer by David Ebbo: Update (10/27/2012): as it turns out, the Bitbucket support for public git repros just became available today, so give it a try! Currently this is only supported for Github and Codeplex, but the Bitbucket support is around the corner. Initially, it will ... (more)
category: Architecture | clicked: 18 | comment | | source: fabriccontroller.net
tags:
3
Shouts

Visual Rx - Part 6 - Bnaya Eshet

published 200 days, 18 hours, 23 minutes ago posted by bnayabnaya 207 days, 21 hours, 54 minutes ago
Friday, November 02, 2012 11:42:26 AM GMT Friday, October 26, 2012 8:10:39 AM GMT
this post is part of the Visual Rx series and it will focus on Visual Rx Viewer Side Extensibility. this post is dealing with advance topic, you may want to read other post on this series before reading this one. (more)
category: Architecture | clicked: 22 | comment | | source: blogs.microsoft.co.il
tags:
2
Shouts

Multicore JIT in .NET Framework 4.5 | TechBubbles

published 201 days, 19 hours, 53 minutes ago posted by kalyanms1kalyanms1 211 days, 17 hours, 57 minutes ago
Thursday, November 01, 2012 10:12:29 AM GMT Monday, October 22, 2012 12:07:39 PM GMT
Multicore JIT is a great new feature in .NET Framework 4.5. Multicore JIT parallelizes the some of the JIT compilations that happens on the start of the application, Historically .NET FW has used the Ngen Native Image Generator for parallelization. It works particularly well where this Ngen is installed. It has been with Silverlight 5 and ASP.NET. This post describes it’s features and how it works? Multicore JIT uses the parallelization to reduce the JIT compilation time during application startup (more)
category: Architecture | clicked: 29 | comment | | source: www.techbubbles.com
tags:
4
Shouts

Working with Public OData Producers | TechBubbles

published 207 days, 15 hours, 50 minutes ago posted by kalyanms1kalyanms1 215 days, 17 hours, 3 minutes ago
Friday, October 26, 2012 2:15:34 PM GMT Thursday, October 18, 2012 1:01:54 PM GMT
There are number of public products or services which have already adopted OData in their data publishing and also provided the OData compatible interfaces for the clients to consume the application data. Microsoft products SharePoint 2010, Windows Azure Storage Service,SQL Server 2008 Reporting Services have started supporting OData. Many online services such as Netflix.com,eBay.com, StackOverflow.com, Facebook etc also opened their business data to consumers through OData-based service endpoints. (more)
category: Architecture | clicked: 54 | comment | | source: www.techbubbles.com
tags:
4
Shouts

Design principles of Throwing an exception

published 214 days, 17 hours, 57 minutes ago posted by abhi2434abhi2434 223 days, 12 hours, 42 minutes ago
Friday, October 19, 2012 12:08:11 PM GMT Wednesday, October 10, 2012 5:23:10 PM GMT
Are you using exceptions more than you should do? Exceptions are important but not always essential. (more)
category: Architecture | clicked: 83 | comment | | source: www.helloworldgeeks.com
tags:
2
Shouts

How to check online status of the browser using HTML5

published 214 days, 17 hours, 57 minutes ago posted by abhi2434abhi2434 222 days, 9 hours, 48 minutes ago
Friday, October 19, 2012 12:08:11 PM GMT Thursday, October 11, 2012 8:17:27 PM GMT
check online status on html 5 based browser using javascript. The article will gives you code to detect online status of the browser and generates an event automatically whenever the client internet connection is disconnected. (more)
category: Architecture | clicked: 29 | comment | | source: www.helloworldgeeks.com
tags:
3
Shouts

My Sites in SharePoint 2013 | TechBubbles

published 216 days, 12 hours, 42 minutes ago posted by kalyanms1kalyanms1 223 days, 19 hours, 3 minutes ago
Wednesday, October 17, 2012 5:23:23 PM GMT Wednesday, October 10, 2012 11:02:27 AM GMT
My Site is a personal site in SharePoint for user. This post outlines the steps to set up My Sites in SharePoint 2013. My Site depends on User Profile service application and managed Meta data service application. Optionally Search Service application requires to be configured but it is not required. Optionally you can configure profile synchronization to configure user and group information. (more)
category: Architecture | clicked: 31 | comment | | source: www.techbubbles.com
tags:
2
Shouts

CA262D Dynapac Roller For Sale | Used Dynapac CA262D Rollers For Sale | 2006 Dynapac Compactor at Micoequipment.com

published 216 days, 12 hours, 42 minutes ago posted by ShaistaShaista 224 days, 8 hours, 34 minutes ago
Wednesday, October 17, 2012 5:23:23 PM GMT Tuesday, October 09, 2012 9:30:40 PM GMT
CA262D DYNAPAC roller for sale comes with OROPS, 6 cylinder Turbo Engine & Diamond Tires. Used CA262PD DYNAPAC roller for sale is in excellent condition. Check Dynapac Compactors at Micoequipment.com. (more)
category: Architecture | clicked: 11 | comment | | source: www.micoequipment.com
2
Shouts

Placing Browser notifications in Webkit through javascript

published 218 days, 14 hours, 21 minutes ago posted by abhi2434abhi2434 224 days, 19 hours, 52 minutes ago
Monday, October 15, 2012 3:44:22 PM GMT Tuesday, October 09, 2012 10:13:04 AM GMT
Browser notification using Webkit, javascript notification API (more)
category: Architecture | clicked: 15 | comment | | source: www.helloworldgeeks.com
3
Shouts

SessionStorage data in browser using html5

published 221 days, 20 hours, 42 minutes ago posted by abhi2434abhi2434 229 days, 20 hours, 55 minutes ago
Friday, October 12, 2012 9:23:24 AM GMT Thursday, October 04, 2012 9:09:41 AM GMT
HTML5 enabled browsers support client side data storage per session. The blog describes how the javascript API can be used to implement session based temporary storage. This is client side session storage and will be available until the browser is closed. (more)
category: Architecture | clicked: 25 | comment | | source: www.helloworldgeeks.com
tags:
Previous 1 2 3 4 5 6 7 8 9 10 ... 54 55 Next