Category Archives: Technical

NTLM Authentication by jCIFS

This article details how to get a Java-based web-application to negotiate with a IE web client for username and domain information. This is a common requirement for web-based applications especially ones that do not want to bore users with a login page. IE will negotiate a user’s password hashes with the webserver, which checks their authenticity against a windows domain controller. If valid, the user’s username and domain will be accessible to the webserver servlets. NTLM Authentication and how we … More ->

Tagged , , , , , , , , , , , , Leave a comment

J2EE Frequently Asked Questions

1.        What is an Application Server? An application server is a program that handles all application operations between users and an organization’s backend business applications or databases. An application server is software that doesn’t do regular stuff like sell your stocks or let you write documents. A server’s users aren’t people; the server’s users are other applications.  Application servers provide services to distributed applications. These services include security, data integrity, and resource management (making sure there’s enough memory to go around). These … More ->

Tagged , , , , , , , , , , , , , , , , , , , , , , , , , , , Leave a comment

Juniper Routers Tutorial

Juniper Networks Router Design The central design principle of the Juniper Networks platform centers on a separation of the control and forwarding planes within the router. The Routing Engine and the Packet Forwarding Engine, respectively, represent these planes. Routing Engine Overview The Routing Engine in a Juniper Networks router is the central location for control of the system responsible for: •     Storing the JUNOS software & Performing software upgrades •     Monitoring and configuring the router. • … More ->

Tagged , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , 1 Comment

JSP Frequently Asked Questions

Can a JSP page instantiate a serialized bean? It’s similar to communication between Servlet and Applet. I’m also suffering for that. In applet, there is no problem when posting a request to JSP. But in case of getting a response of JSP, “java.io.StreamCorruptedException” occurs if I use ObjectInputStream. It’s fine, however, if I use InputStreamReader. Confer the sample below. /** applet */ // Get URLConnection String urlStr = “http://www.webtrack.co.kr/jsp/appletproxy.jsp”; URL serverURL = new URL(urlStr); URLConnection uc = serverURL.openConnection(); uc.setDoOutput(true); // … More ->

Tagged , , , , , , , , , , , , , , , , , , , , , , , , , , , Leave a comment

Oracle PL/SQL Frequently Asked Questions

Source: http://www.orafaq.com Oracle PL/SQL FAQ Topics ·  What is PL/SQL and what is it used for? ·  Should one use PL/SQL or Java to code procedures and triggers? ·  How can one see if somebody modified any code? ·  How can one search PL/SQL code for a string/key value? ·  How can one keep a history of PL/SQL code changes? ·  How can I protect my PL/SQL source code? ·  Can one print to the screen from PL/SQL? ·  Can … More ->

Tagged , , , , , , , , , , , , , , Leave a comment