You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cxf.apache.org by "Daniel Kulp (JIRA)" <ji...@apache.org> on 2012/05/23 20:29:41 UTC

[jira] [Commented] (CXF-4325) ws?js not working with Spring based config in JBoss 7.1

    [ https://issues.apache.org/jira/browse/CXF-4325?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13281779#comment-13281779 ] 

Daniel Kulp commented on CXF-4325:
----------------------------------

Kind of wondering if it's picking up the CXF jars that are part of JBoss instead of in your war.  The javascript stuff is likely not part of JBoss's included CXF and thus you get the javascript thing loading from a different classloader and it's then not able to see that it's a QueryHandler.   That's my semi-gut feeling.   May be something that needs to be looked at from the JBoss side.
                
> ws?js not working with Spring based config in JBoss 7.1
> -------------------------------------------------------
>
>                 Key: CXF-4325
>                 URL: https://issues.apache.org/jira/browse/CXF-4325
>             Project: CXF
>          Issue Type: Bug
>          Components: JavaScript Client, JAX-WS Runtime
>    Affects Versions: 2.6
>         Environment: Linux + JBoss 7.1
> project in Netbeans 7.1.2.  Simple WAR (clean project)
>            Reporter: Timothy Heider
>            Priority: Minor
>
> I have everything working except for the one thing I really want: ?js code rendering.  It returns this:
> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
> <soap:Body>
> <soap:Fault>
> <faultcode>soap:Server</faultcode>
> <faultstring>
> No such operation: null (HTTP GET PATH_INFO: /pbx/pbxnull)
> </faultstring>
> </soap:Fault>
> </soap:Body>
> </soap:Envelope>
> which is the same as if the JS wasn't hooked in at all.
> Here is my beans.xml file:
> <beans xmlns="http://www.springframework.org/schema/beans"
>       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>       xmlns:jaxws="http://cxf.apache.org/jaxws"
>       xmlns:jaxrs="http://cxf.apache.org/jaxrs"
>       xsi:schemaLocation="
>          http://www.springframework.org/schema/beans
>          http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
>          http://cxf.apache.org/jaxws
>          http://cxf.apache.org/schemas/jaxws.xsd
>          http://cxf.apache.org/jaxrs
>          http://cxf.apache.org/schemas/jaxrs.xsd">
>   
>   <import resource="classpath:META-INF/cxf/cxf.xml"/>
>   <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
>   <import resource="classpath:META-INF/cxf/cxf-extension-javascript-client.xml"/>
>   <jaxws:endpoint id="pbx"
>       implementor="realise.pbx.core.PbxCoreImpl"
>       address="/pbx"/>
> </beans>
> I am able to get wsdl's by ?wsdl and execute services using JaxWsProxyFactoryBean.
> The beverages sample works with the same jar's to generate JS so I know the feature works.  I'm somewhat baffled.  I built the 2.6.0 source today but I thought before I dig in too much more I would see if you knew about something like this already being a problem.
> Thanks.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira