A Web Services/SOAP/WSDL framework supported by the Apache Software Foundation
0
votes
0answers
4 views
WSO2 ESB: route to specific node
I have WSO2 ESB and ELB instances installed.
When HTTP request comes to ESB, it opens a socket and waits for response.
But if ELB instantiates new ESB, then response can go to ESB #2 (instead of #1) ...
0
votes
1answer
21 views
remove whitespaces from jaxb xml response
I have a ws that generates a soap xml message. Due to size limitations I would like to remove the unnecessary whitespaces (used for indentation) and newlines. How can I do this when using generated ...
0
votes
1answer
14 views
AXIS 2 : java.lang.ClassCastException: com.sun.org.apache.xerces.internal.dom.DeferredElementNSImpl cannot be cast to org.apache.axiom.om.OMElement
I am using AXIS2 as client for handling SOAP response. The client stubs are generated using WSDL2JAVA command. To solve an issue, I am trying to read an xml response stored in .xml file in the ...
0
votes
0answers
13 views
Client AXIS2 Extract Attachment MTOM Base64Binary response
I'm trying to call a webservice with WS-Security authentication (PlainText).
The authentication is successful and apparently also the method call that interests me. The method returns a "multipart":
...
0
votes
1answer
11 views
Expose several web service inside one AAR
I have to develop an application exposing several web services.
It is possible to do it inside one AAR or do I need to expose them inside a WAR ?
Tks a lot
Nicolas
0
votes
0answers
14 views
Java service call with Axis2
I am developing a simple Java app which is responsible for calling a web service , I am using axis2-1.6.2 to call the service after calling the service this error happens, also I am new to Java and ...
0
votes
0answers
17 views
how to ignore asynchronous web service requests in the server with axis2
I am developing some Soap web services in Eclipse, using axis2 java framework and deploying the services under Apache Tomcat. The issue is that I don't need really support for asynchronous web service ...
0
votes
1answer
30 views
Transform response to plain-text using wso2 esb 4.0.6
I'm new to web-service and somehow I have created a simple web-service over http/https using wso2 esb 4.0.6. Now my requirement is to remove the tag from response i.e. i need plain text in response, ...
0
votes
0answers
20 views
Axis2: thrown exceptions from service not seen by client, soap envelope doesn't show them either
I've got an axis2 web service and a test client, using ADB binding, which doesn't seem to be doing what I expect when I throw an exception from a web service method. Here's where the exception is ...
0
votes
0answers
8 views
org.apache.axis2.AxisFault: Connection refused error when doing installation
Am getting the following error when installing a thrid-party application that uses Tomcat 5.5. The error comes in the last of installation and configuration. Please note that we were able to install ...
-1
votes
0answers
22 views
+50
GWT call Axis2 on Tomcat doesn't work
When i try to call a web service from my server java written with GWT deployed on tomcat 7 i have this error:
java.lang.NumberFormatException: For input string: ""
at ...
0
votes
0answers
18 views
Write soap12:header on server side with axis2/java
I need to write a soapheader on server side with axis2/java. I can write in client and read in server, but i need to send the token changed from server to client.
To read in the server i use ...
0
votes
0answers
15 views
Java Web service Unable to deploy typemappinp error
This is really frustrating and I cant figure out what is wrong.
I have created a Class MyClass, it contains a few attributes (Strings only) and a method called get_MyClass which returns a MyClass ...
0
votes
0answers
10 views
Error in running WSMX server
I am using the Web Service Modelling eXecution environment WSMX and I am not familiar with such software.
Anyway, I tried to follow the tutorials step by step, so that I downloaded the WSMX source ...
1
vote
2answers
39 views
axis2 fails to generate java from wsdl with inline schema
I want to generate Java classes from a WSDL. I'm invoking wsdl2java from within an ant task. The commandline would look like this:
java -cp ... org.apache.axis2.wsdl.WSDL2Java -o generated_dir -S . ...
0
votes
1answer
23 views
ADBException: Unexpected subelement
I created a web service using:
Apache Axis 2 CodeGen Wizard v.1.6.2 (Binding: ADB)
Eclipse Juno
Tomcat 7
Java 6
The Service returns a Custom Java Object (DataBean) back to the client, but I ...
0
votes
1answer
23 views
Not finding the option of axis2 preferences in rad8
How to use apache axis2 with rad8. I am not finding the option of axis2 preferences as present in eclipse.
What steps are required to generate client from wsdl in rad 8 using axis2?
Thanks in ...
0
votes
0answers
8 views
axis 2 web service and javascript client - cookies or session to keep track of the user who has logged in
I try to implement a basic log in and log application using javascript and ajax request to an axis 2 web service.
so when a user registers hew he makes - I make ajax call with the data to my axis ...
0
votes
0answers
31 views
Creating web service client through Eclipse/AXIS
I have been trying to create a web service client through Eclipse. I was able to create it but while invoking the serrvice, i am getting an Exception like java.net.UnknownHostException
Actually the ...
0
votes
1answer
47 views
Generate working Onvif code with wsdl2cpp
I generated the DeviceMgmt stub from cmd with
WSDL2CPP.bat -uri http://www.onvif.org/onvif/ver10/device/wsdl/devicemgmt.wsdl -u -d adb -o OutputDirectory
The first time, I got an error like "No ...
0
votes
0answers
12 views
can I hide the plaintext username and password in my soap request with the securith header from javascript
I read that in WSS4J 1.6 the UsernameTokenProcessor in
The plaintext case has exactly the same behaviour as the digest case. The identifier is now WSPasswordCaItllback.USERNAME_TOKEN and not ...
0
votes
1answer
14 views
axis2 service list page is not loading but WSDL is accessible
I have web services running on Axis2 1.6 within JBoss AS 6.1 as WAR.
Suddenly
http://xxx.xx.xxx.xx:8080/axis2/services/listServices
fails to load in browser.
But,
...
0
votes
1answer
31 views
How to implement an axis client to invoke web service with multiple SOAP responses
Recently I'm using axis2 library to implement my client to invoke a web service. The web service is something like an echo service which would sent back SOAP response messages every 30 seconds in one ...
0
votes
0answers
12 views
why WSPasswordCallback.getPassword is null wjen I try my soap request
I have made axis 2 web service with rampart security
but I constantly was receiving null point exception at this line
if((pwcb.getIdentifier().equals("bob")) && ...
0
votes
0answers
6 views
why pwcb.getPassword is null in this code
I try to add the rampart security to my axis2 web service using rampart module.
So here is what I have made:
I have stored in a database the hashed value of "bobWWW" password and the salt
In my ...
0
votes
0answers
14 views
java.lang.NullPointerException when I extract the password for rampart engine from database
I try to add the rampart security to my axis 2 web service using rampart and plain text password which should be extracted from database
what I have made
1.I have stored in a database the hashed ...
0
votes
1answer
16 views
How to remove Axis project facets from WebProject in Eclipse?
I have a web project in eclipse, I used axis for some operation but then I changed my mind.
Now if I go to Project->Project Facets and try to unselect "Axis2 web service" it tells me that cannot be ...
0
votes
0answers
39 views
Apache synapse caching mediator disk
Hi I would like to have a question concerning the caching mediator in Apache synapse. In synapse official site, it is mentioned that disk caching is supported
<cache timeout="20000" ...
0
votes
0answers
31 views
Axis2 or JAX-WS Service [closed]
Folks,
I am migrating Web-Services written in C# to Java. First question came to my mind is to whether use Axis2 or Jax-ws. I find advantage of using JAX-WS API as it is readily available in JDK ...
-2
votes
1answer
23 views
Authentication and acknowledgement code
The is a webService code. I'll generate WSDL using bottom up approach from below code and publish it (using apache axis2 codeGenerator). I am writing JAVA Code that checks username and password. Once ...
0
votes
0answers
10 views
using stored password in a database which rampart should verify
Hello I 've made a an axis 2 web service which stores the user hashed password in a database.
So it's obvious that I shold add some kind of security to my web service so i use rampart!
But it's ...
0
votes
0answers
11 views
what I do wrong in making my .aar file with axis 2 service archiver
Hello I've made an axis 2 web service with rampart security (so I've got PWCBHandler.java class)
I downloaded the axis2 service archiver plugin for eclipse!
Then I give File - New -Other -> axis 2 ...
0
votes
0answers
15 views
How do I upload my axis 2 web service with rampart security to tomcat?
Hello I made an axis 2 web service using Eclipse, then I decided to add rampart security, so I added the PWCBHandler.java class to my dynamic project and I added to policy in my services.xml
But when ...
0
votes
2answers
28 views
java.lang.AbstractMethodError for deployed aar on WSO2 Application Server
After invoking an operation by "try it" using WSO2 Application Server, admin area. I get this error.
I have created a wsdl file using eclipse and generate server side code using Axis2 code generator, ...
0
votes
0answers
45 views
How to remove port number from web service endpoint in wsdl file
I am working on migration of web service from AXIS-1 to AXIS-2, every thing was going good till the it was on my local system, when deployed these services to SIT server I can see that the endpoint ...
0
votes
1answer
35 views
javax.net.ssl.SSLHandshakeException error
In our application we use https service url to get some service from other vendor. we all share with one server. this server interacts with service url and gets the information.
in all of other ...
0
votes
1answer
15 views
Order of unbounded elements in xmlschema sequence
I'm currently developing an application that uses webservices (SOAP 1.2). I'm interested in knowing if I can rely on the order of unbounded elements in a xmlschema sequence. Here is my definition of ...
-2
votes
0answers
35 views
Axis2 Client via proxy : 405 Error: Method Not Allowed
We have been using a axis2 web service for a long time. We test the service with an axis2 wsdl2java generated client. For this, we use proxy property of HTTPconstants. Recently, we changed our proxy ...
0
votes
1answer
27 views
NoClassDefFoundError XmlSchema with IVY dependency
In my Java Wicket application with Apache Ivy and JBoss I'm using a dynamic web project (Axis2). On the method
populateAxisService() throws org.apache.axis2.AxisFault
I get the following error: ...
0
votes
1answer
26 views
Access Control to a web service
I would like to implement access control to a Web service (operations, messages, etc.). My findings indicate that this can be done via WS-Policy or XACML. It looked to me like Axis2 has a good ...
1
vote
0answers
36 views
Axis2 : Unable to engage Rampart module
I am getting the following error while trying to implement WS-Security using Rampart in Axis2.
org.apache.axis2.AxisFault: Unable to engage module : rampart
at ...
1
vote
0answers
20 views
How to define a root soap service in wsdl
In wsdl file, I am currently defining a service like:
<service name="test">
Then I can call API by sending request to localhost:port/test
What if i want to call API by sending reqeust to ...
0
votes
1answer
41 views
Accessing an HttpServletRequest from inside an AXIS2 module
I am implementing AXIS2 services in my web application. Our client's production boxes are a bit flaky, so I want a heads up when performance degraded. Specifically:
request comes into my AXIS2 ...
0
votes
1answer
55 views
WSO2 Custom mediator is not returning in proper xml format
Hello WSO2 Users/Team,
I am having a custom mediator in my wso2 proxy service which transforms incoming xml to another format, in turn its been forwarded to a jms queue by the proxy. But the xml is ...
0
votes
0answers
24 views
Axis2 service fails on startup of Tomcat 7 webserver
I have a simple pojo which I've made into a web service using Axis2
The way it works is I have two constructors. One where I pass in values to instantiate certain paramters, and another constructor ...
0
votes
0answers
18 views
Is this the right request from javascript to my secured axis web service
I know that Apache Rampart configuration allows providing a password callback handler class, that can be used to provide passwords needed for Rampart engine to build username tokens and create ...
0
votes
1answer
66 views
client giving error when invoking a secured web service
I have written a client that invokes webservice. My client is:
String publisherEPR = "https://abc:8280/services/ProviderPublication";
protected void publicationOpenSession(HttpServletRequest ...
1
vote
1answer
41 views
a Web Service deployed (as an aar) file to Axis2
I have a Web Service deployed (as an aar) file to Axis2, but the dependencies (in the form of .jar files within the lib directory of the aar file) are not found on execution. They do get used properly ...
0
votes
1answer
44 views
axis2.AxisFault: [clientAuthRequired] Client certificate not found
I am obtaining this exception (client certificate not found) when trying to
connect to a secure Web Service that requires a client certificate. I am
using a web service client automatically generated ...
1
vote
2answers
59 views
client for secured proxy service?
I am trying to implement security to my proxy service. I have taken help for security implementation from this link:http://evanthika.blogspot.in/2012/12/pox-security-with-wso2-esb-proxy.html. My ...

