Wednesday, January 20, 2010

Maruti Insurance :: Maruti Online Policy Renewal.

The issues I Faced With Maruti Insurance Policy Renewal Online,

  1. Once I paid the Insurance payment Online, It was successfully Completed the payment , and I got the mail from webmaster@maruti.co.in, that "Your Payment has been received and the details are indicated below."
  2. But on the 6th Step it should generate the New Policy Document Online, Instead of that it was showing error that it is not able to Generate Now and I will be updated soon,
  3. Hence on the very Next Day I tried to contact the Maruti Insurance Customer Care Number : 9999999787, I feel this is some personal Number, And I am getting the response as "Either Buzy or He is Not picking up the call"
  4. Hence I contacted Customer Care they mentioned to mail in the following Mail addresses,
    1. mi.helpdesk@maruti.co.in
    2. onlinemi@maruti.co.in
  5. As of now i havent Got any Update from Maruti Insurance company,
So Guys Never Ever Try to make any Insurance through Maruti Insurance Online, Because they dont have any customer care or any management to handle the issues of the person.

See the Issues faced by some person online
  1. http://www.consumercomplaints.in/complaints/maruti-insurance-c180155.html
  2. Team BHP :http://www.team-bhp.com/forum/indian-car-loans-insurance/47129-maruti-online-insurance-beware.html
Date : 7th Jan-2011:


Now I found a New Issue in the provided Insurance Premium paper that the vehicle number printed is wrong. Instead of My Vehicle number it is printed some UA rather than the kerala Registration.


This is too much...........

Regards
Asker Ali M

Tuesday, January 19, 2010

IGNOU world's largest university: Unesco



New Delhi: The Indira Gandhi National Open University (IGNOU) is the world's largest, with its student base extending to three million, Unesco has said.

"IGNOU is the largest University in the world. Almost three million students in India and 33 other countries study at IGNOU, which is also India's National Resource Center for Open and Distance Learning and a world leader in distance education," Unesco said in a positng on its website.

"Enrollments of nearly three million students and networks across the country making the best use of Information Communication Technology (ICT)-- IGNOU's accomplishments are recognized worldwide," Unesco director general Irina Bokova said.

"With the launch of EduSat (a satellite dedicated to education) in 2004, and the establishment of the Inter-University Consortium, IGNOU has ushered in a new era of technology-enabled education," the website said.

Through its 21 schools of study, 59 regional centres, 2,300 learner support centres and some 52 overseas centres, the university offers certificate, diploma, degree and doctoral programmes, comprising around 1,500 courses, it said.

It said that the university provides access to sustainable and learner-centred education and training to all through quality, innovative and needs-based programmes at affordable costs, thus reaching out to the disadvantaged and also promotes, coordinates and regulates the standards of education offered through open and distance learning in India.

The website further said that IGNOU's staff consist of 380 faculty members and academic staff in headquarters and regional centres while some 36,000 counsellors from conventional institutions of higher learning and professionals from different spheres.

Monday, January 4, 2010

New Web Base Instant Messenger Introduced.


New Web Base Instant Messenger Introduced.




Hi,
Its my pleasure to introduce the New Online Chat server same as meebo, Which help you to get free online chat for the following Chat Servers

  1. Google Talk
  2. MSN Messenger
  3. Yahoo Messenger
  4. AOL Instant Messenger
  5. ICQ
  6. Jabber,
You can get online from here http://mardanchat.blogspot.com/

Enjoy Chatting.


Thursday, November 26, 2009

JQuery Country State HTML SELECT [Dropdown] AJAX Implementation using JSON

This is the basic tutorial which will help you to start with JQuery and JSON(Java Script Object Notation) Objects. The following is the Project Structure in Netbeans; I worked in Netbeans hence soJ. In this tutorial I will start with JQuery AJAX Implementation with XML Objects,

For my convenience I have not downloaded/Installed any JQuery Javascript file in the current project, Still I am referring to the JQuery Website shared JavaScript Files. Hope it will help you from getting confused to the version of JQuery and other JS Files.
JQuery AJAX Using JSON Objects.

I know whenever we hear about AJAX Country/State Drop down example will come into our mind, So I am also referring to the same. Here whenever the User changes the Country Dropdown we will update the State associated with that Country.
In this example we have only two JSP Files,
    1. indexJSON.jsp
    2. CountryStateJSON.jsp
Hope you can Apply few style sheet to make the index.jsp as followsJ, I think the image is ext-js component, any way I kept image to give you an idea.



The state information we are responding to the client as a JSON Object as follows.
LinkedHashSet statesSet = new LinkedHashSet< HTMLOption>();
        statesSet.add(new HTMLOption("1", "Kerala"));
        statesSet.add(new HTMLOption("2","Karnataka"));
        statesSet.add(new HTMLOption("3", "Delhi"));
        System.out.println("Linked Hash Map:"+statesSet);
        out.println(statesSet);

The above Code will generate the JSON Object as follows
     [   {id:1,value:'Kerala'}, 
         {id:2,value:'Karnataka'}, 
         {id:3,value:'Delhi'}   ]
The following Line of code in JSP will help to respond the Data as a Java Script File.

     response.setContentType("text/javascript");
     response.addHeader("Content-Disposition", "attachment; filename="+ "states.js");

In the current Example I am not connecting any Database for fetching the State details; I am simply updating the State drop down with My State in India and the neighborJ.We have two drop down in Our Page with ids
1. Dropdown Country id="country"
2. Dropdown State id=" stateDD"
       Country “onchange” we are calling function loadState(), which makes an JQuery AJAX Request to the CountryStateJSON.jsp, and It is handling the response as JavaScript Object(JSON), (by using the dataType TAG we are representing it) and pass the js File to the  loadStateFromJSON Function.
       By Using JSON Object Parser It iterates and retrieve all the states from JSON and Add to the state DropDown using appendState Method.
  ClearDD Method : It will remove all the options under the stateDD.
Example.
IndexJSON.jsp

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>JSP Page>/title>
        
        
    </head>
    <body>

Hello World!

Country : State : </body> </html>


The countryState.jsp is simply receiving the countryId from request and responding a static states xml file.
CountryStateJSON.jsp

<%
       <@ page import="java.util.LinkedHashSet" >
       <@ page import="java.util.LinkedHashMap" >
       <@ page import="org.json.model.HTMLOption" >
       <%
        System.out.println("CountryID-----------"+request.getParameter("countryId"));
        response.setContentType("text/javascript");
        response.addHeader("Content-Disposition", "attachment; filename="
          + "states.js");
        LinkedHashSet statesSet = new LinkedHashSet();
        statesSet.add(new HTMLOption("1", "Kerala"));
        statesSet.add(new HTMLOption("2","Karnataka"));
        statesSet.add(new HTMLOption("3", "Delhi"));
        System.out.println("Linked Hash Map:"+statesSet);
        out.println(statesSet);
%>
HTMLOption.java

package org.json.model;

public class HTMLOption {

    String id;
    String value;

    public HTMLOption(String id, String value) {
        this.id = id;
        this.value = value;
    }

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }

    @Override
    public String toString() {
        return "{id:"+id+",value:'"+value+"'}";
    }
}
NOTE: Here toString method need to implemented, and the data String should be as Key=Value (Eq: id = 1 ) and each entry shuld be separated by a Comma. For Multiple Values Please Refer HashSet Printing.

Eid Mubarak


'EID MUBARAK' 
Wishing you & your family a very happy, healthy and prosperous Eid!!



Eid Mubarak

Wednesday, November 25, 2009

JQuery Country State HTML SELECT [Dropdown] AJAX Implementation using XML.

This is the basic tutorial which will help you to start with JQuery and JSON(Java Script Object Notation) Objects. The following is the Project Structure in Netbeans; I worked in Netbeans hence soJ. In this tutorial I will start with JQuery AJAX Implementation with XML Objects,

For my convenience I have not downloaded/Installed any JQuery Javascript file in the current project, Still I am referring to the JQuery Website shared JavaScript Files. Hope it will help you from getting confused to the version of JQuery and other JS Files.
JQuery AJAX Using XML Objects.

I know whenever we hear about AJAX Country/State Drop down example will come into our mind, So I am also referring to the same. Here whenever the User changes the Country Dropdown we will update the State associated with that Country.
In this example we have only two JSP Files,
    1. index.jsp
    2. CountryState.jsp
Hope you can Apply few style sheet to make the index.jsp as followsJ, I think the image is ext-js component, any way I kept image to give you an idea.



The state information we are responding to the client as an XML File as follows.

 Kerala
 Karnataka

The following Line of code in JSP will help to respond the Data as a File.
response.setContentType("text/xml");
response.addHeader("Content-Disposition", "attachment; filename="states.xml");
In the current Example I am not connecting any Database for fetching the State details; I am simply updating the State drop down with My State in India and the neighborJ.
We have two drop down in Our Page with ids
1. Dropdown Country id="country"
2. Dropdown State id=" stateDD"
   Country “onchange” we are calling function loadState(), which makes an JQuery AJAX Request to the CountryState.jsp, and It is handling the response as XML, (by using the dataType TAG we are representing it) and pass the XML File to the  loadStatesFromXML Function.
      By Using XML Parser by JQuery It iterates and retrieve all the states from XML and Add to the state DropDown using appendState Method.


    ClearDD Method : It will remove all the options under the stateDD.


Example.
Index.jsp

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>JSP Page>/title>
        
        
    </head>
    <body>

Hello World!

Country : State : </body> </html>
The countryState.jsp is simply receiving the countryId from request and responding a static states xml file.
CountryState.jsp

        <%
        String countryId = request.getParameter("countryId");
        response.setContentType("text/xml");
        response.addHeader("Content-Disposition", "attachment; filename="
          + "states.xml");
        out.println("" +
                "" +
                    "Kerala" +
                    "Karnataka" +
                "");
        %>

This file can be customized according to availability of Country state data, as Database tables or Data Files. I will explain the same in JQuery Using JSON.

How to Add or Remove an Option in HTML Select using JQuery.

Here is the code for appending an Option to a State Dropdown.

JQuery Option ADD
/**
*      id :id of the option
*      state :Name of the state we are adding
*      Dropdown id is :stateDD.
**/

function appendState(id,state){
      $('#stateDD').append($("<option id='+id+' > "+ state + "</option>"));
}

JQuery Dropdown Option Remove ALL.
/**
*      method will remove all the options Under the dropdown with ID:stateDD.
**/

function clearDD(){
        $('#stateDD').find('option').remove();
}