问题标签 [cxf]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
java - CXF autogenerated wsdl
I am developing webservices usin CXF-WS 2.2.1. I had developed and tested the services earlier but now the generated wsdl is different from the earlier one here is the old one
and the old one is like
As you can see the wsdl is different right from the first line.. With no change in configurations or the jars used in the project. Could anyone please help me out with why such a thing is happening. As soon as possible would be appreciated cos this has to move to a build day after tomorrow.
Thanks in advance Adhir Aima
web-services - CXF Web 服务错误 - javax.xml.ws.soap.SOAPFaultException:未实现未连接的套接字
尝试通过 SSL 连接到 Web 服务时出现以下错误。
javax.xml.ws.soap.SOAPFaultException:未实现未连接的套接字
java - 从 Oracle (10g) 存储过程调用 Web 服务
谁能指出我从 Oracle 10g 存储过程调用 Web 服务(例如基于CXF )的工作示例。
java - CXF 以及何时应该使用 JaxWsProxyFactoryBean 或 JAX-WS 代理
JaxWsProxyFactoryBean 以及何时应该使用从 wsdl 或 JAX-WS 代理生成的 Java 存根?
有什么优点或缺点吗?
谢谢
java - 在 Spring Framework 中部署 CXF Web 服务
在运行完 CXF 示例后,我启动了一个简单的 Web 服务并且运行良好。但是,我想将它与 servlet 容器内的 Spring Web 应用程序集成。更新 servlet.xml 配置文件后:
和 web.xml:
我能够在 servlet 中部署它,但是 Spring 服务的 WSDL 是非常错误的,即使 Java 接口和实现文件是相同的。请参阅下面的 Eclipse WSDL 大纲:
替代文字 http://img171.imageshack.us/i/correcty.jpg/替代文字 http://img190.imageshack.us/i/wrongia.jpg/
为什么会从相同的 .java 文件生成如此不同的 WSDL,我怎样才能让它在 servlet 中工作?提前致谢。
java - 如何将 CXF Web 服务使用的地址更改为与 wsdl 文件中指定的地址不同的地址?
当我根据配置获取 wsdl 时,我已经让它工作了,但我只想告诉它为服务调用使用特定地址并使用 wsdl 的本地副本。
有谁知道这方面的最佳做法?
xml 请求有效。
代理 xml 请求不起作用。
java - Enum "does not have a no-arg default constructor" with Jaxb and cxf
A client is having an issue running java2ws on some of their code, which uses & extends classes that are consumed from my SOAP web services. Confused yet? :)
I'm exposing a SOAP web service (JBoss5, Java 6). Someone is consuming that web service with Axis1 and creating a jar out of it with the data types and client stubs. They are then defining their own type, which extends one of my types. My type contains an enumeration.
When they are running java2ws on their code (which extends my class), they get
The enum I've defined is below. This is now how it comes out after being consumed, but it's how I have it defined on the app server:
I've seen things online and other posts, like (this one) regarding Jaxb's inability to handle Lists or things like that, but I'm baffled about my enum. I'm pretty sure you can't have a default constructor for an enum (well, at least a public no-arg constructor, Java yells at me when I try), so I'm not sure what makes this error possible. Any ideas?
Also, the "2 counts of IllegalAnnotationsExceptions" may be because my code actually has two enums that are written similarly, but I left them out of this example for brevity.
java - 将响应标头添加到 JAX-RS Web 服务
我正在尝试向我的一些网络服务调用添加一些响应标头。我使用 CXF 2.1.2 和 JAX-RS 编写了我的网络服务。我需要返回一个对象,并且我还想在响应中添加一些标头。 在不返回 javax.ws.rs.core.Response 对象的情况下,如何向响应添加标头并仍然返回我的 javabean?
java - 使用 CXF 捕获 Web 服务异常:NoClassDefFoundError: SOAPFaultBuilder
一段时间以来,我一直在使用 Apache CXF wsdl2java 生成的代码从 web 服务调用方法,到目前为止它工作正常。合法地抛出一个肥皂异常,CXF 提出以下错误消息:
无法初始化类 com.sun.xml.internal.ws.fault.SOAPFaultBuilder
我正在使用 Ubuntu 9.04、OpenJDK (IcedTea6 1.4.1) 6b14-1.1.1-0ubuntu11、Maven2 和 CXF 2.2.3。我目前不知道如何解决这个问题,因为我使用的代码和设置看起来很简单。任何人都可以在这里指出我正确的方向吗?让我知道我是否可以发布更多详细信息..
这是返回的完整堆栈跟踪:
java - Apache CXF:如何使用基本身份验证保护 JAX-RS Web 服务
我有一个 Spring 应用程序,它使用 Apache CXF(使用 jax-rs)发布一些 RESTful Web 服务。我想使用 HTTP 基本身份验证来保护对这些服务的访问。用户名和密码应该在 Spring 配置文件中。主应用程序已经使用了 Spring Security,我不想弄乱那个设置。
最简单的方法是什么?我可以编写自己的 ServletFilter 但肯定有办法配置它吗?