I am getting started with an Axis-based web service, written in Java, which will run on WebSphere.
My question is, can I just bundle this up as a web application like I ... |
I'm completely stuck and need your help... I've created a webservice stub with jaxb 2.x for a service that sends a binary file (base64 encoded jpg images) within a soap message. ... |
I'm using the Axis 1.4 axis-wsdl2java ant task to create stub code for a web service hosted on port 8080 of a webserver. I've used the NStoPkg.properties file successfully in the ... |
I have deployed a webservice using servletexec configured with IIS and i can successfully access webservice using anonymous account. But when I enable Windows Integrated Authentication I am getting following error.
...
|
I downloaded Axis 1.4 ( http://www.nic.funet.fi/pub/mirrors/apache.org/ws/axis/1%5F4/ ) and I wanted to use WSDL2Java, but I didn't find such a file from package, but there are refrences to this file ... |
I generated Java files from WSDL with WSDL2Java converter, but I don't know how can I use service with these files, because there are no examples. I'm implementing client side.
|
I get this error when I use my autogenerated ServiceBindingStub.java. WebService side is working ok, so this error must be in code, but code is autogenerated, so I cannot know why ... |
|
basically i am using ant to generate webservice client and server stubs. We don't change wsdl as frequently as our java code. But since wsdl2java generated code is always new, javac ... |
I'd like to have my Axis2 Web Service read from a configuration file, whose name is sent as a parameter to the service.
Where is the best place to put this file? ... |
I trying to create an Axis2 arr file that has 2 package heirachies. However my service class is throwing a class not found exception when it tries to use classes in ... |
I created a Java Project in Eclipse using the Web services Top down approach (i.e. creating a WSDL file and using it to generate the Skeleton Java class and web services ... |
I have a problem reading the xml config file for Mybatis 3.0.2.
I have to use it in a web service with Axis2 1.5. I have a class whith this code:
public ...
|
I'm trying to upload file using Axis2 web service by 1024 chunk size.
My server side looks like this:
public void appendChunk(int count, byte[] buffer){
FileOutputStream fos = null;
...
|
I have a issue with ConverterUtil.java file "convertToString" method. This method is used by stubs and it tries to convert the date into string. The problem i have is when it ... |
I want to use the Axis service archiver eclipse plugin. On the first page of the wizard, I have to define a "class file location". Which class location do I have ... |
I wanted to upload a file(image,text ,pdf all in one) using java web service Axis2.
and I am using Saopui to check whether it is correctly uploaded or not.
Thanks in advance
Regards
Ram
|
I am trying to manipulate a file and create a new folder from within a web service and am running into a permission denied error. What is the recommended way to ... |
Is there any separate org.apache.axis.wsdl2java jar file for Eclipse Indigo version because its not worked in indigo version shows error like:
The selected wizard could not be started.
Plug-in "org.apache.axis.wsdl2java.eclipse" was unable to ... |
I have added a piece of sharepoint code to the existing java file which was compiling and working fine. The sharepoint code that is written uses some of the external libraries. ... |
We need to develop a Webservice using Apache Axis 2 and deploy this Application as a war file in glassfish server, so that it would be accessable to our service consumers ... |
I am using Axis2 .
I ran this command from my command line
WSDL2Java -uri http://localhost:8080/axis2/services/SimpleService?wsdl
Using AXIS2_HOME: E:\Axis2Tutorial\axis2-1.5
Using JAVA_HOME: C:\Program Files\Java\jdk1.6.0_26
Retrieving document at 'http://localhost:8080/axis2/services/SimpleService?wsdl**
|
I am using Axis2 for developing webservices .
I started from WSDL file , and used WSDL2Java command line and generated all the sever related code (Skeltons) , wrote services.xml ... |
Here is my situation:
I'm using Apache Axis 1.1. I'm trying to set up a custom web service as a .jws file that is simply dropped onto the axis web app ... |
I am new to Axis2 Web Service programming.
i need to push files to another server with the Digital Signature security.
How can i implement this process in Axis2?
Is there any security ... |
|
Hi, I'm deploying a web service that forwards messages it gets over SOAP to a JMS topic on a different machine. The code works when calling it not as a web service, but fails with permission issues when called from AXIS. I think they key is to give it resolve,connect permissions in a policy file, but I'm not sure how to ... |
|
I am using Java Axis. I have some JARs that reference windows DLL files. When I run the program in a DOS java client, it works fine. When I run it in Axis, I get "Access Violation" errors. It seems I don't know where to place and/or configure my Path or Classpath in order to let Axis put the DLLs in ... |
Hi, I'm just beginning to work through web services, and I'm having a difficult time. I created a test business object (com.greenbuildingpages.services.DistanceCalculator) and ran java2wsdl against it: java org.apache.axis.wsdl.Java2WSDL -o wp.wsdl -l"http://localhost:8080/axis/services/distance" -n "urn:Example" -p"com.greenbuildingpages.services" "urn:Example" com.greenbuildingpages.services.DistanceCalculator This created the wdsl file: |