Skip to main content

Posts

What Is The Use Of WebServices?

Basically Web services mitigate the application integration crisis. It helps integrating applications at a significantly lower price point than any other integration technology. It’s a new kind of middleware based on XML and the Web. XML and the Web help solve the challenges associated with traditional application-to-application integration like heterogeneity. They are platform and language independent. Web Services has following advantages: 1.      Exposing your API onto a network Connecting Different Applications 2.      Low Cost of communication 3.      Support for Loosely Coupled Applications 4.      Web Services are Self Describing using WSDL 5.      Automatic Discovery using UDDI 6.      Business Opportunity to grow your business

Multi-Lingual Features in Java Application

This tip will show how to add multi-lingual feature in Graphical User Interface (GUI) of any java application. To run any GUI of java application in multiple language java.util.ResourceBundle is used. First make different property files for the different language. Name of all property files should be same with additional language suffix. For exp. fr for French, de for German etc.  For example- ·          Label.properties file for the English ·          Label_fr.properties file for the French

HCL Walk-in event in Bangalore on Sunday , December 19 2010 from 9.30 a.m. to 1.00 p.m.

HCL is conducting interviews for the roles of MTS/Lead Engineer for positions in Chennai . If you are a individual with the following skills, you can  participate in the event by quoting employee number 40184032 . Qualification: BE / B.Tech / M.E / M.Tech / MS (EEE, IT, ECE, CSE) / M.SC (CSE / IT) / MCA Required Skills Expertise in Total relevant experience (in years) Java Programmers Expertise in Java Programming Design & development using Java / J2ee/ Web services Exposure in SNMP/NMS/TCP is an Advantage Flair for learning new technologies     3 – 6 Open Systems C / C++ Programmers Must have extensive hands-on experience in C or C++ programming Development experience on a Linux, Unix or VxWorks Must have worked on at least one of the following : Layer 2 LAN protocols like MSTP, RSTP, PVST, LACP, VRRP Layer 3 protocols like RIP, OSPF, BGP, Multicast routing - PIM-SM, PIM-DM, DVMRP MPLS , IPV4, I...

JSTL Tutorials Using NetBeans : Part-6

Right Click on WEB-INF folder, New and choose File/Folder…     Another dialog box will appear, choose Other on the left pane and choose Folder on the right pane.

JSTL Tutorials Using NetBeans : Part-5

Let’s see how it works. Create 2 new JSP called JstL_Core_Tags_Redirect.jsp and Jstl_Core_Tags_Import.jsp. Add this to Jstl_Core_Tags_Redirect.jsp It is going to redirect the page back to index.jsp Add this to Jstl_Core_Tags_Import.jsp It will import or include index.jsp after Jstl_Core_Tags_Import.jsp loads. This is what we get when we run Jstl_Core_Tags_Redirect.jsp. Just type the address as shown in circled area and the page will redirect us back to index.jsp.     Interesting right? Well, do same thing for Jstl_Core_Tags_Import.jsp. Open browser then type the full address manually and we will get index.jsp is loaded after Jstl_Core_Tags_Import.jsp loads.

JSTL Tutorials Using NetBeans : Part-4

Create a new JSP file. Follow exactly the same way as we created the Jstl_Hello_World.jsp but name it Jstl_Core_Tags.jsp. Then we need to modify our index.jsp to contain the link to our newly created JSP. So please add below codes to our index.jsp just right after our first link to open the Hello World JSTL tags.   JSTL Core Tags JSTL if tag and EL operators   What we do here is basically to send some parameters so that they are accessible from the target page.   On the target page, we can retrieve these parameters via ${param.parameter_name} and we are going to use the logical JSTL tags to compare some values. Add below codes to Jstl_Core_Tags.jsp

JSTL Tutorials Using NetBeans : Part-3

3. Implementation of JSTL Core Tags First, let’s make a new JSP page. Right click on Web Pages folder, New and JSP…       Then a new dialog will show up as displayed above. Let’s call it Jstl_Hello_World.jsp. Then click Finish to create the jsp. Now we have 2 JSPs – index.jsp and Jstl_Hello_World.jsp.