grab our rss feed  Follow us on twitter

s2sgateway

Practical Learning of Programming languages such us j2ee,java,jsp

To Download Our Web-Application Free E-book Enter your Mail Address Below

Enter your E-mail Address to Subscribe Tutorials and Free Projects:

  Powered by FeedBurner

Google Chrome6 Released

One of the Best Browsers in the world,Google chrome’s version 6(a stable version)has been released.
Like the Previous browsers it is super fast and more security.
Flash player is inbuilt so it will give you best performance.So lets download Google Chrome6 and enjoy

7 Steps to do after creating a Website/Blog

Hai Readers This is a Continuous Post of Importance in having a website.See the Last Post 7 Steps to understand before registering a website

Ok You have created the website Then what to do,Without having lot of visitors, it is completely no use of having a website,Lets see 7 steps to do after creating a website
1.Create a sitemap, this is important for your visitors to easily navigate the site without problems.If you don’t have it then users who don’t able to understand the website can leave quickly
2.Check your keyword in your title tag This is important for your page to index correctly.
3.Submit your site to search engines basically

4.Join the Forums that is related to your website and involve in some of the discussions and try to add your site link,But don’t spam otherwise your post can be deleted easily.
5.Comment in some of the blogs related to yours,But before commenting check your comment is clear and related
6.Add your site name in your signature in your mail ,so that your friends know about your site and have a check.
7.Last but not least Join in Twitter,Facebook and get as many friends and followers as you can,but keep in mind some followers don’t have interest in your blog content so keep that in mind.
So do these steps carefully and check you site’s performance.Keep commenting as we are dofollow blog,Happy blogging

Freshers Walk-In : Software Developers needed

      Number of Vacancies : 3
      Desired Qualification : BE/B.Tech (CS/IT) / MCA
      Experience : 0 Years
      Skills : C, C++, Core JAVA
      knowledge in C, C++, JAVA,J2ME is needed

Walk-In From 30th August 2010 to 5th September 2010 : 5 PM to 7 PM
APPLY HERE

Venue :
Stellent Soft,
45-44-2/1, Old Post Office Road,
Opp MSM Public School,
Near 80 ft Road, Akkayyapalem,
Visakhapatnam – 530016
Andhra Pradesh
Contact Details :
Name : Basanth Kumar Varma Alluri
Phone : +91-891-2710452

7 Steps to understand before registering a website

Hai Readers Everyone in this technical field would like to have a website,Some type of eager to achieve, make them register a website for their own.
But Most of the guys unable to understand certain things before registering a website that give them failures.
Lets see the important 7 steps
1.For what purpose you are going to register a website
2.Do you able to maintain the website in your own
3.Do you able to update regularly
4.Have you choose a good domain name(without a good domain your reputation is not incremented)
5.The website registration and web hosting costs (There are different providers in market,sometimes you get a domain for cheap price)
6.Do you have a unique idea and resources
7.Last but not least Do you have a experience as blogger before this makes sense,you already have some blogging experience that you can apply in your website
Many Professionals simply creating websites and put some contents and gone away once they don’t find the visitors, one important and noticeable thought in internet is “you promote yourself at the same time another lakh websites promoting themselves” so keep trying make blogging and website creation easy,Happy blogging

PHP programmer Needed apply now

Designation :P HP Programmer
Company 	:Insight technical
Experience 	:0-2
Industry 	:IT Enabled Services
Job Category:IT - Software
Skills 	         :php developer

APPLY NOW

HCL walkin for 2010 freshers apply now

Dear Readers,I glad to announce that HCL is going to conduct walkin for 2010 freshers,you must have minimum score of 65% and above and your stream is from ECE, EEE, IS, CSE, IT, E&I and MCA,MSC.
Apply Now
APPLY TO MORE JOBS

JSF example application to run in eclipse

Hai Readers as i said in the previous JSF introduction post today we are going to learn the basic example in JSF,
You need two types of jar files

1.jstl.jar
2.standard.jar

and two tld files

1.jsf_core.tld
2.html_basic.tld

to run a basic JSF program
First create the basic JSF program,create a jsp file simple.jsp later in web.xml it is converted and run as index.jsf now enter the code below

<%@ page language="java" pageEncoding="ISO-8859-1"%>
<%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
<html>
    <body>
        <f:view>
            <h:form>
                <h:message for="value"/>
                <h:inputText id="value" value="#{simple.field}">
                    <f:convertDateTime type="date" pattern="dd/mm/yyyy"/>
                </h:inputText>
    <h:inputText id="date" value="#{simple.date}"/>
    <h:commandButton action="#{simple.submit}" value="submit"/>
            </h:form>

        </f:view>
    </body>
</html>

In this file there is a tag to show the message about errors h:message and two inputtext box, one getting current date from bean and another inputtext box where we are going to enter the data and check whether it is in correct format.

Lets create the bean for the program Simplebean.java

package s2sgateway;
import java.util.Date;
public class Simplebean {
    private String field;
    public Date date;
    public Date getDate()
    {
    	date=new Date();
		return date;

    }
  public String getField() {
        return field;
    }
public void setField(String field) {
        this.field = field;
    }
    public String submit()
    {
        System.out.println(this.field);
        System.out.println(this.date);
        return "success";
    }
}

Now lets create the faces-config.xml and enter the values such as bean name,class and scope values

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE faces-config PUBLIC "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN" "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
<faces-config >
<managed-bean>
		<managed-bean-name>simple</managed-bean-name>
		<managed-bean-class>s2sgateway.Simplebean</managed-bean-class>
		<managed-bean-scope>request</managed-bean-scope>
	</managed-bean>
</faces-config>

Now in web.xml file the the servelt-name->Faces Servlet&
url-pattern will be *.jsf so that you can run the file with .jsf extension like index.jsf otherwise you have to run as index.jsp

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.4" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee   http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
  <context-param>
    <param-name>javax.faces.CONFIG_FILES</param-name>
    <param-value>/WEB-INF/faces-config.xml</param-value>
  </context-param>
  <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>0</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>*.jsf</url-pattern>
  </servlet-mapping>
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>

Now you can run this program when you enter any wrong date or no it shows conversion error if you give the date as 31/8/2010 then it doesn’t shows any error,Any doubt ask us happy coding
simplejsf Happy coding.

CTS offcampus for 2009 and 2010 batches Apply Now

Hi readers Another IT giant Cognizant Technology Solutions(CTS) is going to conduct Offcampus for 2009 passed out &2010 passout candidates. There is openings for IT (2010 batch), ITIS (2009 & 2010 batch) and BPO (2009 & 2010 batch).

The eligibility criteria is :
1. Qualification must be BE or B.Tech or ME or M.Tech or MCA or M.Sc
2. Must have secured above 60% in X, XII, UG and PG (exception for BPO)
APPLY NOW.ALL THE BEST

TCS Aptitude questions 2010

Hai readers i would like to help you more by providing some latest questions given by friends who attend the interview
These are some of example questions asked in the TCS recruitment drive happened in AUG2010,
There are total of 35 questions and 1hour is given, as these tests are online based.
In this test most of the questions are
1.Problems on age (most of them)
2.Probability bases questions both permutation and combination don’t worry they give a link to find the formulas
3.Some questions are statement questions
4.Some other GRE Barrons paragraph based questions
In most of the questions they have added some story so it is tough for you to understand the questions,so neglect the story and concentrate on data only.
All the Best

Free windows 7 E-book and Magazine Download Now

Hi all,There is an amazing and useful offer i am going to share with you guys
Just register in the below link and get

Free Windows 7 E-book and Magazine

Remember to fill all the details because incomplete forms are not processed.
This E-book is a vital need for students, faculty, staff and administrators in education today is effective, productive access to and control of technology. Learn how Windows 7 can help maximize results with a scarce budget and people resources for schools and campuses.



GET MORE FREE E-BOOKS
Free ORACLE MAGAZINE

Happy Weekend