Go Back   Velocity Reviews > Newsgroups > MCSD
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

MCSD - Sample Q&A 70-310: is it correct?

 
Thread Tools Search this Thread
Old 09-15-2003, 02:39 AM   #1
Default Sample Q&A 70-310: is it correct?


Q: The requirements that you have been given are that it needs to support
asynchronous methods and be able to be accessed by non-Windows clients.

Which type of .NET applicaton should you develop for the rewrite?

XML Web Service or .NET Remoting?


A: The correct answer is: ".NET Remoting."

In order for the application to be accessible by non-Windows clients then
..NET Remoting is the best choice from the options given.

http://msdn.microsoft.com/library/de...ngoverview.asp


I thought "non-Windows clients" was a dead giveaway for Web Service. Any
thoughts?

Thanks,
Greg




Greg Burns
  Reply With Quote
Old 09-15-2003, 02:29 PM   #2
General Protection Fault
 
Posts: n/a
Default Re: Sample Q&A 70-310: is it correct?
For the 70-300 Architecture exam, the answer would be XML Web Service. I
would hope MS is consistent here.

"Greg Burns" <> wrote in message
news:#...
> Q: The requirements that you have been given are that it needs to support
> asynchronous methods and be able to be accessed by non-Windows clients.
>
> Which type of .NET applicaton should you develop for the rewrite?
>
> XML Web Service or .NET Remoting?
>
>
> A: The correct answer is: ".NET Remoting."
>
> In order for the application to be accessible by non-Windows clients then
> .NET Remoting is the best choice from the options given.
>
>

http://msdn.microsoft.com/library/de...us/cpguide/htm
l/cpconnetremotingoverview.asp
>
>
> I thought "non-Windows clients" was a dead giveaway for Web Service. Any
> thoughts?
>
> Thanks,
> Greg
>
>





General Protection Fault
  Reply With Quote
Old 09-16-2003, 08:55 AM   #3
Maria
 
Posts: n/a
Default Re: Sample Q&A 70-310: is it correct?
>Q: The requirements that you have been given are that it
needs to support asynchronous methods and be able to be
accessed by non-Windows clients.
Which type of .NET applicaton should you develop for the
rewrite?
XML Web Service or .NET Remoting?
-----------------

The question does not rule out remoting; you need more
information to make the best choice. For example if you
need peer-to-peer conversations and stateful objects then
maybe remoting (using the SOAP formatter) would be
the 'best' answer after all.

http://msdn.microsoft.com/library/default.asp?
url=/library/en-us/dndotnet/html/dotnetremotearch.asp

http://www.ondotnet.com/pub/a/dotnet...07/webservices
..html

Maria

>-----Original Message-----
>For the 70-300 Architecture exam, the answer would be XML

Web Service. I
>would hope MS is consistent here.
>
>"Greg Burns" <> wrote in message
>news:#...
>> Q: The requirements that you have been given are that

it needs to support
>> asynchronous methods and be able to be accessed by non-

Windows clients.
>>
>> Which type of .NET applicaton should you develop for

the rewrite?
>>
>> XML Web Service or .NET Remoting?
>>
>>
>> A: The correct answer is: ".NET Remoting."
>>
>> In order for the application to be accessible by non-

Windows clients then
>> .NET Remoting is the best choice from the options given.
>>
>>

>http://msdn.microsoft.com/library/default.asp?

url=/library/en-us/cpguide/htm
>l/cpconnetremotingoverview.asp
>>
>>
>> I thought "non-Windows clients" was a dead giveaway for

Web Service. Any
>> thoughts?
>>
>> Thanks,
>> Greg
>>
>>

>
>
>.
>



Maria
  Reply With Quote
Old 09-16-2003, 10:49 AM   #4
Kline Sphere
 
Posts: n/a
Default Re: Sample Q&A 70-310: is it correct?
>The question does not rule out remoting; you need more
>information to make the best choice.


The information was given, 'accessed by non-Windows clients', thus
ruling out remoting.


Kline Sphere
  Reply With Quote
Old 09-16-2003, 04:56 PM   #5
Maria
 
Posts: n/a
Default Re: Sample Q&A 70-310: is it correct?
>The information was given, 'accessed by non-Windows
>clients', thus ruling out remoting.


I agree that you would normally only consider Remoting if
both endpoints are Windows. But I am not yet convinced
that a non-Windows client automatically rules out remoting.
Here is an example that suggests to me that a Java client
is possible - and yes I noticed that they use the Java
equivalent of a .NET object:

[JP Morgan deploye .NET remoting]
www.intrinsyc.com/pdfs/news/JPMttwFeb10.pdf

Going back to Greg Burns' question, yes I do accept that a
Web service would probably be the 'correct' answer.



Maria
  Reply With Quote
Old 09-16-2003, 06:14 PM   #6
Kline Sphere
 
Posts: n/a
Default Re: Sample Q&A 70-310: is it correct?
>But I am not yet convinced
>that a non-Windows client automatically rules out remoting.
>Here is an example that suggests to me that a Java client
>is possible


I can't see microsoft 'promoting' Java, can you?


Kline Sphere
  Reply With Quote
Old 09-16-2003, 09:12 PM   #7
Davin Mickelson
 
Posts: n/a
Default Re: Sample Q&A 70-310: is it correct?
Maria, the article you pointed out
http://msdn.microsoft.com/library/de...remotearch.asp
stated this:
Interoperability
==========
A recurring Microsoft message is that if you need interoperability between
heterogeneous systems, then a Web services approach that uses open standards
(SOAP, XML, HTTP) is the right choice, and the use of .NET Remoting is never
an interop solution. For homogeneous systems where all participants are CLR
managed, .NET Remoting may be the right choice. This is a pretty broad
brush, but a useful distinction to make. Clients of .NET remoted objects
need to be .NET clients. If your functionality has to be addressable over
the Web (by Web, here I mean Internet) by loosely coupled SOAP clients (for
example, a Unix process), then Web services are the correct choice. The
intranet, of course, is not subject to the same limitations: All clients may
be .NET clients and in this configuration .NET Remoting is not precluded.
Similarly, for an environment where the middle (app) tier is behind a
firewall and communicates with the Web tier directly, .NET Remoting may
still be an option.

Now, there is the Linux version of .NET being developed, but Microsoft
doesn't want us to acknowledge that.

..NET remoting is MS's answer to the nastiness of DCOM. I believe it was
developed with intranets and security (port 80) in mind. I also believe that
web services were developed for interoperability in mind. I can write a
Windows/Linux/Unix/MF client application that will make a call to a web
service running on a Windows/Linux/Unix/MF server. EDI is too goofy to use
so we now use XML.

True, there are several articles on how to host it on IIS, but you still
must communicate with .NET remoting channels (TCP or HTTP). You need to .NET
libraries to use Remoting.

Just some thoughts.
Davin Mickelson

"Maria" <> wrote in message
news:0f0a01c37c6b$1ea09090$...
> >The information was given, 'accessed by non-Windows
> >clients', thus ruling out remoting.

>
> I agree that you would normally only consider Remoting if
> both endpoints are Windows. But I am not yet convinced
> that a non-Windows client automatically rules out remoting.
> Here is an example that suggests to me that a Java client
> is possible - and yes I noticed that they use the Java
> equivalent of a .NET object:
>
> [JP Morgan deploye .NET remoting]
> www.intrinsyc.com/pdfs/news/JPMttwFeb10.pdf
>
> Going back to Greg Burns' question, yes I do accept that a
> Web service would probably be the 'correct' answer.
>





Davin Mickelson
  Reply With Quote
Old 09-16-2003, 09:38 PM   #8
Greg Burns
 
Posts: n/a
Default Re: Sample Q&A 70-310: is it correct?
If anyone is interested, that question was from the PrepLogic exam that came
with the ExamCram2 book for 70-310.

The book is very good (I haven't really noticed any errors). The included
PrepLogic disc contains 60 questions (not the same Qs as in the text). I
swear I had an issue with EVERY SINGLE ONE!

Taking the test tomorrow. Maybe by then I can forget everything their
"prep" software taught me. ;^)

Greg


"Kline Sphere" <T> wrote in message
news:...
> >But I am not yet convinced
> >that a non-Windows client automatically rules out remoting.
> >Here is an example that suggests to me that a Java client
> >is possible

>
> I can't see microsoft 'promoting' Java, can you?





Greg Burns
  Reply With Quote
Old 09-16-2003, 10:05 PM   #9
Maria
 
Posts: n/a
Default Re: Sample Q&A 70-310: is it correct?
[waving a white flag] - You are right...
I had read the article, but was trying to make the point
that cross-platform functionality is not ruled out in
principle.
It *is* ruled out in practice and of course it is a no-no
on the exams.

>Going back to Greg Burns' question, yes I do accept
>that a Web service would probably be the 'correct'
>answer.


Did you notice I had already capitulated ;o) ?

Maria



Maria
  Reply With Quote
Old 09-16-2003, 10:16 PM   #10
Davin Mickelson
 
Posts: n/a
Default Re: Sample Q&A 70-310: is it correct?
Whoops...

BTW - Cool word!
I had to look that one m-w.com

Always increasing the vocabulary...
Davin

"Maria" <> wrote in message
news:0cc401c37c96$3c722cc0$...
> [waving a white flag] - You are right...
> I had read the article, but was trying to make the point
> that cross-platform functionality is not ruled out in
> principle.
> It *is* ruled out in practice and of course it is a no-no
> on the exams.
>
> >Going back to Greg Burns' question, yes I do accept
> >that a Web service would probably be the 'correct'
> >answer.

>
> Did you notice I had already capitulated ;o) ?
>
> Maria
>





Davin Mickelson
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
lastest A+ certification sample exam? saturnlee@yahoo.com A+ Certification 3 04-04-2007 05:03 PM
3 times correct sleeve wrong DVD -oo0(GoldTrader)0oo- DVD Video 3 03-05-2007 04:22 AM
The 10 least politically correct movies ever Fred Goodwin, CMA DVD Video 109 08-10-2006 09:23 PM
Re: Free sample film Video Flyer DVD Video 0 02-27-2004 05:24 PM
More American Graffiti: Aspect Ratios Correct. Scot Gardner DVD Video 0 09-03-2003 05:09 AM




SEO by vBSEO 3.3.2 ©2009, Crawlability, Inc.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46