Quiz Points 4 Rules Raise your hand if you know the question

Slides:



Advertisements
Similar presentations
Intesar G Ali IT DepartmentPalestinian Land Authority Web services Prepared by: Intesar Ali IT Department PLA August 2010.
Advertisements

31242/32549 Advanced Internet Programming Advanced Java Programming
Java Web Services Developer Pack v1.3 Zhongnan Shen 12/04/2003.
WSDL 2.0 Marlon Pierce Community Grids Lab Indiana University.
EGEE is a project funded by the European Union under contract IST WSDL Web Service Description Language 3 – 4 June
Enabling Grids for E-sciencE ISSGC 05 Web Service Tools NeSC Training Team.
EGEE is a project funded by the European Union under contract IST Technologies for Building Grids 15 th October
1 An Introduction to Web Services. 2 Outline What is a Web service Background Standards –XML & XML Namespaces, XML Schema,WSDL, SOAP Tools & APIs –DOM/SAX,JAX-RPC/JAX-M.
6/11/2015Page 1 Web Services-based Distributed System B. Ramamurthy.
1 Web Services Part II Based on Sun Java Tutorial at
And so on CGI programming Web Services Java Programs for the Web.
XML Web Services ASP.NET. Overview of Web Services (Page 1) Web Service – Part or all of a Web application that is publicly exposed so that other applications.
Web Service Implementation Maitreya, Kishore, Jeff.
1 Lecture 22 George Koutsogiannakis Summer 2011 CS441 CURRENT TOPICS IN PROGRAMMING LANGUAGES.
Web Services Mohamed Fahmy Dr. Sherif Aly Hussein.
1 3. Implementing Web Services 1.Create SOAP proxy interfaces and WSDL based service descriptions 2.Register/publish services 3.Stores service descriptions.
T Network Application Frameworks and XML Web Services and WSDL Sasu Tarkoma Based on slides by Pekka Nikander.
WSDL Kanda Runapongsa Dept. of Computer Engineering Khon Kaen University.
Grid Computing, B. Wilkinson, 20043b.1 Web Services Part II.
WSDL: Web Services Definition Language CS 795/895.
COP 4991 Component Based Software Development Lecture #4 Java Web Services Onyeka Ezenwoye.
Web Services (SOAP, WSDL, and UDDI)
Web Services Kanda Runapongsa Dept. of Computer Engineering Khon Kaen University.
1 WSDL Tutorial Heather Kreger (borrowed from Peter Brittenham) Web Services Architect IBM Emerging Technologies.
Enabling Grids for E-sciencE PPARC Summer School, May 2005 Web Service Tools Oliver Malham, National e-Science Centre, Edinburgh Based.
XML and Web Services (II/2546)
Web Services, SOAP, and WSDL CSCI Web Services for B2B communication.
What is a Web Service? Distributed Computing Model Distributed Computing Model  Loosely Coupled, Course Grained  Standard HTTP Transport  Sync/Async.
ASP.NET Web Services.  A unit of managed code installed under IIS that can be remotely invoked using HTTP.
Week Six : Writing Web Services Aims: Creating and Consuming student’s first Web Services Learning Outcomes: Familiarity with VS.NET for creating and consuming.
Chapter 7: Creating and Consuming XML Web Services Understanding XML Web Services Creating XML Web Services Deploying and Discovering XML Web Services.
Java Web Services CSCI 4300 Diagrams from the Sun Java Web Services Tutorial,
Intro to Web Services Dr. John P. Abraham UTPA. What are Web Services? Applications execute across multiple computers on a network.  The machine on which.
All Rights Reserved Copyright © 2007,Hitachi.Ltd. Experience of implementing NETCONF over SOAP ( draft-iijima-netconf-soap-implementation-02) Monday, July.
Advanced Java Session 10 New York University School of Continuing and Professional Studies.
1 G52IWS: Web Services Description Language (WSDL) Chris Greenhalgh
WP3 Implementing R-GMA grid services in GT3 Abdeslem Djaoui & WP3 Grid Services Task Force 7 th EU Datagrid meeting 26/09/2003
1 Introduction to Web Application Review. 2 Five Layers Architecture HTML, CSS, Java Script ASP.net User ’ s.dll, Nunit, Web Services ADO.net SQL Server,
SOAP, Web Service, WSDL Week 14 Web site:
Introduction to Web Services Srinath Vasireddy Support Professional Developer Support Microsoft Corporation.
The Java API for XML-Based Web Services. A Web Service example in Java SOAP-awareServlet (e.g. Apache Axis2) SOAP-awareServlet Any class processing the.
Java Web Services Orca Knowledge Center – Web Service key concepts.
Jim Fawcett CSE681 – SW Modeling & Analysis Spring 2005
© 2016, Mike Murach & Associates, Inc.
Web Programming Developing Web Applications including Servlets, and Web Services using NetBeans 6.5 with GlassFish.V3.
Chapter 5 Remote Procedure Call
WEB SERVICES.
WSDL JAX-RPC 17th October 2004
T Network Application Frameworks and XML Web Services and WSDL Sasu Tarkoma Based on slides by Pekka Nikander.
Writing simple Java Web Services using Eclipse
Web Services-JAX-RPC JAX-RPC enables a Web Service endpoint to be developed using either a Java Servlet or Enterprise JavaBeans (EJB) component model.
ASP.NET Web Forms and Web Services
NETCONF Configuration I/F Advertisement by WSDL and XSD
Implementing a service-oriented architecture using SOAP
Web Services Introduction
Chapter 9 Web Services: JAX-RPC, WSDL, XML Schema, and SOAP
Distributed System Using Java 2 Enterprise Edition (J2EE)
67th IETF meeting netconf WG
Introduction to Web Services
Introduction to Web Services
Understanding Web Services based on dev. java
WebServices Using JAX-RPC
Introduction to Web Services
Distributed System using Web Services
Quiz Points 2 Rules Raise your hand if you know the question
Chapter 42 Web Services.
Quiz Points 3 Rules Raise your hand if you know the question
Quiz Points 5 Rules Raise your hand if you know the question
Distributed System using Web Services
Enterprise Web Services
Presentation transcript:

Quiz Points 4 Rules Raise your hand if you know the question One student will be picked in random If the answer is wrong, another student will be given a chance If answer is given by several students at the same time, no one will get any quiz points!

Answer: WebMethod attribute Q 41 How do you communicate to ASP.NET what your web methods are? Answer: WebMethod attribute

Q 42 Are you required to inherit your web service class from the WebService class? Answer: No

Answer: Access to Session, etc. Q 43 Why does the WebService base class provide for you? Answer: Access to Session, etc.

Answer: Code behind page Q 44 What concept is used by Visual Studio in separating the asmx page from the actual code for the web service? Answer: Code behind page

Q 45 What tool is used to generate a client proxy from a WSDL? Answer: wsdl.exe

Q 46 What is the root element name of a wsdl document? Answer: definitions

Answer: types, message, portType, binding, service Q 47 What are the five children of the definitions root element? Answer: types, message, portType, binding, service

Q 48 Which element of wsdl communicates the URL of the web service to the client? Answer: service

Answer: SoapHttpClientProxy Q 49 What is the base class of the SOAP Http client’s proxy? Answer: SoapHttpClientProxy

Q 50 For each method of your web service, how many methods does the proxy have? Answer: 3

Answer: CookieContainer Q 51 What property should you sent for the client to participate in session? Answer: CookieContainer

Answer: wsdeploy, wscompile Q 51 What tools are used to generate the TIE and Stub in JWSDP? Answer: wsdeploy, wscompile

Q 52 What API is used to manage SOAP calls in JWSDP? Answer: JAX-RPC

Answer: jaxrpc-ri.xml, web.xml Q 53 What xml files do you write in order to deploy your Java Web Service? Answer: jaxrpc-ri.xml, web.xml

Answer: SOAP with Attachment API for Java, used by JAX-RPC and JAXM Q 54 What is SAAJ and where is it used? Answer: SOAP with Attachment API for Java, used by JAX-RPC and JAXM

Answer: javax.xml.rpc.ServiceLifeCycle Q 54 What interface your Java Web Service may implement? Answer: javax.xml.rpc.ServiceLifeCycle