[FX.php List] SSL

Someone someone at gagayaya.com
Sun Dec 17 08:11:46 MST 2006


Hi Guys,
Hope everyone has a great holidays.

Now is this possible.

In one city I have a one computer configuration of
FMSA + WPE + Apache
There is a SSL certificate for a domain on Apache
Will call it secure.domain.com.

In another city I have a web server (Web*)
with another SSL certificate for www.domain.com.

I know I can access data from City 1 at City 2
but I can't get a secure connection for the data from City 1 to City 2
Can it be done? If so any ideas?
------------------------------------------------------------------
require_once("FX.php");
$serverIP = 'secure. domain.com';
$webCompanionPort = 443;
$dataSourceType = 'FMPro7';
$webUN = 'user';
$webPW = 'password';
$webFile = 'Data.fp7';
$scheme = 'https';
$webLayout = 'web_layout';
$max = 50;

$FXQuery = new FX($serverIP,$webCompanionPort, $dataSourceType,  
$scheme);
$FXQuery->SetDBData($webFile, $webLayout,$max);
$FXQuery->SetDBUserPass ($webUN, $webPW);
$ReturnedData = $FXQuery->FMFindAll();
echo "errorCode: " . $ReturnedData['errorCode'] . "<BR>" ;
if($ReturnedData['foundCount'] > 0){	
	foreach ($ReturnedData['data'] as $key => $value) {
		echo "<BR>" . $value['arin_invnum'][0];
	}
}


More information about the FX.php_List mailing list