Wednesday, September 18, 2013

Immigration FAQs


1) What is my Visa Number?
A) It is the Red number in Visa page in passport.

2) What is USCIS 'A' number?
A) It is the number found in “Beneficiary” section seen on my previous I-140 approval with Microsoft. 
 
3) How to find your I-94 Number?
A) The I-94 page is no longer being stamped at the port of entry when you enter the US. You can retrieve your I94 number from the following link: https://i94.cbp.dhs.gov/I94/request.html
 
4) What is the link to track my USCIS case status?
A) https://egov.uscis.gov/cris/Dashboard/CaseStatus.do

5) What are the details to be mentioned in the experience letters to be provided by previous employers for Green Card application?
A) The employment letter should contain your exact dates of prior employment, job duties, job title, employer address, type of business and number of hours worked.  
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6962084931129525"
     crossorigin="anonymous"></script>

Monday, September 16, 2013

Windows Communication Foundation - Different ways of generating classes from wsdl


1)      Command prompt using svcutil.exe
Example1: Generating from wsdl
c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC>svcutil <pathtowsdl>\Sample.wsdl /out:<outputpath>\Sample.cs /config:<outputpath>\Sample.config /targetClientVersion:Version30 
Example2: Generating from xsd
c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC>svcutil svcutil <pathtowsdl>\Sample.xsd /out:<outputpath>\Sample.cs

<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-6962084931129525"
     crossorigin="anonymous"></script>

2)      Adding a service reference to the solution in Visual Studio.

3)      From VisualStudio-> Tools -> External Tools . (Configured svcutil.exe to the external tools. )
Command: C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\SvcUtil.exe
Arguments: /language:C# /out:IEventNotification.cs $(ItemPath)