CXFを使用してJSFで動的Webサービス呼び出し元を作成したいと思います。しかし、この単純なコードをロードすると、エラーが発生します。コード:
JaxWsDynamicClientFactory dcf = JaxWsDynamicClientFactory.newInstance();
Client client = dcf.createClient("http://ws.strikeiron.com/IPLookup2?wsdl");
エラー:
このアプリケーション用に構成されたファクトリはありません。これは、facesの初期化がまったく機能しない場合に発生します。基本的なfacesアプリケーションに必要なすべての構成設定が適切に含まれていること、および必要なすべてのライブラリが含まれていることを確認してください。また、Webアプリケーションとコンテナのログ出力で例外がないか確認してください。それを行っても何も見つからない場合は、TLDファイルを介したコンテキストリスナーの登録をサポートしていない特別なWebコンテナを使用していて、Web.xmlにコンテキストリスナーが設定されていないことが原因である可能性があります。一般的な構成は次のようになります。org.apache.myfaces.webapp.StartupServletContextListener
原因:java.lang.IllegalStateException-このアプリケーション用に構成されたファクトリがありません。これは、facesの初期化がまったく機能しない場合に発生します。基本的なfacesアプリケーションに必要なすべての構成設定が適切に含まれていること、および必要なすべてのライブラリが含まれていることを確認してください。また、Webアプリケーションとコンテナのログ出力で例外がないか確認してください。それを行っても何も見つからない場合は、TLDファイルを介したコンテキストリスナーの登録をサポートしていない特別なWebコンテナを使用していて、Web.xmlにコンテキストリスナーが設定されていないことが原因である可能性があります。一般的な構成は次のようになります。org.apache.myfaces.webapp.StartupServletContextListener
問題を解決する方法はありますか?
web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>ServiceInvoker</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
<context-param>
<param-name>javax.servlet.jsp.jstl.fmt.localizationContext</param-name>
<param-value>resources.application</param-value>
</context-param>
<context-param>
<description>State saving method: 'client' or 'server' (=default). See JSF Specification 2.5.2</description>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>client</param-value>
</context-param>
<context-param>
<description>
This parameter tells MyFaces if javascript code should be allowed in
the rendered HTML output.
If javascript is allowed, command_link anchors will have javascript code
that submits the corresponding form.
If javascript is not allowed, the state saving info and nested parameters
will be added as url parameters.
Default is 'true'</description>
<param-name>org.apache.myfaces.ALLOW_JAVASCRIPT</param-name>
<param-value>true</param-value>
</context-param>
<context-param>
<description>
If true, rendered HTML code will be formatted, so that it is 'human-readable'
i.e. additional line separators and whitespace will be written, that do not
influence the HTML code.
Default is 'true'</description>
<param-name>org.apache.myfaces.PRETTY_HTML</param-name>
<param-value>true</param-value>
</context-param>
<context-param>
<param-name>org.apache.myfaces.DETECT_JAVASCRIPT</param-name>
<param-value>false</param-value>
</context-param>
<context-param>
<description>
If true, a javascript function will be rendered that is able to restore the
former vertical scroll on every request. Convenient feature if you have pages
with long lists and you do not want the browser page to always jump to the top
if you trigger a link or button action that stays on the same page.
Default is 'false'
</description>
<param-name>org.apache.myfaces.AUTO_SCROLL</param-name>
<param-value>true</param-value>
</context-param>
<listener>
<listener-class>org.apache.myfaces.webapp.StartupServletContextListener</listener-class>
</listener>
</web-app>
faces-config.xml
<?xml version="1.0" encoding="UTF-8"?>
<faces-config
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd"
version="1.2">
<managed-bean>
<description>Bean used for invoking services</description>
<managed-bean-name>invoker</managed-bean-name>
<managed-bean-class>org.cot.invoker.Invoker</managed-bean-class>
<managed-bean-scope>session</managed-bean-scope>
</managed-bean>
</faces-config>
これは私がEclipseのコンソールで取得するものです:
これは、facesの初期化がまったく機能しない場合に発生します。基本的なfacesアプリケーションに必要なすべての構成設定が適切に含まれていること、および必要なすべてのライブラリが含まれていることを確認してください。また、Webアプリケーションとコンテナのログ出力で例外がないか確認してください。それを行っても何も見つからない場合は、TLDファイルを介したコンテキストリスナーの登録をサポートしていない特別なWebコンテナを使用していて、Web.xmlにコンテキストリスナーが設定されていないことが原因である可能性があります。一般的な構成は次のようになります。org.apache.myfaces.webapp.StartupServletContextListener 間違いは、TLDファイルを介したコンテキストリスナーの登録をサポートしていない特別なWebコンテナを使用していて、Web.xmlにコンテキストリスナーが設定されていないことが原因である可能性があります。一般的な構成は次のようになります。org.apache.myfaces.webapp.StartupServletContextListener 間違いは、TLDファイルを介したコンテキストリスナーの登録をサポートしていない特別なWebコンテナを使用していて、Web.xmlにコンテキストリスナーが設定されていないことが原因である可能性があります。一般的な構成は次のようになります。org.apache.myfaces.webapp.StartupServletContextListener
at javax.faces.FactoryFinder.getFactory(FactoryFinder.java:106)
at org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:356)
at org.apache.myfaces.lifecycle.RenderResponseExecutor.execute(RenderResponseExecutor.java:41)
at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:140)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:155)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:298)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:852)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:588)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
at java.lang.Thread.run(Unknown Source)
クリックすると:
<h:commandLink value="Invoke me!" actionListener="#{invoker.doInvoke}"></h:commandLink>