Internet Programming CS8651 2 Marks & Part B
Internet Programming CS8651 2 Marks & Part B
in
n
Object is an instance of a class. It has state,behaviour and identity. It is also called as an instance of a class.
4. What is an Instance?
g.i
An instance has state, behaviour and identity. The structure and behaviour of similar classes are defined in their
common class. An instance is also called as an object.
5. What are different types of access modifiers (Access specifiers)?
n
Access specifiers are keywords that determine the type of access to the member of a class. These keywords are for
allowing privilegesto parts of a program such as functions and variables. These are: public: Anything declared as
eri
public can be accessed from anywhere.
private: Anything declared as private can’t be seen outside of its class.
protected: Anything declared as protected can be accessed by classes in the same package and subclasses in the
there packages.
e
default modifier : Can be accessed only to classes in the same package.
gin
6. What is method overloading and method overriding?
Method overloading: When a method in a class having the same method name with different arguments is said to
be method overloading.
Method overriding: When a method in a class having the same method name with same arguments is said to be
en
method overriding.
7. List the access specifier used in JAVA?
Java provides a number of access modifiers to set access levels for classes, variables, methods and constructors.
arn
A package is a collection of classes and interfaces that provides a high-level layer of access protection and name
space management.
10. What is meant by Inheritance?
ww
Inheritance is a relationship among classes, wherein one class shares the structure or behaviour defined in another
class. This is called Single Inheritance. If a class shares the structure or behaviour from multiple classes, then it is
called Multiple Inheritance. Inheritance defines “is-a” hierarchy among classes in which one subclass inherits from
one or more generalised superclasses.
11. What is an Abstract Class?
Abstract class is a class that has no instances. An abstract class is written with the expectation that its concrete
subclasses will add to its structure and behaviour, typically by implementing its abstract operations.
12. What are inner class and anonymous class?
Inner class: classes defined in other classes, including those defined in methods are called inner classes. An inner
class can have any accessibility including private.
Anonymous class: Anonymous class is a class defined inside a method without a name and is instantiated and
declared in the same place and cannot have explicit constructors.
13. Define interface and write the syntax of the Interface.
Interface is an outside view of a class or object which emphaizes its abstraction while hiding its structure and
secrets of its behaviour.
Syntax:
[visibility] interface InterfaceName [extends other interfaces] {
constant declarations
abstract method declarations
}
n
14. What is the difference between abstract class and interface?
a) All the methods declared inside an interface are abstract whereas abstract class must have at least one abstract
g.i
method and others may be concrete or abstract.
b) In abstract class, key word abstract must be used for the methods whereas interface we need not use that
keyword for the methods.
n
c) Abstract class must have subclasses whereas interface can’t have subclasses.
15. What is an exception?
eri
An exception is an event, which occurs during the execution of a program, that disrupts the normal flow of the
program's instructions.
16. What is meant by JAVA package?(Nov/Dec 2014)
e
Package represents a collection of classes, methods and interface. The name of the package must be written as the
gin
first statement in the java source program.The syntax of specifying the package in the java program is:package
name_of_package
17. What are the types of Exceptions in Java?
There are two types of exceptions in Java, unchecked exceptions and checked exceptions.
en
Checked exceptions: A checked exception is some subclass of Exception (or Exception itself), excluding class
RuntimeException and its subclasses. Each method must either handle all checked exceptions by supplying a catch
clause or list each unhandled checked exception as a thrown exception.
arn
Unchecked exceptions:All Exceptions that extend the RuntimeException class are unchecked exceptions. Class
Error and its subclasses also are unchecked.
18. What are the different ways to handle exceptions?
There are two ways to handle exceptions:
• Wrapping the desired code in a try block followed by a catch block to catch the exceptions.
Le
• List the desired exceptions in the throws clause of the method and let the caller of the method handle those
exceptions.
19. How to create custom exceptions? By Extending
w.
n
n g.i
thread.
e eri
gin
23. What is daemon thread and which method is used to create the daemon thread?
A daemon thread is a thread, that does not prevent the JVM from exiting when the program finishes but the thread
is still running. An example for a daemon thread is the garbage collection. You can use the setDaemon() method to
change the Thread daemon properties
en
class Testimmutablestring{
public static void main(String args[]){
String s="Sachin";
w.
HTML page on a Web site and can be executed from within a browser.
28. Define transient and volatile Modifiers.
Java defines two interesting type modifiers: transient and volatile. These modifiers are usedto handle somewhat
specialized situations. When an instance variable is declared as transient, then its value need not persist when an
object is stored. For example:
class T {
transient int a; // will not persist
int b; // will persist
}
Here, if an object of type T is written to a persistent storage area, the contents of a would not be saved, but the
n
contents of b would.
29. What is use of the run-time operator instanceof.
g.i
The instanceof operator has this general form:
objref instanceof type
Here, objref is a reference to an instance of a class, and type is a class type. If objref is of the specified type or can
n
be cast into the specified type, then the instanceof operator evaluates to true. Otherwise, its result is false. Thus,
instanceof is the means by which your program canobtain run-time type information about an object
eri
30. How to Enabling and Disabling Assertion Options?
When executing code, you can disable assertions by using the -da option. You can enable or disable a
specific package by specifying its name after the -ea or -da option. For example, to enable assertions in a package
called MyPack, use
-ea:MyPack e
gin
To disable assertions in MyPack, use
-da:MyPack
31. Define String Constructors.
The String class supports several constructors. To create an empty String, you call the default
en
values. The String class provides a variety of constructors to handle this. To create a String initialized by an array
of characters, use the constructor shown here:
String(char chars[ ])
Here is an example:
Le
The String class includes several methods that compare strings or substrings within strings.
equals( ) and equalsIgnoreCase( To compare two strings for equality, use equals( ). To perform a
) comparison that ignores case differences, call equalsIgnoreCase( ).
ww
n
objects. It simplifies the software development and maintenance by providing some concepts:
Object
g.i
Class
Inheritance
Polymorphism
n
Abstraction
eri
Encapsulation
Object
Any entity that has state and behavior is known as an object. For example: chair, pen, table, keyboard,
bike etc. It can be physical and logical.
Class e
gin
Collection of objects is called class. It is a logical entity.
Inheritance
When one object acquires all the properties and behaviours of parent object i.e. known as inheritance. It
provides code reusability. It is used to achieve runtime polymorphism.
en
Polymorphism
When one task is performed by different ways i.e. known as polymorphism. For example: to convense
arn
the customer differently, to draw something e.g. shape or rectangle etc. In java, we use method
overloading and method overriding to achieve polymorphism.Another example can be to speak
something e.g. cat speaks meaw, dog barks woof etc.
Abstraction
Le
Hiding internal details and showing functionality is known as abstraction. For example: phone call, we
don't know the internal processing. In java, we use abstract class and interface to achieve abstraction.
Encapsulation
w.
Binding (or wrapping) code and data together into a single unit is known as encapsulation. For example:
capsule, it is wrapped with different medicines.
A java class is the example of encapsulation. Java bean is the fully encapsulated class because all the
ww
n
n g.i
e eri
gin
class Bank{
en
class Test2{
public static void main(String args[]){
SBI s=new SBI();
ICICI i=new ICICI();
AXIS a=new AXIS();
System.out.println("SBI Rate of Interest: "+s.getRateOfInterest());
System.out.println("ICICI Rate of Interest: "+i.getRateOfInterest());
System.out.println("AXIS Rate of Interest: "+a.getRateOfInterest());
}
}
Output:
SBI Rate of Interest: 8
ICICI Rate of Interest: 7
AXIS Rate of Interest: 9
-------------------------------------------------------------------------------------------------------------------------------
(iii) Write a JAVA program to reverse the given number.(6)
import java.util.*;
public class RevNumString
{
n
public static void main(String[] args)
g.i
{
Scanner scanner = new Scanner(System.in);
System.out.println("Please enter a number: ");
n
int num = scanner.nextInt();
System.out.println("Please enter a string: ");
eri
String str = scanner.next();
RevNumString rns = new RevNumString();
int revNum = rns.reverse(num);
String revStr = rns.reverse(str);
e
gin
System.out.printf("\n The reverse of number %d is %d ", num, revNum);
System.out.printf("\n The reverse of string '%s' is '%s' ", str, revStr);
}
// Method to return the reverse of a number
en
return revNum;
}
// Method to return the reverse of a string
w.
revStr.append(str.charAt(i));
}
return revStr.toString();
}
}
Program Output:
Please enter a number:
1234
Please enter a string:
Java
n
Some of the existing packages in Java are::
g.i
java.lang - bundles the fundamental classes
java.io - classes for input , output functions are bundled in this package
n
Programmers can define their own packages to bundle group of classes/interfaces, etc. It is a good
practice to group related classes implemented by you so that a programmer can easily determine that the
eri
classes, interfaces, enumerations, annotations are related.
Since the package creates a new namespace there won't be any name conflicts with names in other
packages. Using packages, it is easier to provide access control and it is also easier to locate the related
classes. e
gin
Creating a package:
When creating a package, you should choose a name for the package and put a package statement with
that name at the top of every source file that contains the classes, interfaces, enumerations, and
en
The package statement should be the first line in the source file. There can be only one package
arn
statement in each source file, and it applies to all types in the file.
If a package statement is not used then the class, interfaces, enumerations, and annotation types will be
put into an unnamed package.
Le
Example:
Let us look at an example that creates a package called animals. It is common practice to use
w.
lowercased names of packages to avoid any conflicts with the names of classes, interfaces.
Put an interface in the package animals:
/* File name : Animal.java */
ww
package animals;
interface Animal {
public void eat();
public void travel();
}
Now, put an implementation in the same package animals:
package animals;
n
g.i
public int noOfLegs(){
return 0;
}
n
public static void main(String args[]){
eri
MammalInt m = new MammalInt();
m.eat();
m.travel();
} e
gin
}
Now, you compile these two files and put them in a sub-directory called animals and try to run as
follows:
$ mkdir animals
en
Mammal travels
Classes in the same package find each other without any special syntax.
Example:
Here, a class named Boss is added to the payroll package that already contains Employee. The Boss can
w.
then refer to the Employee class without using the payroll prefix, as demonstrated by the following
Boss class.
ww
package payroll;
public class Boss
{
public void payEmployee(Employee e)
{
e.mailCheck();
}
}
What happens if Boss is not in the payroll package? The Boss class must then use one of the following
n
The Directory Structure of Packages:
g.i
Two major results occur when a class is placed in a package:
The name of the package becomes a part of the name of the class, as we just discussed in the
previous section.
n
The name of the package must match the directory structure where the corresponding bytecode
resides.
eri
Here is simple way of managing your files in Java:
Put the source code for a class, interface, enumeration, or annotation type in a text file whose name is
the simple name of the type and whose extension is .java. For example:
e
gin
// File Name : Car.java
package vehicle;
public class Car {
// Class implementation.
en
Now, put the source file in a directory whose name reflects the name of the package to which the class
arn
belongs:
....\vehicle\Car.java
Now, the qualified class name and pathname would be as below:
Le
company's Internet domain name is apple.com, then all its package names would start with com.apple.
Each component of the package name corresponds to a subdirectory.
Example: The company had a com.apple.computers package that contained a Dell.java source file, it
ww
}
class Ups{
}
Now, compile this file as follows using -d option:
$javac -d . Dell.java
----------------------------------------------------------------------------------------------------------------------------
(ii) Write a JAVA program to find the smallest number in the given list. (8)
import java.util.Scanner;
class group{
n
public static void main(String arng[]){
g.i
int value[]= new int[5];
int temp,i;
Scanner data = new Scanner(System.in);
n
System.out.println("Enter 5 element of array" );
// Enhanced for loop
eri
for(i=0; i < 5; i++ )
value[i] = data.nextInt();
// finding smallest number
temp = value[0];
e
gin
for(i=0; i < 5; i++ )
{
if(temp < value[i])
continue;
en
else
temp = value[i];
}
arn
95
12
32
ww
An interface is a collection of abstract methods. A class implements an interface, thereby inheriting the
abstract methods of the interface.
An interface is not a class. Writing an interface is similar to writing a class, but they are two different
concepts. A class describes the attributes and behaviors of an object. An interface contains behaviors
that a class implements.
Unless the class that implements the interface is abstract, all the methods of the interface need to be
defined in the class.
n
An interface is similar to a class in the following ways:
g.i
(ii) An interface can contain any number of methods.
(iii)An interface is written in a file with a .java extension, with the name of the interface matching
the name of the file.
n
(iv) The bytecode of an interface appears in a .class file.
(v) Interfaces appear in packages, and their corresponding bytecode file must be in a directory
eri
structure that matches the package name.
Declaring Interfaces:
The interface keyword is used to declare an interface. Here is a simple example to declare an
Le
interface:
Example:
w.
import java.lang.*;
//Any number of import statements
Example:
n
/* File name : Animal.java */
g.i
interface Animal {
n
public void travel();
}
eri
Implementing Interfaces:
e
When a class implements an interface, you can think of the class as signing a contract, agreeing to
gin
perform the specific behaviors of the interface. If a class does not perform all the behaviors of the
interface, the class must declare itself as abstract.
en
A class uses the implements keyword to implement an interface. The implements keyword appears in
the class declaration following the extends portion of the declaration.
arn
System.out.println("Mammal eats");
}
w.
}
}
Mammal eats
Mammal travels
When overriding methods defined in interfaces there are several rules to be followed:
n
Checked exceptions should not be declared on implementation methods other than the ones declared
g.i
by the interface method or subclasses of those declared by the interface method.
The signature of the interface method and the same return type or subtype should be maintained
n
when overriding the methods.
eri
An implementation class itself can be abstract and if so interface methods need not be implemented.
(xv) A class can extend only one class, but implement many interfaces.
en
(xvi) An interface can extend another interface, similarly to the way that a class can extend
another class.
arn
Extending Interfaces:
An interface can extend another interface, similarly to the way that a class can extend another class.
The extends keyword is used to extend an interface, and the child interface inherits the methods of the
Le
parent interface.
//Filename: Sports.java
public interface Sports
ww
{
public void setHomeTeam(String name);
public void setVisitingTeam(String name);
}
//Filename: Football.java
public interface Football extends Sports
{
public void homeTeamScored(int points);
//Filename: Hockey.java
public interface Hockey extends Sports
{
public void homeGoalScored();
public void visitingGoalScored();
public void endOfPeriod(int period);
n
public void overtimePeriod(int ot);
g.i
}
The Hockey interface has four methods, but it inherits two from Sports; thus, a class that implements
n
Hockey needs to implement all six methods. Similarly, a class that implements Football needs to
define the three methods from Football and the two methods from Sports.
eri
Extending Multiple Interfaces:
A Java class can only extend one parent class. Multiple inheritance is not allowed. Interfaces are not
e
classes, however, and an interface can extend more than one parent interface.
gin
The extends keyword is used once, and the parent interfaces are declared in a comma-separated list.
For example, if the Hockey interface extended both Sports and Event, it would be declared as:
en
ii) method
iii) class
The final keyword can be applied with the variables, a final variable that have no value it is called blank
w.
final variable or uninitialized final variable. It can be initialized in the constructor only. The blank final
variable can be static also which will be initialized in the static block only. We will have detailed learning
of these
ww
}
}//end of class
Example of final method
class Bike{
final void run(){System.out.println("running");}
}
n
public static void main(String args[]){
g.i
Honda honda= new Honda();
honda.run();
}
n
}
Example of final class
eri
final class Bike{}
}
}
4. (i) Explain in details the concepts of inner classes.
arn
Java inner class or nested class is a class i.e. declared inside the class or interface.
We use inner classes to logically group classes and interfaces in one place so that it can be more readable
and maintainable.
Additionally, it can access all the members of outer class including private data members and methods.
Le
class Java_Inner_class{
//code
}
ww
n
o b)Annomynous inner class
o c)Local inner class
g.i
2. Static nested class
Type Description
n
Member Inner
A class created within class and outside method.
eri
Class
Anonymous Inner A class created for implementing interface or extending class. Its
Class name is decided by the java compiler.
Local Inner Class e
A class created within method.
gin
Static Nested Class A static class created within class.
Nested Interface An interface created within class or interface.
-------------------------------------------------------------------------------------------------------------------------------------
en
Advantage of Applet
There are many advantages of applet. They are as follows:
It works at client side so less response time.
Le
Secured
It can be executed by browsers running under many plateforms, including Linux, Windows, Mac
Os etc.
w.
Drawback of Applet
Plugin is required at client browser to execute applet.
ww
Hierarchy of Applet
n
n g.i
e eri
As displayed in the above diagram, Applet class extends Panel. Panel class extends Container which is the subclass
of Component.
gin
Lifecycle of Java Applet
1. Applet is initialized.
2. Applet is started.
en
3. Applet is painted.
4. Applet is stopped.
5. Applet is destroyed.
arn
6.
Lifecycle methods for Applet:
The java.applet.Applet class 4 life cycle methods and java.awt.Component class provides 1 life cycle
methods for an applet.
Le
java.applet.Applet class
For creating any applet java.applet.Applet class must be inherited. It provides 4 life cycle methods of
w.
applet.
1. public void init(): is used to initialized the Applet. It is invoked only once.
2. public void start(): is invoked after the init() method or browser is maximized. It is used to start
ww
the Applet.
3. public void stop(): is used to stop the Applet. It is invoked when Applet is stop or browser is
minimized.
4. public void destroy(): is used to destroy the Applet. It is invoked only once.
java.awt.Component class
The Component class provides 1 life cycle method of applet.
1. public void paint(Graphics g): is used to paint the Applet. It provides Graphics class object that
can be used for drawing oval, rectangle, arc etc.
n
//First.java
import java.applet.Applet;
g.i
import java.awt.Graphics;
public class First extends Applet{
public void paint(Graphics g){
n
g.drawString("welcome",150,150);
eri
}
}
myapplet.html
<html>
<body> e
gin
<applet code="First.class" width="300" height="300">
</applet>
</body>
</html>
en
To execute the applet by appletviewer tool, create an applet that contains applet tag in comment and
compile it. After that run it by: appletviewer First.java. Now Html file is not required but it is for testing
purpose only.
//First.java
Le
import java.applet.Applet;
import java.awt.Graphics;
public class First extends Applet{
w.
}
/*
<applet code="First.class" width="300" height="300">
</applet>
*/
To execute the applet by appletviewer tool, write in command prompt:
c:\>javac First.java
c:\>appletviewer First.java
5. What is Exception handling in java? Why it is used? Write a java code to simulate the way a stack
mechanisms works with exception handling, throwing and dealing with exceptions such as stack is full( if
you want to add more elements into the stack)or Stack is empty(you want to pop elements from the stack).
An exception is a problem that arises during the execution of a program. An exception can occur for
many different reasons, including the following:
n
memory.
g.i
Some of these exceptions are caused by user error, others by programmer error, and others by physical
resources that have failed in some manner.
n
To understand how exception handling works in Java, you need to understand the three categories of
eri
exceptions:
about an error. For example, if a stack overflow occurs, an error will arise. They are also ignored
at the time of compilation.
class SimpleStackDemo {
Le
char ch;
int i;
try{
ww
System.out.println(exc);
}
System.out.println();
try{
//over-empty the stack
for(i=0;i<6;i++) {
n
Catch(stackEmptyException exc) {
g.i
System.out.println(exc);
}
}
n
}
6. Discuss the concept of synchronization in thread and develop a JAVA code for reader/writer problem.
eri
When we start two or more threads within a program, there may be a situation when multiple threads try
to access the same resource and finally they can produce unforeseen result due to concurrency issue. For
e
example if multiple threads try to write within a same file then they may corrupt the data because one of
gin
the threads can overrite data or while one thread is opening the same file at the same time another thread
might be closing the same file.
So there is a need to synchronize the action of multiple threads and make sure that only one thread can
en
access the resource at a given point in time. This is implemented using a concept called monitors. Each
object in Java is associated with a monitor, which a thread can lock or unlock. Only one thread at a time
may hold a lock on a monitor.
arn
Java programming language provides a very handy way of creating threads and synchronizing their task
by using synchronized blocks. You keep shared resources within this block. Following is the general
form of the synchronized statement:
Le
synchronized(objectidentifier) {
// Access shared variables and other shared resources
w.
Here, the objectidentifier is a reference to an object whose lock associates with the monitor that the
ww
synchronized statement represents. Now we are going to see two examples where we will print a counter
using two different threads. When threads are not synchronized, they print counter value which is not in
sequence, but when we print counter by putting inside synchronized() block, then it prints counter very
much in sequence for both the threads.
Here is the same example which prints counter value in sequence and every time we run it, it produces
same result.
class PrintDemo {
public void printCount(){
try {
for(int i = 5; i > 0; i--) {
System.out.println("Counter --- " + i );
}
} catch (Exception e) {
n
System.out.println("Thread interrupted.");
g.i
}
}
n
}
eri
class ThreadDemo extends Thread {
private Thread t;
private String threadName;
PrintDemo PD; e
gin
ThreadDemo( String name, PrintDemo pd){
threadName = name;
PD = pd;
en
}
public void run() {
synchronized(PD) {
arn
PD.printCount();
}
System.out.println("Thread " + threadName + " exiting.");
}
Le
T1.start();
T2.start();
n
try {
g.i
T1.join();
T2.join();
} catch( Exception e) {
n
System.out.println("Interrupted");
}
eri
}
}
e
This produces same result every time you run this program:
gin
Starting Thread - 1
Starting Thread - 2
Counter --- 5
en
Counter --- 4
Counter --- 3
Counter --- 2
arn
Counter --- 1
Thread Thread - 1 exiting.
Counter --- 5
Counter --- 4
Le
Counter --- 3
Counter --- 2
Counter --- 1
w.
/**
* Reader.java
*
* A reader to the database.
*
*/
n
while (true) {
g.i
SleepUtilities.nap();
n
database.acquireReadLock(readerNum);
eri
// you have access to read from the database
// let's read for awhile .....
SleepUtilities.nap();
e
gin
database.releaseReadLock(readerNum);
}
}
;
en
//**************************************************************
arn
/**
* Writer.java
*
Le
SleepUtilities.nap();
database.releaseWriteLock(writerNum);
n
}
g.i
}
}
7. (i) Describe the concept of I/O with example.(8)
n
Java I/O (Input and Output) is used to process the input and produce the output based on the input.
Java uses the concept of stream to make I/O operation fast. The java.io package contains all the classes
eri
required for input and output operations.
We can perform file handling in java by java IO API.
Stream e
gin
A stream is a sequence of data.In Java a stream is composed of bytes. It's called a stream because it's like
a stream of water that continues to flow.
In java, 3 streams are created for us automatically. All these streams are attached with console.
1) System.out: standard output stream
en
Let's see the code to print output and error message to the console.
1. System.out.println("simple message");
2. System.err.println("error message");
Let's see the code to get input from console.
Le
OutputStream
Java application uses an output stream to write data to a destination, it may be a file,an array,peripheral
device or socket.
ww
InputStream
Java application uses an input stream to read data from a source, it may be a file,an array,peripheral
device or socket.
Let's understand working of Java OutputStream and InputStream by the figure given below.
OutputStream class
n
OutputStream class is an abstract class.It is the superclass of all classes representing an output stream of
bytes. An output stream accepts output bytes and sends them to some sink.
g.i
Commonly used methods of OutputStream class
Method Description
n
1) public void write(int)throws is used to write a byte to the current output
eri
IOException: stream.
2) public void write(byte[])throws is used to write an array of byte to the current
IOException: output stream.
3) public void flush()throws IOException:
e flushes the current output stream.
gin
4) public void close()throws IOException: is used to close the current output stream.
en
arn
Le
w.
InputStream class
InputStream class is an abstract class.It is the superclass of all classes representing an input stream of
bytes.
ww
n
n g.i
-------------------------------------------------------------------------------------------------------------------------------
eri
(ii) Explain the detail about string handling.(8).
Java String provides a lot of concepts that can be performed on a string such as compare, concat, equals,
e
split, length, replace, compareTo, intern, substring etc.
gin
In java, string is basically an object that represents sequence of char values.
1. char[] ch={'j','a','v','a','t','p','o','i','n','t'};
2. String s=new String(ch);
arn
is same as:
1. String s="javatpoint";
Le
The java String is immutable i.e. it cannot be changed but a new instance is created. For mutable class,
you can use StringBuffer and StringBuilder class.
ww
Generally, string is a sequence of characters. But in java, string is an object that represents a sequence of
characters. String class is used to create string object.
There are two ways to create String object:
1. By string literal
2. By new keyword
1) String Literal
1. String s="welcome";
Each time you create a string literal, the JVM checks the string constant pool first. If the string already
exists in the pool, a reference to the pooled instance is returned. If string doesn't exist in the pool, a new
string instance is created and placed in the pool. For example:
1. String s1="Welcome";
2. String s2="Welcome";//will not create new instance
n
n g.i
e eri
gin
en
2) By new keyword
arn
char ch[]={'s','t','r','i','n','g','s'};
String s2=new String(ch);//converting char array to string
ww
System.out.println(s1);
System.out.println(s2);
System.out.println(s3);
}}
Output:
java
strings
example
8. What is meant by constructors? Describe the type of constructors supported by java with example.
Constructor in java is a special type of method that is used to initialize the object.
Java constructor is invoked at the time of object creation. It constructs the values i.e. provides data for the
object that is why it is known as constructor.
n
2. Constructor must have no explicit return type
g.i
Types of java constructors
There are two types of constructors:
1. Default constructor (no-arg constructor)
n
2. Parameterized constructor
e eri
gin
en
}
Output:
Bike is created
n
Java parameterized constructor
g.i
A constructor that have parameters is known as parameterized constructor.
Parameterized constructor is used to provide different values to the distinct objects.
In this example, we have created the constructor of Student class that have two
n
parameters. We can have any number of parameters in the constructor.
eri
class Student4{
int id;
String name;
Student4(int i,String n){
id = i; e
gin
name = n;
}
void display(){System.out.println(id+" "+name);}
en
s1.display();
s2.display();
}
}
Le
Output:
111 Karan
222 Aryan
w.
by taking into account the number of parameters in the list and their type.
class Student5{
int id;
String name;
int age;
Student5(int i,String n){
id = i;
name = n;
}
n
s1.display();
g.i
s2.display();
}
}
n
Output:
111 Karan 0
eri
222 Aryan 25
There are many ways to copy the values of one object into another in java. They are:
en
By constructor
By assigning the values of one object into another
arn
In this example, we are going to copy the values of one object into another using java constructor.
Le
class Student6{
int id;
String name;
w.
Student6(Student6 s){
id = s.id;
name =s.name;
}
void display(){System.out.println(id+" "+name);}
Test it Now
Output:
n
g.i
111 Karan
111 Karan
9. Define inheritances. Explain in details types of inheritances supported by JAVA with example program.
n
Inheritance in java is a mechanism in which one object acquires all the properties and behaviors of
eri
parent object.
The idea behind inheritance in java is that you can create new classes that are built upon existing classes.
e
When you inherit from an existing class, you can reuse methods and fields of parent class, and you can
gin
add new methods and fields also.
The extends keyword indicates that you are making a new class that derives from an existing class.
ww
In the terminology of Java, a class that is inherited is called a super class. The new class is called a
subclass.
n
n g.i
eri
As displayed in the above figure, Programmer is the subclass and Employee is the superclass.
Relationship between two classes is Programmer IS-A Employee.It means that Programmer is a type of
Employee.
class Employee{ e
gin
float salary=40000;
}
class Programmer extends Employee{
int bonus=10000;
en
On the basis of class, there can be three types of inheritance in java: single, multilevel and hierarchical.
ww
In java programming, multiple and hybrid inheritance is supported through interface only. We will learn
about interfaces later.
n
n g.i
When a class extends multiple classes i.e. known as multiple inheritance. For Example:
e eri
gin
en
arn
To reduce the complexity and simplify the language, multiple inheritance is not supported in java.
Consider a scenario where A, B and C are three classes. The C class inherits A and B classes. If A and B
w.
classes have same method and you call it from child class object, there will be ambiguity to call method
of A or B class.
ww
Since compile time errors are better than runtime errors, java renders compile time error if you inherit 2
classes. So whether you have same method or different, there will be compile time error now.
class A{
void msg(){System.out.println("Hello");}
}
class B{
void msg(){System.out.println("Welcome");}
}
class C extends A,B{//suppose if it were
The java.io package contains nearly every class you might ever need to perform input and output (I/O) in
n
Java. All these streams represent an input source and an output destination. The stream in the java.io
package supports many data such as primitives, Object, localized characters, etc.
g.i
A stream can be defined as a sequence of data. The InputStream is used to read data from a source and
the OutputStream is used for writing data to a destination.
n
eri
Java provides strong but flexible support for I/O related to Files and networks but this tutorial covers very
basic functionality related to streams and I/O. We would see most commonly used example one by one:
Byte Streams
e
gin
Java byte streams are used to perform input and output of 8-bit bytes. Though there are many classes
related to byte streams but the most frequently used classes are ,FileInputStream and
FileOutputStream. Following is an example which makes use of these two classes to copy an input file
en
import java.io.*;
arn
FileInputStream in = null;
FileOutputStream out = null;
w.
try {
in = new FileInputStream("input.txt");
out = new FileOutputStream("output.txt");
ww
int c;
while ((c = in.read()) != -1) {
out.write(c);
}
}finally {
if (in != null) {
in.close();
}
if (out != null) {
out.close();
}
}
}
}
n
As a next step, compile above program and execute it, which will result in creating output.txt file with the
g.i
same content as we have in input.txt. So let's put above code in CopyFile.java file and do the following:
$javac CopyFile.java
n
$java CopyFile
eri
Character Streams
Java Byte streams are used to perform input and output of 8-bit bytes, where as Java Character streams
e
are used to perform input and output for 16-bit unicode. Though there are many classes related to
gin
character streams but the most frequently used classes are ,FileReader and FileWriter.. Though
internally FileReader uses FileInputStream and FileWriter uses FileOutputStream but here major
difference is that FileReader reads two bytes at a time and FileWriter writes two bytes at a time.
en
We can re-write above example which makes use of these two classes to copy an input file (having
unicode characters) into an output file:
arn
import java.io.*;
{
FileReader in = null;
FileWriter out = null;
w.
try {
in = new FileReader("input.txt");
ww
int c;
while ((c = in.read()) != -1) {
out.write(c);
}
}finally {
if (in != null) {
in.close();
}
if (out != null) {
out.close();
}
}
}
}
n
This is test for copy file.
g.i
As a next step, compile above program and execute it, which will result in creating output.txt file with the
same content as we have in input.txt. So let's put above code in CopyFile.java file and do the following:
n
$javac CopyFile.java
eri
$java CopyFile
Standard Streams
e
gin
All the programming languages provide support for standard I/O where user's program can take input
from a keyboard and then produce output on the computer screen. If you are aware if C or C++
programming languages, then you must be aware of three standard devices STDIN, STDOUT and
STDERR. Similar way Java provides following three standard streams
en
Standard Input: This is used to feed the data to user's program and usually a keyboard is used as
standard input stream and represented as System.in.
arn
Standard Output: This is used to output the data produced by the user's program and usually a
computer screen is used to standard output stream and represented as System.out.
Standard Error: This is used to output the error data produced by the user's program and usually
a computer screen is used to standard error stream and represented as System.err.
Le
Following is a simple program which creates InputStreamReader to read standard input stream until the
user types a "q":
w.
import java.io.*;
ww
try {
cin = new InputStreamReader(System.in);
System.out.println("Enter characters, 'q' to quit.");
char c;
do {
c = (char) cin.read();
System.out.print(c);
} while(c != 'q');
}finally {
if (cin != null) {
cin.close();
}
}
}
n
}
g.i
Let's keep above code in ReadConsole.java file and try to compile and execute it as below. This program
continues reading and outputting same character until we press 'q':
n
$javac ReadConsole.java
eri
$java ReadConsole
Enter characters, 'q' to quit.
1
1 e
gin
e
e
q
q
en
arn
Le
w.
ww
Unit-II
Part-A
What is web 2.0?
A Web 2.0 site may allow users to interact and collaborate with each other in a social media dialogue as creators of user-
generated content in a virtual community, in contrast to Web sites where people are limited to the passive viewing of
content. Examples of Web 2.0 include social networking sites, blogs, wikis, folksonomies, video sharing sites, hosted
services, Web applications, and mashups.
Define RIA.
A rich Internet application (RIA) is a Web application designed to deliver the same features and functions normally
associated with deskop applications. RIAs generally split the processing across the Internet/network divide by locating
n
the user interface and related activity and capability on the client side, and the data manipulation and operation on the
application server side.
g.i
Define collaboration.
Collaboration is a process defined by the recursive interaction of knowledge and mutual learning between two or more
people who are working together, in an intellectual endeavour, toward a common goal which is typically creative in
n
nature.
List the Collaborations tools.
eri
AnswerGaeden,Thinkature,DotVoting,ePals,Gaggle,Glass,Tricider.
What are the collaborative processes.
Team Creation
Idea Generation
Decision-Making e
gin
Work or Production
Evaluation or Recap
Define Web services.
A Web service is a method of communication between two electronic devices over a network. It is a software function
en
provided at a network address over the Web with the service always on as in the concept of utility computing.
Write short notes on Software as service(Soas).
SOAs : Software as a service (SaaS), sometimes referred to as "software on demand," is software that is deployed over
arn
the internet and/or is deployed to run behind a firewall on a local area network or personal computer. With SaaS, a
provider licenses an application to customers either as a service on demand, through a subscription, in a "pay-as-you-go"
model, or (increasingly) at no charge.
Write short notes on Social networking.
Le
A social network is a social structure made up of a set of social actors (such as individuals or organizations) and a set of
the dyadic ties between these actors. The social network perspective provides a set of methods for analyzing the structure
of whole social entities as well as a variety of theories explaining the patterns observed in these structures.
w.
Define Website.
A website is hosted on at least one web server, accessible via a network such as the Internet or a private local area
network through an Internet address known as a uniform resource locator (URL). All publicly accessible websites
collectively constitute the World Wide Web
ww
(TCP/IP) to link several billion devices worldwide. It is a network of networks that consists of millions of private,
public, academic, business, and government networks of local to global scope, linked by a broad array of electronic,
wireless, and optical networking technologies.
Define intranet.
An intranet is a computer network that uses Internet Protocol technology to share information, operational systems, or
computing services within an organization. This term is used in contrast to extranet, a network between organizations,
and instead refers to a network within an organization. Sometimes, the term refers only to the organization's internal
website, but may be a more extensive part of the organization's information technology infrastructure, and may be
composed of multiple local area networks. The objective is to organize each individual's desktop with minimal cost, time
and effort to be more productive, cost efficient, timely, and competitive.
n
Differentiate between internet and intranet.
Internet is general to PCs all over the world whereas Intranet is specific to few PCs.
g.i
Internet has wider access and provides a better access to websites to large population whereas Intranet is restricted.
Internet is not as safe as Intranet as Intranet can be safely privatized as per the need.
Define HTML.
n
HTML is a simple web page description language, which enables document creation for the web. HTML is the set of
mark-up symbols or codes placed in a file intended for display on the web browser page. These mark-up symbol and
eri
codes identify structural elements such as paragraphs, heading, and lists. HTML can be used to place media (such as
graphics, video, and audio) on the Web page and describe fill-in-forms. A method is an implementation of an objects
behavior.
Explain about HTTP Connection.
e
It is a communication channel between web browser and web server. It begins on the
gin
client side with the browser sending a request to the web server for a document.
Request Header Fields are
1. From
2. Reference
en
3. If_modified_since
4. Pragma
5. User Agent
arn
Define cascading.
Cascading refers to a certain set of rules that browsers use, in cascading order, to determine how to use the style
information. Such a set of rules is useful in the event of conflicting style information because the rules would give the
browser a way to determine which style is given precedence.
Le
State the use of web server logs and list the contents of a message log. (APR/MAY 2011)
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.
w.
The message log is used by a number of processes to provide debugging and troubleshooting information. You can view
the message log from the process monitor after clicking on the details hyperlink for a process and the by clicking on the
message log hyperlink in the actions area.
ww
How will you create a password field in a HTML form? (NOV/DEC 2011)
<input type=‖password‖ name=‖pwd‖ size=‖15‖>
List any four common browsers. (NOV/DEC 2011)
• Google Chrome
• Netscape Navigator
• Microsoft Internet Explorer
• Mozilla
State the uses of internet protocol. (APR/MAY 2012)
• IP function: transfer data from source device to destination device
• IP source software creates a packet representing the data
n
Differentiate between standalone and container tag.
g.i
S.no Standalone Container
1 Only start tag is present and no end tag. Both start and end tag will be present
2 Can have only attributes and no parameters Can have both attributes and parameters.
n
3 Example:<BR> Example:<html>…..</html>
What is the use of <pre> tag in HTML?
eri
The pre tag can be used to preserve the white spaces and lines in the text.
What is cellpadding and cell spacing attributes?
The cellpadding allows to have some space between the contents of each cell and its borders. The distance between each
cell is called cell spacing.
What is the need of using form in HTML? e
gin
Form is a typical layout on the web page by which user can interact with the web page. The components that can be
placed on the form are text box, check box, radio buttons, and push buttons and so on. Thus form is typically used to
create an interactive Graphical User Interface.
What is the purpose of using frames in HTML?
en
The HTML frames allows the web designer to present the web document in multiple views. Using multiple views one
can keep the formation visible and at the same time other views can be scrolled or replaced.
What is the need for special character in HTML?
arn
There are some symbols that cannot be used directly in HTML document. For example <(less than) because this symbol
is also used along with the tag. Hence this is called a special symbol and can be denoted with the help of entity reference.
State how an unrecognized element or attribute treated by the HTML document?
If any unrecocognized element or attribute is written then the HTML document simply displays the contents. For
Le
example <title>testing</title> will display the string ―testing‖ on the web page. It will not display it as a title of the
web page.
What is the use of hyperlink tag in HTML?
w.
The hyperlink tag is used to link logically with other page. Using this tag a web link can be specified. The <a> tag is
used to specify the hyperlink in HTML.
What are the uses of hyperlink in HTML?
To logically link one page with another, use of link to enhance readability of the web document, the navigation from one
ww
externally applied. The Cascading style sheet is a markup language used to apply the styles to HTML elements.
What is selector string? Specify any three forms of selectors.
The rule set in CSS consists of selector string which is basically an HTML element. These selectors can be defined with
the help of properties and values.
What is the use of Universal Selector?
Using the universal selector the values can be defined for all the elements in the document. It is denoted by *.
What is generic class selector?
The generic class applied to any tag in the HTML document. And thus the values defined within that generic selector can
be applied to the corresponding tag. The class selector must be preceded by the dot operator.
What are the advantages of External style sheet?
n
When we use external style sheet then the style is defined in one file and actual contents of the web are defined in
another file. Hence if we want to change the style of presentation of web page then we can simply modify the file in
g.i
which the style is defined.
What is the difference the external style sheet and embedded style sheet?
The external style sheet is a kind of style sheet in which the styles are defined in a separate.css file and this file is
n
mentioned at the beginning of the HTML document. When we need to apply the particular style to more than one web
documents then the external style sheet is used. The embedded style sheet is a method in which the style is specified
eri
within the HTML document itself. It is not defined in separate file. Due to embedded style sheet unique style can be
applied to all the elements.
What do you mean by the term inline element?
e
The inline elements are those elements that do not form new blocks of content. The content is distributed in lines.
What are the various style sheets?
gin
Inline, external, imported and embedded are the different types of style sheets.
Explain inline, embedded and external style sheets.
Inline
If only a small piece of code has to be styled then inline style sheets can be used.
en
Embedded
Embedded style sheets are put between the <head></head> tags.
External
arn
If you want to apply a style to all the pages within your website by changing just one
style sheet, then external style sheets can be used.
Give example for inline style sheet. (APR/MAY 2013)
<h2>InLINE CSS</h2>
Le
<p style=‖color:sienna;margin-left:20px‖>
The style ATTRIBUTE we are able to modify the appearance of HTML elements </p>
How will you embed the external style sheet? (May 2014)
In external style sheet is ideal when the style is applied to many pages. With an external style sheet, you can change the
w.
look of an entire Web site by changing just one file.Each page must include a link to the style sheet with the <link> tag.
The <link> tag goes inside the head section:
<head>
ww
n
font-family:"comic sans ms",sans-serif; }
h1 { color:#660000; font-size:12pt; }
g.i
</style>
External styles
Styles can also be set in an external style sheet which is linked to the page with a <link> tag. For example the style sheet
n
for this site is included like this:
<link rel="stylesheet" type="text/css" href="class.css" />
eri
What is the purpose of CSS Box Model and mention its parts also.
The CSS box model is essentially a box that wraps around HTML elements, and it consists of: margins, borders,
padding, and the actual content.
The different parts are:
• Margin e
gin
• Border
• Padding
• Content
Part-B
en
sites connected to the Internet worldwide, including the client devices (such as computers and cell phones) that access
Web content. The WWW is just one of many applications of the Internet and computer networks. The World Web is
based on these technologies:
1. HTML - Hypertext Markup Language
Le
other multimedia files) on the World Wide Web. HTTP is an application protocol that runs on top of the TCP/IP suite of
protocols. HTTP concepts include (as the Hypertext part of the name implies) the idea that files can contain references
to other files whose selection will elicit additional transfer requests. Any Web server machine contains, in addition to
ww
the Web page files it can serve, an HTTP daemon, a program that is designed to wait for HTTP requests and handle
them when they arrive. Your Web browser is an HTTP client, sending requests to server machines. When the browser
user enters file requests by either "opening" a Web file (typing in a Uniform Resource Locator or URL) or clicking on a
hypertext link, the browser builds an HTTP request and sends it to the Internet Protocol address (IP address) indicated
by the URL. The HTTP daemon in the destination server machine receives the request and sends back the requested file
or files associated with the request. (A Web page often consists of more than one file.)
header field(s)
blank line
optional body
1. Start line Example: GET / HTTP/1.1
Three space-separated parts:
HTTP request method
Request-URI
HTTP version
Request URI
Uniform Resource Identifier (URI)
n
Syntax: scheme : scheme-depend-part
Ex: In http://www.example.com/the scheme is http
g.i
Request-URI is the portion of the requested URI that follows the host name (which is supplied by the required Host
header field)
Ex: / is Request-URI portion of http://www.example.com/
n
Request methods:
GET
eri
• Used if link is clicked or address typed in browser
• No body in request with GET method
POST
e
• Used when submit button is clicked on a form
• Form information contained in body of request
gin
HEAD
• Requests that only header fields (no body) be returned in the response
• PUT
• DELETE
en
• TRACE
• OPTIONS
2. Header field structure:
arn
– Field values may contain MIME types, quality values, and wildcard characters (*‘s)
3. MIME
– Convention for specifying content type of a message
– In HTTP, typically used to specify content type of the body of the response
w.
n
blank line
optional body
g.i
• Status line
– Example: HTTP/1.1 200 OK
– Three space-separated parts:
n
HTTP version
status code
eri
reason phrase (intended for human
use)
• Status code
– Three-digit number
e
– First digit is class of the status code:
gin
1 Informational
2 Success
3 Redirection (alternate URL is
supplied)
en
4 Client Error
5 Server Error
– Other two digits provide additional information
arn
• Header Fields
– Connection, Content-Type, Content-Length
– Date: date and time at which response was generated (required)
– Location: alternate URI if status is redirection
Le
– Last-Modified: date and time the requested resource was last modified on the server
– Expires: date and time after which the client‘s copy of the resource will be out-of-date
– ETag: a unique identifier for this version of the requested resource (changes if resource changes)
w.
• Client Caching
– A cache is a local copy of information obtained from some other source
– Most web browsers use cache to store requested resources so that subsequent requests to the same
ww
– If no Expires header was sent, use heuristic algorithm to estimate value for Expires
– Ex: Expires = 0.01 * (Date – Last-Modified) + Date
• Character sets
– Every document is represented by a string of integer values (code points)
– The mapping from code points to characters is defined by a character set
– Some header fields have character set values:
– Accept-Charset: request header listing character sets that the client can recognize
• Ex: accept-charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
– Content-Type: can include character set used to represent the body of the HTTP message
• Ex: Content-Type: text/html; charset=UTF-8
– Technically, many ―character sets‖ are actually character encodings
n
– An encoding represents code points using variable-length byte strings
g.i
– Most common examples are Unicode-based encodings UTF-8 and UTF-16
IANA maintains complete list of Internet-recognized character sets/encodings
Explain HTML elements in detail also State the types of lists supported by HTML and explain them in
n
detail. (APR/MAY 2011)
HTML element
eri
An HTML element is an individual component of an HTML document or web page, once this has been parsed into
the Document Object Model. HTML is composed of a tree of HTML elements and other nodes, such as text nodes.
Each element can have HTML attributes specified. Elements can also have content, including other elements and
e
text. HTML elements represent semantics, or meaning. For example, the title element represents the title of the
document.
gin
Heading Tags
Any document starts with a heading. You can use different sizes for your headings. HTML also has six levels of
headings, which use the elements <h1>, <h2>, <h3>, <h4>, <h5>, and <h6>. While displaying any heading,
en
browser adds one line before and one line after that heading.
Example
<h1>This is heading 1</h1>
arn
Paragraph Tag
The <p> tag offers a way to structure your text into different paragraphs. Each paragraph of text should go in between
w.
an opening <p> and a closing </p> tag as shown below in the example:
Example
<p>Here is a first paragraph of text.</p>
ww
Centering Content
You can use <center> tag to put any content in the center of the page or any table cell.
Example
<center>
<p>This text is in the center.</p>
</center>
Horizontal Lines
Horizontal lines are used to visually break up sections of a document. The <hr> tag creates a line from the current
position in the document to the right margin and breaks the line accordingly.
Example
n
<hr />
Nonbreaking Spaces
g.i
you should use a nonbreaking space entity instead of a normal space. For example, when coding the "12 Angry
Men" in a paragraph, you should use something similar to the following code:
Example
n
<p>An example of this technique appears in the movie "12 Angry Men."</p>
eri
HTML Lists
HTML offers authors several mechanisms for specifying lists of information. All lists must contain one or more list
elements.
Unordered HTML List
The first item e
gin
The second item
The third item
The fourth item
Ordered HTML List
en
Example
<ul>
<li>Coffee</li>
arn
<li>Tea</li>
<li>Milk</li>
</ul>
Ordered information.
Le
<li>Coffee</li>
<li>Milk</li>
</ol>
Definitions.
The first item
Description of item
The second item
Description of item
Example
<dl>
<dt>Coffee</dt>
<dd>- black hot drink</dd>
<dt>Milk</dt>
<dd>- white cold drink</dd>
</dl>
Discuss the various features available in HTML to format the text with example.
Basic functionality
– Server calls on TCP software and waits for connection req to one or more ports
– When a connection request is received , the server dedicates a subtask(Single copy of server software
handling a single client connection)
n
– Subtask establish connection and receives request
– Subtask examines the host header field to determine the host and invokes software for this host
g.i
– Virtual host software Map Request-URI to specific resource on the server.
– It maps Request-URI to specific resource associated with the virtual host
• File: Return file in HTTP response (MIME Type)
n
• Program: Run program and return output in HTTP response
eri
• Log information about the request and response such as IP address and the status code in a plain-text file.
• If the TCP connection is kept alive , the server subtask continues to monitor the connection, the client
send another request or initiates a connection close.
Few Definitions
e
• All modern servers concurrently process multiple requests
gin
• Multiple copies of the server running simultaneously(Concurrency)
• Subtask Single copy of server software handling a single client connection
• Virtual Host HTTP request include a host header field
• Multiple host names mapped by a DNS to a single IP address
en
• Web server determine which virtual host is being requested by examining the host header field.
Server Configuration and Tuning
• Modern servers have large number of Configuration parameters
arn
• Load generation or stress test tools used to simulate request to a web server helpful for experimenting
with tuning parameters
Service has Five Components
• Connector, Host, Logger, Realm, and Valve
• Connector is a coyote component handles HTTP communication
• Clicking on the connector will produce the window containing the dropdown menus of possible action
that can be performed for this component
Defining Virtual Hosts
Configuring Host Elements
• The Host element represents a virtual host, which is an association of a network name for a server
n
(such as www.mycompany.com) with the particular server on which Tomcat is running.
g.i
Host Attributes
• The attributes shown in following table may be viewed, set, or modified for a Host.
• Web server logs record information about server activity
n
• Access log is a file that records information about every HTTP request processed by the server
• Message logs variety of debugging and other information generated by web server
eri
• Access logging is performed by adding a valve component
Logging
• Web server logs record information about server activity
e
• Access log is a file that records information about every HTTP request processed by the server
gin
• Message logs variety of debugging and other information generated by web server
• Access logging is performed by adding a valve component
Access Control
• Provide automatic password protection for resources
en
• Access control:
– Password protection (e.g., admin pages)
• Users and roles defined in
arn
conf/tomcat-users.xml
– Deny access to machines
• Useful for denying access to certain users by denying access from the machines they use
List of denied machines maintained in RemoteHostValve (deny by host name) or RemoteAddressValve
Le
(deny by IP address)
i) Explain how tables can be inserted into HTML document with example.
w.
The HTML table model allows authors to arrange data -- text, preformatted text, images, links, forms,
form fields, other tables, etc. -- into rows and columns of cells.
Each table may have an associated caption that provides a short description of the table's purpose. A
ww
longer description may also be for the benefit of people using speech or Braille-based user agents.
Table rows may be grouped into a head, foot, and body sections, Row groups convey additional
structural information and may be rendered by user agents in ways that emphasize this structure.
User agents may exploit the head/body/foot division to support scrolling of body sections
independently of the head and foot sections.
When long tables are printed, the head and foot information may be repeated on each page that
contains table data.
Authors may also group columns to provide additional structural information that may be exploited by
user agents.
Furthermore, authors may declare column properties at the start of a table definition in a way that
enables user agents to render the table incrementally rather than having to wait for all the table data to
arrive before rendering.
Table cells may either contain "header" information or "data. Cells may span multiple rows and
columns.
Here's a simple table that illustrates some of the features of the HTML table model. The following table
definition:
<TABLE border="1"
n
summary="This table gives some statistics about fruit
flies: average height and weight, and percentage
g.i
with red eyes (for both males and females).">
<CAPTION><EM>A test table with merged cells</EM></CAPTION>
<TR><TH rowspan="2"><TH colspan="2">Average
n
<TH rowspan="2">Red<BR>eyes
<TR><TH>height<TH>weight
eri
<TR><TH>Males<TD>1.9<TD>0.003<TD>40%
<TR><TH>Females<TD>1.7<TD>0.002<TD>43%
</TABLE>
e
gin
en
arn
--------------------------------------------------------------------------------------------------------------------------------------
ii) What is the significance of using forms on the web page? Enlist various components used on form.
A webform, or HTML form on a web page allows a user to enter data that is sent to a server for processing. Forms can
Le
resemble paper or database forms because web users fill out the forms using checkboxes, radio buttons, or text fields. For
example, forms can be used to enter shipping or credit card data to order a product, or can be used to retrieve search results
from a search engine.
w.
Forms are enclosed in the HTML form tag. This tag specifies the communication endpoint the data entered into the form
should be submitted to, and the method of submitting the data, GET or POST.
ww
Elements
Forms can be made up of standard graphical user interface elements:
text input — a simple text box that allows input of a single line of text (an alternative, password, is used for security
purposes, in which the character typed in are invisible or replaced by symbols such as *)
radio — a radio button
file — a file select control for uploading a file
reset — a reset button that, when activated, tells the browser to restore the values to their initial values.
submit — a button that tells the browser to take action on the form (typically to send it to a server)
textarea — much like the text input field except a textarea allows for multiple rows of data to be shown and entered
select — a drop-down list that displays a list of items a user can select from
n
a select box giving you a list of eye colors to choose from
g.i
a pair of check boxes to click on if they apply to you
a text area to describe your athletic ability
n
a submit button to send it to the server
eri
These basic elements provide most common graphical user interface (GUI) elements, but not all. For example, there are no
equivalents to a combo box, tree view, or grid view.
A grid view, however, can be mimicked by using a standard HTML table with each cell containing a text input element.
e
A tree view could also be mimicked through nested tables or, more semantically appropriately, nested lists.
gin
In both cases, a server side process is responsible for processing the information, while JavaScript handles the user-
interaction.
Implementations of these interface elements are available through JavaScript libraries such as jQuery.
en
HTML 4 introduced the label tag, which is intended to represent a caption in a user interface, and can be associated with a
specific form control by specifying the id attribute of the control in the label tag's for attribute.
arn
HTML 5 introduces a number of input tags that can be represented by other interface elements. Some are based upon text
input fields and are intended to input and validate specific common data.
These include email to enter email addresses, tel for telephone numbers, number for numeric values.
Le
There are additional attributes to specify required fields, fields that should have keyboard focus when the web page
containing the form is loaded, and placeholder text that is displayed within the field but is not user input.
w.
The date input type displays a calendar from which the user can select a date or date range.
And the color input type can be represented as an input text simply checking the value entered is a correct hexadecimal
representation of a color, according to the specification, or a color picker widget.
ww
Discuss how to create list and frame using HTML. Give Example.
HTML frames are used to divide your browser window into multiple sections where each section can load a separate
HTML document. A collection of frames in the browser window is known as a frameset. The window is divided into frames
in a similar way the tables are organized: into rows and columns.
Creating Frames
To use frames on a page we use <frameset> tag instead of <body> tag. The <frameset> tag defines how to divide the
window into frames. The rows attribute of <frameset> tag defines horizontal frames and cols attribute defines vertical
frames. Each frame is indicated by <frame> tag and it defines which HTML document shall open into the frame.
Example
Following is the example to create three horizontal frames:
<!DOCTYPE html>
<html>
<head>
<title>HTML Frames</title>
</head>
n
<frameset rows="10%,80%,10%">
g.i
<frame name="top" src="/html/top_frame.htm" />
<frame name="main" src="/html/main_frame.htm" />
<frame name="bottom" src="/html/bottom_frame.htm" />
<noframes>
n
<body>
eri
Your browser does not support frames.
</body>
</noframes>
</frameset>
</html> e
gin
This will produce following result:
en
arn
Le
Attribute Description
ww
src This attribute is used to give the file name that should be loaded in the
frame. Its value can be any URL. For example,
src="/html/top_frame.htm" will load an HTML file available in html
directory.
especially important when you want to create links in one frame that
load pages into an another frame, in which case the second frame
needs a name to identify itself as the target of the link.
frameborder This attribute specifies whether or not the borders of that frame are
shown; it overrides the value given in the frameborder attribute on the
<frameset> tag if one is given, and this can take values either 1 (yes)
or 0 (no).
n
g.i
marginwidth This attribute allows you to specify the width of the space between
the left and right of the frame's borders and the frame's content. The
value is given in pixels. For example marginwidth="10".
n
eri
marginheight This attribute allows you to specify the height of the space between
the top and bottom of the frame's borders and its contents. The value
is given in pixels. For example marginheight="10".
e
gin
noresize By default you can resize any frame by clicking and dragging on the
borders of a frame. The noresize attribute prevents a user from being
able to resize the frame. For example noresize="noresize".
en
scrolling This attribute controls the appearance of the scrollbars that appear on
arn
the frame. This takes values either "yes", "no" or "auto". For example
scrolling="no" means it should not have scroll bars.
Le
longdesc This attribute allows you to provide a link to another page containing
a long description of the contents of the frame. For example
longdesc="framedescription.htm"
w.
List :
ww
HTML offers web authors three ways for specifying lists of information. All lists must contain one or more list elements.
Lists may contain:
<ul> - An unordered list. This will list items using plain bullets.
<ol> - An ordered list. This will use different schemes of numbers to list your items.
<dl> - A definition list. This arranges your items in the same way as they are arranged in a dictionary.
HTML Unordered Lists
An unordered list is a collection of related items that have no special order or sequence. This list is created by using
HTML <ul> tag. Each item in the list is marked with a bullet.
Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Unordered List</title>
</head>
<body>
<ul>
n
<li>Beetroot</li>
g.i
<li>Ginger</li>
<li>Potato</li>
<li>Radish</li>
n
</ul>
eri
</body>
</html>
This will produce following result:
Beetroot
Ginger e
gin
Potato
Radish
You can use type attribute for <ul> tag to specify the type of bullet you like. By default it is a disc. Following are the
possible options:
arn
<ul type="square">
<ul type="disc">
<ul type="circle">
Le
Example
Following is an example where we used <ul type="square">
w.
<!DOCTYPE html>
<html>
<head>
ww
n
<ol type="1" start="4"> - Numerals starts with 4.
g.i
<ol type="I" start="4"> - Numerals starts with IV.
<ol type="i" start="4"> - Numerals starts with iv.
<ol type="a" start="4"> - Letters starts with d.
n
<ol type="A" start="4"> - Letters starts with D.
eri
Example
e
Following is an example where we used <ol type="i" start="4" >
gin
<!DOCTYPE html>
<html>
<head>
en
<li>Potato</li>
<li>Radish</li>
</ol>
w.
</body>
</html>
This will produce following result:
ww
iv. Beetroot
v. Ginger
vi. Potato
vii. Radish
Explain the capabilities of Web Server (APR/MAY 2013)
Basic functionality
• Server calls on TCP software and waits for connection req to one or more ports
• When a connection request is received , the server dedicates a subtask(Single copy of server software
• Log information about the request and response such as IP address and the status code in a
plain-text file.
n
• If the TCP connection is kept alive , the server subtask continues to monitor the connection, the
g.i
client send another request or initiates a connection close.
Few Definitions
• All modern servers concurrently process multiple requests
n
• Multiple copies of the server running simultaneously(Concurrency)
• Subtask Single copy of server software handling a single client connection
eri
• Virtual Host HTTP request include a host header field
• Multiple host names mapped by a DNS to a single IP address
• Web server determine which virtual host is being requested by examining the host header field.
Server Configuration and Tuning e
gin
• Modern servers have large number of Configuration parameters
• Server Configuration broken into two areas:
– External Communication
– Internal Processing
en
n
• Access logging is performed by adding a valve component
g.i
Logging
• Web server logs record information about server activity
• Access log is a file that records information about every HTTP request processed by the server
n
• Message logs variety of debugging and other information generated by web server
• Access logging is performed by adding a valve component
eri
Access Control
• Provide automatic password protection for resources
• Access control:
– e
Password protection (e.g., admin pages)
gin
• Users and roles defined in
conf/tomcat-users.xml
– Deny access to machines
• Useful for denying access to certain users by denying access from the machines
en
they use
List of denied machines maintained in RemoteHostValve (deny by host name) or RemoteAddressValve (deny
by IP address)
arn
</head><body><p>
Please Choose a Day:
<br /><br />
<select name="day">
<option selected="selected">Monday</option>
<option>Tuesday</option>
<option>Wednesday</option>
</select>
</p></body>
</html>
n
2. Transitional
The transitional DTD should be used when you need to take advantage of the presentational features that are available
g.i
through HTML. You should also use the transitional DTD when you want to support older browsers that don‘t have
built-in support for cascading style sheets.
The transitional DTD looks like this:
n
<!DOCTYPE html
eri
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Example
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html e
gin
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
en
3. Frameset
You should use the
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" frameset DTD when
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"> your XHTML page will
w.
Explain the significance of XHTML with the help of a real time application. Write necessary code snippets
(MAY/JUNE 2014)
Extensible Hypertext Markup Language (XHTML) is a family of XML markup languages that mirror or extend versions
of the widely used Hypertext Markup Language (HTML), the language in which Web pages are formulated.
Significance
Sustainability.
Web applications tend towards XML. Using XHTML now instead of HTML makes any future conversion of the
website easier.
Extensibility.
Owing to the extensibility of XML, XHTML documents can be supplemented with other forms of markup, MathML
n
(Math Markup Language) SVG (Scalable Vector Graphics) or your own markup variants, thanks to the use of
namespaces.
g.i
Compatibility.
Because XHTML documents are written in compliance with the rules of XML, XML-processing programmes can
effortlessly convert an XHTML file to another format (e.g. PDF, RSS or RTF).
Efficiency of processing applications.
n
Once browsers support XHTML documents and the strict rules of XML, they will become quicker thanks to shorter
eri
error processing routines. At present, a great deal of the processing power of a browser is still spent on liberal error
processing of documents containing malformed HTML markup.
Features
XHTML requires strict adherence to coding rules.
e
XHTML encourages a more structured and conceptual way of thinking about content and, combined with the
gin
style sheet, a more creative way of displaying it.
XHTML makes it easier for people to dream up and add new elements.
Code snippets
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-
en
strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
arn
<body>
</body>
</html>
w.
n
n g.i
eri
• User style rules defined in two ways:
• Edit|Preferences|Appearance, Fonts and colors panels allow a user to select various style options
• User can explicitly create a style sheet file the browser will input when it is started
• Features provided by IE6 e
gin
• Tools|Internet Options
• Two weight values
• Normal
• Important
en
Cascading order
What style will be used when there is more than one style specified for an HTML element?
all the styles will "cascade" into a new "virtual" style sheet by the following rules, where number four has the
highest priority:
1. Browser default
2. External style sheet
3. Internal style sheet (in the head section)
4. Inline style (inside an HTML element)
So, an inline style (inside an HTML element) has the highest priority, which means that it will override a style
defined inside the <head> tag, or in an external style sheet, or in a browser (a default value).
Note: If the link to the external style sheet is placed after the internal style sheet in HTML <head>, the external
style sheet will override the internal style sheet!
Style Inheritance
• Cascading based on structure of style sheets
• Inheritance based on tree structure of document
• What if no style declaration applies to a property of an element?
• Generally, the property value is inherited from the nearest ancestor element that has a value for the property
• If no ancestor has a value (or the property does not inherit) then CSS defines an initial value that is used
• Property values:
n
o Specified: value contained in declaration
g.i
• Absolute: value can be determined without reference to context (e.g., 2cm)
• Relative: value depends on context (e.g., larger)
o Computed: browser performs calculation depends on particular relative value
o absolute representation of relative value (e.g., larger might be 1.2 x parent font size)
n
o Actual: value actually used by browser (e.g., computed value might be rounded)
eri
• Most properties inherit computed value
o Exception discussed later: line-height
• A little thought can usually tell you whether a property inherits or not
o Example: height does not inherit
Explain any eight CSS text properties. e
gin
A font is a mapping from code points toGlyphs glyph
en
arn
Le
• font-family property can accept a list offamilies, including generic font families
ww
n
g.i
LENGTH SPECIFICATION IN CSS:
n
Many properties, such as font-size,have a value that is a CSS length
• All CSS length values except 0 need units
e eri
gin
en
arn
Le
w.
n
LINE BOXES:
g.i
Text is rendered using line boxes
n
– Initial value: normal (i.e., cell height;relationship with em height is font-specific)
eri
– Other values (following are equivalent):
n
n g.i
e eri
gin
en
arn
Le
Explain about the various style sheets with examples. (Internal,External,Inline) (APR/MAY 2013)
1. To create an inline style
w.
―text/css‖.
EXTERNAL.CSS:
body{ background-color: gray;}
p { color: blue; }
h3{ color: white; }
EXTERNAL.HTML:
<html>
<head>
<link rel="stylesheet" type="text/css" href="EXTERNAL.css" /><!—Link tag for External CSS-->
</head>
n
<body>
<h3> A White Header </h3>
g.i
<p> This paragraph has a blue font.
The background color of this page is gray because
we changed it with CSS! </p>
n
</body>
</html>
eri
INTERNAL.HTML:
<html>
<head>
<style><!—Style tag for Internal CSS--> e
gin
body { background-color: blue; }
p { color: white; }
</style>
</head>
en
<body>
<h2>Internal CSS</h2>
<p>This page uses internal CSS. Using the style tag we are able to modify
arn
INLINE.HTML:
<html>
<head>
</head>
w.
<body>
<h2>InLINE CSS</h2>
<p style="color:sienna;margin-left:20px"><!—Style Attribute(INLINE)-->
ww
This page uses INLINE CSS. Using the style ATTRIBUTE we are able to modify
the appearance of HTML elements.
</p>
</body>
</html>
Difference between web browser and web server
n
g.i
Web server and web browser are the terms which are commonly used for website. The basic purpose of both is
n
to develop a platform for internet web directory. So that any users can anytime access any kind of website.
Major difference between them is on their function and how they perform their functions. Check for the detail
eri
of both topics before understanding the differences between them.
Web Server:
e
gin
Web server is a computer system, which provides the web pages via HTTP (Hypertext Transfer Protocol). IP
address and a domain name is essential for every web server. Whenever, you insert a URL or web address into
your web browser, this sends request to the web address where domain name of your URL is already saved.
Then this server collects the all information of your web page and sends to browser, which you see in form of
en
web page on your browser. Making a web server is not a difficult job. You can convert your computer into a
web server with the help of any server software and connecting the computer to the internet. Lot of web server
software are available in the market in shape of NCSA, Apache, Microsoft and Netscape. Storing, processing
arn
and delivering web pages to clients is its main function. All the communication between client (web browser)
and server takes place via HTTP.
Web Browser:
Le
Web browser is a client, program, software or tool through which we sent HTTP request to web server. The
main purpose of web browser is to locate the content on the World Wide Web and display in the shape of web
w.
page, image, audio or video form. You can call it a client server because it contacts the web server for desired
information. If the requested data is available in the web server data then it will send back the requested
information again via web browser. Microsoft Internet Explorer, Mozilla Firefox, Safari, Opera and Google
ww
Chrome are examples of web browser and they are more advanced than earlier web browser because they are
capable to understand the HTML, JavaScript, AJAX, etc. Now a days, web browser for mobiles are also
available, which are called microbrowser.
Difference:
Following are the differences between web server and web browser.
Web server is essential to store all information and data of websites. While web browser are used to
Internet
n
g.i
It is a worldwide system which has the following characteristics:
n
Internet uses the standard Internet Protocol (TCP/IP)
Every computer in internet is identified by a unique IP address.
eri
IP Address is a unique set of numbers (such as 110.22.33.114) which identifies a computer‘s location.
A special computer DNS (Domain Name Server) is used to give name to the IP Address so that user
can locate a computer by a name.
e
For example, a DNS server will resolve a name http://www.tutorialspoint.com to a particular IP
gin
address to uniquely identify the computer on which this website is hosted.
Internet is accessible to every user all over the world.
en
arn
Le
w.
ww
Intranet
Usually each company or organization has their own Intranet network and members/employees of that
company can access the computers in their intranet.
Each computer in Intranet is also identified by an IP Address which is unique among the computers in
that Intranet.
n
n g.i
Similarities in Internet and Intranet e eri
gin
Intranet uses the internet protocols such as TCP/IP and FTP.
Intranet sites are accessible via web browser in similar way as websites in internet. But only members
of Intranet network can access intranet hosted sites.
en
In Intranet, own instant messengers can be used as similar to yahoo messenger/ gtalk over the internet.
arn
Internet is general to PCs all over the world whereas Intranet is specific to few PCs.
Internet has wider access and provides a better access to websites to large population whereas Intranet
Le
is restricted.
Internet is not as safe as Intranet as Intranet can be safely privatized as per the need.
w.
A mashup is similar to a remix. You might have heard examples again from the musicworld where elements
of Led Zeppelin are combined with Jayzee, for example, toform a weird rap/rock song. That‘s a mashup. The
same can be done with data fromthe Internet.
n
makes sense.
The resulting data is bound to the HTML and inserted into the response, which is sentback to the browser.
g.i
Pros and Cons
The benefits of this approach are that the browser is decoupled entirely from thepartner sites supplying the
n
data. The Web server acts as a proxy and aggregator forthe responses.
eri
Disadvantages of this approach are that the browser requests an entire page, whichtypically is acceptable.
Second, the Web server is doing all the work in terms of data manipulation. Thoughthis is good in terms of
maintenance, it‘s not so good in terms of scalability. Whenyour mashup gains popularity and starts being
e
viewed by thousands of users, theamount of work the server‘s doing increases, while the browser residing at
gin
the clientis relatively idle.
Flex applications support a variety of remote data communication techniques built onstandards.
There are three basic categories of Flex application remote data communication:
arn
Real-time communication
w.
This category consists of persistent socket connections. Flash Player supportstwo types of socket
connections: those that require a specific format for packets(XMLSocket) and those that allow raw socket
connections (Socket)
ww
the client.
Because Flex applications are stateful and self-contained, they don‘t require new pagerequests and wholesale
screen refreshes to make data requests and handle responses.
The Flex framework provides components for working with data communicationusing standard HTTP
requests as well as SOAP requests.
n
Simple HTTP Services
g.i
The most basic type of HTTP request/response communication uses what we callsimple HTTP services.
These services include things such as text and XMLresources, either in static documents or dynamically
generated by something such as aColdFusion page, a servlet, or an ASP.NET page.
n
eri
HTTPService
HTTPService is a component that allows you to make requests to simple HTTPservices such as text files,
XML files, or scripts and pages that return dynamic data.You must always define a value for the url property
of an HTTPService object.
e
The following example uses MXML to create an HTTPService object that loads textfrom a file called
gin
data.txt saved in the same directory as the compiled .swf file:
<mx:HTTPService id="textService" url="data.txt" />
en
Sending requests
Creating an HTTPService object does not automatically make the request to load thedata. In order to make
the request, you must call the send( ) method. If you want toload the data when the use clicks a button, you can
arn
Handling results
Le
The send( ) method makes the request, but a response is not likely to be returnedinstantaneously. Instead, the
application must wait for a result event. The followingexample displays an alert when the data loads:
<mx:HTTPService id="textService" url="data.txt" result="mx.controls.Alert.show('Data loaded')" />
w.
Sending parameters
When you want to pass parameters to the service, you can use the request property ofthe HTTPService
ww
instance. The request property requires an Object value. Bydefault, the name/value pairs of the object are
converted to URL-encoded format andare sent to the service using HTTP GET.
The default value is object, which yields the default behavior you‘ve already seen.You can optionally specify
any of the following values:
Text:The data is not parsed at all, but is treated as raw text.
Flashvars:The data is assumed to be in URL-encoded format, and it will be parsedinto an object with
properties corresponding to the name/value pairs.
Array:The data is assumed to be in XML format, and it is parsed into objects muchthe same as with the object
settings. However, in this case, the result is alwaysan array. If the returned data does not automatically parse
n
Because HTTPService components provide significant data conversion advantages(such as automatic
g.i
serialization of data), it is still frequently a good idea to use anHTTPService object within a remote proxy.
However, it is generally necessary tothen work with the HTTPService component entirely with ActionScript,
includingconstructing the object and handling the responses.URLLoader
n
HTTPService allows you to use requests and handle responses to and from simpleHTTP services. You can
eri
optionally use the Flash Player class calledflash.net.URLLoader to accomplish the same tasks entirely with
ActionScript, but at aslightly lower level.
The first step when working with a URLLoader object is always to construct theobject using the constructor
method, as follows:
var loader:URLLoader = new URLLoader( ); e
gin
Once you‘ve constructed the object, you can do the following:
• Send requests.
• Handle responses.
• Send parameters.
en
Sending requests
You can send requests using the load( ) method of a URLLoader object. The load( )method requires that you
arn
pass it a flash.net.URLRequest object specifying at aminimum what URL to use when making the request. The
following makes a requestto a text file called data.txt:
loader.load(new URLRequest("data.txt"));
Handling responses
Le
URLLoader objects dispatch complete events when a response has been returned.Any return value is stored
in the data property of the URLLoader object.
Sending parameters
w.
You can send parameters using URLLoader as well. In order to send parameters, youassign a value to the
data property of the URLRequest object used to make therequest. The URLRequest object can send binary
data or string data.
ww
Web Services
Flash Player has no built-in support for SOAP web services. However, Flex providesa WebService
component that uses built-in HTTP request/response support as well asXML support to enable you to work
with SOAP-based web services. There are twoways you can work with the WebService components: using
MXML and usingActionScript.Using WebService Components with MXML
You can create a WebService component instance using MXML. When you do, youshould specify an id and
a value for the wsdl property.\
Eg: <mx:WebService id="statesService" wsdl="http://www.rightactionscript.com/states/
webservice/StatesService.php?wsdl" />
Web services define one or more methods or operations. You must define theWebService instance so that it
knows about the operations using nested operationtags. The operation tag requires that you specify the name at
a minimum.
n
statesService.getCountries( );
g.i
Handling results
When a web service operation returns a result, you can handle it in one of two ways:explicitly handle the
n
result event or use data binding. Then, once a result is returned,you can retrieve the result value from the
eri
lastResult property of the operation.
service operations. Assuming you set the wsdl property, youdon‘t need to pass any parameters to loadWSDL(
):
exampleService.loadWSDL( );
Le
w.
ww
Part – A
What is JavaScript?
JavaScript is a platform-independent, event-driven, interpreted client-side scripting language developed by Netscape
Communications Corp. and Sun Microsystems.
What are the primitive data types in javascript?
JavaScript supports five primitive data types: number, string, Boolean, undefined, and null. These types are referred to as
primitive typesbecause they are the basic building blocks from which more complex types can be built. Of the five, only
number, string, and Boolean are real data types in the sense of actually storing data. Undefinedand null are types that
arise under special circumstances.
What are the Escape Codes Supported in JavaScript?
n
The Escape codes supported in javascript are \b Backspace,\t Tab (horizontal),
\n Linefeed (newline),\v Tab (vertical),\f Form feed,\r Carriage return,\" Double quote
g.i
\' Single quote,\\ Backslash.
What is JavaScript name spacing? How and where is it used?
Using global variables in JavaScript is evil and a bad practice. That being said, namespacing is used to bundle up
all your functionality using a unique name. In JavaScript, a namespace is really just an object that you’ve attached all
n
further methods, properties and objects. It promotes modularity and code reuse in the application.
eri
How many looping structures can you find in javascript?
If you are a programmer, you know the use of loops. It is used to run a piece of code multiple times according to some
particular condition. Javascript being a popular scripting language supports the following loops for, while, do-while
loop
Mention the various Java Script Object Models. e
gin
Math Object, String Object, Date Object, Boolean and Number Object, Document Object
Window Object.
How Scripting Language Is Differs from HTML?
HTML is used for simple web page design, HTML with FORM is used for both form design and Reading input values
en
from user, Scripting Language is used for Validating the given input values weather it is correct or not, if the input value
is incorrect, the user can pass an error message to the user, Using form concept various controls like Text box, Radio
Button, Command Button, Text Area control and List box can be created.
arn
Javascript supports event driven programming. when user clicks the mouse or hit the keys on the keyboard or if user
submits the form then these events and response to them can be handled using javascript. Hence javascript is mainly
used in web programming for validating the data provided by the user.
What is the use of pop up boxes in java script?
There are three types of popup boxes used in javascript. Using these popup boxes the user can interact with the web
application.
What is DOM?
Document Object Model (DOM) is a set of platform independent and language neutral application interface (API) which
describes how to access and manipulate the information stored in XML, XHTML and javascript documents.
Enlist any four mouse events.
n
How to create arrays in Javascript?
We can declare an array like this Var scripts = new Array();
g.i
We can add elements to this array like this
scripts[0] = "PHP";
scripts[1] = "ASP";
n
scripts[2] = "JavaScript";
scripts[3] = "HTML";
eri
Now our array scrips has 4 elements inside it and we can print or access them by using their index number. Note that
index number starts from 0. To get the third element of the array we have to use the index number 2. Here is the way to
get the third element of an array. document. write (scripts[2]); We also can create an array like this var no_array = new
Array(21, 22, 23, 24, 25);
e
Write a simple program in JavaScript to validate the email-id.
gin
<!DOCTYPE html>
<html>
<head>
<script>
en
function validateForm() {
var x = document.forms["myForm"]["email"].value;
var atpos = x.indexOf("@");
arn
</script>
</head>
<body>
<form name="myForm" action="demo_form.asp" onsubmit="return validateForm();" method="post">
w.
</body>
</html>
Write short notes on JDBC.
JDBC standard is intented for people developing industrial-strength database applications.JDBC makes java effective for
developing enterprise information system.java.sql is the JDBC package that contains classes & interfaces that enable a
java program to interact with a database.
Write short notes on JDBC drivers.
A JDBC driver is basically an implementation of the function calls specified in the JDBC API for a particular vendor’s
RDBMS. Hence, a java program with JDBC function calls can access any RDBMS that has a JDBC driver available. A
driver manager is used to keep track of all the installed drivers on the system. The operations of driver manager are
n
initialization parameters.
String get ServletInfo() – returns a string describing the servlet.
g.i
void init(ServletConfig sc) throws ServletException –called when the servlet is initialized
.Initialization parameters for servlet can be obtained from sc. An unavailable exception should be thrown if the servlet is
not initialized.
n
Void Service(ServletRequest req,ServletResponse res) throws ServletException, IOException- Called to process a
request from a client. The request from the client can be read from req. response to the client can be written to res. An
eri
exception is generated if a servlet or IO problem occurs.
What is the difference between CGI and servlets?
Performance is significantly better, servlet execute within the address space of a web server.
Servlets are platform independent
e
The java security manager on the server enforces a set of restrictions to protect the resources on a server
gin
machine.
The full functionality of java class libraries is available to a servlet.
Define Servlet Life Cycle?
init( ) method - invoked when the servlet is first loaded into memory
en
JavaServer Pages (JSP) is a technology for developing web pages that support dynamic content which helps developers
insert java code in HTML pages by making use of special JSP tags, most of which start with <% and end with %>.
What are advantages of using JSP?
Performance is significantly better because JSP allows embedding Dynamic Elements in HTML Pages itself.
Le
JSP are always compiled before it's processed by the server unlike CGI/Perl which requires the server to load an
interpreter and the target script each time the page is requested.
Explain lifecycle of a JSP.
Compilation
w.
Initialization
Execution
Cleanup
ww
n
<html>
g.i
<head>
<script>
function myFunction() {
document.getElementById("demo").innerHTML = "Paragraph changed.";
n
}
eri
</script>
</head>
<body>
<h1>My Web Page</h1> e
gin
<p id="demo">A Paragraph</p>
<button type="button" onclick="myFunction()">Try it</button>
en
</body>
</html>
Explain sub classes and super classes in Javascript.
arn
The top-most class, the class from which all other classes are derived, is the Object classdefined in java.lang . Object is
the root of a hierarchy of classes, as illustrated in the following figure. The subclass inherits state and behavior in the
form of variables and methods from its superclass.
the Class.create() method. Until now the only feature of classes defined this way was that the constructor called a
Le
initialize: function(name) {
this.name = name;
ww
},
say: function(message) {
return this.name + ': ' + message;
}
};
var guy = new Person('Miro');
guy.say('hi');
// -> "Miro: hi"
n
john.say('ahoy matey');
g.i
// -> "Long John: ahoy matey, yarr!"
Observe the direct interaction with class prototypes and the clumsy inheritance technique using Object.extend. Also,
with Pirate redefining the say() method ofPerson, there is no way of calling the overridden method like you can do in
n
programming languages that support class-based inheritance.
eri
Example:
<script language="javascript"type="text/javascript">
<!--
e
gin
functionsuperClass() {
this.supertest = superTest; //attach method superTest
}
functionsubClass() {
en
this.inheritFrom = superClass;
this.inheritFrom();
arn
}
functionsubTest() {
w.
return"subTest";
}
ww
varnewClass = newsubClass();
alert(newClass.subtest()); // yields "subTest"
alert(newClass.supertest()); // yields "superTest"
//-->
</script>
Discuss Javascript objects in detail with suitable examples. (NOV/DEC 2012, MAY/JUNE 2014)
• An object is a set of properties
• A property consists of a unique (within an object) name with an associated value
• The type of a property depends on the type of its value and can vary dynamically
• Object properties do not have data types
Ex: Single property prop of an object o
n
g.i
• Objects are created using new expression
• First line creates a variable named o1 initialize its value of type object by calling built-in constructor Object()
n
•Second line adds a property named testing to the o1 object and assigns a string value to this property
eri
•A constructor is a function
• When called via new expression, a new empty Object is created and passed to the constructor along with
the argument values
• Constructor performs initialization on the object
e
• Can add properties and methods to object
gin
• Can add object to an inheritance hierarchy from which it can inherit additional properties and
methods
• The Object() built-in constructor
• Does not add any properties or methods directly to the object
en
• default toString() and valueOf() methods (used for conversions to String and Number,
resp.)
• Assign a value to an object property
arn
in a single statement
Enumerating Properties
• To know which property an object has at any given time
• Special form of for statement used to iterate through all properties of an object:
w.
ww
Array notation
• To print the values of those properties
• The JavaScript object dot notation is actually shorthand for a more general associative array notation in which
Strings are array indices:
• Expressions can supply property names:
• Two different notations for accessing properties
• Dot notation
Object reference
StringBuffer s1 = new StringBuffer(―Hello‖);
StringBuffer s2 = s1;
• Single StringBuffer is created and both s1 and s2 will be references to it
• Copies the reference from s1 to s2
• If code followed by s2. append(―World!‖);
System.out.println(s1);
n
n g.i
e eri
gin
en
arn
Le
w.
ww
n
g.i
Methods
• JavaScript functions are stored as values of type Object
• A function declaration creates a function value and stores it in a variable (property of window) having the same
n
name as the function
A method is an object property for which the value is a function
eri
Discuss about Javascript debugging. Explain how local and global functions can be written using java script
(MAY/JUNE 2012)
e
A debugger is an application that places all aspects of script execution under the control of the programmer. Debuggers
provide fine-grained control over the state of the script through an interface that allows you to examine and set values as
gin
well as control the flow of execution. Once a script has been loaded into a debugger, it can be run one line at a time or
instructed to halt at certain breakpoints. Once execution is halted, the programmer can examine the state of the script and
its variables in order to determine if something is amiss. You can also watch variables for changes in their values. The
latest version of the Mozilla JavaScript Debugger for both Mozilla and Netscape browsers
en
variables that are initialized only when a function is called and die when the execution comes out of the function.
Variables that exist only inside a function are called Local variables. They have no presence outside the function. The
values of such Local variables cannot be changed by the main code or other functions. This results in easy code
maintenance and is especially helpful if many programmers are working together on the same project.
Le
Variables that exist throughout the script are called Global variables. Their values can be changed anytime in the code
and even by other functions.
In JavaScript, an inner (nested) function stores references to the local variables that are present in the same scope as the
function itself, even after the function returns. This set of references is called a closure.
w.
function myFunction() {
var a = 4;
return a * a;
ww
}
The JavaScript global properties and functions can be used with all the built-in JavaScript objects.
var uri = "my test.asp?name=ståle&car=saab";
var enc = encodeURI(uri);
var dec = decodeURI(enc);
var res = enc + "<br>" + dec;
Explain the way in which java script handles arrays with example. (MAY/JUNE 2012)
Array
An array is a special variable, which can hold more than one value at a time.
If you have a list of items (a list of car names, for example), storing the cars in single variables could
n
Using the JavaScript Keyword new
The following example also creates an Array, and assigns values to it:
g.i
Example: var cars = new Array("Saab", "Volvo", "BMW");
Access the Elements of an Array
You refer to an array element by referring to the index number.
n
This statement access the value of the first element in myCars:
var name = cars[0];
eri
This statement modifies the first element in cars:
cars[0] = "Opel";
Note [0] is the first element in an array. [1] is the second. Array indexes start with 0.
Different Objects in One Array
e
JavaScript variables can be objects. Arrays are special kinds of objects.
gin
Because of this, you can have variables of different types in the same Array.
You can have objects in an Array. You can have functions in an Array. You can have arrays in an Array:
myArray[0] = Date.now;
myArray[1] = myFunction;
en
myArray[2] = myCars;
Arrays are Objects
Arrays are a special type of objects. The typeof operator in JavaScript returns "object" for arrays.But,
arn
JavaScript arrays are best described as arrays. Arrays use numbers to access its "elements". In this
example, person[0] returns John:
Array: var person = ["John", "Doe", 46];
Object: var person = {firstName:"John", lastName:"Doe", age:46};
Le
n
<script type="text/javascript">
function factorial(f,n)
g.i
{
l=1;
for(i=1;i<=n;i++)
n
l=l*i;
f.p.value=l;
eri
}
</script>
</head>
<body>
<form> e
gin
number:<input type="text" name="t"></br>
<input type="button" value="submit" onClick="factorial(this.form,t.value)"></br>
result:<input type="text" name="p"></br>
</form>
en
</body>
</html>
arn
ii) Write a Java script to find the prime number between 1 and 100.
<html>
<head>
<script language="javascript">
Le
{
if(n%i==0)
{
ww
x=0;
break;
}
}
if(x==1)
{
alert(n +" "+" is prime");
}
else
{
alert(n +" "+" is not prime");
</script>
</head>
<body>
</html>
Write a servlet program which displays the different content each time the user visits the page
import java.io.*;
import java.sql.Date;
import java.util.*;
n
import javax.servlet.*;
g.i
import javax.servlet.http.*;
n
eri
private int hitCount;
// increment hitCount
hitCount++;
PrintWriter out = response.getWriter();
w.
"transitional//en\">\n";
out.println(docType +
"<html>\n" +
"<head><title>" + title + "</title></head>\n" +
"<body bgcolor=\"#f0f0f0\">\n" +
"<h1 align=\"center\">" + title + "</h1>\n" +
"<h2 align=\"center\">" + hitCount + "</h2>\n" +
"</body></html>");
}
public void destroy()
{
// This is optional step but if you like you
// can write hitCount value in your database.
}
}
Now let us compile above servlet and create following entries in web.xml
....
n
<servlet>
g.i
<servlet-name>PageHitCounter</servlet-name>
<servlet-class>PageHitCounter</servlet-class>
</servlet>
n
eri
<servlet-mapping>
<servlet-name>PageHitCounter</servlet-name>
<url-pattern>/PageHitCounter</url-pattern>
</servlet-mapping> e
gin
....
Write a Java script program to create Popup box, alert and confirm box.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml11.dtd">
en
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Introduction to pop up box</title>
arn
</head>
<body>
<p>Experiment with the popup boxes by clicking the buttons(OK and Cancel) on them</p>
Le
<script type="text/javascript">
if(confirm("do you agree?"))
alert("You have agreed");
w.
else
input_text=prompt("Enter some string here..."," ");
/*the value entered in prompt box is returned
and stored in the variable text */
ww
alert("Hi "+input_text);
</script>
</body>
</html>
Write a Java script program to print the numbers from 0 to 50.
<script type = "text/javascript">
var input;
var i=0;
input= 50;
n
{
g.i
document.getElementById("tbl").innerHTML = "<table border = '1'>" +
"<tr>" +
"<td>1</td>" +
n
"<td>abc</td>" +
eri
"<td>123</td>" +
"</tr>" +
"<tr>" +
"<td>2</td>" + e
gin
"<td>def</td>" +
"<td>456</td>" +
"</tr>" +
en
"<table>";
}
</script>
arn
<div id="cnt"></div>
<div id="tbl"></div>
<input type="text" name="txtRow" style="width:200px;height:25px;" /><button name="cmdRow"
style="width:125px;height:30px;" onclick="createTable()">Create Table</button>
Le
</html>
Write a Java script program to create user registration form.
<!DOCTYPE html>
w.
<html lang="en"><head>
<meta charset="utf-8">
<title>JavaScript Form Validation using a sample registration form</title>
ww
<meta name="keywords" content="example, JavaScript Form Validation, Sample registration form" />
<meta name="description" content="This document is an example of JavaScript Form Validation using a sample
registration form. " />
<link rel='stylesheet' href='js-form-validation.css' type='text/css' />
<script src="sample-registration-form-validation.js"></script>
</head>
<body onload="document.registration.userid.focus();">
<h1>Registration Form</h1>
<p>Use tab keys to move from one input field to the next.</p>
<form name='registration' onSubmit="return formValidation();">
<ul>
<li><label for="userid">User id:</label></li>
<li><input type="text" name="userid" size="12" /></li>
<li><label for="passid">Password:</label></li>
<li><input type="password" name="passid" size="12" /></li>
<li><label for="username">Name:</label></li>
<li><input type="text" name="username" size="50" /></li>
<li><label for="address">Address:</label></li>
<li><input type="text" name="address" size="50" /></li>
<li><label for="country">Country:</label></li>
n
<li><select name="country">
<option selected="" value="Default">(Please select a country)</option>
g.i
<option value="AF">Australia</option>
<option value="AL">Canada</option>
<option value="DZ">India</option>
n
<option value="AS">Russia</option>
<option value="AD">USA</option>
eri
</select></li>
<li><label for="zip">ZIP Code:</label></li>
<li><input type="text" name="zip" /></li>
<li><label for="email">Email:</label></li>
e
<li><input type="text" name="email" size="50" /></li>
gin
<li><label id="gender">Sex:</label></li>
<li><input type="radio" name="msex" value="Male" /><span>Male</span></li>
<li><input type="radio" name="fsex" value="Female" /><span>Female</span></li>
<li><label>Language:</label></li>
en
</html>
i) Explain any two validation function in java script.(4)
JavaScript, provides a way to validate form's data on the client's computer before sending it to the web server. Form
w.
Data Format Validation - Secondly, the data that is entered must be checked for correct form and value. This
would need to put more logic to test correctness of data.
<input id="id1" type="number" min="100" max="300">
<button onclick="myFunction()">OK</button>
<p id="demo"></p>
<script>
function myFunction() {
var inpObj = document.getElementById("id1");
if (inpObj.checkValidity() == false) {
document.getElementById("demo").innerHTML = inpObj.validationMessage;
}
}
</script>
n
1434171279721
g.i
Dates written as numbers, specifies the number of milliseconds since January 1, 1970, 00:00:00.
Displaying Dates
<p id="demo"></p>
n
<script>
eri
document.getElementById("demo").innerHTML = Date();
</script>
Creating Date Objects
The Date object lets us work with dates.
e
A date consists of a year, a month, a day, an hour, a minute, a second, and milliseconds.
gin
Date objects are created with the new Date () constructor.
There are 4 ways of initiating a date:
new Date()
en
new Date(milliseconds)
new Date(dateString)
new Date(year, month, day, hours, minutes, seconds, milliseconds)
arn
Example:
<script>
var d = new Date();
document.getElementById("demo").innerHTML = d;
Le
</script>
iii)Write a java script program to generate Fibonacci series using do while loop.(6)
w.
<html>
<body>
<script type="text/javascript">
ww
var a=0,b=1,c;
document.write("Fibonacci");
while (b<=10)
{
document.write(c);
document.write("<br/>");
c=a+b;
a=b;
b=c;
}
</script>
</body>
</html>
i) Explain JavaScript & document object model (DOM ) with example.(8)
import java.io.File;
import java.util.Scanner;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
n
import org.w3c.dom.Node;
g.i
import org.w3c.dom.NodeList;
public class NewClass {
public static void main(String args[]) {
n
try {
eri
File stocks = new
File("C:\\Users\\Administrator\\Documents\\NetBeansProjects\\WebApplication3\\newXMLDocument.xml");
DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
e
DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
gin
Document doc = dBuilder.parse(stocks);
doc.getDocumentElement().normalize();
System.out.println("root of xml file" + doc.getDocumentElement().getNodeName());
NodeList nodes = doc.getElementsByTagName("stock");
en
String s=scan.next();
System.out.println("==========================");
for (int i = 0; i < nodes.getLength(); i++) {
Node node = nodes.item(i);
Le
if (node.getNodeType() == Node.ELEMENT_NODE) {
Element element = (Element) node;
if(s.equals(getValue("userid", element)))
w.
{
System.out.println("Stock User Id: " + getValue("userid", element));
ww
}
}
private static String getValue(String tag, Element element) {
NodeList nodes = element.getElementsByTagName(tag).item(0).getChildNodes();
Node node = (Node) nodes.item(0);
return node.getNodeValue();
}
}
n
ii) Explain in details the JDBC CONNECTIVITY with example program.(8)
g.i
import java.io.*;
import java.util.*;
import javax.servlet.*;
n
import javax.servlet.http.*;
eri
import java.sql.*;
public class DatabaseAccess extends HttpServlet{
e
public void doGet(HttpServletRequest request, HttpServletResponse response)
gin
throws ServletException, IOException
{
// JDBC driver name and database URL
en
// Database credentials
static final String USER = "root";
static final String PASS = "password";
Le
// Open a connection
conn = DriverManager.getConnection(DB_URL,USER,PASS);
n
sql = "SELECT id, first, last, age FROM Employees";
g.i
ResultSet rs = stmt.executeQuery(sql);
n
while(rs.next()){
eri
//Retrieve by column name
int id = rs.getInt("id");
int age = rs.getInt("age");
String first = rs.getString("first"); e
gin
String last = rs.getString("last");
//Display values
en
// Clean-up environment
rs.close();
w.
stmt.close();
conn.close();
}catch(SQLException se){
ww
if(stmt!=null)
stmt.close();
}catch(SQLException se2){
}// nothing we can do
try{
if(conn!=null)
conn.close();
}catch(SQLException se){
se.printStackTrace();
n
}//end finally try
g.i
} //end try
}
}
n
Explain the JDBC database access in detail. Write a java servlet to conduct online examination. (APR/MAY
eri
2013)
Index.html
<%@page contentType="text/html" pageEncoding="UTF-8"%>
e
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
gin
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head><title>Database Test</title></head>
en
<body>
<center>
arn
<h1>Online Examination</h1>
</center>
<form action="Servlet_tier1" method="POST">
Le
n
<input type="radio" name="group4" value="False">False<br>
g.i
<b>5. HTML1 is a Protocol for describing web contents</b><br/>
<input type="radio" name="group5" value="True">True
n
<input type="radio" name="group5" value="False">False<br>
<br><br><br>
eri
<center>
<input type="submit" value="Submit"><br><br>
</center> e
gin
</form>
</body>
</html>
en
SERVLET_TIER1.JAVA:
import java.io.*;
arn
import java.sql.*;
import javax.servlet.*;
Le
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.*;
@WebServlet(name="Servlet_tier1", urlPatterns={"/Servlet_tier1"})
w.
String message,Seat_no,Name,ans1,ans2,ans3,ans4,ans5;
int Total=0;
java.sql.Connection connect;
java.sql.Statement stmt=null;
java.sql.ResultSet rs=null;
public void doPost(HttpServletRequest request,HttpServletResponse response) throws
ServletException,IOException
{
try
{
String url="jdbc:odbc:NEO";// Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
connect=DriverManager.getConnection(url,"","");
message="Thank you for participating in online Exam";
}
n
catch(ClassNotFoundException cnfex){
g.i
cnfex.printStackTrace();
}
n
catch(SQLException sqlex){
sqlex.printStackTrace();
eri
}
catch(Exception excp){
excp.printStackTrace(); e
gin
}
Seat_no=request.getParameter("Seat_no");
Name=request.getParameter("Name");
en
ans1=request.getParameter("group1");
ans2=request.getParameter("group2");
arn
ans3=request.getParameter("group3");
ans4=request.getParameter("group4");
ans5=request.getParameter("group5");
Le
if(ans1.equals("True"))
Total+=2;
w.
if(ans2.equals("False"))
Total+=2;
ww
if(ans3.equals("True"))
Total+=2;
if(ans4.equals("False"))
Total+=2;
if(ans5.equals("False"))
Total+=2;
try
{
stmt=connect.createStatement();
String query="INSERT INTO
student("+"Seat_no,Name,Total"+")VALUES('"+Seat_no+"','"+Name+"','"+Total+"')";
stmt.executeUpdate(query);
stmt.close();
}catch(SQLException ex){
n
}
g.i
response.setContentType("text/html");
PrintWriter out=response.getWriter();
n
out.println("<html>");
out.println("<head>");
eri
out.println("</head>");
out.println("<body bgcolor=cyan>");
out.println("<center>"); e
gin
out.println("<h1>"+message+"</h1>\n");
out.println("<h3>Yours results stored in our database</h3>");
out.print("<br><br>");
en
try
{
java.sql.Statement stmt2=connect.createStatement();
Le
out.println("<th>"+"Seat_no"+"</th>");
out.println("<th>"+"Name"+"</th>");
ww
out.println("<th>"+"Marks"+"</th>");
while(rs.next())
{
out.println("<tr>");
out.print("<td>"+rs.getString(1)+"</td>");
out.print("<td>"+rs.getString(2)+"</td>");
out.print("<td>"+rs.getString(3)+"</td>");
out.println("</tr>");
}
out.println("</table>");
}
catch(SQLException ex){ }
finally
{
n
try
g.i
{
if(rs!=null)
n
rs.close();
if(stmt!=null)
eri
stmt.close();
if(connect!=null)
connect.close(); e
gin
}catch(SQLException e){ }
}
out.println("</center>");
en
out.println("</body></html>");
Total=0;
arn
}}
What is a servlet? Explain briefly the Servlet life cycle and Servlet HTTP package?
Le
A servlet is a Java programming language class that is used to extend the capabilities of servers that host applications
accessed by means of a request-response programming model. Although servlets can respond to any type of request, they
are commonly used to extend the applications hosted by web servers. For such applications, Java Servlet technology
w.
The javax.servlet and javax.servlet.http packages provide interfaces and classes for writing servlets. All
ww
servlets must implement the Servlet interface, which defines life-cycle methods. When implementing a generic
service, you can use or extend the GenericServlet class provided with the Java Servlet API.
TheHttpServlet class provides methods, such as doGet and doPost, for handling HTTP-specific services.
– Static: HTML document is retrieved from the file system and returned to the client
– Dynamic: HTML document is generated by a program in response to an HTTP request
– Java servlets are one technology for producing dynamic server responses
– Servlet is a class instantiated by the server to produce a dynamic response
n
n g.i
What are all the Servlet API life cycle methods
Servlet API life cycle methods
eri
– init(): called when servlet is instantiated; must return before any other methods will be called
– service(): method called directly by server when an HTTP request is received; default service() method
calls doGet() (or related methods covered later)
e
– destroy(): called when server shuts down
gin
PARAMETER DATA:
• The request object (which implements HttpServletRequest) provides information from the HTTP request to the
servlet
• One type of information is parameter data, which is information from the query string portion of the HTTP
request
en
• Recommended when parameter data is not stored but used only to request information (e.g.,
search engine query)
– POST:
w.
• Most browsers will warn you if they are about to resubmit POST data to avoid duplicate updates
n
HttpSessionBindingListener Causes an object to be notified when it is bound to or unbound from a session.
g.i
Deprecated. As of Java(tm) Servlet API 2.1 for security reasons, with no
HttpSessionContext
replacement.
n
Implementations of this interface are notified of changes to the list of active
HttpSessionListener
sessions in a web application.
eri
Class:
Creates a cookie, a small amount of information sent by a servlet to a Web
Cookie
e
browser, saved by the browser, and later sent back to the server.
gin
Provides an abstract class to be subclassed to create an HTTP servlet suitable for a
HttpServlet
Web site.
Provides a convenient implementation of the HttpServletRequest interface that
HttpServletRequestWrapper
en
HttpSessionEvent
web application.
HttpUtils Deprecated. As of Java(tm) Servlet API 2.3.
ww
n
7. public ServletContext getServletContext() returns the object of ServletContext.
g.i
8. public String getInitParameter(String name) returns the parameter value for the given parameter name.
9. public Enumeration getInitParameterNames() returns all the parameters defined in the web.xml file.
10. public String getServletName() returns the name of the servlet object.
n
11. public void log(String msg) writes the given message in the servlet log file.
eri
12. public void log(String msg,Throwable t) writes the explanatory message in the servlet log file and a stack trace.
ServletInputStream:
ServletInputStream class provides stream to read binary data such as image etc. from the request object. It is an abstract
class. e
gin
The getInputStream() method of ServletRequest interface returns the instance of ServletInputStream class. So can be get
as:
ServletInputStream sin=request.getInputStream();
en
ServletOutputStream:
ServletOutputStream class provides a stream to write binary data into the response. It is an abstract class.
Le
The getOutputStream() method of ServletResponse interface returns the instance of ServletOutputStream class. It may
be get as:
ServletOutputStream out=response.getOutputStream();
w.
ServletException:
n
g.i
public ServletException(java.lang.String message,java.lang.Throwable rootCause)
Constructs a new servlet exception when the servlet needs to throw an exception and include a message about the "root
cause" exception that interfered with its normal operation, including a description message.
n
Parameters:
eri
message - a String containing the text of the exception message
rootCause - the Throwable exception that interfered with the servlet's normal operation, making this servlet exception
necessary
e
gin
Constructs a new servlet exception when the servlet needs to throw an exception and include a message about the "root
cause" exception that interfered with its normal operation. The exception's message is based on the localized message of
the underlying exception.
This method calls the getLocalizedMessage method on the Throwable exception to get a localized exception message.
en
When subclassing ServletException, this method can be overridden to create an exception message designed for a
specific locale.
Parameters:
arn
rootCause - the Throwable exception that interfered with the servlet's normal operation, making the servlet exception
necessary
Write a servlet program which displays the different image each time the user visits the page and the images are
links
Le
package com.javatpoint;
import java.io.*;
import javax.servlet.*;
w.
import javax.servlet.http.*;
public class DisplayImage extends HttpServlet {
ww
while((ch=bin.read())!=-1)
{
bout.write(ch);
}
bin.close();
fin.close();
bout.close();
out.close();
} }
n
Explain in detail about Servlet Database Connectivity with an example of Student database.
a. Write a servlet for creating Student Entry form.
g.i
Index.html
<html>
n
<head>
<title>Student Registrion index page </title>
eri
</head>
<body>
<center>
<form action="InsertRecord"method="post"> e
gin
<fieldset><legend><font face="Courier New"size="+1"
color="red">Student Registration</font></legend>
<table>
en
<tr>
<td>Student Name :</td>
arn
<td><input type="text"name="name"></td>
</tr>
<tr>
<td>Enrollment Number :</td>
Le
<td><input type="text"name="enrolmentNo"></td>
</tr>
w.
<tr>
<td>Program Name : </td>
<td><input type="text"name="program"></td>
ww
</tr>
<tr>
<td>Gender : </td>
<td><select name="gender">
<option value="male"> Male</option>
<option value="female"> Female</option>
</select>
</td>
</tr>
<tr>
<td>Address :</td>
<td><textarea cols="20"rows="2"name="address">
</textarea></td>
</tr>
n
<tr>
<td colspan=2>
g.i
<input type="submit"value="Register"></td>
</tr>
n
</table>
eri
</fieldset>
</form>
</center> e
gin
</body>
</html>
InsertRecord.java
en
import java.io.IOException;
arn
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
Le
import java.sql.ResultSet;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
w.
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
ww
response.setContentType("text/html");
PrintWriter out = response.getWriter();
String name=request.getParameter("name");
String en=request.getParameter("enrolmentNo");
String program=request.getParameter("program");
String gender=request.getParameter("gender");
String address=request.getParameter("address");
int id=0;
int enrol=0;
if(name.equals("")|| en.equals("")||
n
program.equals("")|| gender.equals("")||
address.equals(""))
g.i
{
out.println("Please insert valid data");
n
RequestDispatcher rd =
request.getRequestDispatcher("/index.html");
eri
rd.include(request, response);
}
else e
gin
{
enrol=Integer.parseInt(en);
try{
en
Class.forName("oracle.jdbc.driver.OracleDriver");
Connection con=DriverManager.getConnection(
arn
"jdbc:oracle:thin:@localhost:1521:xe","system","sunil");
PreparedStatement pst=con.prepareStatement(
"SELECT id FROM STUDENT");
Le
ResultSet rs=pst.executeQuery();
while(rs.next())
{
w.
id=rs.getInt(1);
}
ww
PreparedStatement ps=con.prepareStatement(
"insert into STUDENT values(?,?,?,?,?,?)");
ps.setInt(1,id+1);
ps.setString(2,name);
ps.setInt(3,enrol);
ps.setString(4,program);
ps.setString(5,gender);
ps.setString(6,address);
int i=ps.executeUpdate();
if(i>0)
out.print("Student record successfully inserted");
out.print("<BR>");
out.print("Insert another record ...");
RequestDispatcher
rd = request.getRequestDispatcher("/index.html");
rd.include(request, response);
n
}
catch(Exception e){
g.i
System.out.println(e);
}
n
}
out.close();
eri
}
}
Web.html e
gin
<?xmlversion="1.0"encoding="UTF-8"?>
<web-app id="WebApp_ID"version="2.5">
<display-name>Student</display-name>
en
<servlet>
arn
<description></description>
<display-name>InsertRecord</display-name>
<servlet-name>InsertRecord</servlet-name>
<servlet-class>InsertRecord</servlet-class>
Le
</servlet>
<servlet-mapping>
<servlet-name>InsertRecord</servlet-name>
w.
<url-pattern>/InsertRecord</url-pattern>
</servlet-mapping>
<welcome-file-list>
ww
<welcome-file>index.html</welcome-file>
</welcome-file-list>
</web-app>
Explain in detail about JSP with an example of current date and simple message.
<%@page contentType="text/html" import="java.util.*" %>
<html>
<body>
<p> </p>
<div align="center">
<center>
n
</center>
</div>
g.i
</body>
</html>
Discuss in detail about Action elements in JSP with an example of display current time and color.
n
ACTION:
• Standard: provided by JSP itself
eri
• Custom: provided by a tag library such as JSTL.
• JSTL is divided into several functional areas, each with its own namespace:
e
gin
en
Namespace prefix is
arn
• Common variables:
– var
• Represents name of a scoped variable that is assigned to by the action
• Must be a string literal, not an EL expression
– scope
• Specifies scope of scoped variable as one of the literals page, request, session, or application
set action
– Setting (and creating) a scoped variable
out action
– Normally used to write a string to the out JSP implicit object
– Automatically escapes XML special characters
if action
– General form includes scoped variable to receive test value
<c:set var="age" value="20" scope="session"></c:set>
n
<h3><c:out value="${x}"></c:out></h3>
g.i
<c:if test="${x}">
<h3><c:out value="WELCOME"></c:out></h3>
n
</c:if>
Output:
eri
WELCOME
true
WELCOME
remove action
– Only attributes are var and scope e
gin
– Removes reference to the specified scoped variable from the scope object
<c:set var="x" value="10" scope="session"></c:set>
<c:set var="y" value="20" scope="session"></c:set>
<h3>Product :<c:out value="${x*y}"></c:out></h3>
en
Output:
Product :200
Le
Product :0
choose action:
<c:set var="salary" scope="session" value="5000"/>
w.
n
– param elements can be used to define parameters that will be URL encoded
g.i
curl.jsp:
<c:url value="/URLTest.jsp" var="x" >
n
<c:param name="d1" value="SCJP"/>
<c:param name ="d2" value="SCWCD"/>
eri
</c:url>
<h1>The modified url : ${x},</h1><br>
<a href="${x}">click Here </a>
Output:
e
The modified url : /JSTL/URLTest.jsp?d1=SCJP&d2=SCWCD,
gin
URLTest.jsp
<h2> This is URLTest JSP </h2>
<h2>First Parameter : : :${param.d1}</h2>
<h2>Second Parameter : : :${param.d2}</h2>
en
Output:
URL:
arn
JSP Implicit Objects are the Java objects that the JSP Container makes available to developers in each page and
developer can call them directly without being explicitly declared. JSP Implicit Objects are also called pre-defined
variables.
JSP supports nine Implicit Objects which are listed below:
w.
Object Description
ww
response This is the HttpServletResponse object associated with the response to the client.
out This is the PrintWriter object used to send output to the client.
pageContext This encapsulates use of server-specific features like higher performance JspWriters.
page This is simply a synonym for this, and is used to call the methods defined by the
translated servlet class.
n
Exception The Exception object allows the exception data to be accessed by designated JSP.
g.i
The request Object:
The request object is an instance of a javax.servlet.http.HttpServletRequest object. Each time a client requests a page the
JSP engine creates a new object to represent that request.
n
The request object provides methods to get HTTP header information including form data, cookies, HTTP methods etc.
We would see complete set of methods associated with request object in coming chapter: JSP - Client Request.
eri
The response Object:
The response object is an instance of a javax.servlet.http.HttpServletResponse object. Just as the server creates the
request object, it also creates an object to represent the response to the client.
e
The response object also defines the interfaces that deal with creating new HTTP headers. Through this object the JSP
gin
programmer can add new cookies or date stamps, HTTP status codes etc.
We would see complete set of methods associated with response object in coming chapter: JSP - Server Response.
The out Object:
The out implicit object is an instance of a javax.servlet.jsp.JspWriter object and is used to send content in a response.
The initial JspWriter object is instantiated differently depending on whether the page is buffered or not. Buffering can be
en
easily turned off by using the buffered='false' attribute of the page directive.
The JspWriter object contains most of the same methods as the java.io.PrintWriter class. However, JspWriter has some
additional methods designed to deal with buffering. Unlike the PrintWriter object, JspWriter throws IOExceptions.
arn
Following are the important methods which we would use to write boolean char, int, double, object, String etc.
Method Description
Le
out.println(dataType dt) Print a data type value then terminate the line with new line
character.
ww
n
file locations etc.
The following config method is the only one you might ever use, and its usage is trivial:
g.i
config.getServletName();
This returns the servlet name, which is the string contained in the <servlet-name> element defined in the WEB-
n
INF\web.xml file
The pageContext Object:
eri
The pageContext object is an instance of a javax.servlet.jsp.PageContext object. The pageContext object is used to
represent the entire JSP page.
This object is intended as a means to access information about the page while avoiding most of the implementation
details.
e
This object stores references to the request and response objects for each request. The application, config, session, and
gin
out objects are derived by accessing attributes of this object.
The pageContext object also contains information about the directives issued to the JSP page, including the buffering
information, the errorPageURL, and page scope.
The PageContext class defines several fields, including PAGE_SCOPE, REQUEST_SCOPE, SESSION_SCOPE, and
en
APPLICATION_SCOPE, which identify the four scopes. It also supports more than 40 methods, about half of which are
inherited from the javax.servlet.jsp. JspContext class.
One of the important methods is removeAttribute, which accepts either one or two arguments. For example,
arn
pageContext.removeAttribute ("attrName") removes the attribute from all scopes, while the following code only
removes it from the page scope:
pageContext.removeAttribute("attrName", PAGE_SCOPE);
You can check a very good usage of pageContext in coming chapter: JSP - File Uploading.
Le
The page object is really a direct synonym for the this object.
The exception Object:
The exception object is a wrapper containing the exception thrown from the previous page. It is typically used to
ww
Unit – IV
Part - A
What is PHP?
PHP - Hypertext Preprocessor -one of the most popular server-side scripting languages for creating dynamic Web pages.
- an open-source technology
- platform independent
List the data types used in PHP.
Data types Description
Integer Whole numbers (i.e., numbers without a decimal point)
Double Real numbers (i.e., numbers containing a decimal point)
n
String Text enclosed in either single ('') or double ("") quotes.
Boolean True or false
g.i
Array Group of elements of the same type
Object Group of associated data and methods
Resource An external data source
n
How type conversion is done in PHP?
In PHP, data-type conversion can be performed by passing the data type as an argument to function settype. Function
eri
settype takes two arguments: The variable whose data type is to be changed and the variable ‘s new data type.
E.g., settype( $testString, "double" );
Write the uses of text manipulation with regular expression in PHP.
e
PHP processes text data easily and efficiently, enabling straightforward searching, substitution, extraction and
gin
concatenation of strings.
Text manipulation in PHP is usually done with regular expressions — a series of characters that serve as pattern-
matching templates (or search criteria) in strings, text files and databases.
This feature allows complex searching and string processing to be performed using relatively simple expressions
en
• Supports many database management systems libraries available for UNIX DBM, MySQL, Oracle,
• Dynamic Output any text, HTML XHTML and any other XML file.
• Also Dynamic Output images, PDF files and even Flash m ovies
w.
• Text processing features, from the POSIX Extended or Perl regular expressions to parsing XML documents.
• A fully featured programming language suitable for complex systems development
How to Include PHP in a Web Page?
ww
Here is PHP script which is embedded in HTML using level one header with the PHP output text. The name of
this file is called hello.php.
<html>
<head>
<title>Hello world</title>
</head>
<body>
<h1><?php echo("Hello world"); ?></h1>
<h1><?php print("This prints the same thing!");?></h1>
</body>
n
<html>
How do you include comments in PHP?
g.i
PHP supports three types of comments:
1. Shell style comments - denoted #THIS IS A COMMENT
2. C++ style comments - denoted THIS IS A COMMENT—
n
3. C style comments - denoted /* ALL THIS COMMENTED! */
What are variables in PHP?
eri
Variables start with the $ symbol.
E.g.:
$myInteger = 3;
$myString = "Hello world";
$myFloat = 3.145; e
gin
How do you declare a variable using PHP data types?
Data types are not explicitly defined:
• Variable type is determined by assignment
• Strings can be defined with single ( ‘ ) and double ( ") quotes.
en
Defined as true
– Any non-zero integer or float value
– The keyword true
• Standard operators with standard syntax applied to variables
w.
$myArray[0]= "Apples";
$myArray[1]= "Bananas";
b) Arrays can be constructed using the array() keyword
$person = array("Dave", "Adam", "Ralph");
What are associative arrays in PHP?
$myArray["Monday"]= "Apples";
$myArray["Tuesday"]= "Bananas";
Associative Arrays can also be constructed using the array( ) keyword.
$food = array("Monday"=>"Apples","Tuesday"=> "Bananas");
The symbol => delimits the hash name from the hash value.
n
switch
while
g.i
for
$a=3;
Function what()
n
{
++$a;
eri
echo "a=$a\n";
}
what();
echo "a=$a\n";
What is the output? e
gin
13
List the functions to create a pattern.
Preg_match,
Preg_matchall,
en
Preg_replace,
Preg_split
Write a PHP script to set the background colour to blue on Tuesday in a given date.
arn
<?php
if(date("D") == "Tue") $colour = "blue";
else $colour = "red";
?>
Le
<html>
<head>
<title>Welcome</title>
</head>
w.
</html>
What is cookie? Give example in PHP
A cookie is a text string stored on the client machine by your script (to track users and manage transactions). Cookies are
automatically returned (by the client), and can be accessed using a variable of the same name
• The following script reads and displays a cookie, and sets it with a new value (string) that was passed to the script as a
parameter.
• The cookie will expire after 20 minutes (1200 seconds)
<?php setCookie("CookieTest", $val, time()+1200); ?>
<html>
<head><title>Welcome</title></head>
<body>
<?php echo("<h2>The cookie is: $CookieTest</h1>
</body>
</html>
What is XML ?
Extensible markup language. It offer a standard, flexible and inherently extensible data format, XML significantly
reduces the burden of deploying the many technologies needed to ensure the success of Web services.
Define XML attributes
• XML elements can have attributes in the start tag, just like HTML.
• Attributes are used to provide additional information about elements.
• Attributes cannot contain multiple values (child elements can)
n
• Attributes are not easily expandable (for future changes)
g.i
Write the main difference between XML and HTML.
Main Difference between XML and HTML
XML was designed to carry data.
n
XML is not a replacement for HTML.
XML and HTML were designed with different goals:
eri
XML was designed to describe data and to focus on what data is.
HTML was designed to display data and to focus on how data looks.
HTML is about displaying information, while XML is about describing information
What is meant by a XML namespace? (APR/MAY 2011)
e
XML Namespaces provide a method to avoid element name conflicts. When using prefixes in XML, a so-called
gin
namespace for the prefix must be defined. The namespace is defined by the xmlns attribute in the start tag of an
element. The namespace declaration has the following syntax. xmlns:prefix="URI".
<root><h:table xmlns:h="http://www.w3.org/TR/html4/">
<h:tr>
en
<h:td>Apples</h:td>
<h:td>Bananas</h:td>
</h:tr></h:table>
arn
<f:table xmlns:f="http://www.w3schools.com/furniture">
<f:name>African Coffee Table</f:name>
<f:width>80</f:width>
<f:length>120</f:length></f:table></root>
Le
An XML namespace is a collection of element and attribute names. Each namespace has a unique name that provides a
means for document authors to unambiguously refer to elements with the same name (i.e. prevent collisions).
What is the purpose of namespace? (MAY/JUNE 2014)
ww
XML Namespaces provide a method to avoid element name conflicts. In XML, element names are defined by the
developer. This often results in a conflict when trying to mix XML documents from different XML applications.
Compare DOM and SAX in XML processing. (MAY/JUNE 2013)
DOM SAX
DOM is an interface-oriented SAX parser works incrementally and generates
Application Programming Interface. events that are passed to the application.
It allows for navigation of the entire DOM parser reads the whole XML document and
document. returns a DOM tree representation of xml
document.
DOM allows you to read and write. SAX is essentially an API for reading XML
n
XQUERY - it is W3C initiative to define a standard set of constructs for querying & searching XML document.
What is XSLT?
g.i
XSLT stands for XSL Transformations
XSLT is the most important part of XSL
XSLT transforms an XML document into another XML document
n
XSLT uses XPath to navigate in XML documents
XSLT is a W3C Recommendation
eri
Define the term DTD.
A Document Type Definition (DTD) defines the legal building blocks of an XML document. It defines the document
structure with a list of legal elements and attributes.
List two types of DTD declaration
e
DTD is stands for Document Type Definition which is used to structure the XML document. The type of DTD are
gin
as follows i) Internal Declaration ii) External Declaration.
How to declare DTD attributes?
An attribute declaration has the following syntax:
<!ATTLIST element-name attribute-name attribute-type default-value>
en
DTD example:
<!ATTLIST payment type CDATA "check">
XML example:
arn
The XML Schema is written in XML itself and has a large number of built-in and derived types.
The xml schema is the W3C recommendation. Hence it is supported by various XML validator and XML
Processors.
ww
n
What is XML presentation technique?
XML presentation technologies provide a modular way to deliver and display content to a variety of devices. There are
g.i
different presentation technologies used in XML to display the content. Eg: CSS
List some of presentation technologies.
Presentation technologies provide a modular way to deliver and display content to a variety of devices.
n
i) CSS ii) XSL iii) XFORMS iv) XHTML
Write about DOM.
eri
DOM is W3c supported standard application programming interface(API) that provides a platform and
language- neutral interface to allow developers to programmatically access and modify the content and structure
documents.
What is SAX?
e
SAX is an example of a grass- roots development effort to provide a simple; Java based API for processing XML.
gin
What are the levels of DOM?
DOM provides a platform and language- neutral interface to allow developers to programmatically access and modify
the content and structure documents. It has Level 0, Level 1, Level 2, Level 3
Compare CSS and XSL.
en
Part – B
List and explain the XML syntax rules in detail. Explain how a XML document can be displayed on a browser. (
APR/MAY 2011 )
All XML Elements Must Have a Closing Tag
Le
Opening and closing tags must be written with the same case:
<Message>This is incorrect</message>
<message>This is correct</message>
Note: "Opening and closing tags" are often referred to as "Start and end tags". Use whatever you prefer. It is exactly the
same thing.
n
XML Attribute Values Must be Quoted
g.i
XML elements can have attributes in name/value pairs just like in HTML.
In XML, the attribute values must always be quoted.
n
<notedate="12/11/2007">
<to>Tove</to>
eri
<from>Jani</from>
</note>
The error in the first document is that the date attribute in the note element is not quoted.
e
gin
Entity References
Some characters have a special meaning in XML.
If you place a character like "<" inside an XML element, it will generate an error because the parser interprets it as the
start of a new element.
en
Note: Only the characters "<" and "&" are strictly illegal in XML. The greater than character is legal, but it is a good
habit to replace it.
ww
Comments in XML
The syntax for writing comments in XML is similar to that of HTML.
<!-- This is a comment -->
n
Displaying XML document on a browser
XML documents do not carry information about how to display the data. XML is a technology for describing the
g.i
structure of data.
Since XML tags are "invented" by the author of the XML document, browsers do not know if a tag like <table>
describes an HTML table or a dining table.
n
Without any information about how to display the data, most browsers will just display the XML document as it is.
eri
<?xml version="1.0" encoding="UTF-8"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading> e
gin
<body>Don't forget me this weekend!</body>
</note>
An XML document will be displayed with color-coded root and child elements. A plus (+) or minus sign (-) to the left of
the elements can be clicked to expand or collapse the element structure. To view the raw XML source (without the + and
- signs), select "View Page Source" or "View Source" from the browser menu.
arn
means for document authors to unambiguously refer to elements with the same name (i.e. prevent collisions).
For example,
<subject>Geometry</subject>
and
w.
<subject>Cardiology</subject>
use element subject to markup data. In the first case the subject is something one studies in school, whereas in the second
case the subject is in the field of medicine. Namespaces can differentiate these two subject elements. For example,
ww
<school:subject>Math</school:subject>
and
<medical:subject>Thrombosis</medical:subject>
Both school and medical are namespace prefixes. A document author prepends a namespace prefix to an element or
attribute name to specify the namespace for that element or attribute. Each namespace prefix has a corresponding
uniform resource identifier (URI) that uniquely identifies the namespace. A URI is simply a series of characters for
differentiatingnames.
For example, the string urn:deitel:book could be a URI for a namespace that contains elements and attributes related
to Deitel & Associates, Inc. publications. Document authors can create their own namespace prefixes using
virtually any name, except the reserved namespace xml.
<text : filefilename="book.xml">
n
<text : description>A book list</text:description>
</text : file>
g.i
<image : filefilename="funny.jpg">
<image : description>A funny picture</image:description>
n
<image : sizeheight="100" width="200"/>
eri
</image : file>
</text : directory>
xmlns attribute: - to create namespaces prefixes. Eg. text and image. Each name space prefix is bound to a series of
characters called a Uniform Resource Identifier (URI) that uniquely identifies the name space. A URI is a way to
e
identifying a resource on the Internet. Two popular types of URI are Uniform Resource Name (URN) and Uniform
gin
Resource Locator (URL).
Another common practice is to use URL – specify the location of a file or a resource on the Internet.
<text:directory
en
Xmlns:text="http://www.deitel.com/xmlns-text”
Xmlns:image="http://deitel.com/xmlns-image">
arn
Namespace prefix are required for elements such as file, description etc.,
Attributes do not require namespace prefix because each attribute Is already part of an element the specifies the
namespace prfix.
Specifying a Default Namespace:
Le
To eliminate the need to place namespace prefixes in each element, document authors may specify a default namespace
for an element and its children.
<?xml version="1.0"?>
<!--defaultnamespace.xml -->
w.
<file filename="book.xml">
<description>A book list</description>
</file>
<image:file filename="funny.jpg">
<image:description>A funny picture</image:description>
<image:sizeheight="100" width="200"/>
</image:file>
</directory>
Given an XSLT document and a source XML document explain the XSLT transformation process that produces a
single result XML document. (NOV/DEC 2012)
• The Extensible Stylesheet Language (XSL) is an XML vocabulary typically used to transform XML
documents from one form to another form
n
g.i
• JAXP allows a Java program to use the Extensible Stylesheet Language (XSL) to extract data from
one XML document, process that data, and produce another XML document containing the processed
n
data.
eri
For example, XSL can be used to extract information from an XML document and embed it within an
XHTML document so that the information can be viewed using a web browser.
TRANSFORMER: e
gin
Main.java:
import java.io.FileOutputStream;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerFactory;
en
import javax.xml.transform.stream.StreamResult;
import javax.xml.transform.stream.StreamSource;
public class Main
arn
{
static String xml="D://WebTech//trans.XML";
static String xslt="D://WebTech//trans.XSL";
static String output="D://WebTech//trans.HTML";
Le
{
TransformerFactory tf = TransformerFactory.newInstance();
Transformer tr = tf.newTransformer(new StreamSource(xslt));
ww
trans.xsl:
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h1>Indian Languages details</h1>
<table border="1">
<tr>
<th>Language</th>
n
<th>Family/Origin</th>
g.i
<th>No. of speakers</th>
<th>Region</th>
</tr>
n
<xsl:for-each select="language">
<tr>
eri
<td><xsl:value-of select="name"/></td>
<td><xsl:value-of select="family"/></td>
<td><xsl:value-of select="users"/></td>
<td><xsl:value-of select="region"/></td> e
gin
</tr>
</xsl:for-each>
</table>
</body>
en
</html>
</xsl:template>
</xsl:stylesheet>
arn
trans.xml:
<?xml version="1.0"?>
<!--<?xml-stylesheet type="text/xsl" href="trans.xsl"?>-->
Le
<language>
<name>Kannada</name>
<region>Karnataka</region>
w.
<users>38M</users>
<family>Dravidian</family>
</language>
ww
trans.html:
Indian Languages details
Language Family/Origin No. of speakers Region
Kannada Dravidian 38M Karnataka
Write short notes on Event-oriented parsing (MAY/JUNE 2014)
SAX:
An alternative approach is to have the parser interact with an application as it reads an XML document.
This is the approach taken by SAX (Simple API for XML).
SAX allows an application to register event listeners with the XML parser.
SAX parser calls these listeners as events occur and passes them the information about the events.
Main.Java:
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;
public class Main
{
public static void main(String args[])
{
n
try
g.i
{
SAXParserFactory factory = SAXParserFactory.newInstance();
SAXParser saxParser = factory.newSAXParser();
n
saxParser.parse("D://Staff1.XML",new CountHelper());
}
eri
catch(Exception e)
{
e.printStackTrace();
} e
gin
}
}
CountHelper.JAVA:
en
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;
arn
{
super();
}*/
w.
@Override
public void startDocument() throws SAXException
{
ww
no_elms=0;
//return;
}
@Override
public void startElement(String u,String ln,String qname,Attributes atts)
throws SAXException
{
if(qname.equals("firstname"))
{
no_elms++;
}
// return;
}
@Override
public void endDocument() throws SAXException
{
System.out.println("I/p Doc has " + no_elms + "firstname Elements");
n
}
g.i
}
Staff1.xml:
n
<?xml version="1.0"?>
<company>
eri
<staff id="1001">
<firstname>yong</firstname>
<lastname>mook kim</lastname>
<nickname>mkyong</nickname> e
gin
<salary>100000</salary>
</staff>
<staff id="2001">
<firstname>low</firstname>
en
<lastname>yin fong</lastname>
<nickname>fong fong</nickname>
<salary>200000</salary>
arn
</staff>
</company>
OUTPUT:
Le
DOM OUTPUT:
RootSystem element :company
w.
Explain the following: i) XML namespace ii) XML style sheet. iii) XML attributes iv) XML Schema
i) XML Namespaces
XML Namespaces provide a method to avoid element name conflicts.
Name Conflicts
In XML, element names are defined by the developer. This often results in a conflict when trying to
mix XML documents from different XML applications. This XML carries HTML table information:
<table>
<tr>
<td>Apples</td>
<td>Bananas</td>
</tr>
</table>
This XML carries information about a table (a piece of furniture):
<table>
<name>African Coffee Table</name>
<width>80</width>
<length>120</length>
</table>
If these XML fragments were added together, there would be a name conflict. Both contain a <table>
n
element, but the elements have different content and meaning.
g.i
A user or an XML application will not know how to handle these differences.
n
Name conflicts in XML can easily be avoided using a name prefix. This XML carries information
about an HTML table, and a piece of furniture:
eri
<h:table>
<h:tr>
e
<h:td>Apples</h:td>
gin
<h:td>Bananas</h:td>
</h:tr>
</h:table>
en
<f:table>
<f:name>African Coffee
arn
Table</f:name>
<f:width>80</f:width>
<f:length>120</f:length>
Le
</f:table>
w.
In the example above, there will be no conflict because the two <table> elements have different names.
ww
When using prefixes in XML, a so-called namespace for the prefix must be defined. The namespace is
defined by the xmlns attribute in the start tag of an element. The namespace declaration has the
following syntax. xmlns:prefix="URI".
<root>
<h:tablexmlns:h="http://www.w3.org/TR/html4/">
<h:tr>
<h:td>Apples</h:td>
<h:td>Bananas</h:td>
</h:tr>
</h:table>
n
<f:tablexmlns:f="http://www.w3schools.com/furniture">
g.i
<f:name>African Coffee Table</f:name>
<f:width>80</f:width>
n
<f:length>120</f:length>
</f:table>
eri
</root>
e
gin
In the example above, the xmlns attribute in the <table> tag give the h: and f: prefixes a qualified namespace.
When a namespace is defined for an element, all child elements with the same prefix are associated with the
same namespace. Namespaces can be declared in the elements where they are used or in the XML root
element:
en
<rootxmlns:h="http://www.w3.org/TR/html4/
"
arn
xmlns:f="http://www.w3schools.com/furnitur
e">
<h:table>
Le
<h:tr>
<h:td>Apples</h:td>
<h:td>Bananas</h:td>
w.
</h:tr>
</h:table>
ww
<f:table>
<f:name>African Coffee Table</f:name>
<f:width>80</f:width>
<f:length>120</f:length>
</f:table>
</root>
Default Namespaces
Defining a default namespace for an element saves us from using prefixes in all the child elements. It has the
following syntax:
n
g.i
xmlns="namespaceURI"
n
<tablexmlns="http://www.w3.org/TR/html4/">
<tr>
eri
<td>Apples</td>
<td>Bananas</td>
</tr>
e
gin
</table>
<tablexmlns="http://www.w3schools.com/furniture"
>
<name>African Coffee Table</name>
arn
<width>80</width>
<length>120</length>
</table>
Le
xmlns:xsl="http://www.w3.org/1999/XSL/Transform":
ww
<?xmlversion="1.0"encoding="UTF-8"?>
<xsl:stylesheetversion="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:templatematch="/">
<html>
<body>
<h2>My CD Collection</h2>
<tableborder="1">
<tr>
<thstyle="text-align:left">Title</th>
<thstyle="text-align:left">Artist</th>
</tr>
<xsl:for-eachselect="catalog/cd">
<tr>
<td><xsl:value-ofselect="title"/></td>
<td><xsl:value-ofselect="artist"/></td>
</tr>
</xsl:for-each>
n
</table>
g.i
</body>
</html>
</xsl:template>
n
</xsl:stylesheet>
ii) XML Stylesheet
eri
Displaying XML with XSLT
XSLT (eXtensible Stylesheet Language Transformations) is the recommended style sheet language for XML.
XSLT is far more sophisticated than CSS. With XSLT you can add/remove elements and attributes to or from
e
the output file. You can also rearrange and sort elements, perform tests and make decisions about which
gin
elements to hide and display, and a lot more.
XSLT uses XPath to find information in an XML document.
XSLT Example
en
<food>
<name>Belgian Waffles</name>
<price>$5.95</price>
Le
<description>Two of our famous Belgian Waffles with plenty of real maple syrup</description>
<calories>650</calories>
</food>
w.
<food>
<name>Strawberry Belgian Waffles</name>
ww
<price>$7.95</price>
<description>Light Belgian waffles covered with strawberries and whipped cream</description>
<calories>900</calories>
</food>
<food>
<name>Berry-Berry Belgian Waffles</name>
<price>$8.95</price>
<description>Light Belgian waffles covered with an assortment of fresh berries and whipped
cream</description>
<calories>900</calories>
</food>
<food>
<name>French Toast</name>
<price>$4.50</price>
<description>Thick slices made from our homemade sourdough bread</description>
<calories>600</calories>
</food>
n
g.i
<food>
<name>Homestyle Breakfast</name>
<price>$6.95</price>
n
<description>Two eggs, bacon or sausage, toast, and our ever-popular hash browns</description>
<calories>950</calories>
eri
</food>
</breakfast_menu>
e
gin
Use XSLT to transform XML into HTML, before it is displayed in a browser:
Example XSLT Stylesheet:
<?xmlversion="1.0"encoding="UTF-8"?>
<htmlxsl:version="1.0"xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
en
<bodystyle="font-family:Arial;font-size:12pt;background-color:#EEEEEE">
<xsl:for-eachselect="breakfast_menu/food">
<divstyle="background-color:teal;color:white;padding:4px">
arn
<spanstyle="font-weight:bold"><xsl:value-ofselect="name"/> - </span>
<xsl:value-ofselect="price"/>
</div>
<divstyle="margin-left:20px;margin-bottom:1em;font-size:10pt">
Le
<p>
<xsl:value-ofselect="description"/>
<spanstyle="font-style:italic"> (<xsl:value-ofselect="calories"/> calories per serving)</span>
w.
</p>
</div>
</xsl:for-each>
ww
</body>
</html>
XML Attributes
In HTML, attributes provide additional information about elements:
<img src="computer.gif">
<a href="demo.asp">
Attributes often provide information that is not a part of the data. In the example below, the file type is
irrelevant to the data, but can be important to the software that wants to manipulate the element:
<file type="gif">computer.gif</file>
n
<person gender='female'>
g.i
If the attribute value itself contains double quotes you can use single quotes, like in this example:
<gangster name='George "Shotgun" Ziegler'> or you can use character entities:
<gangster name="George "Shotgun" Ziegler">
n
XML Elements vs. Attributes
eri
Take a look at these examples:
<person gender="female">
e
<firstname>Anna</firstname>
gin
<lastname>Smith</lastname>
</person>
en
<person>
<gender>female</gender>
<firstname>Anna</firstname>
arn
<lastname>Smith</lastname>
</person>
In the first example gender is an attribute. In the last, gender is an element. Both examples provide the
Le
same information. There are no rules about when to use attributes or when to use elements.
<messages>
<note id="501">
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
<note id="502">
<to>Jani</to>
<from>Tove</from>
n
<heading>Re: Reminder</heading>
g.i
<body>I will not</body>
</note>
</messages>
n
The id attributes above are for identifying the different notes. It is not a part of the note itself. The
metadata (data about data) should be stored as attributes, and the data itself should be stored as elements.
eri
iv) XML Schema
An XML Schema describes the structure of an XML document, just like a DTD.
e
An XML document with correct syntax is called "Well Formed".
gin
An XML document validated against an XML Schema is both "Well Formed" and "Valid".
The purpose of an XML Schema is to define the legal building blocks of an XML document, just like a DTD.
An XML Schema:
defines elements that can appear in a document
en
<?xmlversion="1.0"?>
<xs:schemaxmlns:xs="http://www.w3.org/2001/XMLSc
hema">
<xs:elementname="note">
<xs:complexType>
<xs:sequence>
<xs:elementname="to"type="xs:string"/>
n
<xs:elementname="from"type="xs:string"/>
<xs:elementname="heading"type="xs:string"/>
g.i
<xs:elementname="body"type="xs:string"/>
</xs:sequence>
n
</xs:complexType>
</xs:element>
eri
</xs:schema>
XML processing language. XSLT is thus widely used for purposes other than XSL, like generating
HTML web pages from XML data.
Advanced styling features, expressed by an XML document type which defines a set of elements called
ww
Formatting Objects, and attributes (in part borrowed from CSS2 properties and adding more complex
ones.
How Does It Work?
Styling requires a source XML documents, containing the information that the style sheet will display and the
style sheet itself which describes how to display a document of a given type.
Example:
In this XSL example, two lists in XML and use the XSL style sheet to set the style display the way I want to set it, i
created. Also HTML is embedded in the style sheet which allows an actual ordered list to be created.
n
<LANGUAGES>HTML</LANGUAGES>
g.i
</LIST1>
<TITLE2>Other Support</TITLE2>
<LIST2>
n
<OTHER>DTD</OTHER>
<OTHER>DSSSL</OTHER>
eri
<OTHER>Style Sheets</OTHER>
</LIST2>
</LANGLIST>
e
gin
The DTD File
<!ELEMENT LANGLIST ANY>
<!ENTITY % Shape "(rect|circle|poly|default)">
<!ELEMENT TITLE (#PCDATA)>
en
This DTD file employs an ENTITY, just for demonstration purposes. An entity, in this case is similar to a
variable with a value that is set to a string value. In this case the entity name is "Shape" and the string value is
"(rect|circle|poly|default)". This value is used to set the attribute list (ATTLIST) for the LANGUAGES and
ww
OTHER elements, although these attributes are not used in this example.
<xsl:stylesheet xmlns:xsl="http://www.w3.org/TR/WD-xsl">
<xsl:template match="/">
<xsl:apply-templates select="LANGLIST/TITLE" />
<xsl:apply-templates select="LANGLIST/TITLE1" />
<xsl:template match="TITLE">
<SPAN STYLE="display: 'block'; font-family: 'arial'; color:
'#008000'; font-weight: '600'; font-size: '22'; margin-top: '12pt'; text-
align: 'center'">
<xsl:value-of />
n
</SPAN>
g.i
<BR/>
</xsl:template>
<xsl:template match="TITLE1">
n
<SPAN STYLE="display: 'block'; font-family: 'arial'; color:
eri
'#000080'; font-weight: '400'; font-size: '20'; margin-top: '12pt'">
<xsl:value-of />
</SPAN>
<BR/>
</xsl:template> e
gin
<xsl:template match="LIST1">
<UL style="display: 'list-item'; list-style-image:
url('bullet8.gif'); font-family: 'arial'; color: '#000000'; font-weight:
en
<xsl:value-of />
</LI>
</xsl:for-each>
</UL>
w.
</xsl:template>
<xsl:template match="TITLE2">
ww
<xsl:template match="LIST2">
<UL style="display: 'list-item'; list-style-image:
n
</UL>
g.i
</xsl:template>
</xsl:stylesheet>
n
Between the <xsl:template match="/"> tag and </xsl:template> tag, the order of the "apply-templates"
statements is very important since this determines the order they are displayed in. Also note that the text
eri
<xsl:value-of "."/> is used to refer to the XML object currently being processed in order to display the value of
that object.
Explain the architectural revolution of XML.
XML: The Three Revolutions
e
Three areas of impact are i) data, which XML frees from the confines of fixed, ii) program-dependent
gin
formats; architecture, iii) with a change in emphasis from tightly coupled distributed systems to a more
loosely coupled confederation based on the Web; and software, with the realization that software evolution is
a better path to managing complexity than building monolithic applications.
en
arn
Le
w.
ww
n
n g.i
e eri
gin
en
was formatted and how to process it. Now, XML-based industry-specific data vocabularies provide
alternatives to specialized Electronic Data Interchange (EDI) solutions by facilitating B2B data exchange and
playing a key role as a messaging infrastructure for distributed computing.
w.
XML's strength is its data independence. XML is pure data description, not tied to any programming language,
operating system, or transport protocol. In the grand scheme of distributed computing this is a radical idea.
The implication is that we don't require lock-in to programmatic infrastructures to make data available to Web-
ww
connected platforms. In effect, data is free to move about globally without the constraints imposed by tightly
coupled transport-dependent architectures. XML's sole focus on data means that a variety of transport
technologies may be used to move XML across the Web. As a result, protocols such as HTTP have had a
tremendous impact on XML's viability and have opened the door to alternatives to CORBA, RMI, and
DCOM, which don't work over TCP/IP. XML does this by focusing on data and leaving other issues to
supporting technologies.
n
n g.i
e eri
gin
The Data Revolution and The Architectural Revolution
en
Together these XML-based technology initiatives open up new possibilities for distributed computing that
leverage the existing infrastructure of the Web and create a transition from object-based distributed systems to
architectures based on Web services that can be discovered, accessed, and assembled using open Web
arn
technologies. The focal point of this change in architectural thinking has been a move from tightly coupled
systems based on established infrastructures such as CORBA, RMI, and DCOM, each with their own transport
protocol, to loosely coupled systems riding atop standard Web protocols such as TCP/IP. Although the
Le
transport protocols underlying CORBA, RMI, and DCOM provide for efficient communication between
nodes, their drawback is their inability to communicate with other tightly coupled systems or directly with the
Web.
w.
Loosely coupled Web-based systems, on the other hand, provide what has long been considered the Holy Grail
of computing: universal connectivity. Using TCP/IP as the transport, systems can establish connections with
each other using common open-Web protocols. Although it is possible to build software bridges linking tightly
ww
coupled systems with each other and the Web, such efforts are not trivial and add another layer of complexity
on top of an already complex infrastructure.
n
n g.i
e eri
gin
The Architecture Revolution and The Software Revolution
XML is also part of a revolution in how we build software. During the 1970s and 1980s, software was
constructed as monolithic applications built to solve specific problems. The problem with large software
en
projects is that, by trying to tackle multiple problems at once, the software is often ill-suited to adding new
functionality and adapting to technological change. In the 1990s a different model for software emerged based
on the concept of simplicity.
arn
Write a program using PHP that creates the web application for result publication
<?php
$username = "your_name";
Le
$password = "your_password";
$hostname = "localhost";
w.
To create 'results' database on your MySQL server you should run the following script:
n
g.i
CREATE DATABASE `results`;
USE `results`;
CREATE TABLE `res_tab` (
n
`regno` int UNIQUE NOT NULL,
`sub1` varchar(2),
eri
`sub2` varchar(2),
PRIMARY KEY(id)
);
INSERT INTO cars VALUES(1,'A’,'B');
e
gin
INSERT INTO cars VALUES(2,'C','D');
INSERT INTO cars VALUES(3,'Si','A');
a) Design simple calculator using PHP.
HTML TextBox value, in other words operand value is accepted in this way:
$_REQUEST['name']
en
In that way you can simply store the TextBox value or drop down list value for calculation in a PHP variable.
<html>
<head>
arn
<body>
Le
<option>*</option>
<option>/</option>
</select>
<input type='submit' name='submit' value='Calculate Now'></form>
<?php
if(isset($_POST['submit']))
{$value1 = $_POST['value1'];
$value2 = $_POST['value2'];
$action = $_POST['action'];
if($action=="+"){
echo "<b>Your Answer is:</b><br>";
echo $value1+$value2;
}
if($action=="-"){
echo "<b>Your Answer is:</b><br>";
echo $value1-$value2;
}
n
if($action=="*"){
g.i
echo "<b>Your Answer is:</b><br>";
echo $value1*$value2;
}
n
if($action=="/"){
eri
echo "<b>Your Answer is:</b><br>";
echo $value1/$value2;
}
}
?> e
gin
</body>
</html>
Output:
en
10 20 * Calculate Now
Your Answer is:
arn
200
---------------------------------------------------------------------------------------------------------------------------------------
b) Design application to send a email using PHP
Le
string$additional_parameters ]] )
<?php
//if "email" variable is filled out, send email
if (isset($_REQUEST['email'])) {
ww
//Email information
$admin_email = "someone@example.com";
$email = $_REQUEST['email'];
$subject = $_REQUEST['subject'];
$comment = $_REQUEST['comment'];
//send email
mail($email, "$subject", $comment, "From:" . $admin_email);
//Email response
echo "Thank you for contacting us!";
}
<form method="post">
n
Email: <input name="email" type="text" /><br />
g.i
Subject: <input name="subject" type="text" /><br />
Message:<br />
<textarea name="comment" rows="15" cols="40"></textarea><br />
<input type="submit" value="Submit" />
n
</form>
eri
<?php
}
?>
Output: e
gin
en
arn
Le
6. navigation.php contains the links to products.php and cart.php pages that the user can click. The cart item
count is also shown here, beside the ―Cart‖ link.
7. products.php displays all the products retrieve from the database. We are using PDO extension to connect
and retrieve data from the MySQL database.
8. remove_from_cart.php is executed when the user clicks on the ―Remove from cart‖ button. It removes the
product item from the JSON string saved in the cookie variable.
Important note: This source code focuses on using cookies for storing shopping cart items, the ―checkout‖ is
not in its scope.
Step 1: create a database and run the following SQL queries to create the sample tables.
CREATE TABLE IF NOT EXISTS `products` (
n
`id` int(11) NOT NULL AUTO_INCREMENT,
g.i
`name` varchar(32) NOT NULL,
`price` int(11) NOT NULL,
PRIMARY KEY (`id`)
n
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
eri
--
-- Dumping data for table `products`
--
e
INSERT INTO `products` (`id`, `name`, `price`) VALUES
gin
(1, 'LG P880 4X HD', 336),
(2, 'Google Nexus 4', 299),
(3, 'Samsung Galaxy S4', 600);
en
<?php
$host = "your_host";
$db_name = "your_database_name";
$username = "your_database_username";
Le
$password = "your_database_password";
try {
w.
n
}
g.i
else if($action=='exists'){
echo "<div class='alert alert-info'>";
echo "<strong>{$name}</strong> already exists in your cart!";
n
echo "</div>";
eri
}
$num = $stmt->rowCount();
en
if($num>0){
//start table
arn
echo "<tr>";
echo "<th class='textAlignLeft'>Product Name</th>";
echo "<th>Price (USD)</th>";
echo "<th>Action</th>";
w.
echo "</tr>";
extract($row);
echo "</table>";
}
n
// tell the user if there's no products in the database
g.i
else{
echo "No products found.";
}
n
include 'layout_foot.php';
eri
?>
Step 5: products.php on step 4 above will not actually work without the layout_head.php and
layout_foot.php, so first, we’ll create thelayout_head.phpwith the following code:
<?php
// connect to database e
gin
include 'config/db_connect.php';
?>
<!DOCTYPE html>
<html lang="en">
en
<head>
arn
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
Le
<!-- HTML5 Shiv and Respond.js IE8 support of HTML5 elements and media
queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script
src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script
src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script
>
<![endif]-->
</head>
<body>
n
g.i
<div class="page-header">
<h1><?php echo isset($page_title) ? $page_title : "The Code of a Ninja";
?></h1>
</div>
n
eri
Step 6: layout_head.php includes another PHP file callednavigation.php, so we’ll create it and put the
following code.
<!-- navbar -->
e
<div class="navbar navbar-default navbar-static-top" role="navigation">
<div class="container">
gin
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-
toggle="collapse" data-target=".navbar-collapse">
en
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="products.php">Your
Le
Site</a>
</div>
<a href="products.php">Products</a>
</li>
<li <?php echo $page_title=="Cart" ?
"class='active'" : ""; ?>>
<a href="cart.php">
<?php
// count products in cart
$cookie =
$_COOKIE['cart_items_cookie'];
$cookie = stripslashes($cookie);
$saved_cart_items =
json_decode($cookie, true);
$cart_count=count($saved_cart_items);
?>
Cart <span class="badge"
id="comparison-count"><?php echo $cart_count; ?></span>
</a>
</li>
n
</ul>
g.i
</div><!--/.nav-collapse -->
</div>
</div>
n
<!-- /navbar -->
eri
Step 7: Now we’ll create thelayout_foot.php
</div>
<!-- /container -->
e
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
gin
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></
script>
en
</body>
</html>
Step 8: products.php has links to the add_to_cart.phpfile,we’ll create that file and put the code below.
w.
<?php
// initialize empty cart items array
$cart_items=array();
ww
$cookie = $_COOKIE['cart_items_cookie'];
$cookie = stripslashes($cookie);
$saved_cart_items = json_decode($cookie, true);
n
if(array_key_exists($id, $saved_cart_items)){
g.i
// redirect to product list and tell the user it was already added
to the cart
header('Location: products.php?action=exists&id' . $id . '&name=' .
$name);
n
}
eri
else{
// if cart has contents
if(count($saved_cart_items)>0){
e
foreach($saved_cart_items as $key=>$value){
gin
// add old item to array, it will prevent duplicate
keys
$cart_items[$key]=$value;
}
en
}
arn
// redirect
header('Location: products.php?action=added&id=' . $id . '&name=' .
$name);
}
w.
?>
Step 9: Now if the products were able to be added on the cart, we’ll have to view it using cart.php, we’ll
ww
if($action=='removed'){
$cookie = $_COOKIE['cart_items_cookie'];
$cookie = stripslashes($cookie);
$saved_cart_items = json_decode($cookie, true);
if(count($saved_cart_items)>0){
n
// get the product ids
g.i
$ids = "";
foreach($saved_cart_items as $id=>$name){
$ids = $ids . $id . ",";
}
n
eri
// remove the last comma
$ids = rtrim($ids, ',');
//start table
e
echo "<table class='table table-hover table-responsive table-
gin
bordered'>";
echo "<th>Action</th>";
echo "</tr>";
$total_price=0;
while ($row = $stmt->fetch(PDO::FETCH_ASSOC)){
extract($row);
ww
echo "<tr>";
echo "<td>{$name}</td>";
echo "<td>${$price}</td>";
echo "<td>";
echo "<a
href='remove_from_cart.php?id={$id}&name={$name}' class='btn btn-
danger'>";
echo "<span class='glyphicon
$total_price+=$price;
}
echo "<tr>";
echo "<td><b>Total</b></td>";
n
echo "<td>${$total_price}</td>";
g.i
echo "<td>";
echo "<a href='#' class='btn btn-
success'>";
echo "<span class='glyphicon
n
glyphicon-shopping-cart'></span> Checkout";
eri
echo "</a>";
echo "</td>";
echo "</tr>";
echo "</table>"; e
gin
}
else{
echo "<div class='alert alert-danger'>";
en
include 'layout_foot.php';
?>
Le
Step 10: cart.php links to a file called remove_from_cart.php, to remove an item from the cart. We’ll
create remove_from_cart.php with the codes below.
<?php
// get the product id
w.
// read
$cookie = $_COOKIE['cart_items_cookie'];
$cookie = stripslashes($cookie);
$saved_cart_items = json_decode($cookie, true);
// redirect to product list and tell the user it was added to cart
header('Location: cart.php?action=removed&id=' . $id . '&name=' . $name);
?>
n
Enter or Update Cart Item Quantity
g.i
But what if your users want to enter or update the quantity of items in the cart? It is possible
using cookies.
1 Add a new column named ―Quantity‖ in products.php and cart.php. The word ―Quantity‖
n
will be the column header and for the rest of the table row, it will be input or text boxes where
the user can enter the product quantity before clicking the ―Add to cart‖ or ―Update cart‖ button.
eri
2 On products.php, the ―Add to cart‖ button will not be a direct link to add_to_cart.php file. It
will be a button that will execute a jQuery code because it has to get the quantity entered by the
user.
e
3 On cart.php, there will be an ―Update cart‖ button beside the quantity textbox. Clicking it will
gin
run a jQuery script that gets the new quantity entered by the user and saves the changes with the
help of a new file called ―update_quantity.php‖.
Explain about the control statements in PHP with example.
PHP Conditional Statements
en
false
if...elseif....else statement - specifies a new condition to test, if the first condition is false
switch statement - selects one of many blocks of code to be executed
The if Statement
Le
The if statement is used to execute some code only if a specified condition is true.
Syntax
if (condition) {
w.
Example
<?php
$t = date("H");
if ($t < "20") {
echo "Have a good day!";
}
?>
The if...else Statement
Use the if....else statement to execute some code if a condition is true and another code if the condition is
false.
Syntax
if (condition) {
code to be executed if condition is true;
} else {
code to be executed if condition is false;
}
The example below will output "Have a good day!" if the current time is less than 20, and "Have a good
night!" otherwise:
n
Example
<?php
g.i
$t = date("H");
n
echo "Have a good day!";
eri
} else {
echo "Have a good night!";
}
?>
e
gin
The if...elseif....else Statement
Use the if....elseif...else statement to specify a new condition to test, if the first condition is false.
Syntax
if (condition) {
en
} else {
code to be executed if condition is false;
}
Le
The example below will output "Have a good morning!" if the current time is less than 10, and "Have a good
day!" if the current time is less than 20. Otherwise it will output "Have a good night!":
Example
<?php
w.
$t = date("H");
ww
Use the switch statement to select one of many blocks of code to be executed.
Syntax
switch (n) {
case label1:
code to be executed if n=label1;
break;
case label2:
code to be executed if n=label2;
break;
n
case label3:
code to be executed if n=label3;
g.i
break;
...
default:
n
code to be executed if n is different from all labels;
eri
}
how it works: First we have a single expression n (most often a variable), that is evaluated once. The value of
the expression is then compared with the values for each case in the structure. If there is a match, the block of
e
code associated with that case is executed. Use break to prevent the code from running into the next case
gin
automatically. The default statement is used if no match is found.
Example
<?php
$favcolor = "red";
en
switch ($favcolor) {
case "red":
arn
Only the name parameter is required. All other parameters are optional.
n
We then retrieve the value of the cookie "user" (using the global variable $_COOKIE). We also use the isset()
g.i
function to find out if the cookie is set:
Example
<?php
n
$cookie_name = "user";
$cookie_value = "John Doe";
eri
setcookie($cookie_name, $cookie_value, time() + (86400 * 30), "/"); // 86400 = 1 day
?>
<html>
<body> e
gin
<?php
if(!isset($_COOKIE[$cookie_name])) {
echo "Cookie named '" . $cookie_name . "' is not set!";
} else {
en
?>
</body>
</html>
Le
Note: The setcookie() function must appear BEFORE the <html> tag.
Note: The value of the cookie is automatically URLencoded when sending the cookie, and automatically
w.
To modify a cookie, just set (again) the cookie using the setcookie() function:
Example
<?php
$cookie_name = "user";
$cookie_value = "Alex Porter";
setcookie($cookie_name, $cookie_value, time() + (86400 * 30), "/");
?>
<html>
<body>
<?php
if(!isset($_COOKIE[$cookie_name])) {
echo "Cookie named '" . $cookie_name . "' is not set!";
} else {
echo "Cookie '" . $cookie_name . "' is set!<br>";
echo "Value is: " . $_COOKIE[$cookie_name];
}
?>
</body>
</html>
Output:
n
Cookie 'user' is set!
g.i
Value is: John Doe
Note: You might have to reload the page to see the new value of the cookie.
n
Delete a Cookie
eri
To delete a cookie, use the setcookie() function with an expiration date in the past:
Example
<?php
// set the expiration date to one hour ago e
gin
setcookie("user", "", time() - 3600);
?>
<html>
<body>
en
<?php
echo "Cookie 'user' is deleted.";
?>
arn
</body>
</html>
Output:
Cookie 'user' is deleted.
Le
cookie with the setcookie() function, then count the $_COOKIE array variable:
Example
<?php
ww
}
?>
</body>
</html>
Output:
Cookies are enabled.
Describe the data base connections in PHP with suitable example.
n
Before you can get content out of your MySQL database, you must know how to establish a
g.i
connection to MySQL from inside a PHP script. To perform basic queries from within MySQL is
very easy.
n
The first thing to do is connect to the database. The function to connect to MySQL is called
mysql_connect. This function returns a resource which is a pointer to the database connection. It's
eri
also called a database handle, and we'll use it in later functions.
<?php
$username = "your_name"; e
gin
$password = "your_password";
$hostname = "localhost";
?>
All going well, you should see "Connected to MySQL" when you run this script. If you can't connect to the server, m
Le
Once you've connected, you're going to want to select a database to work with. Let's assume the database is called
'examples'. To start working in this database, you'll need the mysql_select_db() function:
w.
<?php
//select a database to work with
ww
$selected = mysql_select_db("examples",$dbhandle)
or die("Could not select examples");
?>
Now that you're connected, let's try and run some queries. The function used to perform queries is named - mysql_q
The function returns a resource that contains the results of the query, called the result set. To examine the result we'
going to use the mysql_fetch_array function, which returns the results row by row. In the case of a query that doesn
results, the resource that the function returns is simply a value true or false.
A convenient way to access all the rows is with a while loop. Let's add the code to our script:
<?php
//execute the SQL query and return records
$result = mysql_query("SELECT id, model, year FROM cars");
//fetch tha data from the database
while ($row = mysql_fetch_array($result)) {
echo "ID:".$row{'id'}." Name:".$row{'model'}."
".$row{'year'}."<br>";
n
}
?>
g.i
Finally, we close the connection. Although this isn't strictly speaking necessary, PHP will automatically close the
connection when the script ends, you should get into the habit of closing what you open.
n
eri
<?php
//close the connection
mysql_close($dbhandle);
?>
e
gin
Here is a code in full:
<?php
$username = "your_name";
en
$password = "your_password";
$hostname = "localhost";
arn
?>
To create 'examples' database on your MySQL server you should run the following script:
n
`year` varchar(50),
PRIMARY KEY(id)
g.i
);
INSERT INTO cars VALUES(1,'Mercedes','2000');
INSERT INTO cars VALUES(2,'BMW','2004');
n
INSERT INTO cars VALUES(3,'Audi','2001');
eri
Explain the steps in the PHP code for querying a database with suitable examples.
• Create a database connection
• Select database you wish to use
• Perform a SQL query
• Do some processing on query results e
gin
• Close database connection
Username and password fields imply that database password is sitting there in the source code
– If someone gains access to source code, can compromise the database
– Servers are sometimes configured to view PHP source code when a resource is requested with
―.phps‖ instead of ―.php‖
– One approach to avoid this: put this information in Web server config. File
• Then ensure the Web server config. file is not externally accessible
2. Selecting a Database
• mysql_select_db()
– Pass it the database name
• Related:
– mysql_list_dbs()
• List databases available
– Mysql_list_tables()
• List database tables available
3. Perform SQL Query
• Create query string
– $query = ‗SQL formatted string‘
– $query = ‗SELECT * FROM table‘
• Submit query to database for processing
n
– $result = mysql_query($query);
g.i
– For UPDATE, DELETE, DROP, etc, returns TRUE or FALSE
– For SELECT, SHOW, DESCRIBE or EXPLAIN, $result is anidentifier for the results, and does not
contain the resultsthemselves
n
• $result is called a ―resource‖ in this case
• A result of FALSE indicates an error
eri
• If there is an error
– mysql_error() returns error string from last MySQL call
4. Process Results
e
• Many functions exist to work with databaseresults
gin
• mysql_num_rows()
– Number of rows in the result set
– Useful for iterating over result set
• mysql_fetch_array()
en
– $row[‗column name‘] :: value comes from databaserow with specified column name
– $row[0] :: value comes from first field in result set
Process Results Loop
• Easy loop for processing results:
Le
$result = mysql_query($qstring);
$num_rows = mysql_num_rows($result);
for ($i=0; $i<$num_rows; $i++)
w.
{
$row = mysql_fetch_array($result);
// take action on database results here
ww
}
5. Closing Database Connection
• mysql_close()
– Closes database connection
– Only works for connections opened withmysql_connect()
– Connections opened with mysql_pconnect()ignore this call
– Often not necessary to call this, asconnections created by mysql_connect areclosed at the end of the
script anyway
With example explain about XSL and XSLT transformation
XSLT Elements
n
Description of all the XSLT elements from the W3C Recommendation, and information about browser
g.i
support.
XSLT Functions
n
XSLT includes over 100 built-in functions. There are functions for string values, numeric values, date and
time comparison, node and QName manipulation, sequence manipulation, Boolean values, and more.
eri
XSLT = XSL Transformations
e
XSLT is the most important part of XSL. XSLT is used to transform an XML document into another
gin
XML document, or another type of document that is recognized by a browser, like HTML and
XHTML. Normally XSLT does this by transforming each XML element into an (X)HTML element.
With XSLT you can add/remove elements and attributes to or from the output file. You can also
rearrange and sort elements, perform tests and make decisions about which elements to hide and
en
display, and a lot more. A common way to describe the transformation process is to say that XSLT
transforms an XML source-tree into an XML result-tree.
arn
XSLT uses XPath to find information in an XML document. XPath is used to navigate through
elements and attributes in XML documents.
Le
The root element that declares the document to be an XSL style sheet is <xsl:stylesheet> or
<xsl:transform>.
ww
Note:<xsl:stylesheet> and <xsl:transform> are completely synonymous and either can be used!
The correct way to declare an XSL style sheet according to the W3C XSLT Recommendation is:
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
To get access to the XSLT elements, attributes and features we must declare the XSLT namespace at
the top of the document.
The xmlns:xsl="http://www.w3.org/1999/XSL/Transform" points to the official W3C XSLT
namespace. If you use this namespace, you must also include the attribute version="1.0".
n
<artist>Bob Dylan</artist>
g.i
<country>USA</country>
<company>Columbia</company>
<price>10.90</price>
n
<year>1985</year>
</cd>
eri
.
.
</catalog>
e
gin
1. Create an XSL Style Sheet
Then you create an XSL Style Sheet ("cdcatalog.xsl") with a transformation template:
en
<xsl:stylesheet version="1.0"
arn
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
Le
<body>
<h2>My CD Collection</h2>
<table border="1">
w.
<tr bgcolor="#9acd32">
<th>Title</th>
<th>Artist</th>
ww
</tr>
<xsl:for-each select="catalog/cd">
<tr>
<td><xsl:value-of select="title"/></td>
<td><xsl:value-of select="artist"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
Add the XSL style sheet reference to your XML document ("cdcatalog.xml"):
n
<catalog>
g.i
<cd>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
n
<country>USA</country>
<company>Columbia</company>
eri
<price>10.90</price>
<year>1985</year>
</cd>
. e
gin
.
</catalog>
The result is:
en
arn
Le
w.
ww
The DOM defines a standard for accessing documents like XML and HTML:
"The W3C Document Object Model (DOM) is a platform and language-neutral interface that allows programs
and scripts to dynamically access and update the content, structure, and style of a document."
DOM: an object-oriented representation of the XML parse tree (roughly like the Data Model graph)
DOM objects have methods like “getFirstChild()”, “getNextSibling”
Common way of traversing the tree
Can also modify the DOM tree – alter the XML – via insertAfter(), etc.
The XML DOM is:
A standard object model for XML
A standard programming interface for XML
Platform- and language-independent
n
A W3C standard
g.i
The XML DOM defines the objects and properties of all XML elements, and the methods (interface) to
access them.
n
DOM Nodes
eri
According to the DOM, everything in an XML document is a node.
The DOM says:
The entire document is a document node
Every XML element is an element node
e
gin
The text in the XML elements are text nodes
Every attribute is an attribute node
Comments are comment nodes
en
DOM Example
Look at the following XML file (books.xml):
arn
<?xmlversion="1.0"encoding="UTF-8"?>
<bookstore>
<bookcategory="cooking">
Le
<titlelang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
w.
<price>30.00</price>
</book>
<bookcategory="children">
ww
<titlelang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
<bookcategory="web">
<titlelang="en">XQuery Kick Start</title>
<author>James McGovern</author>
<author>Per Bothner</author>
<author>Kurt Cagle</author>
<author>James Linn</author>
<author>Vaidyanathan Nagarajan</author>
<year>2003</year>
<price>49.99</price>
</book>
<bookcategory="web"cover="paperback">
<titlelang="en">Learning XML</title>
<author>Erik T. Ray</author>
<year>2003</year>
<price>39.95</price>
n
</book>
g.i
</bookstore>
The root node in the XML above is named <bookstore>. All other nodes in the document are contained within
<bookstore>.
n
eri
The root node <bookstore> holds four <book> nodes.
The first <book> node holds four nodes: <title>, <author>, <year>, and <price>, which contains one text node
e
each, "Everyday Italian", "Giada De Laurentiis", "2005", and "30.00".
gin
Text is Always Stored in Text Nodes
A common error in DOM processing is to expect an element node to contain text. However, the text of an
element node is stored in a text node. In this example: <year>2005</year>, the element node <year>, holds a
en
text node with the value "2005". "2005" is not the value of the <year> element!
The XML DOM views an XML document as a tree-structure. The tree structure is called a node-tree.
All nodes can be accessed through the tree. Their contents can be modified or deleted, and new elements can
be created.
The node tree shows the set of nodes, and the connections between them. The tree starts at the root node and
Le
branches out to the text nodes at the lowest level of the tree:
w.
ww
n
n g.i
eri
Node Parents, Children, and Siblings
The nodes in the node tree have a hierarchical relationship to each other.
e
The terms parent, child, and sibling are used to describe the relationships. Parent nodes have children.
gin
Children on the same level are called siblings (brothers or sisters).
In a node tree, the top node is called the root
Every node, except the root, has exactly one parent node
A node can have any number of children
en
XML Parser
The XML DOM contains methods to traverse XML trees, access, insert, and delete nodes.
However, before an XML document can be accessed and manipulated, it must be loaded into an XML DOM
object.
An XML parser reads XML, and converts it into an XML DOM object that can be accessed with JavaScript.
Most browsers have a built-in XML parser.
n
{
g.i
xhttp=new XMLHttpRequest();
}
else// code for IE5 and IE6
n
{
xhttp=new ActiveXObject("Microsoft.XMLHTTP");
eri
}
xhttp.open("GET","books.xml",false);
xhttp.send();
xmlDoc=xhttp.responseXML;
e
gin
The following code loads and parses an XML string:
if (window.DOMParser)
{
en
parser=new DOMParser();
xmlDoc=parser.parseFromString(text,"text/xml");
}
arn
xmlDoc.loadXML(text);
}
w.
Accessing Nodes
You can access a node in three ways:
1. By using the getElementsByTagName() method
ww
x.getElementsByTagName("title");
Note that the example above only returns <title> elements under the x node. To return all <title> elements in
the XML document use:
xmlDoc.getElementsByTagName("title");
where xmlDoc is the document itself (document node).
n
xmlDoc=loadXMLDoc("books.xml");
g.i
x=xmlDoc.getElementsByTagName("title");
The <title> elements in x can be accessed by index number. To access the third <title> you can write::
n
y=x[2];
Note: The index starts at 0.
eri
You will learn more about node lists in a later chapter of this tutorial.
for (i=0;i<x.length;i++)
{
document.write(x[i].childNodes[0].nodeValue);
arn
document.write("<br>");
}
Node Types
The documentElement property of the XML document is the root node.
Le
Traversing Nodes
The following code loops through the child nodes, that are also element nodes, of the root node:
ww
Example
var xmlDoc=loadXMLDoc("books.xml");
var x=xmlDoc.documentElement.childNodes;
for (i=0;i<x.length;i++)
{
// Process only element nodes (type 1)
if (x[i].nodeType==1)
{
document.write(x[i].nodeName);
document.write("<br>");
}
}
Example explained:
1. Load "books.xml" into xmlDoc using loadXMLDoc()
2. Get the child nodes of the root element
3. For each child node, check the node type of the node. If the node type is "1" it is an element node
n
4. Output the name of the node if it is an element node
g.i
Navigating Node Relationships
The following code navigates the node tree using the node relationships:
Example
n
var xmlDoc=loadXMLDoc("books.xml");
eri
var x=xmlDoc.getElementsByTagName("book")[0].childNodes;
var y=xmlDoc.getElementsByTagName("book")[0].firstChild;
e
gin
for (i=0;i<x.length;i++)
{
// Process only element nodes (type 1)
if (y.nodeType==1)
en
{
document.write(y.nodeName + "<br>");
}
arn
y=y.nextSibling;
}
Le
4. For each child node (starting with the first child node "y"):
5. Check the node type. If the node type is "1" it is an element node
6. Output the name of the node if it is an element node
ww
7. Set the "y" variable to be the next sibling node, and run through the loop again
Traversing the Node Tree
Often you want to loop an XML document, for example: when you want to extract the value of each element.
This is called "Traversing the node tree"
The example below loops through all child nodes of <book>, and displays their names and values:
Example
<html>
<head>
<scriptsrc="loadxmlstring.js"></script>
</head>
<body>
<script>
var text="<book>";
text=text+"<title>Everyday Italian</title>";
text=text+"<author>Giada De Laurentiis</author>";
text=text+"<year>2005</year>";
text=text+"</book>";
var xmlDoc=loadXMLString(text);
n
g.i
// documentElement always represents the root node
var x=xmlDoc.documentElement.childNodes;
for (i=0;i<x.length;i++)
n
{
eri
document.write(x[i].nodeName);
document.write(": ");
document.write(x[i].childNodes[0].nodeValue);
document.write("<br>");
} e
gin
</script>
</body>
</html>
en
Output:
title: Everyday Italian
author: Giada De Laurentiis
arn
year: 2005
Example explained:
1. loadXMLString() loads the XML string into xmlDoc
Le
XML DTD
ww
<?xmlversion="1.0"encoding="UTF-8"?>
<!DOCTYPEnote SYSTEM "Note.dtd">
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
n
g.i
The DOCTYPE declaration, in the example above, is a reference to an external DTD file. The content of the
file is shown in the paragraph below.
n
The purpose of a DTD is to define the structure of an XML document. It defines the structure with a list of
legal elements:
eri
<!DOCTYPE note
[
<!ELEMENT note (to,from,heading,body)>
e
<!ELEMENT to (#PCDATA)>
gin
<!ELEMENT from (#PCDATA)>
<!ELEMENT heading (#PCDATA)>
<!ELEMENT body (#PCDATA)>
]>
en
Example
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE note [
<!ENTITY nbsp " ">
<!ENTITY writer "Writer: Donald Duck.">
<!ENTITY copyright "Copyright: W3Schools.">
]>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
<footer>&writer; ©right;</footer>
n
</note>
g.i
With a DTD, independent groups of people can agree on a standard for interchanging data. With a DTD, you
can verify that the data you receive from the outside world is valid.
n
e eri
gin
en
arn
Le
w.
ww
Unit-V
Part – A
What is Ajax?
Ajax is a set of client side technologies that provides asynchronous communication between user interfaces and web
server. So the advantages of using Ajax are asynchronous communication, minimal data transfer and server is not
overloaded with unnecessary load.
What technologies are being used in AJAX?
AJAX uses four technologies, which are as follows:
JavaScript, XMLHttpRequest, Document Object Model (DOM), Extensible HTML (XHTML) and Cascading Style
Sheets (CSS)
n
Explain the limitations of AJAX.
It is difficult to bookmark a particular state of the application,Function provided in the code-behind file do not work
g.i
because the dynamic pages cannot register themselves on browsers history engine automatically
Describe AJAX Control Extender Toolkit.
AJAX Control Toolkit is a set of extenders that are used to extend the functionalities of the ASP.NET controls. The
n
extenders use a block of JavaScript code to add new and enhanced capabilities to the ASP.NET controls. AJAX Control
Toolkit is a free download available on the Microsoft site. You need to install this toolkit on your system before using
eri
extenders.
30) What is the syntax to create AJAX objects?
AJAX uses the following syntax to create an object:
Var myobject = new AjaxObject("page path");
e
The page path is the URL of the Web page containing the object that you want to call.
gin
The URL must be of the same domain as the Web page.
How can you find out that an AJAX request has been completed?
You can find out that an AJAX request has been completed by using the readyState property. If the value of this
property equals to four, it means that the request has been completed and the data is available.
en
"file2.txt", true);
What are the extender controls?
The extender controls uses a block of JavaScript code to add new and enhanced capabilities to ASP.NET. The
developers can use a set of sample extender controls through a separate download - AJAX Control Toolkit (ACT).
Le
service" as "a software system designed to support interoperable machine-to-machine interaction over a network". It has
an interface described in a machine-processable format specifically Web Services Description Language (WSDL).
What are the different applications that could use web services??
Data providers, for example, those that provide data such as a stock quote
Business-to-business process integrations, such as those that send a purchase order from one company to another
Integration with multiple partners, and even with competitors
Enterprise application integration, for example, integration of a company's e-mail database with its human
resources (HR) database
What are the features of web service?
Web services are having the features such as heterogeneous, interoperable, loosely coupled, and implementation-
n
WSDL is an XML-based language for locating and describing Web services
Why do you want to describe a web service? (MAY/JUNE 2014)
g.i
Web Services Description Language (WSDL) is a document written in XML. The document describes a Web service. It
specifies the location of the service and the operations (or methods) the service exposes.
1. What are the elements of WSDL?
n
Element Description
eri
Name
types A container for abstract type definitions defined using XML Schema
message A definition of an abstract message that may consist of multiple parts, each part may be
of a different type
e
gin
portType An abstract set of operations supported by one or more endpoints (commonly known as
an interface); operations are defined by an exchange of messages
binding A concrete protocol and data format specification for a particular portType
service A collection of related endpoints, where an endpoint is defined as a combination of a
en
The data is passed back and forth using standard protocols such as HTTP, the same protocol used to transfer
ordinary web pages.
Web services operate using open, text-based standards that enable components written in different languages and
on different platforms to communicate.
Le
They are ready to use pieces of software on the Internet. XML, SOAP, Web Services Description Language
(WSDL) and Universal Description, Discovery and Integration (UDDI) are the standards on which web services
rely.
w.
UDDI is another XML based format that enables developers and business to publish and locate Web services on
a network.
State the uses of WSDL. (APR/MAY 2012)
ww
ELEMENT DESCRIPTION
Types It Specifies the data types of the symbols used by the web services.
Messages It specifies the messages used by the web services.
Porttype It specifies the name of the operations
Binding It specifies the name of the protocol of the web services, typically it is SOAP.
What is UDDI? (NOV/DEC 2011)
UDDI means Universal Description, Discovery and Integration.
UDDI - platform-independent framework for describing services, discovering businesses, and integrating business
services by using the Internet.
- directory for storing information about web services
n
- directory of web service interfaces described by WSDL
- communicates via SOAP
g.i
- The core of UDDI is the UDDI Business Registry, a global, pubic, online directory.
What are the benefits of UDDI?
Problems the UDDI specification can help to solve:
n
Making it possible to discover the right business from the millions currently online
Defining how to enable commerce once the preferred business is discovered
eri
Reaching new customers and increasing access to current customers
Expanding offerings and extending market reach
Solving customer-driven need to remove barriers to allow for rapid participation in the global Internet economy
e
Describing services and business processes programmatically in a single, open, and secure environment
What are the core elements of UDDI?
gin
UDDI defines four core data elements within the data model:
businessEntity (modeling business information)
businessService (describing a service)
tModel (describing specifications, classifications, or identifications)
en
binding Template (mapping between a businessService and the set of tModels that describe its technical
fingerprint)
List some examples of web services. (APR/MAY 2012)
arn
XML
SOAP
WSDL
w.
What is SOAP?
SOAP - Simple Object Access Protocol
- protocol specification for exchanging structured information in the implementation of Web Services in computer
ww
networks.
- relies on Extensible Markup Language (XML) for its message format, and usually relies on other Application
Layer protocols, most notably Hypertext Transfer Protocol (HTTP) and Simple Mail Transfer Protocol
(SMTP), for message negotiation and transmission.
Define SOAP structure.
n
element, and a mandatory <Body> element.
g.i
The SOAP header
<Header> is an optional sub element of the SOAP envelope, and is used to pass application-related information that is to
be processed by SOAP nodes along the message path; see The SOAP header.
The SOAP body
n
<Body> is a mandatory sub element of the SOAP envelope, which contains information intended for the ultimate
eri
recipient of the message; see The SOAP body.
The SOAP fault
<Fault> is a sub element of the SOAP body, which is used for reporting errors; see The SOAP fault.
XML elements in <Header> and <Body> are defined by the applications that make use of them, although the SOAP
e
specification imposes some constraints on their structure.
gin
Define the need for SOAP. (APR/MAY 2013)
Simple Object Access Protocol (SOAP) is a protocol based on XML. It is used by the web services for exchange of
information. The Client- Server communication is based on RPC. The HTTP does not design to handle the distributed
objects that are required by the RPC. Hence another application protocol is build over HTTP which popularly known as
en
SOAP. SOAP allows talking different applications that are running in two different operating systems.
What are the descriptions in SOAP service?
To describe everything a SOAP service needs to describe the following:
The operations
arn
Give an example of a web services registry and its function. (NOV/DEC 2012)
It refers to a place in which service providers can impart information about their offered services and potential clients
can search for services
Example: IBM - WebSphere Service Registry, Oracle Service Registry etc.,
w.
Part-B
Explain about the object that helps AJAX reload parts of a web page without reloading the whole page.
(NOV/DEC 2011, MAY/JUNE 2014)
AJAX = Asynchronous JavaScript and XML.
AJAX is a technique for creating fast and dynamic web pages.
AJAX allows web pages to be updated asynchronously by exchanging small amounts of data with the server
behind the scenes. This means that it is possible to update parts of a web page, without reloading the whole
page.
Classic web pages, (which do not use AJAX) must reload the entire page if the content should change.
AJAX is about updating parts of a web page, without reloading the whole page.
n
n g.i
e eri
gin
en
arn
Le
The core of AJAX is the XMLHttpRequest object (available in client side scripting languages like
javascript). The XMLHttpRequest object is used to exchange data with a server behind the scenes. All modern
browsers (IE7+, Firefox, Chrome, Safari, and Opera) have a built-in XMLHttpRequest object. If you are
ww
using IE 5 or IE6 (I wonder if someone still uses it), then ActiveXObject will be used for server
communication to send ajax requests.
A new object of XMLHttpRequest is created like this :
//Creating a new XMLHttpRequest object
var xmlhttp;
if(window.XMLHttpRequest)
{
xmlhttp = newXMLHttpRequest(); //for IE7+, Firefox, Chrome,
Opera, Safari
}
else
{
xmlhttp = newActiveXObject("Microsoft.XMLHTTP"); //for IE6,
IE5
}
This xmlhttp variable can be re-used to send multiple ajax requests, without creating new objects.
XMLHttpRequest is subject to the browser’s same origin policy for security reasons. It means that
requests will only succeed if they are made to the same server that served the original web page.
Useful methods to work with XMLHttpRequest
n
To send request and set request attributes, XMLHttpRequest object has some methods.
g.i
a) open(method, url, isAsync, userName, password)
The HTTP and HTTPS requests of the XMLHttpRequest object must be initialized through the open
method. This method specifies the type of request (GET, POST etc.), the URL, and if the request should be
n
handled asynchronously or not. I will cover this third parameter in next section.
The fourth and fifth parameters are the username and password, respectively. These parameters, or just the
eri
username, may be provided for authentication and authorization if required by the server for this request.
Example:
xmlhttp.open("GET","report_data.xml",true);
xmlhttp.open("GET","sensitive_data.xml",false);
e
xmlhttp.open("POST","saveData",true,"myUserName","som
gin
ePassord");
b) setRequestHeader(name, value)
en
Upon successful initialization of a request, the setRequestHeader method of the XMLHttpRequest object can
be invoked to send HTTP headers with the request.
Example:
arn
c) send(payload)
To send an HTTP request, the send method of the XMLHttpRequest must be invoked. This method accepts a
w.
4) abort()
This method aborts the request if the readyState of the XMLHttpRequest object has not yet become 4
(request complete). The abort method ensures that the callback method does not get invoked in an
asynchronous request.
Syntax:
n
1request as third parameter is true
g.i
2xmlhttp.open("GET", "report_data.xml", false); Synchrnonos
request as third parameter is false
The default value of this parameter is “true” if it is not provided.
n
Asynchronous Ajax Requests do not block the webpage and user can continue to interact with other elements
on the page, while the request is processed on server. You should always use asynchronous Ajax Requests
eri
because a synchronous Ajax Request makes the UI (browser) unresponsive. It means user will not be able to
interact with the webpage, until the request is complete.
Synchronous requests should be used in rare cases with utmost care. For example, synchronous Ajax Request
e
should be used if you‘re embedding a new JavaScript file on the client using ajax and then referencing types
gin
and/or objects from that JavaScript file. Then the fetching of this new JS file should be included through using
a synchronous Ajax Request.
request.send(null);
{
//Request failed; Show error message
}
ww
request.onreadystatechange = function() {
if(request.readyState == 4) {
if(request.status == 200)
{
//request succeed
}
else
{
//request failed
}
}
};
request.send(null)
n
g.i
In above example, onreadystatechange is a event listener registered with XMLHttpRequest request.
onreadystatechange stores a function that will process the response returned from the server. It will be called
for all important events in request‘s life cycle. Every time an step is completed in request processing, the value
n
of readyState will be changed and set to some other value.
0 : request not initialized
eri
1 : server connection established
2 : request received
3 : processing request
e
4 : request finished and response is ready to be handled
gin
Handling returned response from server
To get the response from a server, responseText or responseXML property of the XMLHttpRequest object is
used. If the response from the server is XML, and you want to parse it as an XML object, use the
responseXML property. If the response from the server is not XML, use the responseText property.
en
Example code:
if(xmlhttp.readyState == 4) {
if(xmlhttp.status == 200)
{
Le
document.getElementById("message").innerHTML =
xmlhttp.responseText;
}
w.
else{
alert('Something is wrong !!');
}
ww
}
Explain technologies are being used in AJAX?
AJAX stands for Asynchronous JavaScript and XML. AJAX is a new technique for creating better,
faster, and more interactive web applications with the help of XML, HTML, CSS, and Java Script.
Ajax uses XHTML for content, CSS for presentation, along with Document Object Model and
JavaScript for dynamic content display.
Conventional web applications transmit information to and from the sever using synchronous requests.
It means you fill out a form, hit submit, and get directed to a new page with new information from the
server.
With AJAX, when you hit submit, JavaScript will make a request to the server, interpret the results,
and update the current screen. In the purest sense, the user would never know that anything was even
transmitted to the server.
XML is commonly used as the format for receiving server data, although any format, including plain
text, can be used.
AJAX is a web browser technology independent of web server software.
A user can continue to use the application while the client program requests information from the
server in the background.
Intuitive and natural user interaction. Clicking is not required, mouse movement is a sufficient event
trigger.
Data-driven as opposed to page-driven.
n
g.i
How AJAX
n
e eri
gin
en
arn
Works
AJAX is Based on Open Standards
Le
AJAX cannot work independently. It is used in combination with other technologies to create interactive
webpages.
JavaScript
Loosely typed scripting language.
JavaScript function is called when an event occurs in a page.
Glue for the whole AJAX operation.
DOM
API for accessing and manipulating structured documents.
n
3. The XMLHttpRequest object is configured.
g.i
4. The XMLHttpRequest object makes an asynchronous request to the Webserver.
5. The Webserver returns the result containing XML document.
6. The XMLHttpRequest object calls the callback() function and processes the result.
n
7. The HTML DOM is updated.
eri
1. A Client Event Occurs
A JavaScript function is called as the result of an event.
Example: validateUserId() JavaScript function is mapped as an event handler to an onkeyup event on
e
input form field whose id is set to "userid"
gin
<input type="text" size="20" id="userid" name="id" onkeyup="validateUserId();">.
2. The XMLHttpRequest Object is Created
var ajaxRequest;// The variable that makes Ajax possible!
function ajaxFunction(){
en
try{
ajaxRequest =newXMLHttpRequest();
}catch(e){
try{
ajaxRequest =newActiveXObject("Msxml2.XMLHTTP");
}catch(e){
w.
try{
ajaxRequest =newActiveXObject("Microsoft.XMLHTTP");
ww
}catch(e){
In this step, we will write a function that will be triggered by the client event and a callback function
processRequest() will be registered.
function validateUserId(){
ajaxFunction();
n
g.i
ajaxRequest.open("GET", url,true);
ajaxRequest.send(null);
}
n
2. Making Asynchronous Request to the Webserver
Source code is available in the above piece of code. Code written in bold typeface is responsible to make a
eri
request to the webserver. This is all being done using the XMLHttpRequest object ajaxRequest.
function validateUserId(){
ajaxFunction();
e
// Here processRequest() is the callback function.
gin
ajaxRequest.onreadystatechange = processRequest;
ajaxRequest.open("GET", url,true);
arn
ajaxRequest.send(null);
}
Assume you enter Zara in the userid box, then in the above request, the URL is set to "validate?id=Zara".
3. Webserver Returns the Result Containing XML Document
Le
You can implement your server-side script in any language, however its logic should be as follows.
Get a request from the client.
Parse the input from the client.
w.
Do required processing.
Send the output to the client.
If we assume that you are going to write a servlet, then here is the piece of code.
ww
if((targetId !=null)&&!accounts.containsKey(targetId.trim()))
{
response.setContentType("text/xml");
response.setHeader("Cache-Control","no-cache");
response.getWriter().write("true");
}
else
{
response.setContentType("text/xml");
response.setHeader("Cache-Control","no-cache");
response.getWriter().write("false");
}
}
4. Callback Function processRequest() is Called
The XMLHttpRequest object was configured to call the processRequest() function when there is a state change
n
to the readyState of the XMLHttpRequest object. Now this function will receive the result from the server and
g.i
will do the required processing. As in the following example, it sets a variable message on true or false based
on the returned value from the Webserver.
function processRequest(){
n
if(req.readyState ==4){
eri
if(req.status ==200){
var message =...;
...
}
e
gin
5. The HTML DOM is Updated
This is the final step and in this step, your HTML page will be updated. It happens in the following way:
JavaScript gets a reference to any element in a page using DOM API.
The recommended way to gain a reference to an element is to call.
en
document.getElementById("userIdMessage"),
// where "userIdMessage" is the ID attribute
// of an element appearing in the HTML document
arn
JavaScript may now be used to modify the element's attributes; modify the element's style properties;
or add, remove, or modify the child elements. Here is an example:
<scripttype="text/javascript">
<!--
Le
function setMessageUsingDOM(message){
var userMessageElement = document.getElementById("userIdMessage");
var messageText;
w.
if(message =="false"){
userMessageElement.style.color ="red";
ww
userMessageElement.replaceChild(messageBody,userMessageElement.childNodes[
0]);
}
else
{
userMessageElement.appendChild(messageBody);
n
}
g.i
}
-->
</script>
<body>
n
<divid="userIdMessage"><div>
eri
</body>
Explain the concept of JSON concept with example.
JSON: JavaScript Object Notation.
e
o JSON is a syntax for storing and exchanging data.
o JSON is an easier-to-use alternative to XML.
gin
o JSON is a lightweight data-interchange format
o JSON is language independent
o JSON is "self-describing" and easy to understand
en
The following JSON example defines an employees object, with an array of 3 employee records:
arn
JSON Example
{"employees":[
{"firstName":"John", "lastName":"Doe"},
{"firstName":"Anna", "lastName":"Smith"},
Le
{"firstName":"Peter", "lastName":"Jones"}
]}
w.
The following XML example also defines an employees object with 3 employee records:
XML Example
ww
<employees>
<employee>
<firstName>John</firstName><lastName>Doe</lastName>
</employee>
<employee>
<firstName>Anna</firstName><lastName>Smith</lastName>
</employee>
<employee>
<firstName>Peter</firstName><lastName>Jones</lastName>
</employee>
</employees>
JSON Example
<!DOCTYPEhtml>
<html>
<body>
n
g.i
<pid="demo"></p>
<script>
n
var text = '{"name":"John Johnson","street":"Oslo West 16","phone":"555 1234567"}';
eri
var obj = JSON.parse(text);
document.getElementById("demo").innerHTML =
obj.name + "<br>" +
obj.street + "<br>" + e
gin
obj.phone;
</script>
</body>
en
</html>
arn
Output:
Oslo West 16
555 1234567
w.
A common use of JSON is to read data from a web server, and display the data
in a web page.
The following example reads a menu from myTutorials.txt, and displays the menu in a web page:
ww
JSON Example
<divid="id01"></div>
<script>
var xmlhttp = new XMLHttpRequest();
var url = "myTutorials.txt";
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
function myFunction(arr) {
var out = "";
n
var i;
for(i = 0; i < arr.length; i++) {
g.i
out += '<a href="' + arr[i].url + '">' +
arr[i].display + '</a><br>';
n
}
document.getElementById("id01").innerHTML = out;
eri
}
</script>
Example Explained
1: Create an array of objects. e
gin
Use an array literal to declare an array of objects.
Give each object two properties: display and url.
Name the array myArray:
myArray
en
var myArray = [
{
"display": "JavaScript Tutorial",
arn
"url": "http://www.w3schools.com/js/default.asp"
},
{
Le
{
"display": "CSS Tutorial",
"url": "http://www.w3schools.com/css/default.asp"
ww
}
]
2: Create a JavaScript function to display the array.
Create a function myFunction() that loops the array objects, and display the content as HTML links:
myFunction()
function myFunction(arr) {
var out = "";
var i;
for(i = 0; i < arr.length; i++) {
n
Put the array literal in a file named myTutorials.txt:
myTutorials.txt
g.i
[
{
"display": "JavaScript Tutorial",
n
"url": "http://www.w3schools.com/js/default.asp"
eri
},
{
"display": "HTML Tutorial",
e
"url": "http://www.w3schools.com/html/default.asp"
gin
},
{
"display": "CSS Tutorial",
"url": "http://www.w3schools.com/css/default.asp"
en
}
]
arn
xmlhttp.onreadystatechange = function() {
w.
myFunction(myArr);
}
}
an HTML can include script elements that reference the Microsoft Ajax Library .js files. The Microsoft Ajax
Library allows Ajax applications to perform all processing on the client. A client and server solution consists
of using both the Microsoft Ajax Library and ASP.NET server controls.
n
n g.i
e eri
gin
en
The illustration shows the functionality of the client-based Microsoft Ajax Library, which includes support for
creating client components, browser compatibility, and networking and core services. The illustration also
shows the functionality of server-based Microsoft Ajax features, which include script support, Web services,
application services, and server controls. The following sections describe the illustration in more detail.
Le
Components
Client components enable rich behaviors in the browser without postbacks. Components fall into three
categories:
ww
The networking layer handles communication between script in the browser and Web-based services and
applications. It also manages asynchronous remote method calls. In many scenarios, such as partial-page
updates that use the UpdatePanel control, the networking layer is used automatically and does not require that
you write any code.
The networking layer also provides support for accessing server-based forms authentication, role information,
and profile information in client script. This support is also available to Web applications that are not created
by using ASP.NET, as long as the application has access to the Microsoft Ajax Library.
Core Services
The Ajax client-script libraries in ASP.NET consist of JavaScript (.js) files that provide features for object-
oriented development. The object-oriented features included in the Microsoft Ajax client-script libraries enable
n
a high level of consistency and modularity in client scripting. The following core services are part of the client
g.i
architecture:
Object-oriented extensions to JavaScript, such as classes, namespaces, event handling, inheritance, data
types, and object serialization.
n
A base class library, which includes components such as string builders and extended error handling.
Support for JavaScript libraries that are either embedded in an assembly or are provided as standalone
eri
JavaScript (.js) files. Embedding JavaScript libraries in an assembly can make it easier to deploy
applications and can help solve versioning issues. Debugging and Error Handling
The core services include the Sys.Debug class, which provides methods for displaying objects in readable
e
form at the end of a Web page. The class also shows trace messages, enables you to use assertions, and lets
gin
you break into the debugger. An extended Error object API provides helpful exception details with support for
release and debug modes.
Globalization
The Ajax server and client architecture in ASP.NET provides a model for localizing and globalizing client
en
script. This enables you to design applications that use a single code base to provide UI for many locales
(languages and cultures). For example, the Ajax architecture enables JavaScript code to format Date or
Number objects automatically according to culture settings of the user's browser, without requiring a postback
arn
to the server.
Ajax Server Architecture
The server pieces that support Ajax development consist of ASP.NET Web server controls and components
that manage the UI and flow of an application. The server pieces also manage serialization, validation, and
Le
control extensibility. There are also ASP.NET Web services that enable you to access ASP.NET application
services for forms authentication, roles, and user profiles.
Script Support
w.
Ajax features in ASP.NET are commonly implemented by using client script libraries that perform processing
strictly on the client. You can also implement Ajax features by using server controls that support scripts sent
from the server to the client.
ww
You can also create custom client script for your ASP.NET applications. In that case, you can also use Ajax
features to manage your custom script as static .js files (on disk) or as .js files embedded as resources in an
assembly.
Ajax features include a model for release and debug modes. Release mode provides error checking and
exception handling that is optimized for performance, with minimized script size. Debug mode provides more
robust debugging features, such as type and argument checking. ASP.NET runs the debug versions when the
application is in debug mode. This enables you to throw exceptions in debug scripts while minimizing the size
of release code.
Script support for Ajax in ASP.NET is used to provide two important features:
The Microsoft Ajax Library, which is a type system and a set of JavaScript extensions that provide
namespaces, inheritance, interfaces, enumerations, reflection, and additional features.
Partial-page rendering, which updates regions of the page by using an asynchronous postback.
Localization
The Microsoft Ajax architecture builds on the foundation of the ASP.NET 2.0 localization model. It provides
additional support for localized .js files that are embedded in an assembly or that are provided on disk.
ASP.NET can serve localized client scripts and resources automatically for specific languages and regions.
Web Services
With Ajax functionality in an ASP.NET Web page, you can use client script to call both ASP.NET Web
services (.asmx) and Windows Communication Foundation (WCF) services (.svc). The required script
n
references are automatically added to the page, and they in turn automatically generate the Web service proxy
g.i
classes that you use from client script to call the Web service.
You can also access ASP.NET Web services without using Microsoft Ajax server controls (for example, if you
are using a different Web development environment). To do so, in the page, you can manually include
n
references to the Microsoft Ajax Library, to script files, and to the Web service itself. At run time, ASP.NET
generates the proxy classes that you can use to call the services.
eri
Application Services
Application services in ASP.NET are built-in Web services that are based on ASP.NET forms authentication,
roles, and user profiles. These services can be called by client script in an Ajax-enabled Web page, by a
e
Windows client application, or by a WCF-compatible client.
gin
Server Controls
Ajax server controls consist of server and client code that integrate to produce rich client behavior. When you
add an Ajax-enabled control to an ASP.NET Web page, the page automatically sends supporting client script
to the browser for Ajax functionality. You can provide additional client code to customize the functionality of
en
Timer the whole page, or use it together with the UpdatePanel control to perform
partial-page updates at a defined interval.
You can also create custom ASP.NET server controls that include Ajax client behaviors. Custom controls that
enhance the capabilities of other ASP.NET Web controls are referred to as extendercontrols.
Ajax Control Toolkit
The Ajax Control Toolkit contains controls that you can use to build highly responsive and interactive Ajax-
enabled Web applications. These controls do not require knowledge of JavaScript or Ajax. They are designed
using concepts that are familiar to ASP.NET Web Forms application developers. Using the Ajax Control
Toolkit, you can build Ajax-enabled ASP.NET Web Forms applications and ASP.NET MVC Web
applications by dragging the controls from the Visual Studio Toolbox onto a page. The Ajax Control Toolkit is
an open-source project that is part of the CodePlex Foundation
Develop a web application for Airline Reservation System using AJAX.
Airline Reservation System using AJAX
This example application simulates an online reservation system that allows users to search for the best flights
available between two cities. The system processes requests and provides the flight numbers, seating
information and price for each leg of a three-leg flight, computing the total price at the end.
This Flight Reservation example application consists of two parts:
1. Client-side Frontend Application
A client-side application which accepts end user requests from an AJAX-based graphical user interface (GUI).
n
This application enables users to to select between one departure city and two possible destinations.
g.i
2. Server-side Backend Application
A server-side application that processes end-user requests.
With a simple example illustrate the steps to create a java web service. (NOV/DEC 2012)
n
Writing a java web service
Currency conversion Service
eri
Writing a server for a service using JWSDP 1.3 tools
Application: currency converter
Three operations:
fromDollars
fromEuros e
gin
fromYen
Input: value in specified currency
Output: object containing input value and equivalent values in other two currencies
en
a service endpoint interface (SEI) that defines the interface of the web service.
Configuration files are XML files that can be changed as needed. Developers can use configuration
files to change settings without recompiling applications. Administrators can use configuration files to
ww
No public static final declarations (global constants) It must not have constant declarations
Allowable parameter/return value data types
Java primitives (int, boolean, etc.)
Primitive wrapper classes (Integer, etc.)
String, Date, Calendar, BigDecimal, BigInteger
java.xml.namespace.QName, java.net.URI
Struct: class consisting entirely of public instance variables
Array of any of the above
Struct for currency converter app (data type for return values)
n
n g.i
eri
Service endpoint interface
e
gin
en
arn
Three files ExchangeValues.java, CurCon.java and CurConImpl.java written for the web service
Class CurConImpl contains methods implements sevice endpoint interface, for example:
Le
w.
ww
n
Configuration file for web service
n g.i
eri
Configuration file for web service
e
Context path
gin
Likeservl
et in
en
web.xml
arn
Likeservlet-
Le
mappinginweb.xml
Run jar and wsdeploy to create a Web Archive (WAR) file converter.war
Name must match urlPatternBase value
jaxrpc-ri.xml: Defines the various end points for referencing a Web service.
wscompile: The wscompile tool generates stubs, and WSDL files used in JAX-RPC clients and
services. The tool reads as input a configuration file and either a WSDL file or an RMI interface that
defines the service.
wsdeploy: Reads a WAR file (something like Jar file) and the jaxrpc-ri.xml file and then generates
another WAR file that is ready for deployment
Write service endpoint interface
May need to write additional classes representing data structures
Write class implementing the interface
Compile classes
n
Create configuration files and run JWSDP tools to create web service
g.i
Deploy web service to Tomcat
Just copy converter.war to Tomcat webapps directory
May need to use Manager app to deploy
n
Enter converter.war in ―WAR or Directory URL‖ text box
Testing success:
eri
Visit http://localhost:8080/converter/currency
e
gin
en
arn
n
n g.i
e eri
gin
en
The UDDI specification defines open, platform-independent standards that enable businesses to share
information in a global business registry, discover services on the registry, and define how they interact over
the Internet.
Le
descriptions.
Since WSIL focuses on distributed service discovery, the WSIL specification complements UDDI by
facilitating the discovery of services that are available on Web sites that may not be listed yet in a
UDDI registry.
WSDL
XML-based open specification that describes the interfaces to and instances of Web services on the
network.
It is extensible, so endpoints can be described regardless of the message formats or network protocols
SOAP
XML-based standard for messaging over HTTP and other Internet protocols.
It is a lightweight protocol for the exchange of information in a decentralized, distributed environment.
It is based on XML and consists of three parts:
o An envelope that defines a framework for describing what is in a message and how to process
n
it.
o A set of encoding rules for expressing instances of application-defined data types.
g.i
o A convention for representing remote procedure calls and responses.
SOAP enables the binding and usage of discovered Web services by defining a message path for
routing messages.
n
SOAP may be used to query UDDI for Web services.
eri
A service provider hosts a Web service and makes it accessible using protocols such as SOAP/HTTP or
SOAP/JMS. The Web service is described by a WSDL document that is stored on the provider's server or in a
special repository. The WSDL document may be referenced by the UDDI business registry and WSIL
e
documents. These contain pointers to the Web service's WSDL files.
gin
Explain the creation of a java web service Client in detail with examples. (MAY/JUNE 2012)
Writing a Java Web service Client
Goal: write a JSP-based client
Input: currency and value
en
JWSDP: Client
Directory structure (wscompile generates content of classes and src)
Run wscompile
n
g.i
Run wscompile
Wscompile –gen –keep –d classes –s src config.xml
Wscompile tool creates a class implementing the interface
n
Interface is shared between webservice server and clients via the wsdl document.
On server side the class implementing the interface is written
eri
On client side the interface is automatically generated by wscompile tool
Structs will be represented as JavaBeans classes, regardless of how they are defined on the server
e
gin
en
arn
n
n g.i
JSP document using the bean:
e eri
gin
en
SOAP is one of the more popular standards, and is one of the most significant standards in communicating
web services over the network. XML provides a means for communicating over the Web using an XML
document that both requests and responds to information between two disparate systems. SOAP allows the
sender and the receiver of XML documents to support a common data transfer protocol for effective
Le
networked communication.
SOAP Building Blocks
A SOAP message is an ordinary XML document containing the following elements:
w.
• A required Envelope element that identifies the XML document as a SOAP message
• An optional Header element that contains header information
• A required Body element that contains call and response information
ww
• An optional Fault element that provides information about errors that occurred while processing the
message
All the elements above are declared in the default namespace for the SOAP envelope:
http://www.w3.org/2001/12/soap-envelope
and the default namespace for SOAP encoding and data types is:
http://www.w3.org/2001/12/soap-encoding
Syntax Rules
Here are some important syntax rules:
• A SOAP message MUST be encoded using XML
n
...
g.i
...
</soap:Header>
<soap:Body>
n
...
...
eri
<soap:Fault>
...
...
</soap:Fault> e
gin
</soap:Body>
</soap:Envelope>
SOAP ElementS:
SOAP Envelope Element
en
The mandatory SOAP Envelope element is the root element of a SOAP message.
The required SOAP Envelope element is the root element of a SOAP message. It defines the XML document
as a SOAP message.
arn
Note the use of the xmlns:soap namespace. It should always have the value of:
http://www.w3.org/2001/12/soap-envelope
and it defines the Envelope as a SOAP Envelope:
<?xml version="1.0"?>
Le
<soap:Envelope
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
w.
...
Message information goes here
...
ww
</soap:Envelope>
The xmlns:soap Namespace
A SOAP message must always have an Envelope element associated with the
"http://www.w3.org/2001/12/soap-envelope" namespace.
If a different namespace is used, the application must generate an error and discard the message.
The encodingStyle Attribute
The SOAP encodingStyle attribute is used to define the data types used in the document. This attribute may
appear on any SOAP element, and it will apply to that element's contents and all child elements. A SOAP
message has no default encoding.
Syntax
soap:encodingStyle="URI"
The optional SOAP Header element contains application specific information (like authentication, payment,
etc) about the SOAP message. If the Header element is present, it must be the first child element of the
Envelope element.
Note: All immediate child elements of the Header element must be namespace-qualified.
n
g.i
<?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
n
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
<soap:Header>
eri
<m:Trans
xmlns:m="http://www.w3schools.com/transaction/"
soap:mustUnderstand="1">234</m:Trans>
</soap:Header> e
gin
...
...
</soap:Envelope>
The example above contains a header with a "Trans" element, a "mustUnderstand" attribute value of "1", and a
en
value of 234.
SOAP defines three attributes in the default namespace ("http://www.w3.org/2001/12/soap-envelope"). These
attributes are: actor, mustUnderstand, and encodingStyle. The attributes defined in the SOAP Header defines
arn
instead, may be intended for one or more of the endpoints on the message path.
The SOAP actor attribute may be used to address the Header element to a particular endpoint.
Syntax soap:actor="URI"
w.
Example
<?xml version="1.0"?>
ww
message.
Immediate child elements of the SOAP Body element may be namespace-qualified. SOAP defines one
element inside the Body element in the default namespace ("http://www.w3.org/2001/12/soap-envelope").
This is the SOAP Fault element, which is used to indicate error messages.
<?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
<soap:Body>
<m:GetPrice xmlns:m="http://www.w3schools.com/prices">
n
<m:Item>Apples</m:Item>
g.i
</m:GetPrice>
</soap:Body>
</soap:Envelope>
n
The example above requests the price of apples. Note that the m:GetPrice and the Item elements above are
application-specific elements. They are not a part of the SOAP standard.
eri
A SOAP response could look something like this: <?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
e
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
gin
<soap:Body>
<m:GetPriceResponse xmlns:m="http://www.w3schools.com/prices">
<m:Price>1.90</m:Price>
</m:GetPriceResponse>
en
</soap:Body>
</soap:Envelope>
arn
n
the message could not proceed
g.i
Explain the anatomy of UDDI.
UDDI is
A federated and open database
n
A standard SOAP interface for querying and submitting information
A repository that includes custom metadata for querying and finding Web services
eri
UDDI enables companies to register their electronic services—everything from an e-mail address for technical
support to XML-based Web services for purchasing. They can do this from a Web page or by
programmatically using the UDDI interface.
e
There are two large pieces to UDDI, and one smaller piece. The larger pieces are:
gin
The data format
The API for querying and submitting
More than two dozen data structures exist in the UDDI specification; therefore, covering them all would turn
this book into a reference. What we should look at are the major data structures, and there are five very
en
company.
tModel— Categorizes a type. A service may contain multiple types.
bindingTemplate— Collects tModels and other specific information about a service.
categoryBag— Collects name–value pairs for a general categorization. businessEntity.
Le
The following sections discuss businessEntity, businessService, and tModel in greater detail.
businessEntity
The businessEntity type holds information about specific businesses. Of course, there is no requirement that
w.
these documents precisely correspond to a single business entity. They could correspond to corporate entities,
such as subsidiaries or corporate divisions.
This structure contains the following main pieces of information:
ww
n
<description>This service doesn't do anything</description>
g.i
<bindingTemplate>
...
</bindingTemplate>
n
</businessService>
tModel
eri
The tModel is the hardest to understand and most misunderstood data structure in the UDDI Schema.
it's a generic keyed reference to something.
Arguably, this incredible flexibility makes tModel harder to use. But it enables us to describe all kinds of
e
things, and then link them to all kinds of other things. (Notice that I have to use the vague word thing because
gin
of this abstraction and flexibility.)
With UDDI, tModels can have many different purposes, but one stands out in my mind: to reference Web
service features in a transparent and generic fashion. I can create separate tModels for services that implement
transactions, that implement reliable messaging, and that are described by WSDLs. I can then attach all of the
en
tModels that apply to any of my individual Web services. Even better, I can search for services based on those
tModels!
The tModel structure contains the following information:
arn
pairs
The following Listing shows a sample of what a tModel can look like.
Listing: A tModel Structure in the UDDI Schema
ww
<tModel
xmlns="urn:uddi-org:api"
tModelKey="UUID:1111111-1111-1111-1111-1111111">
<name>KeithBa.Com:PurchaseOrders</name>
<description xml:lang="en">
Purchase orders services
</description>
<overviewDoc>
<overviewURL>http://keithba.com/po.wsdl</overviewURL>
</overviewDoc>
<categoryBag>
<keyedReference
tModelKey="UUID:C1ACF26D-9672-4404-9D70-39B756E62AB4"
keyName="types"
keyValue="wsdlSpec"/>
</categoryBag>
</tModel>
Programmer's API
In addition to defining a series of data structures, UDDI defines how to interact with those data structures—in
n
other words, how to use them with SOAP. There are two major sets of APIs within UDDI:
g.i
Inquiry Operations— For searching for information
Publisher Operations— For saving, editing, and deleting information
Inquiry
n
The piece of UDDI used the most is the set of inquiry operations, often called the inquiry API. Inquiry
operations with UDDI take two basic forms: browsing operations and retrieval operations.
eri
Browsing operations are used to find something. You use them as broad-based queries to figure out what you
want. All of these operations start with the pattern "find_XXX", where XXX is something specific, such as
find_business or find_service.
e
There are only four operations in this category of UDDI operations:
gin
find_binding
find_business
find_service
find_tModel
en
Once you know what you want, you can use the drill-down information retrieval operations to get all of the
details you need about a specific business or service. These operations require specific UUIDs (Universally
Unique Identifiers) that you probably will get via the browsing "find" operations. They all follow the pattern of
arn
"get_XXX," where XXX is the specific information you need. Using Microsoft's UDDI SDK, you can easily
use these find operations:
Inquire.Url = "http://uddi.rte.microsoft.com/inquire";
FindBusiness findBusiness = new FindBusiness();
Le
findBusiness.Names.Add("KeithBa");
BusinessList list = fb.Send();
There are five retrieval operations:
w.
get_bindingDetail
get_businessDetail
get_businessDetailExt
ww
get_serviceDetail
get_tModelDetail
And again, the UDDI SDK from Microsoft makes it easy to call these:
Inquire.Url = "http://uddi.rte.microsoft.com/inquire";
if (list.BusinessInfos.Count > 0)
{
GetBusinessDetail gb = new GetBusinessDetail();
gb.BusinessKeys.Add(bizList.BusinessInfos[0].BusinessKey);
BusinessDetail bizDetail = gb.Send();
if (bizDetail.BusinessEntities.Count > 0)
{
//do something interesting
}
}
n
WSDL and UDDI
g.i
UDDI offers a way to store abstract WSDL documents (WSDLs that don't point to a specific service, but
instead can be implemented by any number of services), as well. Actually, it provides for a specific tModel
structure to which each businessService can point.
n
The basic idea is that it is possible to create WSDL documents that are abstract. Technically, almost any
WSDL that is missing a service element and the child port pointing to a specific address is abstract. In
eri
practice, the UDDI binding is for abstract WSDLs that are described down through the binding section. Of
course, nothing prevents you from using the true point of abstraction in a WSDL: the portType section.
Once you've defined this abstract WSDL (e.g., as part of a standards organization), you can then create a
e
tModel in UDDI that references this WSDL. The important part to remember is that there must be a keyed-
gin
Reference to the tModelKey that represents abstract WSDLs.
Also, the overiewURL element should point to the WSDL file.
Listing: A tModel That References a WSDL Document
<tModel tModelKey="UUID:1111111-1111-1111-111111">
en
</OverviewDoc>
<categoryBag>
<keyedReference
tModelKey="uudi:C1ACF26D-9672-4404-9D70-39B756E62AB4"
Le
keyName="uddi-org:types"
keyValue="wsdlSpec"
/>
w.
</categoryBag>
</tModel>
Now, we can reference this tModel from other tModels or (more likely) from businessService entries that
ww
n
n g.i
e eri
gin
Types
• <types> define types used in message declaration
• XML Schema, DTD, and etc.
• XML Schema must be supported by any vendor of WSDL conformant products.
en
WSDL Messages
• The <message> element defines the data elements of an operation.
• Each messages can consist of one or more parts. The parts can be compared to the parameters of a function call
arn
• The <port> defines the connection point to a web service, an instance of <portType>.
It can be compared to a function library (or a module, or a class) in a traditional programming language. Each operation
can be compared to a function in a traditional programming language
w.
Operation Types
• The request-response type is the most common operation type, but WSDL defines four types:
• One-way: The operation can receive a message but will not return a response
• Request-response:The operation can receive a request and will return a response
ww
• Solicit-response:The operation can send a request and will wait for a response
• Notification:The operation can send a message but will not wait for a response
Binding
• Binding defines how message are transmitted, and the location of the service.
WSDL Example
This is a simplified fraction of a WSDL document:
<messagename="getTermRequest">
<partname="term"type="xs:string"/>
</message>
<messagename="getTermResponse">
<partname="value"type="xs:string"/>
</message>
<portTypename="glossaryTerms">
<operationname="getTerm">
<inputmessage="getTermRequest"/>
<outputmessage="getTermResponse"/>
n
</operation>
</portType>
g.i
In this example the<portType> element defines "glossaryTerms" as the name of a port, and "getTerm" as the
name of an operation.
The "getTerm" operation has an input message called "getTermRequest" and an output message called
n
"getTermResponse".
eri
The<message> elements define the parts of each message and the associated data types.
Describe the major elements of SOAP. (NOV/DEC 2011, MAY/JUNE 2014) (APR/MAY 2013)
SOAP is a simple XML based protocol to let applications exchange information over HTTP.
e
Or more simply: SOAP is a protocol for accessing a Web Service.
SOAP Building Blocks
gin
A SOAP message is an ordinary XML document containing the following elements:
• A required Envelope element that identifies the XML document as a SOAP message
• An optional Header element that contains header information
• A required Body element that contains call and response information
en
• An optional Fault element that provides information about errors that occurred while processing the
message
arn
All the elements above are declared in the default namespace for the SOAP envelope:
http://www.w3.org/2001/12/soap-envelope
and the default namespace for SOAP encoding and data types is:
http://www.w3.org/2001/12/soap-encoding
Le
Syntax Rules
Here are some important syntax rules:
w.
</soap:Header>
<soap:Body>
...
...
<soap:Fault>
...
...
</soap:Fault>
</soap:Body>
</soap:Envelope>
n
SOAP ElementS:
g.i
SOAP Envelope Element
The mandatory SOAP Envelope element is the root element of a SOAP message.
The required SOAP Envelope element is the root element of a SOAP message. It defines the XML document
n
as a SOAP message.
Note the use of the xmlns:soap namespace. It should always have the value of:
eri
http://www.w3.org/2001/12/soap-envelope
and it defines the Envelope as a SOAP Envelope:
<?xml version="1.0"?>
<soap:Envelope e
gin
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
...
Message information goes here
en
...
</soap:Envelope>
The xmlns:soap Namespace
arn
A SOAP message must always have an Envelope element associated with the
"http://www.w3.org/2001/12/soap-envelope" namespace.
If a different namespace is used, the application must generate an error and discard the message.
The encodingStyle Attribute
Le
The SOAP encodingStyle attribute is used to define the data types used in the document. This attribute may
appear on any SOAP element, and it will apply to that element's contents and all child elements. A SOAP
message has no default encoding.
w.
Syntax
soap:encodingStyle="URI"
ww
The optional SOAP Header element contains application specific information (like authentication, payment,
etc) about the SOAP message. If the Header element is present, it must be the first child element of the
Envelope element.
Note: All immediate child elements of the Header element must be namespace-qualified.
<?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
<soap:Header>
<m:Trans
xmlns:m="http://www.w3schools.com/transaction/"
soap:mustUnderstand="1">234</m:Trans>
</soap:Header>
...
...
n
</soap:Envelope>
g.i
The example above contains a header with a "Trans" element, a "mustUnderstand" attribute value of "1", and a
value of 234.
SOAP defines three attributes in the default namespace ("http://www.w3.org/2001/12/soap-envelope"). These
n
attributes are: actor, mustUnderstand, and encodingStyle. The attributes defined in the SOAP Header defines
how a recipient should process the SOAP message.
eri
The actor Attribute
A SOAP message may travel from a sender to a receiver by passing different endpoints along the message
path. Not all parts of the SOAP message may be intended for the ultimate endpoint of the SOAP message but,
e
instead, may be intended for one or more of the endpoints on the message path.
gin
The SOAP actor attribute may be used to address the Header element to a particular endpoint.
Syntax soap:actor="URI"
Example
<?xml version="1.0"?>
en
Syntax soap:mustUnderstand="0|1"
SOAP Body Element
The mandatory SOAP Body element contains the actual SOAP message.
w.
The required SOAP Body element contains the actual SOAP message intended for the ultimate endpoint of the
message.
Immediate child elements of the SOAP Body element may be namespace-qualified. SOAP defines one
ww
</soap:Body>
</soap:Envelope>
The example above requests the price of apples. Note that the m:GetPrice and the Item elements above are
application-specific elements. They are not a part of the SOAP standard.
A SOAP response could look something like this: <?xml version="1.0"?>
<soap:Envelope
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
<soap:Body>
n
<m:GetPriceResponse xmlns:m="http://www.w3schools.com/prices">
<m:Price>1.90</m:Price>
g.i
</m:GetPriceResponse>
</soap:Body>
</soap:Envelope>
n
SOAP Fault Element
eri
The optional SOAP Fault element is used to hold error and status information for a SOAP message.
An error message from a SOAP message is carried inside a Fault element.
If a Fault element is present, it must appear as a child element of the Body element. A Fault element can only
appear once in a SOAP message.
e
The SOAP Fault element has the following sub elements:
gin
Sub Element Description
<faultcode> A code for identifying the fault
<faultstring> A human readable explanation of the
en
fault
<faultactor> Information about who caused the fault
to happen
arn