Recent posts
An overview of SOAP Protocol
Posted by Ragav Sharma at 6:56 pm on October 24 2010
What is SOAP?
SOAP is nothing but a simple XML-based protocol which lets applications to exchange information over HTTP. SOAP is reffered as ‘Simple Object Access Protocol’ and it provides a simple and lightweight mechanism for exchanging the information between the applications through XML. SOAP allows you to get around firewalls and SOAP has become a W3C recommendation. SOAP is a protcol,...
The ACID Model in the database
Posted by Vipin Konnect at 8:55 am on November 21 2011
What is ACID?
Atomicity – “All or nothing” means the entire transaction fails if any part of a query fails
Consistency – Only valid data is written to database
Isolation – Multiple simultaneous transactions don’t impact each other
Durability – Transactions committed to database will never be lost
Atomicity states that database must follow an “all...
Steps to install adhoc application on iphone
Posted by Rakesh Baviskar at 6:33 am on September 07 2011
Steps to install adhoc application on iphone
If you are unable to install the adhoc on you device and get error messages. Please follow the bellow steps to install the application on your device.
Installing adhoc on iphone
You can view the apps in iTunes by clicking on Apps in the left-hand column.
Syncing apps in iTunes to iPhone
Unzip the folder which you have received in your email.
Connect...
Types of Receivables and Analysis
Posted by Kavita at 12:50 pm on September 05 2011
Accounts Receivable (Meaning & Interpretation).
The accounts receivable refers to the amount due from a customer for the sale of goods or services, when the goods or services have been delivered to the customer, and payment is not received by the seller prior to or at the time the goods were received by the customer. In other situations, the accounts receivable results from charging fines, assessing...
IT making a new headway- Cloud Computing
Posted by Amitav C at 12:18 pm on August 09 2011
Cloud computing means businesses that allows for minimum investment and a reliable method for the IT-oriented world.
‘Information technology and business are becoming inextricably interwoven. I don’t think anybody can talk meaningfully about one without talking about the other.’ – Bill Gates
Well, that’s what Bill Gates has to say, and why not, every aspect of the human self is inextricably...
Oracle Certification Programs
Posted by Vipin Konnect at 9:22 am on August 01 2011
Java Standard Edition 5 and 6, Certified Associate Exam
Exam Number: 1Z0-850
Associated Certifications: Oracle Certified Associate, Java SE 5/SE 6
Exam Price: Depending on location
Exam Registration: Register
Duration: 115 minutes
Number of Questions: 51
Passing Score: 68%
Exam Topics
Section 1: Fundamental Object-Oriented Concepts
Describe, compare, and contrast primitives (integer,...
A Unique Way to Publish a Book on Ipad, Iphone
Posted by Amitav C at 10:52 am on July 25 2011
A SaaS, Online Service for Publishing your Books other than Amazon Kindle
Using an online service, wherein you Register Online, create your Account, with your Publication’s name, add your e-book name, add the no. of pages you require, add the index, add the page content, and manage it using a Content Editor, add external media (like you would usually do with your wordpress blog), and publish...
An overview of web services
Posted by Ragav Sharma at 2:17 pm on July 22 2011
I have found that most of the people who have been into technical field are still not aware of the web services. Since the information available on internet is sufficient for anyone to understand about the web services so I would not go deep into it.
If put in simple words, Web service can be defined as a application components that is used to communicate between the applications which are deployed...
Play carrom on mobile
Posted by Ragav Sharma at 12:51 pm on July 19 2011
Carrom is a one of the most popular games which can be played either alone or with your partner, friends. This game is played worldwide and is known by other names around the world, including carrum, couronne, carum, karam, karom, karum, fatta and finger billiards. Considering its popularity around the world, Konnect has launched its 2nd version on android. This game is available for android only...
MeeGo OS – a joint venture between Nokia and Intel
Posted by Vipin Konnect at 9:31 am on December 12 2010
MeeGo OS
MeeGo OS on Nokia
MeeGo, a joint venture between Intel and Nokia, is a Linux-based open source mobile operating system. MeeGo is the combined result of two projects one from Intel on Moblin and the other of Nokia on Maemo. MeeGo brings the experience and skills of these two giants, versed in communications and computing technologies. It is believed that these two giants can develop the foundation...
Layouts of Android
Posted by Vipin Konnect at 8:31 am on December 12 2010
Layout description:
Linear Layout: The LinearLayout arranges views in a single column or single row. Child views can either be arranged vertically or horizontally which can be specified in the attributes of Linear Layout.
Linear Layout
Absolute layout: The AbsoluteLayout lets you specify the exact location of its children by managing its position attribute. Google declared the AbsoluteLayout element...
- An overview of SOAP Protocol (16)
What is SOAP? SOAP is nothing but a simple XML-based protocol which lets...
- Twitter API response codes (7)
Twitter API response codes and HTTP Status Codes [ad] Are you developing...
- New features of Java 6 (4)
Why should I use Java 6? Do you have this question in your mind? Are you...
- Play carrom on mobile (4)
Carrom is a one of the most popular games which can be played either alone...
- How to enable or disable popup window in google chrome? (2)
How to enable or disable popup window in google chrome? . When Google...
An overview of SOAP Protocol
Posted by Ragav Sharma at 6:56 pm on October 24 2010
What is SOAP?
SOAP is nothing but a simple XML-based protocol which lets applications to exchange information over HTTP. SOAP is reffered as ‘Simple Object Access Protocol’ and it provides a simple and lightweight mechanism for exchanging the information between the applications through XML. SOAP allows you to get around firewalls and SOAP has become a W3C recommendation. SOAP is a protcol,...
Twitter API response codes
Posted by Vipin Konnect at 5:41 am on November 16 2010
Twitter API response codes and HTTP Status Codes
Are you developing your program with Twitter API and facing the error codes? If you do not know the meaning of the error codes have a look on this post. I found them myself useful, it may also help you to understand the codes returned by the twitter web service.
200 OK: Success!
304 Not Modified: There was no new data to return.
400 Bad Request:...
Twitter Feed through API using PHP script
Posted by Vipin Konnect at 7:29 am on November 10 2010
Feed twitter through your PHP script using API
You can develop your own program to send feeds to the twitter. The sample code example is given below for your reference;
<?php
$username = 'username';
$password = 'password';
$update = 'Twitter Message';
$url = 'http://twitter.com/statuses/update.json';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "$url");
curl_setopt($ch,...
Twitter Feed through API in JAVA
Posted by Vipin Konnect at 7:26 am on November 10 2010
Feed twitter through your Java application using API
You can develop your own program to send feeds to the twitter. The sample code example is given below for your reference;
package com.konnecttechnologies.twitter;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.net.HttpURLConnection;
import java.net.URL;
import...
How to install and remove applicaions on your Android Mobile
Posted by Vipin Konnect at 10:17 am on November 09 2010
How to Install .APK files on your Android Mobiles
APK applications are basically Android package applications which is suitable for the installing the application specifically for Android users. If you are struggling with the installation of the .apk file on your phone, then you have reached to the right place. There are two ways to applications on your Android phones:
1....
WSDL Essentials and Specifications
Posted by Ragav Sharma at 10:26 am on October 20 2010
WSDL Essentials
WSDL is a specification defining how to describe webservices in common XML grammar.
WSDL describes four critical pieces of data:
i) Interface information describing all publically available functions.
ii) Datatype information for all messages and message response. An overvew of the WSDL, complete with detailed explanations of the major WSDL.
iii)...
Can I open a .dmg file under Windows XP?
Posted by Vipin Konnect at 10:20 am on October 20 2010
Can I open a .dmg file under Windows XP?
A .DMG file is a (CD) disk image created for Mac OSX PC’s. My guess is that you’d normally unpack it on a Mac OSX PC.
For instance, if the file is meant to create a CD of clipart then yes, you’ll be able to unpack it for use on a Windows or Linux PC as well as a Mac. But if it contains a program that’s meant...
Confirgure .htaccess on Godaddy
Posted by Vipin Konnect at 7:08 am on October 15 2010
Are you struggling in configuring the .htaccess file on godaddy server?
Godaddy server behaves differently and depends on the setting you use on web server.
First you need to over ride the setting of RewriteEngine, set it to “ON”, if it is “OFF”
You also need to add handler for php5.
AddHandler x-httpd-php5 .php
The complete .htaccess file is described...
History of Android – Mobile Operating System
Posted by Vipin Konnect at 6:12 pm on October 03 2010
History of Android – Mobile Operating System
Android is a operating system used for mobiles which has been developed by Google Inc and is based upon a modified version of the Linux kernel. It was initially developed by Android Inc. (a firm purchased by Google). According to statictics available, unit sales for Android OS smartphones ranked first among all smartphone...
New features of Java 6
Posted by Vipin Konnect at 4:28 pm on October 03 2010
Why should I use Java 6?
Do you have this question in your mind? Are you still using Java 5.0? I have collected some useful information from official sites and information on sites provided by others below which should be sufficient to convince you to go ahead with JAVA 6.0
Introduction to JAVA 6
This article covers the various new features of Java 6 which have been implemented...






