well, finally I found the post and.... it was mine ;P, well, i followed the post but the problem is the same the application in php that launched a awt "pluggin" didnt works.
The script is the follow:
<?php
// This example is only intented to be run as a CGI.
$frame = new Java('java.awt.Frame', 'PHP');
$button = new Java('java.awt.Button', 'Hello Java World!');
$frame->add('North', $button);
$frame->validate();
$frame->pack();
$frame->visible = True;
$thread = new Java('java.lang.Thread');
$thread->sleep(10000);
$frame->dispose();
?>
This script (is a example of php.net) works very well in PWS but in IIS 5.0 and W2k doesnt work...........
My question: ISS 5.0 supports PHP as a CGI or only as a module??.... IIS supports a awt applications??