HTTP Status 500 in php java bridge!!

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Locked
pritam.insync
Forum Newbie
Posts: 2
Joined: Mon Jul 19, 2010 10:23 am

HTTP Status 500 in php java bridge!!

Post by pritam.insync »

I am using php-java bridge to access the methods of a java file from the comand prompt every thing works fine but when i try to run this script in an yweb browser I get
type Exception report

message

description The server encountered an internal error () that prevented it from fulfilling this request.

exception

javax.servlet.ServletException: Servlet.init() for servlet PhpJavaServ in /java/Java.inc on line 520



The code---->

Code: Select all

<?php

$amount=10;
$trackid='111111111';
require_once("/java/Java.inc");
java_require('/home/zyx/public_html/Test/');
$pipe = new Java("Payment");
//$amount = 100;
$pipe->setCurrency("37756");
$pipe->setLanguage("USA");
$pipe->setAction("1");
$pipe->setResponseURL("https://www.xyz.in/intermediate.php");
$pipe->setErrorURL("https://www.xyz.in/failure.php");
$pipe->setResourcePath('/home/zyx/public_html/Test/');
$pipe->setAlias("26788");
$pipe->setAmt($amount);
$pipe->setTrackId($trackid);
echo $status = $pipe->performPaymentInitialization();


$payID = $pipe->getPaymentId();
$payURL = $pipe->getPaymentPage();
$urlToRedirect = $payURL . '?PaymentID=' . $payID;
echo $urlToRedirect;
//header('Location: '. $urlToRedirect);
$urlToRedirect="http://www.google.com/";
header('Location: '. $urlToRedirect);
?>

I dont know why I am getting this error plz help
Last edited by Benjamin on Mon Jul 19, 2010 10:30 am, edited 1 time in total.
Reason: Added [syntax=php] tags.
User avatar
Benjamin
Site Administrator
Posts: 6935
Joined: Sun May 19, 2002 10:24 pm

Re: HTTP Status 500 in php java bridge!!

Post by Benjamin »

:arrow: Double post = Locked
Locked