Posts

Showing posts from 2015

An algorithm for calculating the day of the week given a Date

Given a date and calculate day of the week: i mport java.util.*; public class Datetoday {        final static String[] WEEK_DAYS = {            "Saturday", "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday",            "Friday"        };    public static void main(String[] args) {        Scanner input = new Scanner(System.in);        System.out.print("Enter the date in dd/mm/yyyy form: ");        String[] partofdate = input.nextLine().split("/");        int d = Integer.parseInt(partofdate[0]);        int m = Integer.parseInt(partofdate[1]);        int y = Integer.parseInt(partofdate[2]);        if (m < 3) {            m += 12;            y -= 1;        }        int k = y % 100;        int j = y / 100;        int day = ((d + (((m + 1) * 26) / 10) + k + (k / 4) + (j / 4)) +            (5 * j)) % 7;        System

Websphere Application Server Basic Stuffs Outlined

Today we will be discussing on one of the heavily used Application Server that accepts not only HTTP/HTTPS request but also dynamic request like server programming and various calls like IIOP,RMI,Socket Server communication etc.                      Websphere Application Server an IBM Product WebSphere Virtual Enterprise has the ability to prioritize requests based on administrator-defined rules to adjust to server response times according to Service Level Agreements and application priority. WebSphere’s administration console is really good, easy to maintain one's application and for security setting.There are many “automatic” things that are done in “autopilot” mode by WVE that greatly simplify administration and improve qualities of services.Websphere is a nice choice if your needs fit a high end architecture products such as you are building an Telecommunication Softwares etc. It is one of finest and Expensive product but it is best in performance,Scalibility,Automatic

Oracle Weblogic Application Server Basic Stuffs Outlined

Lets us discuss some of the Great ApplicationServer that is being used by Great players of World like Amdocs,Vodafone,Microsoft,Oracle,Adobe,Google,Yahoo etc in Service Management Industries.                                             Weblogic: Weblogic is an Oracle Application Server platform that is basically used to deployed your .Ear ,.war application in an meaning full and cost Effective manner. IT is  commercial(proprietary) J2EE   Application Servers. Websphere is far better than Weblogic in terms of Performance. Request prioritization and routing are not provided by Oracle WebLogic Server. Weblogic has the best integration with other Oracle products such as Fusion Middleware, Oracle database and Oracle applications. Basic Daily Task To know for Weblogic: 1.Oracle Weblogic JDBC connection on single and muliplte Connection: http://onlineappsdba.com/index.php/2008/11/06/weblogic-server-jdbc-for-database-connection-step-by-step/ 2. Start/Stop of weblogic Server: http

Introspecting my 1year at Amdocs and Currently moving forward with Amdocs

Life Spend at Amdocs with Full of Enjoyment and Learning from Team Member. Here as part of Technical Experties what I Learned in Technology Integration Profile : 1.Learn Unix a lot  ---->How to use some and common daily task Commands like mv,cp,scp,find,grep,glance,zip/unzip,tar/untar, sshcmd and lots more. 2.Enhance my Knowledge on Java,Junit,Little Selenium for Sanity as part of my project and worked on xml diff and patch tool,start/stop server tool Modify/Updates done as pert of buiness requirements. 3.Simultaneously using Spring Tool Suite for importing a project and making the required changes and then deploying it for Business As usual task.Worked on Mongodb on the fly.. 4.Learn Web application Server for deployment of an .ear on a cluster jvm and its internal connection with JDBC,Resources,applying of SSL certificate,Keystore and lots more. 5.Worked on Perl in picking up of an Ef from Quality Center and displaying it on GUI and enhance a little perl skills from c