在实现Web服务的.asmx文件中将方法暴露给浏览器的语句是()。A、WebMethod()B、Function()C、Method()D、Main()
在实现Web服务的.asmx文件中将方法暴露给浏览器的语句是()。
- A、WebMethod()
- B、Function()
- C、Method()
- D、Main()
相关考题:
你是一个生产自行车的公司的数据库开发员。你要创建一个Web应用程序,从一个名为AdventureWorks的数据库中检索数据。此Web应用程序连接到一个SQLServer2005的数据库服务器。你的应用程序的功能之一就是要允许轮班督导能够看到当前这一班生产了多少自行车。用户Tom以dbo方案创建了一个名为usp_GetPersonData的存储过程。你正在创建一个HTTP端点去发布一个名为PersonData的web方法,此web方法允许客户应用程序访问此存储过程。你使用以下语句创建端点:你需要指定正确的WEBMETHOD和NAME以创建端点,要使用哪个指令?()A.WEBMETHOD’http://www.adventure-works.com/PersonData’NAME=AdventureWorks.dbo.usp_GetPersonData’B.WEBMETHOD’PersonData’NAME=’AdventureWorks.dbo.usp_GetPersonData’C.WEBMETHOD’PersonData’NAME=’AdventureWorks.Tom.usp_GetPersonData’D.WEBMETHOD’AdventureWorks.PersonData’NAME=’AdventureWorks.Tom.usp_GetPersonData’
WWW服务中采用了()工作模式。信息资源以()的形式存储在Web服务器中,查询时通过客户浏览器向Web服务器发出请求,Web服务器返回所指定的网页信息、浏览器对其进行(),最终将画面()给用户。
设有程序如下: abstract class absclass { abstract void method1(); } class conclass extends absclass { public void method1() { System.out.println("子类");} } public class mainclass { public static void main(String args[]) { absclass ac1=new absclass(); //语句1 absclass ac2=new conclass(); //语句2 ac2.method1(); //语句3 } } 则main()方法中的第一条语句(即语句1)可以顺利通过编译。()此题为判断题(对,错)。
A developer wants too use EL to invoke a function using S{my:bloof(“foof”)}. Which is always true?()A、 The method invoked by this function must be statie.B、 The function class must implement the Function interface.C、 The expression is NOT a valid EL expression for invoking a function.D、 The function must be declared in a web.xml file using the element.E、 The function class must have a method with the signature:Void bloof (java.lang.Strings)
Given an EL function declared with:11. 12.spin 13.com.example.Spinner 14. 15.java.lang.String spinIt() 16. 17. Which two are true?()A、The function method must have the signature: public String spin().B、The method must be mapped to the logical name "spin" in the web.xml file.C、The function method must have the signature: public String spinIt().D、The function method must have the signature public static String spin().E、The function method must have the signature: public static String spinIt().F、The function class must be named Spinner, and must be in the package com.example.
单选题A developer wants too use EL to invoke a function using S{my:bloof(“foof”)}. Which is always true?()A The method invoked by this function must be statie.B The function class must implement the Function interface.C The expression is NOT a valid EL expression for invoking a function.D The function must be declared in a web.xml file using the element.E The function class must have a method with the signature:Void bloof (java.lang.Strings)
多选题Given an EL function declared with:11. 12.spin 13.com.example.Spinner 14. 15.java.lang.String spinIt() 16. 17. Which two are true?()AThe function method must have the signature: public String spin().BThe method must be mapped to the logical name spin in the web.xml file.CThe function method must have the signature: public String spinIt().DThe function method must have the signature public static String spin().EThe function method must have the signature: public static String spinIt().FThe function class must be named Spinner, and must be in the package com.example.
多选题你在为一家公司做ASP.NET应用程序。客户将用这个应用程序在线提交索赔表格。你计划在多个服务器上部署应用程序,通过保存会话状态信息来优化性能。为了达到这个目的,下面哪两个方法可行?()A修改Web.config文件支持StateServer模式B修改Web.config文件支持SQLServer模式C修改Web.config文件支持InProc 模式D在Global.asax文件中的Session_Start程序中,设置WebMethod特性的EnableSession属性为trueE在Global.asax文件中的Session_Start程序中,设置WebMethod特性的Description属性为sessionState
单选题在实现Web服务的.asmx文件中将方法暴露给浏览器的语句是()。AWebMethod()BFunction()CMethod()DMain()