Wednesday, September 5, 2012
Tips To Manage Your Boss
Tuesday, May 1, 2012
MicroSoft's Bugs (All Bugs are Very Nice)
TRY this....
MAGIC #1
...
Found that nobody can create a FOLDER anywhere on the Computer which can be named as "CON". This is something funny and inexplicable? At Microsoft the whole Team, couldn't answer why this happened! TRY IT NOW, IT WILL NOT CREATE A "CON" FOLDER
MAGIC #2
For those of you using Windows, do the following:
1.) Open an empty notepad file
2.) Type "Bush hid the facts" (without the quotes)
3.) Save it as whatever you want.
4.) Close it, and re-open it.
Noticed the weird bug? No one can explain!
MAGIC #3
Again this is something funny and can't be explained?
At Microsoft the whole Team, including Bill Gates, couldn't answer why this happened!
It was discovered by a Brazilian. Try it out yourself?
Open Microsoft Word and type
=rand (200, 99)
And then press ENTER And see the magic?..!
Magic #4
Did you know that a flight number from one of the planes that hit one of the two WTC towers on 9/11 was Q33N. In Notepad / WordPad or MS Word, type that flight number i.e Q33N. Increase the font size to 72. Change the font to Wingdings. ..... u will be amazed by the findings!!!See More
Thanks to Anu Chandra Bose
Tuesday, January 31, 2012
How to Create Web Service based From .XSD File
Below are the few steps for the same ,so you can easily create web service from .xsd file.
1) Put your .XSD file on hard Disk (either C /D/E).
2) Then Open command prompt of Visual Studio 2010. (Refer Below Image)
3 ) Now type below command in this
xsd.exe -c -l:c# E:\WebServiceProject\YourXSDFile.xsd
4) This will generate Proxy Class for you and It also give the location information of this class (it ends with .CS)
5) Then create Web Site with app Folder and then put this .CS (ProxyFile) file in this
And also create one Service.Cs
7 Make sure both have same name space .
8) Now create public class in service.cs and create web method under this
Example
[WebMethod]
public bool message([System.Xml.Serialization.XmlElementAttribute("staffed-call-intake-form-query")] staffedcallintakeformquery LeadmessagePayloadConsumerintakeformIntakeform)
9 ) Now implement your business logic in service.cs
10) Create Service.asmx and put the below code.
<%@ WebService Language="C#" CodeBehind="SFDCProxy.asmx.cs" Class="Classified.ClassifiedProxy" %>
and your web service is ready.
If you need detail code then email me to viralpala@gmail.com .
Your feedback always appreciated