Threading Types ?
Answers were Sorted based on User's Feedback
Answer / nalla
Theading types in Microsoft world are
STA -Single threaded apartment model- Synchronized
automatically- E.g Forms in windows(Win forms) are STA
application.
MTA -Multithreaded apartment model -Here synchronization is
required to acess shared resources. Use Mutex or Monitors
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / vijay
we can use threads in our program in two ways
1) extending java.lang.Thread
2) implimenting java.lang.Runnable
(in java)
| Is This Answer Correct ? | 4 Yes | 2 No |
What is a formatter in .net remoting?
Will clr handle unmanaged code or not?
What are the security measures exist for .net remoting in system.runtime.remoting?
Explain marshalling and its types in .net remoting
Explain the difference between the registerwellknownservicetype(), registerwellknownclienttype(), registeractivatedservicetype() and registeractivatedclienttype() in .net?
Threading Types ?
When should we choose .net remoting over .net web services?
When do we use delegates in your remoting applications?
How can objects in two diff. App Doimains communicate with each other ?
What is unmanaged code?
How can you tell the application to look for assemblies at the locations other than its own install?
Which Namespaces is used to achieve the Remoting?