Windows Communication Foundation WCF Videos

by jajatibadu March 09, 2009 05:54

Windows Communication Foundation (WCF) provides a robust framework that allows Web Services and .NET Remoting applications to be built and consumed using a consistent object model.

 I found lots of sources for WCF articles, source codes and videos from the web. Below are some interesting stuffs I have filtered  where you can find articles and videos on WCF, WPF and SOA. These videos are very helpful for the newbie. So check it out. You can post if you found any interesting links related to WCF,WPF.   

http://channel9.msdn.com/tags/WCF/ 

http://msevents.microsoft.com/CUI/WebCastEventDetails.aspx?EventID=1032340931&EventCategory=3&culture=en-US&CountryCode=US 

http://www.bestechvideos.com/tag/wcf/

 http://www.learnvisualstudio.net/AllVideos.aspx 

http://idealprogrammer.com/languages/visual-basic-vbnet/windows-communication-foundation-15-hours-of-free-video-tutorials/ 

http://wcfcommunity.com/Lists/VideosVirtual%20Labs/AllItems.aspx 

http://www.xvpj.net/2008/03/08/wcf-step-by-step-tutorial/ 

Hope this helps, 

Jajati

Your Ad Here

Currently rated 4.0 by 1 people

  • Currently 4/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

WCF

You must have administrative rights on this machine in order to run this tool

by jajatibadu February 07, 2009 06:08

I have windows vista premium and while i was trying to install something I was getting the bellow error though my logged in user account has the Admin privilege.

"An error has occurred (0x80070005).
You must have administrative rights on this machine in order to run this
tool."

After lots of googling I found the solution. Though user account has the admin privilege, while we try to run some exe from cmd it runs as a standard user. To run cmd as an Administrator follow the below step.

1-Go to C:\Windows\System32

2-Rightclick on cmd.exe and select run as Administrator.

Now you can run any exe from cmd and you may not get Admin access related errors.

We can also run any exe as Administrator by right click on that exe and select "Run as Administrator" to avoid the error.

For windows vista there is CMD.COM in  C:\Windows\System32.

For running CMD.COM as an Administrator you need to create a shortcut in desktop.

Then right click on that file> select properties>Select Compatibility tab and check the "Run this program as an Administrator".

Now the next time when you click on that shortcut it will call the CMD.COM with the Administrator Privilege

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

General

Convert C# Code to VB

by jajatibadu January 31, 2009 06:11

Friends I have a webservice for converting the C# code to VB code. Using this Service is very simple. Only you need to provide the C# code as a parameter to the webservice. The webservice will return the pre-formated VB code. It will be great if you can use this service and give me your valuable feedback on this service for further enhancement. Feel free to contact me  if you are facing any issue with my webservice.

Webservice:- http://www.jajatibadu.com/CS2VB/service.asmx

Convert C# to VB:- http://www.jajatibadu.com/ConvCS2VB/ConvertCS2VB.aspx

Thanks,

Jajati Badu

Your Ad Here

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

Asp.net

Installing FTP in IIS 7.0

by jajatibadu January 07, 2009 06:06

Recently I bought a new HP dv2000 notebook with vista home premium pre-loaded. I found there was iis 7.0 was installed. But the FTP service is not installed. A searched it from Microsoft technet found the below solutions

http://technet.microsoft.com/en-us/library/cc732769.aspx

Procedures

 

To install the FTP service on Windows Vista
  1. On the Start menu, click Control Panel.

  2. Click Programs, and then click Turn Windows features on or off.

  3. In the Windows features dialog box, expand the Internet Information Services node.

  4. Expand the FTP Publishing Service node, and then click the FTP Publishing Service check box.

  5. Click the FTP Management Console check box and the FTP Server check box, and then click OK.

 But I did n't find any FTP Publishing Service node (step 4) after following the steps 1>2>3

Can anybody let me know how to setup FTP in IIS 7.0 or it is not possible in Windows Home vista???

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

IIS

Reading a TAB Delimited File Using .Net

by jajatibadu December 07, 2008 06:10
using System;
using System.IO;
namespace tabreader
{
/// <summary>

/// Summary description for Class1.

/// </summary>
class Class1
{
/// <summary>

/// The main entry point for the application.

/// </summary>

[STAThread]
static void Main(string[] args)
{
string readFile=@"C:\testfile.txt";
StreamReader filestream ;
filestream=File.OpenText(readFile);

string readcontents ;
readcontents = filestream.ReadLine();

string textdelimiter="\t";
string[] fields = null;
fields=readcontents.Split(textdelimiter.ToCharArray());

}
 
}
}   

Here I have binded the values in an Array.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

Asp.net

Deselect Radion button list (.Net)

by Admin September 07, 2008 06:48

In most fourm lots are seeking how to deselect a radio button list.Generally when a page loads no options are selected in radio button list(if no option are designed as select property=True). After that if we check an option, it is not possible to deselect that one. or you have to select another option to deselct that particular option.

Here is the solution to deselect the radiobutton list.
--------------------------------------------------------------
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>DESELECT RADIO Button list</title>
<script language="JavaScript" type="text/JavaScript">
<!--
function uncheckRadio() {
var choice = document.form1.RadioButtonList1;
for (i = 0; i < choice.length; i++) {
if ( choice[i].checked = true )
choice[i].checked = false;
}
}
//-->
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:RadioButtonList ID="RadioButtonList1" runat="server" ondblclick="uncheckRadio();">
<asp:ListItem>1</asp:ListItem>
<asp:ListItem>2</asp:ListItem>
<asp:ListItem>3</asp:ListItem>
<asp:ListItem>4</asp:ListItem>
</asp:RadioButtonList></div>
</form>
</body>
</html>

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags: ,

Asp.net

Google Chrome-New browser from Google

by jajatibadu August 07, 2008 06:04

The wait is over. Google Chrome islive.You can download google Chrome here.

It Automatically Imports all thebookmarks,forms, passwords and other settings of microsoft InternetExplorer like other browsers. There is also option to import thebookmarks or othersettings , if you are using other browsers. It willautomatically detect the list of browsers lnstalled in your system.This is the fastest browser in the world of internet. Google Chromehas its own download manager which downlaod speed is very high noneed to use any third party download manager .Surprisingly it loadspages in seconds. Google Chrome looks cool and very user friendly. Ichecked in windows task manager it(chrome.exe) takes 1/3rdmemory usage of memory usage of ieexplorer.exe. Also this browser issecured. It will warn if you visit some virus related website. Lets welcome google chrome together.

 

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

Google

A miracle happened with me

by jajatibadu March 07, 2008 06:03

I can't exactly remember the date. But I remember I was in class 9. That time we had a cow for our daily milk need.It was a holiday. I was at home.My mother asked me to feed the cow. I decided to feed the tree leaf. There was a tree just near to the rest room. Then I switched on my music system and climbed the tree. I started collecting tree leaf while listening the music.When I finished collecting leafs i tried to came down from tree. There I found two electric Service line touching my body. One touching my back another at my neck(The same time i was listening music). Very quickly I sat down and started thinking if I am alive or not? is it a dream??. But it was n't a dream and I was alive.

      Do n't know how this miracle happened though there was current in the service line and I was listening to the music. Thank you GOD for giving me back my life.

Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

Tags:

General

Powered by BlogEngine.NET 1.4.5.0
Theme by Mads Kristensen | Modified by Mooglegiant

RecentPosts

News Update

Google AJAX Search API Sample