simple tutorial for DCOM [closed] - com

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Can someone suggest me beginners learning resources for DCOM technology using vc++
Those with Sample codes would be very helpful.
Thanks

Look at codeproject.com "DCOM D-Mystified: A DCOM Tutorial" - seven articles & sources for beginers

It depends quite a bit on your exp level with COM. Moving to DCOM is really just a matter of creating an EXE-server, registering it on the remote machine and instantiating it via CoCreateInstanceEx.
You can create simple servers using the ATL app-wizard in VS. MSDN has a number of samples you can d/l.
I realize this isn't a tutorial but you haven't really stated what you know now.

Related

tool to help understand project? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I have big project (not mine) in java EE , at first when I looked at it there were many many classes, when I try to understand a method of class there is another class which calls method in it and again and again, It's really hard to understand the code (there is no documentation) is there any tool to help me ?
Unfortunately there aren't really any tools to help with this, the most that you can hope is that someone created a UML Doc for the code you're viewing. However, as this is not the case, the best place to start is at the main method and slowly traverse the setup. I find that it helps to keep notes and diagrams, describing (functionally) what things do and in what order they happen.

Visual Basic (for Applications) Learning Resources [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
As resident techie I have been charged with teaching some colleagues VB specifically for use with Excel.
My main duties involve MySQL and Objective-C and haven't touched VB since University. While I'm not worried about the prospect of learning VB (how hard can it be, right?). I have no clue on where to point my "students" to start.
Any good books? Online tutorials? I will of-course be sending them to SO.
I like VBA Developer's Handbook by Getz and Gilbert for a book. On the internets, I always wind up at ozgrid.com and cpearson.com.
About.com often has good stuff.
After that maybe some Free VBA Tutorials
Google search came up with - http://www.vbtutor.net/VBA/vba_tutorial.html this one is very basic and probably you will just have to breeze thru it and then probably move on to my personal favorite www.ozgrid.com

WCF Reference Sheet [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Can i get WCF Cheat Sheet or (Ref Card) any where?
Didn't find any specific crib cards around when I looked a few months back, but the following post by Farooq Kaiser was useful for me!!
http://www.fairnet.com/post/2009/09/14/The-ABC-of-WCF.aspx
I also found Kirk Evans blog entry had some useful links when I started learning about WCF (its a little old but might be a good starting point)
http://blogs.msdn.com/kaevans/archive/2008/04/23/what-you-need-to-know-wcf-wcf-ado-net-syncservices-and-clickonce.aspx
There is one recent refcard from Dzone
http://refcardz.dzone.com/
You would need to register though
hope this helps
Details about Bindings are presented in tabular form here:
http://msdn.microsoft.com/en-us/library/ms731092.aspx

Acessing DLLs in VB.NET [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I'm not that good with VB.NET yet and I'd like to learn about API's and external DLL files.
Perhaps someone can post some sample code with explanation/comments or point me to some tutorials.
This should get you started:
http://www.codeproject.com/KB/dotnet/PInvoke.aspx
What kind of DLLs? For native DLLs, you have to P/Invoke (assuming the entry is public and non-decorated). For managed, just add a reference and use it.

Are there any alternitives to the WCFTestClient [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Are there any open source (or not) alternatives to the WCFTestClient?
The WCFTestClient has a lot of limitations that make it hard to work with (for example it does not support Entity Framework objects).
So I am looking to see if there is anything else out there that may be better (or even different).
WCF Storm or the open-source Storm
I prefer to create actual unit tests to test servers I write. The idea is that they can be rerun frequently.
You can also try soapUI.