70503考试指南及题库分享.docx

上传人:b****4 文档编号:4913118 上传时间:2022-12-11 格式:DOCX 页数:16 大小:17.14KB
下载 相关 举报
70503考试指南及题库分享.docx_第1页
第1页 / 共16页
70503考试指南及题库分享.docx_第2页
第2页 / 共16页
70503考试指南及题库分享.docx_第3页
第3页 / 共16页
70503考试指南及题库分享.docx_第4页
第4页 / 共16页
70503考试指南及题库分享.docx_第5页
第5页 / 共16页
点击查看更多>>
下载资源
资源描述

70503考试指南及题库分享.docx

《70503考试指南及题库分享.docx》由会员分享,可在线阅读,更多相关《70503考试指南及题库分享.docx(16页珍藏版)》请在冰豆网上搜索。

70503考试指南及题库分享.docx

70503考试指南及题库分享

70-503考试资料

TS:

Microsoft.NETFramework3.5-WindowsCommunicationFoundation

科目编号:

70-503

科目名称:

TS:

Microsoft.NETFramework3.5-WindowsCommunicationFoundation

语言(s):

英语,法语,德语,日语,西班牙语,中文(简体)

考生:

开发人员

技术:

MicrosoftVisualStudio2008

类型:

监考考试

相关分类:

TS

Testinside题库价格:

¥280.00

70-503考试是Microsoft公司的TS:

Microsoft.NETFramework3.5-WindowsCommunicationFoundation认证考试官方代号,TS:

Microsoft.NETFramework3.5-WindowsCommunicationFoundation认证作为全球IT领域专家Microsoft热门认证之一,是许多大中IT企业选择人才标准的必备条件。

70-503考试概述:

AboutthisExam

ThisMicrosoftCertifiedTechnologySpecialist(TS)exam,Exam70-503:

TS:

Microsoft.NETFramework3.5,WindowsCommunicationFoundationApplicationDevelopment,becameavailableinApril2008.

QuestionsthatcontaincodewillbepresentedineitherVBorC#.Candidatescanselectoneoftheselanguageswhentheystarttheexam.

AudienceProfile

CandidatesforExam70-503:

TS:

Microsoft.NETFramework3.5–WindowsCommunicationFoundationApplicationDevelopmentworkonateaminadevelopmentenvironmentthatusesMicrosoftVisualStudio2008andMicrosoft.NETFramework3.5tobuilddistributedapplications.CandidatesshouldhaveatleastoneyearofexperiencedevelopingdistributedapplicationsbyusingtechnologiessuchasXMLWebservices,.NETRemoting,andWindowsenterpriseservices.Additionally,candidatesshouldbeabletodemonstratethefollowingbyusingWindowsCommunicationFoundation(WCF).

AsolidunderstandingofWCFinthecontextoftheMicrosoft.NETFramework3.5solutionstack

Experiencecreatingservicemodelelements

ExperienceusingWCFtosupportWebservicesspecificationsstandards

ExperienceintegratingWCFserviceswithWindowsenterpriseservicessuchasMessageQueuing(MSMQ)andCOM+

ExperienceconfiguringanddeployingWCFapplications

CreditTowardCertification

Exam70-503:

TS:

Microsoft.NETFramework3.5-WindowsCommunicationFoundation:

countsascredittowardthefollowingcertification(s):

MicrosoftCertifiedTechnologySpecialist(MCTS):

.NETFramework3.5,WindowsCommunicationFoundationApplications

MicrosoftCertifiedProfessionalDeveloper(MCPD):

EnterpriseApplicationDeveloper3.5

70-503考试大纲:

SkillsBeingMeasured

Thisexammeasuresyourabilitytoaccomplishthetechnicaltaskslistedbelow.

Thepercentagesindicatetherelativeweightofeachmajortopicareaontheexam.

CreatingServices(19percent)

DefineServicecontracts.

DefineDatacontracts.

DefineOperationcontracts.

DefineMessagecontracts.

Processgenericmessages.

ExposingandDeployingServices(23percent)

Createandconfigureserviceendpoints.

Manageconsistencybetweenlifecycle,sessions,concurrency,andbindings.

Hostaserviceinamanagedapplication.

HostaserviceonaWebserver.

Createcustombehaviors.

InstrumentingandAdministeringServices(11percent)

Implementend-to-endservicetracing.

Monitorservicehealth.

Logmessages.

Dynamicallyconfiguretheservicebyusingtheservicemodel.

Implementinspectors.

ConsumingServices(16percent)

Createaserviceproxy.

Configuretheclientendpoint.

Callaservicebyusingaserviceproxy.

Handleexceptionsonclients.

Consumenon-WCFservices.

SecuringServices(16percent)

Implementtransport-levelsecurity.

Implementmessage-levelsecurity.

Authenticateclients.

Authorizeclients.

Impersonateclients.

ManagingtheServiceLifeCycle(15percent)

Manageinstances.

Managesessions.

Managetransactions.

Manageconcurrency.

Manageconsistencybetweeninstances,sessions,transactions,andconcurrency.

70-503考试题库:

Exam:

Microsoft70-503

Title:

TS:

Microsoft.NETFramework3.5CWindowsCommunicationFoundation

1.YouarecreatingaWindowsCommunicationFoundationservicebyusingMicrosoft.NETFramework3.5.Youhave

successfullydefinedaservicecontractnamedIManageOrders.

Youwritethefollowingcodesegment.

PublicClassOrderImpl

ImplementsIManageOrders

PublicSubMarkOrderClosed(ByValorderIdAsInteger)_

ImplementsIManageOrders.MarkOrderClosed

Try

...

CatchexAsSqlException

ThrowNewFaultException(OfDataFault)(_

NewDataFault())

EndTry

EndSub

EndClass

_

PublicClassDataFault

EndClass

YouneedtocreateafaultcontractfortheMarkOrderClosedmethodontheIManageOrdersservicecontract.

Whichcodesegmentshouldyouadd?

A.

B.

C.

D.

Answer:

A

2.YouarecreatingaWindowsCommunicationFoundationservicebyusingMicrosoft.NETFramework3.5.

Youneedtoensurethattheservicecansenddatainthefollowingformattotheclientapplications.

Whichcodesegmentshouldyouuse?

A.[Serializable]

publicclassAccount

{

[XmlAttribute]

publicstringId;

[XmlElement]

publicstringName;

[XmlAttribute]

publicstringCurrency;

[XmlElement]

publicdoubleBalance;

}

B.[DataContract]

publicclassAccount

{

[DataMember(Order=0)]

publicstringId;

[DataMember(Order=1)]

publicstringName;

[DataMember(Order=0)]

publicdoubleBalance;

[DataMember(Order=1)]

publicstringCurrency;

}

C.[Serializable]

publicclassAccount

{

[XmlAttribute]

publicstringId;

publicstringName;

[XmlElement("Balance")]

publicBalanceValBalance;

}

[Serializable]

publicclassBalanceVal

{

[XmlText]

publicdoubleAmount;

[XmlAttribute]

publicstringCurrency;

}

D.[DataContract]

publicclassAccount

{

[DataMember(Order=0)]

publicstringId;

[DataMember(Order=1)]

publicstringName;

[DataMember(Name="Balance",Order=2)]

publicBalanceValBalance;

}

[DataContract]

publicstructBalanceVal

{

[DataMember(Order=0)]

publicdoubleBalance;

[DataMember(Order=1)]

publicstringCurrency;

}

Answer:

C

3.YouarecreatingaWindowsCommunicationFoundationservicebyusingMicrosoft.NETFramework3.5.The

servicewillcontainanenumerationnamedOrderState.

TheOrderStateenumerationwillcontainthefollowingfourvalues:

Processing

Cancelled

Confirmed

Closed

TheclientapplicationmustbeabletosetthestateofanOrderentitytoonlythefollowingtwovalues:

Cancelled

Closed

YouneedtocreatethedatacontractforOrderState.

Whichcodesegmentshouldyouuse?

A._

PublicEnumOrderState

Processing=1

_

Cancelled=2

_

Confirmed=3

Closed=4

EndEnum

B._

PublicEnumOrderState

Processing=1

_

Cancelled=2

Confirmed=3

_

Closed=4

EndEnum

C._

PublicEnumOrderState

="False")>_

Processing=1

="True")>_

Cancelled=2

="True")>_

Confirmed=3

="False")>_

Closed=4

EndEnum

D._

PublicEnumOrderState

_

Processing=1

=True)>_

Cancelled=2

_

Confirmed=3

=True)>_

Closed=4

EndEnum

Answer:

B

最新活动:

Testinside考题大师权威Microsoft、Cisco、SUN、CIW、IBM、Nortel、HP、Oracle等各大IT认证题库,最新考题售价仅180元起。

(时间有限!

机会不容错过!

需要的朋友一定要抓住这个机会!

下面开始我们的正文!

70-503考试资料

TS:

Microsoft.NETFramework3.5-WindowsCommunicationFoundation

科目编号:

70-503

科目名称:

TS:

Microsoft.NETFramework3.5-WindowsCommunicationFoundation

语言(s):

   英语,法语,德语,日语,西班牙语,中文(简体)

考生:

   开发人员

技术:

   MicrosoftVisualStudio2008

类型:

   监考考试

相关分类:

TS

Testinside题库价格:

¥280.00

70-503考试是Microsoft公司的TS:

Microsoft.NETFramework3.5-WindowsCommunicationFoundation认证考试官方代号,TS:

Microsoft.NETFramework3.5-WindowsCommunicationFoundation认证作为全球IT领域专家Microsoft热门认证之一,是许多大中IT企业选择人才标准的必备条件。

70-503考试概述:

AboutthisExam

ThisMicrosoftCertifiedTechnologySpecialist(TS)exam,Exam70-503:

TS:

Microsoft.NETFramework3.5,WindowsCommunicationFoundationApplicationDevelopment,becameavailableinApril2008.

QuestionsthatcontaincodewillbepresentedineitherVBorC#. Candidatescanselectoneoftheselanguageswhentheystarttheexam.

AudienceProfile

CandidatesforExam70-503:

TS:

Microsoft.NETFramework3.5–WindowsCommunicationFoundationApplicationDevelopmentworkonateaminadevelopmentenvironmentthatusesMicrosoftVisualStudio2008andMicrosoft.NETFramework3.5tobuilddistributedapplications.CandidatesshouldhaveatleastoneyearofexperiencedevelopingdistributedapplicationsbyusingtechnologiessuchasXMLWebservices,.NETRemoting,andWindowsenterpriseservices.Additionally,candidatesshouldbeabletodemonstratethefollowingbyusingWindowsCommunicationFoundation(WCF).

AsolidunderstandingofWCFinthecontextoftheMicrosoft.NETFramework3.5solutionstack

Experiencecreatingservicemodelelements

ExperienceusingWCFtosupportWebservicesspecificationsstandards

ExperienceintegratingWCFserviceswithWindowsenterpriseservicessuchasMessageQueuing(MSMQ)andCOM+

ExperienceconfiguringanddeployingWCFapplications

CreditTowardCertification

Exam70-503:

TS:

Microsoft.NETFramework3.5-WindowsCommunicationFoundation:

countsascredittowardthefollowingcertification(s):

MicrosoftCertifiedTechnologySpecialist(MCTS):

.NETFramework3.5,WindowsCommunicationFoundationApplications

MicrosoftCertifiedProfessionalDeveloper(MCPD):

EnterpriseApplicationDeveloper3.5

70-503考试大纲:

SkillsBeingMeasured

Thisexammeasuresyourabilitytoaccomplishthetechnicaltaskslistedbelow.

Thepercentagesindicatetherelativeweightofeachmajortopicareaontheexam.

CreatingServices(19percent)

DefineServicecontracts.

DefineDatacontracts.

DefineOperationcontracts.

DefineMessagecontracts.

Processgenericmessages

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 求职职场 > 简历

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1