Orbital Chase Paymentech Gateway Mark for Capture
Chase Orbital is one of the complex Payment Gateway. It's authorization process is very complex.
Here is the code for Orbital Chase Paymentech Gateway Mark for Capture Request in PHP.
You can frequently use it as free.
If you want to implement Orbital chase paymentech by me then...
Saturday, October 18, 2014
Friday, October 17, 2014
Download image without cURL and with cURL in PHP
Download image without cURL and with cURL in PHP
<?php
// without cURL
$downloadImageUrl="http://fc04.deviantart.net/fs26/f/2008/072/b/1/Frozen_Galaxy_by_Vpr87.jpg";
////// Using without CURL
$img = file_get_contents($downloadImageUrl);
$file1 = dirname(__file__).'/aaa.jpg';
file_put_contents($file1, $img);
////// // with cURL
$fileName=$downloadImageUrl;
$header...
Extract Corrupt Zip File By Java
Extract Corrupt Zip File By Java
I received an zip file from customer. I have tried to extract with WinZip, but unable to extract zip file because that zip file was corrupt.
So I have tried to extract with Java Zip API and got the success. The code is listed below:
I am sure that the zip file having 5% to 10% part corrupt will be unzip with this...
Google chart api 3d

Google chart api 3d
Here is the simple example of Google 3d chart. just use listed below code.
I have everything explained in commented.
Google chart api 3d
<html>
<head>
<script type='text/javascript' src='http://www.google.com/jsapi'></script>
<script...
Multiple step OLE DB operation generated errors Check each OLE DB status value if available No work was done
Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done
If you are working with MS Access database then you encounter with the "Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done" error.
There are many reasons that produce the above...
Friday, October 03, 2014
TIFF Reader in java
TIFF File Reader
If you have a multiple pages TIFF file and want to see it in java then listed below code will help you.
import java.io.File;
import java.io.IOException;
import java.awt.Frame;
import java.awt.image.RenderedImage;
import javax.media.jai.widget.ScrollingImagePanel;
import javax.media.jai.NullOpImage;
import javax.media.jai.OpImage;
import...