Anda di halaman 1dari 15

WWW.VIDYARTHIPLUS.

COM

IT2353-WEB TECHNOLOGY

UNIT-I

PART A

1.DEFINE URI?

 In computing, a uniform resource identifier is a string of characters used to identify a name of a


web resource. Such identification enables interaction with representations of the web resource
over a network using specific protocols.

2.STATE THE USE OF WEB SERVER LOGS AND LIST THE CONTENTS OF THE
MESSAGE LOGS?

 A server log is a log file (or several files) automatically created and maintained by a server of
activity performed by it.
 A typical example is a web server log which maintains a history of page requests. The W3C
maintains a standard format (the Common Log Format) for web server log files, but other
proprietary formats exist. More recent entries are typically appended to the end of the file.
Information about the request, including client IP address, request date/time, page requested,
HTTP code, bytes served, user agent, and referrer are typically added. These data can be
combined into a single file, or separated into distinct logs, such as an access log, error log, or
referrer log. However, server logs typically do not collect user-specific information.

3. HOW WILL YOU CREATE PASSWORD FIELD IN A HTML FORM?

AN EXAMPLE:

Look at this HTML example:


<html>
< head>
< title>My Page</title>
< /head>
< body>
< form name="myform"
action="http://www.mydomain.com/myformhandler.cgi"
method="POST">
< div align="center">
Enter Password : <input type="password" size="25">
< br><br>
< /div>
< /form>
< /body>
< /html>

WWW.VIDYARTHIPLUS.COM V+ TEAM
WWW.VIDYARTHIPLUS.COM

And the resulting output from it:

***********
Enter Password :

4. LIST ANY FOUR COMMON BROWERS?

1. Internet Explorer

2. Firefox

3. Safari

4. Chrome

5.Opera

5.STATE THE USES OF INTERNET PROTOCOL?

 IP is the core of the TCP/IP protocol suite. IP provides the fundamental mechanism using
which data is delivered between devices which may or may not be in the same network.

6. LIST AND EXPLAIN ANY TWO HTML ELEMENTS?

<!--...--> Defines a comment


<!DOCTYPE> Defines the document type
<a> Defines a hyperlink
<abbr> Defines an abbreviation
<acronym> Not supported in HTML5. Defines an acronym
<address> Defines contact information for the author/owner of a document

7.WRITE HTML CODE TO CREATE A FOLLOWING TABLE

W X

Y Z

The code for a simple, two row, two column TABLE looks like this:

Begin table <table>


Begin 1st row <tr>
Cell 1 (Row 1, Column 1) <td>Row 1, Column 1</td>

WWW.VIDYARTHIPLUS.COM V+ TEAM
WWW.VIDYARTHIPLUS.COM

Cell 2 (Row 1, Column 2) <td>Row 1, Column 2</td>


End 1st Row </tr>
Begin 2nd row <tr>
Cell 3 (Row 2, Column 1) <td>Row 2, Column 1</td>
Cell 4 (Row 2, Column 2) <td>Row 2, Column 2</td>
End 2nd row </tr>
End table </table>

8. LIST THE DIFFERENT BASIC PROTOCOLS USED IN INTERNET?

 Yahoo! Messenger, underlying protocol used by the Yahoo messenger


 RTPS protocol, an interoperability protocol
 SSH Secure Shell
 FTP File Transfer Protocol
 SMTP Simple Mail Transfer Protocol
 Telnet Telephone Network
 HTTP Hyper Text Transfer Protocol
 HTTPs Secure Hyper Text Transfer Protocol
 SFTP Secure File Transfer Protocol
 SSL Secure Socket Layer
 TLS Transport Layer Security
 POP post office protocol
 E6 Ethernet globalization protocols

9. STATE THE FUNCTION OF DNS AND PROTOCOL USED?

 A DNS resolves names like www.utube.com with an ip address. the protocols that make the
internet work use numbers. A DNS has a database of numbers that match up with names so
when you type www.utube.com the closest DNS resolves that with an IP address which tcp/ip
protocols can use to view utube.com.

10. WRITE HTML CODE TO DISPLAY AN IMAGE?

<!DOCTYPE html>
<html>
<body>

<h2>Norwegian Mountain Trip</h2>


<img border="0" src="/images/pulpit.jpg" alt="Pulpit rock" width="304" height="228">

</body>
</html>

WWW.VIDYARTHIPLUS.COM V+ TEAM
WWW.VIDYARTHIPLUS.COM

PART B

1.explain in detail the working of the following internet protocols?

a) tcp/ip 1-16

b)http 1-30

2. a) list and explain any four html elements in details? 2-4

b) state the types of lists supported by html and explain them in detail? 2-28

3. a) explain tcp/ip in detail? 1-16

b) explain the purpose and way of creating lists in html documents ? 2-28

4. a) list any two differences between html and xhtml with respect to elements.

also explain about the xhtml dtd?

4.b) discuss on any four http request methods? 1-30

5. a) explain in detail functions of a web server? 1-27

b). give the structure http request and response message? 1-30

6.a) explain the use of relative url’s with an example 1-26

b) explain how tables can be inserted into html document with an example? 2-34
7. create a html document for a company home page and explain

8. a) explain the capabilities of web client and web server 1-24,27

b) write and explain http request message format? 1-30

9. create a registration form for an educational website with e-learning resources. all form controls
should have appropriate name attrributes .use the get method for form submission and specify an
empty for the action attribute?

WWW.VIDYARTHIPLUS.COM V+ TEAM
WWW.VIDYARTHIPLUS.COM

unit-2
PART-A

1.MENTION THE NEED FOR CASCADING STYLE SHEET ?


Use of css is the recommended way of defining how html pages are displayed. you should use
html to define the basic structure (using elements such as < h1>, <p>, <li>, etc.) and css to define how
these elements should appear (e.g. heading should be in bold arial font, paragraphs should be indented,
etc.).
This approach has several advantages:
maintenance:
it is much easier to maintain the appearance of a web site. if you use a single css file updating
this file allows the web site look-and-feel to be altered easily; in contrast use of html formatting
elements would require every file to be updated to change the appearance.
functionality:
css provides rich functionality, including defining the appearance of html pages when they are
printed.
accessibility:
use of css provides much greater accessibility, allowing users with special needs to alter the
appearance of a web page to suit their requirements. css also allows web pages to be more
easily rendered by special devices, such as speaking browsers, pdas, etc.

2.EXPLAIN ARRAY CREATION IN JAVA SCRIPT WITH EXAMPLE


you can create an array using either
 an array initializer (array literal) or
 the array constructor.
the array initializer (array literal) syntax is simple: a comma-separated list of values in square brackets.
here are some examples:
var myarray1 = [1,3,5,7,9] // an array with 5 elements
var myarray2 = [5] // an array with 1 element
var myarray3 = [true,'hi',[7]] // element types need not be the same!

3.GIVE THE SYNTAX OF A CSS RULE


a css rule set consists of a selector and a declaration block:

the selector points to the html element you want to style.


the declaration block contains one or more declarations separated by semicolons.
each declaration includes a property name and a value, separated by a colon.
WWW.VIDYARTHIPLUS.COM V+ TEAM
WWW.VIDYARTHIPLUS.COM

4.WHAT IS A JAVA SCRIPT STATEMENT?GIVE AN EXAMPLE

<!doctype html>
<html>
<body>

<h1>my web page</h1>

<p id="demo">a paragraph.</p>

<div id="mydiv">a div.</div>

<script>
document.getelementbyid("demo").innerhtml="hello dolly";
document.getelementbyid("mydiv").innerhtml="how are you?";
</script>

</body>
</html>

5.GIVE THE CORE SYNTAX OF CSS


this section describes a grammar common to any version of css (including css2). future versions of css
will adhere to this core syntax, although they may add additional syntactic constraints.

6.LIST AND EXPLAIN ANY TWO JAVA SCRIPT BUILT-IN OBJECTS


javascript sports a number of built-in objects that extend the flexibility of the language. these objects
are date, math, string, array, and object. several of these objects are "borrowed" from the java language
specification, but javascript's implementation of them is different. if you're familiar with java, you'll
want to carefully examine javascript's built-in object types to avoid any confusion.

7.GIVE EXAMPLE FOR INLINE STYLE SHEET


inline style sheets is a term that refers to style sheet information being applied to the current element.
by this, i mean that instead of defining the style once, then applying the style against all instances of an
element (say the <p> tag), you only apply the style to the instance you want the style to apply to.
actually, it's not really a style sheet as such, so a more accurate term would be inline styles.
example
modify the code below, then click "update". see below for attributes.
<p style="font-size: x-large; color: #ff9900">using inline style sheets - or is that inline styles?</p>

WWW.VIDYARTHIPLUS.COM V+ TEAM
WWW.VIDYARTHIPLUS.COM

8.LIST THE DIFFERENT METHODS DEFINED IN DOCUMENT AND WINDOW OBJECT OF


JAVA SCRIPT
 the document itself is a document node
 all html elements are element nodes
 all html attributes are attribute nodes
 text inside html elements are text nodes
 comments are comment nodes

9.LIST THE TWO FORMS OF STYLE RULE WITH AN EXAMPLE


1. selector refers to the targetted html element(s). you can simply insert the actual name of the
html element you wish to target (known as a type selector) or you can be more specific by
using class or id selectors.
2. property refers to a css property.
3. value refers to an associated css value.

10.LIST THE WAY OF POSITIONING AN ELEMENT WITHIN A BROWSER WINDOW


with css positioning, you can place an element exactly where you want it on your page. together with
floats, positioning gives you many possibilities to create an advanced and precise layout.
h1 {
position:absolute;
top: 100px;
left: 200px;
}

part-b
1.a) i)list and explain in detail the various selector string 3-4
ii)explain the features of cascading style sheets 3-19
b) i)state and explain the types of statements in java script 4-50
ii)explain how functions can be written in java script with an example 4-7
2.a) i)explain any 8 css text properties 3-25
ii)discuss java script array object in detail 4-52
b)i)discuss about java script debugging 4-89
ii)explain in detail css border and css outline 3-39
3.a) i)explain the css box model in detail 3-39
ii)list and explain in detail the types of selector string 3-4
b)i)explain the way in which java script handles arrays with example
3. b) ii)explain how local and global functions can be written using java script 4-36
4.a) i)write a css which adds background images and indentation 4-47,50
ii)explain external style sheet with an example 3-71
b) i)write the java script to find some of first n even number and display the result.get the value of n
from user
WWW.VIDYARTHIPLUS.COM V+ TEAM
WWW.VIDYARTHIPLUS.COM

ii)write java script to find factorial of an given number


5.a)discuss java script objects in detail with suitable exambles 4-60
b)i)with a suitable example discuss about event propagation 4-3
ii)discuss the properties of mouse events associated with dom 2 with an example 5-15.
UNIT -3
PART –A

1.EXPLAIN IN BREIF THE INTERACTION BETWEEN THE WEB SERVER AND A SERVLET
a servlet container is a web server that must be able to run java servlets.
web server, on the other hand, is a broader term including all software running and communicating
through http protocol.
under these definitions:
1. all servlet containers are web servers
2. not all web servers are servlet containers

2.LIST SOME HTML INTRINSIC ATTRIBUTES


intrinsic attributes are simple attributes that are created automatically from: asciidoc document header
parameters; asciidoc(1) command-line arguments; attributes defined in the default configuration files;
the execution context. here’s the list of predefined intrinsic attributes:
{amp} ampersand (&) character entity
{asciidoc-args} used to pass inherited arguments to asciidoc filters
{asciidoc-confdir} the asciidoc(1) global configuration directory
{asciidoc-dir} the asciidoc(1) application directory

3.WRITE CODE TO RETURN THE FULL URL OF A DOCUMENT


<html>
< body>

the full url of this document is:


< script>
document.write(document.url);
< /script>

< /body>
< /html>

4.HOW IS SESSION TRACKING ACHIEVED BY URL REWRITTING


sessions are tracked using a unique session id generated for each client by the container; they're needed
since http is a stateless protocol.

initially, when the client connects to the server, it doesn't have a session id assigned to it. the server
then sends a response with a session id in the response headers. but the server doesn't know if the

WWW.VIDYARTHIPLUS.COM V+ TEAM
WWW.VIDYARTHIPLUS.COM

browser supports sessions using cookies so it also uses url rewriting ( but if you use the appropriate
methods in your code ).

when the client sends the next request, the server will know whether the browser supports cookies or
not: if there is a header, the browser supports it and the server will not use the rewritten urls in it's
communication with this client, only cookies will be used so the encodeurl()/ encoderedirecturl() won't
be used; if there isn't then the server must use url rewriting otherwise the session will not be tracked, so
now the server will not send the session in the header as a cookie but will use url rewriting.

5.WHAT IS MEANT BY INTRINSIC EVENT HANDLING


the intrinsic controls are often used in conjunction with an html form. forms are created with the
<form></form> tags. controls are subsequently defined inside the form. the following code defines
two text fields and a button inside a form:
<form name="frmone">
<input type="text" name="text1">
<input type="text" name="text2"><br>
<input type="button" name="command1">
</form>

6.EXPLAIN THE SERVLET API LIFECYCLE METHOD IN BREIF


theservlet is a java programming languageclass used to extend the capabilities of a server. although
servlets can respond to any types of requests, they are commonly used to extend the applications
hosted by web servers, so they can be thought of as java applets that run on servers instead of in web
browsers

7.LIST THE DIFFERENT LIFECYCLE METHODS OF JAVA SERVLETS


servlet life cycle can be defined as the entire process from its creation till the destruction. the following
are the paths followed by a servlet
 the servlet is initialized by calling the init () method.
 the servlet calls service() method to process a client's request.
 the servlet is terminated by calling the destroy() method.
 finally, servlet is garbage collected by the garbage collector of the jvm

8.WHAT IS THE PURPOSE OF COOKIES


cookies make the interaction between users and websites faster and easier.
without cookies, it would be very difficult for a website to allow a visitor to fill up a shopping cart or
to remember the user's preferences or registration details for a future visit.
websites use cookies mainly because they save time and make the browsing experience more efficient
and enjoyable. websites sometimes use cookies for the purposes of collecting demographic
information about their users; however we do not do this.

9.LIST THE TYPES OF EVENT LISTENERS IN DOM2


WWW.VIDYARTHIPLUS.COM V+ TEAM
WWW.VIDYARTHIPLUS.COM

html>
<head>
<title>basic dom2 event handler and bubble test</title>
</head>
<body>
<div id="container">
<ul id="listcontainer">
<li id="item1">item1</li>
<li id="item2">item2</li>
</ul>
</div>
<script type="text/javascript" charset="utf-8">
var el = document.getelementbyid('listcontainer')
// dom 2 event. this is basic example and will have issues with ie.
el.addeventlistener('mouseover', function(){
alert('mouseover');
}, false);

el.addeventlistener('click', function(){
alert('click!');
}, false);

</script>
</body>
</html>

10.WHAT IS A COOKIE
acookie, also known as an http cookie, web cookie, or browser cookie, is a small piece of data sent
from a website and stored in a user's web browser while the user is browsing that website. every time
the user loads the website, the browser sends the cookie back to the server to notify the website of the
user's previous activity.[1]cookies were designed to be a reliable mechanism for websites to remember
stateful information (such as items in a shopping cart) or to record the user's browsing activity

part-b
1.a) i)explain about the document tree in detail 5-3
ii)explaindom event handling in detail 5-15
b)explain the servlet operation in detail with a sample servlet program 6-2
2.a)explain in detail dom event handling.also explain with an example of creating a context
menu.[note:a context menu is the one that is shown when the user right clicks anywhere in the
document] 5-15
b)what is a session?explain how client state is maintained using session and also explain about session
tracking and session management using with example 6-38
3.i)explain in detail with an example the dynamic content generation by a servlet
WWW.VIDYARTHIPLUS.COM V+ TEAM
WWW.VIDYARTHIPLUS.COM

ii)explain how java servlets perform session handling 6-42


4.a)write a servlet to illustrate the principles of cookies and explain 6-45
b) i)explain about architecture of servlet 6-13
4.b) ii)explain the purpose of the following dom methods and properties 5-9
1)get element by id
2)create element
3)create text node
4)append child
5)parent node
5.a)with a simple example illustrate how the elements of the html document tree structure can be
accessed using java script
b)discuss about the architecture and life cycle of a servlet. 6-19

UNIT-4

PART-A

1. WHAT MEAN BY A NAME SPACE ?


2. EXPLAIN IN BRIEF ABOUT JAVA SERVLET?
3. HOW IS XML PARSING DONE WITH SAX/
4. WHAT IS THE PURPOSE XSLT?
5. WHAT XSLT MEANT?
6. GIVE A ADVANTAGE OF USING JSP FOR SERVER SIDE PROGRAMMING
7. COMPARE DOM AND SAX IN XML PROCESSING?
8. WRITE TWO BASIC DIFFERENCS BETWEEN JSP AND SERVELET?
9. WHAT IS XML NAMESPACE?
10. WHAT IS AN XPATH?

PART-B

1.a) i) LIST AND EXPLAIN XML SYNTAX RULES IN DETAILS

ii) EXPLAIN HOW A XML DOCUMENT CAN BE DISPLAYED ON A BROWERS?

b) STATE AND EXPLAIN INFORMATION IN A JSP DOCUMENT IN DETAILED

2 a) i) EXPLAIN XPATH NOTES IN DETAIL

ii) EXPLAIN ABOUT THE OBJECT THAT HEPLS AJAX RELOAD PARTS OF A WEB PAGE
WITHOUT RELOADING THE WHOLE PAGE

b ) WHAT IS A JAVA BEANS COMPONENT? HOW WILL YOU USE THE JSP LANGUAGE
ELEMENTS FOR ACCESSING BEANS IN YOUR JSP PAGES?

3 a) i) EXPLAIN THE ROLE XML NAME SPACES WITH EXAMPLES

WWW.VIDYARTHIPLUS.COM V+ TEAM
WWW.VIDYARTHIPLUS.COM

ii) EXPLAIN THE FEATURES XML PATH LANGUAGE?

b) i) EXPLAIN THE MODEL VIEW CONTROLLER ARCHITECTURE PATTERN IN


DETAILED?
ii)EXPLAIN THE USE OF JAVABEANS CLASS IN JSP WITH EXAMPLES ?

4.a) WRITE XSLT CODE TO DISPLAY EMPLOYEE DETAILS IN A TABLE FORM WHICH IS
STORED IN XML?

b) i) WRITE A CLIENT SERVER JSP PROGRAM TO FIND SIMPLE INTEREST AND DISPLAY
THE RESULT IN THE CLIENT?

ii) WRITE ABOUT THE JSP TAG LIBRARIES

5.a)GIVEN AN XSLT DOCUMENT AND A SOURCE XML DOCUMENT EXPLAIN THE XSLT
TRANSFORMATION PROCESS THAT PRODUCES A SINGLE RESULT XML DOCUMENT

b)WRITE A SERVLET PROGRAM TO DISPLAY THE WAITING LIST STATUS GIVEN THE
PNR NUMBER OF A TRAIN. CREATE A JSP TO DISPLAY THE INFORMATION AT THE
CLIENT END.

UNIT V

PART-A

1. What is meant by WSDL?


 WSDL is an XML format for describing network services as a set of endpoints
operating on messages containing either document-oriented or procedure-oriented
information.
 The operations and messages are described abstractly, and then bound to a concrete
network protocol and message format to define an endpoint. Related concrete endpoints
are combined into abstract endpoints (services).
 WSDL is extensible to allow description of endpoints and their messages regardless of
what message formats or network protocols are used to communicate, however, the only
bindings described in this document describe how to use WSDL in conjunction with
SOAP 1.1, HTTP GET/POST, and MIME.

2. Define serialization?
 XML serialization converts (serializes) the public fields and properties of an object, or
the parameters and return values of methods, into an XML stream that conforms to a
specific XML Schema definition language (XSD) document.
 XML serialization results in strongly typed classes with public properties and fields that
are converted to a serial format (in this case, XML) for storage or transport.

3. List the basic concepts behind JAX-RPC technology

WWW.VIDYARTHIPLUS.COM V+ TEAM
WWW.VIDYARTHIPLUS.COM

 The Java API for XML-based RPC (JAX-RPC) is a Sun Microsystems specification that
defines the client API for invoking a Web service. The following table briefly describes the
co
re java.xml.rpc Interface or Description
J Class
A  Service  Main client interface. Used for both static and
X dynamic invocations.
-  ServiceFactory  Factory class for creating Service instances.
R
 Stub  Represents the client proxy for invoking the
P
operations of a Web service. Typically used
C
for static invocation of a Web service.
in
 Call  Used to dynamically invoke a Web service.
te
rf  JAXRPCException  Exception thrown if an error occurs while
ac invoking a Web service.
es and classes.

4. What is UDDI?

Universal Description, Discovery and Integration (UDDI, pronounced Yu-diː) is a


platform-independent, Extensible Markup Language (XML)-based registry by which
businesses worldwide can list themselves on the Internet, and a mechanism to register and
locate web serviceapplications. UDDI is an open industry initiative, sponsored by the
Organization for the Advancement of Structured Information Standards (OASIS), for
enabling businesses to publish service listings and discover each other, and to define how
the services or software applications interact over the Internet.

5. List some examples of web services

<%@ WebService Language="VBScript" Class="TempConvert" %>

Imports System
Imports System.Web.Services

Public Class TempConvert :Inherits WebService

< WebMethod()> Public Function FahrenheitToCelsius


(ByVal Fahrenheit As String) As String
dim fahr
fahr=trim(replace(Fahrenheit,",","."))
if fahr="" or IsNumeric(fahr)=false then return "Error"
return ((((fahr) - 32) / 9) * 5)
end function

< WebMethod()> Public Function CelsiusToFahrenheit


(ByVal Celsius As String) As String
dim cel
cel=trim(replace(Celsius,",","."))
if cel="" or IsNumeric(cel)=false then return "Error"
WWW.VIDYARTHIPLUS.COM V+ TEAM
WWW.VIDYARTHIPLUS.COM

return ((((cel) * 9) / 5) + 32)


end function

end class

6. State the use of WSDL


 The Web Services Description Language (WSDL) is an XML-based language used to
describe the services a business offers and to provide a way for individuals and other
businesses to access those services electronically.
 WSDL is the cornerstone of the Universal Description, Discovery, and Integration (UDDI)
initiative spearheaded by Microsoft, IBM, and Ariba. UDDI is an XML-based registry for
businesses worldwide, which enables businesses to list themselves and their services on the
Internet.

7. What is the purpose of XML schema

 The purpose of the XML schema language is to provide an inventory of XML markup
constructs with which to write schemas.
 The purpose of a schema is to define and describe a class of XML documents by using these
constructs to constrain and document the meaning, usage and relationships of their constituent
parts: datatypes, elements and their content, attributes and their values, entities and their
contents and notations. Schema constructs may also provide for the specification of implicit
information such as default values. Schemas document their own meaning, usage, and function.
 Thus, the XML schema language can be used to define, describe and catalogue XML
vocabularies for classes of XML documents.

8. Define the need for SOAP


 SOAP (Simple Object Access Protocol) is a way for a program running in one kind of
operating system (such as Windows 2000) to communicate with a progam in the same or
another kind of an operating system (such as Linux) by using the World Wide Web's
Hypertext Transfer Protocol (HTTP)and its Extensible Markup Language (XML) as the
mechanisms for information exchange.
 Since Web protocols are installed and available for use by all major operating system
platforms, HTTP and XML provide an already at-hand solution to the problem of how
programs running under different operating systems in a network can communicate with
each other

9. State the significance ofWSDL document


 A WSDL (Web Service Definition Language) is the formal description of a Web service;
in AquaLogic Service Bus, it describes a proxy service or a business service. A WSDL is
used to describe what a Web service can do, where it resides, and how to invoke it.
 You can base SOAP and XML services on an existing WSDL resource. A WSDL
document is available for proxy and business services for any transport. This WSDL is
used as the base for the final WSDL document.

WWW.VIDYARTHIPLUS.COM V+ TEAM
WWW.VIDYARTHIPLUS.COM

10. Given an example of a web service registry and its function


 A Web Service requires an API to provide an interface which allows it to be called by
another application.
 As can be seen in an operating system of a common personal computer, a service is
registered in the system registry which allows applications to locate the specific service to
process a specific task.
 In the same way, a Web Service is registered in a Web Service registry, which an
application uses to call the specific service it requires.

PART-B

1. Explain in detail the XML schema, built in and user define datatype in detail(16) 9-
22
2. Explain the JDBC database access in detail(8) 9-55
3. Describe the significance and working of WSDL with an example(16) 9-19
4. Describe the major elements of SOAP(16) 9-61
5. Explain the creation of a JAVA web service in detail with example(16) 9-8
6. Explaini the role of the XML schema in building web services in detail(16) 9-22
7. Illustrate the principles of WSDL, XML and SOAP and their interaction between
them in web service application(16) 9-22,19,61
8. Write a JAVA servlet to display net salary of employee, use JDBC connectivity to
get employee details from database(16) 6-55
9. With a simple exampleillustrate the steps to create a web service(8) 9-8
10. Explain the basic concepts of RPC(8) 9-3
11. Briefly discuss how datatypes are represented in XML schema(8) 9-22
12. Briefly discuss how SOAP encodes struct data and arrays(8) 9-51

WWW.VIDYARTHIPLUS.COM V+ TEAM

Anda mungkin juga menyukai