任何人都可以向我解释SP发起的SSO和IDP发起的SSO之间的主要区别是什么,包括哪个是与ADFS + OpenAM Federation一起实现单点登录的更好解决方案?
我想创建本地maven存储库.我做了以下步骤:
在我提供的项目pom.xml中
<repositories>
<repository>
<id>repository</id>
<url>http://<my-domain>/localMavenRepository</url>
</repository>
</repositories>
Run Code Online (Sandbox Code Playgroud)但它不能解析http:// <my-domain>/localMavenRepository上的jar
有没有必要提供存储库?
我在tomcat上配置了SSL.我参考了以下站点中的步骤来配置SSL:
http://wiki.openbravo.com/wiki/How_To_Configure_SSL_For_Windows
Run Code Online (Sandbox Code Playgroud)
我正在使用Win32 OpenSSL v0.9.8x Light安装程序和tomcat 7.0.22.但是当我访问 https://server.ensarm.com:8843/时,它会出现以下错误:
SSL connection error
Unable to make a secure connection to the server. This may be a problem with the server, or it may be requiring a client authentication certificate that you don't have.
Error 107 (net::ERR_SSL_PROTOCOL_ERROR): SSL protocol error.
Run Code Online (Sandbox Code Playgroud)
我不明白可能是什么问题.:(
我想用多个gwt模块创建一个gwt maven项目。其中一些只是实用程序模块,意味着它们没有入口点。基本上我已经有一个包含多个gwt模块的gwt项目,并且已经将其转换为maven,但是在编译时却出现以下异常:
[错误]找不到类型'in.appops.showcase.web.gwt.uploadservice.client.UploadService'[信息] [错误]提示:以前的编译器错误可能使这种类型不可用[信息] [错误]提示:检查您模块的继承链;它可能未继承所需的模块,或者模块未正确添加其源路径条目
我的项目有core和dispath模块,它们是没有入口点的实用程序模块,而其他uploadservice模块的入口点继承了core模块。
因此,我将core.gwt.xml,dispatch.get.xml放入其包中,即src / main / java本身,并将uploadservice.gwt.xml放入maven的资源文件夹中。同样在pom.xml中,我提供了要编译的模块:
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>2.4.0</version>
<goals>
<goal>clean</goal>
<goal>resources</goal>
<goal>compile</goal>
<goal>i18n</goal>
<goal>generateAsync</goal>
</goals>
<configuration>
<runTarget>Index.html</runTarget>
<hostedWebapp>${webappDirectory}</hostedWebapp>
<modules>
<!-- <module>platform.bindings.web.gwt.dispatch.Dispatch</module>
<module>platform.core.Core</module> -->
<module>showcase.web.gwt.addressbook.AddressBook</module>
<module>showcase.web.gwt.uploadservice.UploadService</module>
</modules>
</configuration>
</pluginExecutionFilter>
<action>
<execute />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
Run Code Online (Sandbox Code Playgroud)
谁能帮助我摆脱这种例外情况。我是否需要提供命令来编译模块或其他内容?
我想用git启用声纳,但是有必要首先使用hudson或其他东西从git存储库中拉出项目然后声纳将在hudson上定期分析代码.am我正确意味着我的步骤:
1.使用hudson从git中完成项目.
2.Sonar on hudson将分析代码并发送更新.
或者直接我们可以使用git + sonar它是如何工作的,任何人都可以指导我让它工作.
我有 Web 应用程序,我想从该 Web 应用程序将 grafana 仪表板打开到 iframe 中。但我想自动登录grafana并显示仪表板。因此,如果可能的话,我将使用凭据或授权标头来实现它。还有其他方法可以做到这一点吗?
我做了以下步骤,但它抛出异常:
1.我在Windows Server 2003上安装了openam 10.0.0.
2.在同一台Windows服务器计算机上使用ssl配置tomcat.
3.配置正确,可以使用https访问openam网址.
4.安装openam客户端sdk在另一台机器上,这是ubuntu机器,从那个ubuntu机器我试图登录到openam服务器使用
AuthContext lc = new AuthContext("/","https://server.ensarm.com:8443/openam/namingservice");
AuthContext.IndexType indexType = AuthContext.IndexType.MODULE_INSTANCE;
lc.login(indexType, "DataStore");
return lc;
Run Code Online (Sandbox Code Playgroud)
但我得到以下例外:
ERROR: Naming service connection failed for https://server.ensarm.com:8443/openam/namingservice
com.iplanet.services.comm.client.SendRequestException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
Run Code Online (Sandbox Code Playgroud)
我不明白可能是什么问题.由于我的java密钥库(ssl配置需要)是在Windows服务器机器上,我在ubuntu机器上没有密钥库,
要么
需要将密钥库导入到ubuntu机器中.请任何人帮我摆脱这个.
将简单的Web应用程序项目转换为maven项目后,是否可以将项目.classpath文件转换为pom.xml?因为如果我的项目使用了很多jar并且我想将它转换为maven,那么我将配置 - >转换为maven但是然后无法手动在pom.xml中添加所有jars依赖项.那么有没有任何工具来转换它.
我使用New-> Project-> Maven project-> GWT Eclipse插件在Eclipse中创建了一个GWT Maven项目.它被创建了,但它给出了一些错误
The output directory for the project should be set to /gwtproject/src/main/webapp/WEB-INF/classes
Run Code Online (Sandbox Code Playgroud)
配置项目时是否有任何遗漏?
我的pom.xml包括:
<build>
<!-- Generate compiled stuff in the folder used for developing mode -->
<outputDirectory>${webappDirectory}/WEB-INF/classes</outputDirectory>
<plugins>
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<versionRange>[2.4.0,)</versionRange>
<goals>
<goal>resources</goal>
<goal>compile</goal>
<goal>i18n</goal>
<goal>generateAsync</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute />
</action>
</pluginExecution>
<pluginExecution>
<pluginExecutionFilter>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<versionRange>[2.1.1,)</versionRange>
<goals>
<goal>exploded</goal>
</goals>
</pluginExecutionFilter>
<action>
<execute />
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> …Run Code Online (Sandbox Code Playgroud)