0

我正在为我的应用程序的登录功能集成天蓝色广告。成功验证后,Azure 会将访问令牌返回到提到的重定向 URL。问题是我在重定向时收到“此 URL 不支持 HTTP 方法 POST”。

这就是重定向 URL 的样子。

https://bbb-dev-ext.abcde.com/myapp.dashboard/azureLogin.html

我们用于我的应用程序的 Web 服务器是 Wildfly 11

尝试在我的 web.xml 中添加以下内容仍然没有用

<security-constraint>    
  <display-name>Example Security Constraint</display-name>    
  <web-resource-collection>    
     <web-resource-name>Protected Area</web-resource-name>    
     <url-pattern>/azureLogin.html*</url-pattern>   
     <http-method>GET</http-method>    
  </web-resource-collection>
</security-constraint>

有没有其他方法可以将我的请求 http 方法类型从 POST 更改为 GET ?或者有什么方法可以在wildfly应用程序中允许HTTP方法类型POST?

4

1 回答 1

0

在将html转换为jsp文件后,我让它工作了。在处理对 html 页面的 POST 请求时,似乎有一些 Jboss 。

于 2019-10-15T04:56:13.187 回答