There's something out there in life that will delight and amaze you.
Get up, get moving, and go find out what it is. - (Ralph Marston)

Wednesday, June 14, 2006


" What we are today comes from our thoughts of yesterday, and our present thoughts build our life of tomorrow:
Our life is the creation of our mind . . . "
- Lord Buddha -

Monday, June 12, 2006

June11Th2006...In-restrospect

Among certain capabilities and habits of some people certain are valuable while others are useless. ...So thought to open up my mind and see some positive points only. These are few things which pin in my mind so thought to make a note on that, on a great friend of mine. And as per my view these could be the key points for his educational and career success.

Writing them with heart felt gratitude…


HELP
Teaching what you know … and helping others to be successful in their career and education…and be happy for another’s success…


DETERMINTION
Over comes tiredness… never ever waste time… takes the maximum use of time. This is some thing I have asked often, “What you would do after work”. And has told me that he often listens to some music just to get over with the tiredness and start off work again, never ever lie in bed…. And never sleep other than the regular sleeping times… the determination of using the time effectively.


EFFORT
In achieving goals…The desire it self of achieving some thing is not enough at all, rather utmost effort is essential. Deep motivation...

Today I thought to add up these points in my life since it will place in value to mine as well. So
thank you dear friend...

Tuesday, June 06, 2006

Creating a proxy class using wsdl.exe tool.

Why do we need to create a proxy class if we can add the web service as a reference? Good question, well… the answer is simple; because we could write web services not only in .NET languages; but others as well. So in any case where we are given only the WSDL document as to work with the web service client here is what we need to do.

We need to create a proxy class in order to create objects from it and expose the methods available. As to do this task, .NET Framework gives the WSDL.EXE tool, you may easily find it if you do a simple search for wsdl.exe in your machine.

Following is the syntax to generate the proxy class.

Go to Visual Studio command prompt.

Wsdl /language:language /protocol:protocol /namespace:myNameSpace
/out:filename /username:username /password:password
/domain:domain url or path

Out of the parameters above the URL is the only mandatory parameter, and others are optional.

This command will create the proxy class in the current directory path you are; in the command prompt. What you need to do is add this created class into the web service client and then start using.
It’s as simple as it is.

There are some few tips we need to remember rather just getting a copy of the proxy class and use. Here is a brief glimpse to it.

When WSDL.EXE creates a proxy class, it converts array lists to object arrays. So there for we got to open the proxy class and do this change in the data types.

Further, in the proxy classes if we are using out parameters and in parameters we need to declare the in parameters first and then the out parameters.
Guess this gives a complete proxy class to work with the web service client.