GeoServer returns 405:在 POST 方法期间未找到方法
GeoServer returns 405: Method Not found during POST method
我正在尝试使用 GeoServer Rest 在图层上实现获取、Post、放置和删除操作。
我能够成功实现 Get、Put 和 Delete 方法。
但是当我试图在图层上实现 Post 方法时,GeoServer returns 状态代码:405 即未找到方法。
Here is my code:
public async Task<IActionResult> PostLayer(string layerName)
{
var authValue = new AuthenticationHeaderValue("Basic", Convert.ToBase64String(Encoding.UTF8.GetBytes("admin:geoserver")));
try
{
var client = new HttpClient()
{
DefaultRequestHeaders = { Authorization = authValue }
};
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
client.BaseAddress = new Uri("http://localhost:8080");
var stringContent = new StringContent(@"C:\Users\i2vsys\Desktop\test.kml");
var response = await client.PostAsync($"/geoserver/rest/layers/{layerName}",stringContent);
response.EnsureSuccessStatusCode();
var stringResponse = await response.Content.ReadAsStringAsync();
return Ok(stringResponse);
}
catch (HttpRequestException ex)
{
return BadRequest(ex.Message);
}
}
但是根据 GeoServer api 文档,它有 POST 方法。所以,问题肯定出在我这边,我找不到。我也看到其他人的问题,但这些解决方案对我不起作用。
如有任何帮助,我们将不胜感激。
当我查看 layers documentation 时,我没有看到对 POST 请求的引用。您希望 POST 做什么?
要创建一个新层,您首先 create a new DataStore 如示例中所述。使用类似的东西:
curl -v -u admin:geoserver -XPUT -H "Content-type: application/zip"
--data-binary @roads.zip http://localhost:8080/geoserver/rest/workspaces/acme/datastores/roads/file.shp
我正在尝试使用 GeoServer Rest 在图层上实现获取、Post、放置和删除操作。
我能够成功实现 Get、Put 和 Delete 方法。
但是当我试图在图层上实现 Post 方法时,GeoServer returns 状态代码:405 即未找到方法。
Here is my code:
public async Task<IActionResult> PostLayer(string layerName)
{
var authValue = new AuthenticationHeaderValue("Basic", Convert.ToBase64String(Encoding.UTF8.GetBytes("admin:geoserver")));
try
{
var client = new HttpClient()
{
DefaultRequestHeaders = { Authorization = authValue }
};
client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
client.BaseAddress = new Uri("http://localhost:8080");
var stringContent = new StringContent(@"C:\Users\i2vsys\Desktop\test.kml");
var response = await client.PostAsync($"/geoserver/rest/layers/{layerName}",stringContent);
response.EnsureSuccessStatusCode();
var stringResponse = await response.Content.ReadAsStringAsync();
return Ok(stringResponse);
}
catch (HttpRequestException ex)
{
return BadRequest(ex.Message);
}
}
但是根据 GeoServer api 文档,它有 POST 方法。所以,问题肯定出在我这边,我找不到。我也看到其他人的问题,但这些解决方案对我不起作用。
如有任何帮助,我们将不胜感激。
当我查看 layers documentation 时,我没有看到对 POST 请求的引用。您希望 POST 做什么?
要创建一个新层,您首先 create a new DataStore 如示例中所述。使用类似的东西:
curl -v -u admin:geoserver -XPUT -H "Content-type: application/zip"
--data-binary @roads.zip http://localhost:8080/geoserver/rest/workspaces/acme/datastores/roads/file.shp