PHPを使用してGeoserverにログインしようとしています。私がやります:
$geoserverURL = "http://localhost:8080/geoserver/j_acegi_security_check";
$post = http_build_query(array(
"username" => $username,
"password" => $password,
));
$context = stream_context_create(array("http"=>array(
"method" => "POST",
"header" => "Content-Type: application/x-www-form-urlencoded\r\n" .
"Content-Length: ". strlen($post) . "\r\n",
"content" => $post,
)));
$page = file_get_contents($geoserverURL, false, $context);
echo $page;
しかし、FireBug での活動は見られません。私はphpが初めてなので、ここで何か間違っているのでしょうか?このコード スニペットはhereで見つかりました。