soap « cxf « Java Enterprise Q&A





1. Is javax.xml.soap better then apache cxf?    stackoverflow.com

This week I had to look into a Java WebService project which was using SOAP packages javax.xml.soap.*. I have not used this before but the Apache CXF library to create a ...

2. how to apply XML signature on outgoing SOAP messages    stackoverflow.com

I have generated stubs and bindings using cxf codegen. Everything runs fine however the server still rejects the message because of security issues. Basically I have 3 layers to ...

3. Sign and Encrypt SOAP Messages with Apache CXF    stackoverflow.com

I'm trying to write a "Secure Hello World" web service using Apache CXF also; I should note that I'm kind of new to Java and WS-* stuff. Basically, what I want to ...

4. Print XML content of SOAP message    stackoverflow.com

I am using Apache CXF for my webservices. I've created an instance of AbstractSoapInterceptor. In its public void handleMessage(SoapMessage message) throws Fault method I would like to print the XML content ...

5. CXF not work well with .Net?    stackoverflow.com

I created a Web Service use CXF with 1.2 soap binding. when i try to create a C# client, try to do the "Add Web Service Reference" the java side give and warning.. so... ...

6. how to return an InputStream    stackoverflow.com

I am creating a webservice, can we return an InputStream?? (P.S. the client side is written in C#)

@WebMethod
InputStream download(@WebParam(name = "id") long id);
Thanks

7. How to enable SignatureConfirmation element in an Apache CXF SOAP server    stackoverflow.com

I have a soap client and also a soap server both using CXF. I have message signing working correctly. When I point my soap client at a different SOAP ...

8. How does CXF generate SOAP XML message ?for byte array)    stackoverflow.com

I'm using CXF generated client to access SOAP web services. According to WSDL, there is a field called "token" declared as "TokenType" in one of the SOAP request message:

<xs:simpleType name="TokenType">
  ...

9. Invoking WS-Operation that accepts an array of String using Apache CXF DynamicClient    stackoverflow.com

Hello everyone I'm currently developing part of an application that will invoke SOAP services. The operation-name, the parameters and their types are unknown at compile time and will passed to my code at runtime. ...





10. Firebug "No element found" on Oneway SOAP operation    stackoverflow.com

I'm working on a SOAP application. I'm using java/cxf to do so.
When the application does a Oneway request (and that will be a POST request to the server), the server ...

11. How do I represent dates without the timezone using Apache CXF?    stackoverflow.com

I have a WSDL that specifies an element's type to be xs:date. When I use Apache CXF to generate the Java classes, it renders the variable as an javax.xml.datatype.XMLGregorianCalendar (all good so ...

12. How can I send an abstract argument to a web service?    stackoverflow.com

I want to send an abstract object as an argument in a webservice method. These are my classes: The abstract class:

@XmlSeeAlso({Male.class, Female.class})

public abstract class Person {
    public String name;

  ...

13. Work with soap message in CXF Based webservice    stackoverflow.com

I am using CXF implementation for webservices. My webservice exposes some operations. The class which contains the annotation javax.jws.WebService gets the soap message in java object form. For one operation, I dont want ...

14. how can I test a webservice build with cxf with soap ui?    stackoverflow.com

I have method annotated with @WebService, and it should be accessible on a port on my local machine. How can I use soapui to send a value?

15. Problems with addressing a document/literal SOAP web service with the Office 2003 Web Services Toolkit    stackoverflow.com

Helly everyone, I am currently developing a SOAP web service. For that I am using Apache CXF (I am not sure if this matters) for a code-first approach. My WSDL style binding is ...

16. Apache CXF SoapMessage    stackoverflow.com

i work actually with apache cxf and build a playground for me. I would to invoke a soap operation with a simple paramter (string). First to know, i implemented everythink programmatically, ...





17. Can we retrieve the requestor details through a SOAP call using Apache CXF?    stackoverflow.com

We are getting a SOAP request on our server from various systems. Before sending the response , we need to make some new requests to the requesting system to fetch some ...

18. CXF: how to exclude some properties when object sent through SOAP?    stackoverflow.com

I use Apache CXF 2.4.2 and when I return some object from database to user I want exclude some properties (for instance, password). How I can do that without creating temporary ...

19. Manage UDDI registry with CXF    stackoverflow.com

I have an application using Apache CXF with a lots of SOAP services implemented. So, i would like to use the "service registry" concept and then, i´d hear about UDDI, but ...

20. SOAP based Webservice Interface with Hasmap as Input Parameter    stackoverflow.com

I am trying to build a SOAP based webservice which will have Hashmap as input using Java? Has anyone tried it before? What kind of problems this might cause? WHat is the best ...