Tips

4D Webサーバで使用中のTCPポート番号の変更

日付2003/06/13
ID28068 (英語原文参照)
バージョン2003
プラットフォームMac & Win

下記のサンプルは、4D Webサーバで使用しているTCPポート番号を変更するメソッドです。

` プロジェクトメソッド: Set_WebPort
C_LONGINT($1;$newportid)
STOP WEB SERVER
$newportid:=$1
If (Application type#4)
	SET DATABASE PARAMETER(Port ID ;$newportid)
Else
	SET DATABASE PARAMETER(Client Port ID ;$newportid)
End if
START WEB SERVER