- 浏览: 889740 次
- 性别:
- 来自: 杭州
-
文章分类
最新评论
-
hzw2312:
C = sin(MLatA)*sin(MLatB)*cos(M ...
根据地球上任意两点的经纬度计算两点间的距离 -
zhang_sun:
rewind方法的limit又是多少呢?等于capacity? ...
ByteBuffer的flip,clear及rewind区别 -
kalogen:
一种每次都获取到不同的随机数的办法int ranseed=12 ...
J2ME中Random类的使用 -
kalogen:
估计部署在某个端口下吧,仔细检查一下发布的配置文件
Tomcat负载均衡和集群环境的搭建 -
zhuchao_ko:
文件大点就嗝屁了~~~
Axis 1.4 上传二进制文件(base64Binary)
服务端代码:
Java代码
package samples.userguide.example5;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
public class BinaryServer {
public void saveImage(String filename, byte[] image) throws IOException {
String dir = "D:/workspace-java/axis1/web/WEB-INF/classes/samples/userguide/example5/";
if (image != null && image.length > 0) {
FileOutputStream output = new FileOutputStream(new File(dir
+ filename));
output.write(image);
output.flush();
output.close();
}
}
}
package samples.userguide.example5;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
public class BinaryServer {
public void saveImage(String filename, byte[] image) throws IOException {
String dir = "D:/workspace-java/axis1/web/WEB-INF/classes/samples/userguide/example5/";
if (image != null && image.length > 0) {
FileOutputStream output = new FileOutputStream(new File(dir
+ filename));
output.write(image);
output.flush();
output.close();
}
}
} 配置deploy.wsdl文件,由于byte[]是axis默认支持的,因此不需要额外的配置。
Xml代码
<deployment xmlns="http://xml.apache.org/axis/wsdd/"
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
<service name="BinaryServer" provider="java:RPC">
<parameter name="className" value="samples.userguide.example5.BinaryServer"/>
<parameter name="allowedMethods" value="*"/>
</service>
</deployment>
<deployment xmlns="http://xml.apache.org/axis/wsdd/"
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
<service name="BinaryServer" provider="java:RPC">
<parameter name="className" value="samples.userguide.example5.BinaryServer"/>
<parameter name="allowedMethods" value="*"/>
</service>
</deployment>运行发布描述文件命令:
Cmd代码
D:\workspace-java\axis\web\WEB-INF>java -classpath %CLASSPATH% org.apache.axis.client.AdminClient -l http://localhost:8080/axis/services/BinaryServer deploy.wsdd
D:\workspace-java\axis\web\WEB-INF>java -classpath %CLASSPATH% org.apache.axis.client.AdminClient -l http://localhost:8080/axis/services/BinaryServer deploy.wsdd
客户端代码:
Java代码
package samples.userguide.example5;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import javax.xml.rpc.ServiceException;
import org.apache.axis.client.Call;
public class BinaryClient {
public static void main(String[] args) throws ServiceException, IOException {
String url = "http://localhost:8080/axis/services/BinaryServer";
String dir = BinaryClient.class.getResource(".").getFile().toLowerCase();
System.out.println(dir);
// System.exit(0);
FileInputStream input = new FileInputStream(new File(dir+"Desert.jpg"));
byte [] image = new byte[input.available()];
input.read(image);
org.apache.axis.client.Service service = new org.apache.axis.client.Service();
org.apache.axis.client.Call call = (Call) service.createCall();
call.setTargetEndpointAddress(url);
javax.xml.namespace.QName qn = new javax.xml.namespace.QName("BinaryServer","saveImage");
call.setOperationName(qn);
call.addParameter("arg0", org.apache.axis.encoding.XMLType.XSD_STRING, javax.xml.rpc.ParameterMode.IN);
call.addParameter("arg1", org.apache.axis.encoding.XMLType.SOAP_BASE64BINARY, javax.xml.rpc.ParameterMode.IN);
call.setReturnType(org.apache.axis.encoding.XMLType.AXIS_VOID);
Object[] args1 = new Object[]{"desert1.jpg",image};
call.invoke(args1);
input.close();
}
}
package samples.userguide.example5;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import javax.xml.rpc.ServiceException;
import org.apache.axis.client.Call;
public class BinaryClient {
public static void main(String[] args) throws ServiceException, IOException {
String url = "http://localhost:8080/axis/services/BinaryServer";
String dir = BinaryClient.class.getResource(".").getFile().toLowerCase();
System.out.println(dir);
// System.exit(0);
FileInputStream input = new FileInputStream(new File(dir+"Desert.jpg"));
byte [] image = new byte[input.available()];
input.read(image);
org.apache.axis.client.Service service = new org.apache.axis.client.Service();
org.apache.axis.client.Call call = (Call) service.createCall();
call.setTargetEndpointAddress(url);
javax.xml.namespace.QName qn = new javax.xml.namespace.QName("BinaryServer","saveImage");
call.setOperationName(qn);
call.addParameter("arg0", org.apache.axis.encoding.XMLType.XSD_STRING, javax.xml.rpc.ParameterMode.IN);
call.addParameter("arg1", org.apache.axis.encoding.XMLType.SOAP_BASE64BINARY, javax.xml.rpc.ParameterMode.IN);
call.setReturnType(org.apache.axis.encoding.XMLType.AXIS_VOID);
Object[] args1 = new Object[]{"desert1.jpg",image};
call.invoke(args1);
input.close();
}
} 运行测试,OK。确实上传成功。
Java代码
package samples.userguide.example5;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
public class BinaryServer {
public void saveImage(String filename, byte[] image) throws IOException {
String dir = "D:/workspace-java/axis1/web/WEB-INF/classes/samples/userguide/example5/";
if (image != null && image.length > 0) {
FileOutputStream output = new FileOutputStream(new File(dir
+ filename));
output.write(image);
output.flush();
output.close();
}
}
}
package samples.userguide.example5;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
public class BinaryServer {
public void saveImage(String filename, byte[] image) throws IOException {
String dir = "D:/workspace-java/axis1/web/WEB-INF/classes/samples/userguide/example5/";
if (image != null && image.length > 0) {
FileOutputStream output = new FileOutputStream(new File(dir
+ filename));
output.write(image);
output.flush();
output.close();
}
}
} 配置deploy.wsdl文件,由于byte[]是axis默认支持的,因此不需要额外的配置。
Xml代码
<deployment xmlns="http://xml.apache.org/axis/wsdd/"
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
<service name="BinaryServer" provider="java:RPC">
<parameter name="className" value="samples.userguide.example5.BinaryServer"/>
<parameter name="allowedMethods" value="*"/>
</service>
</deployment>
<deployment xmlns="http://xml.apache.org/axis/wsdd/"
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
<service name="BinaryServer" provider="java:RPC">
<parameter name="className" value="samples.userguide.example5.BinaryServer"/>
<parameter name="allowedMethods" value="*"/>
</service>
</deployment>运行发布描述文件命令:
Cmd代码
D:\workspace-java\axis\web\WEB-INF>java -classpath %CLASSPATH% org.apache.axis.client.AdminClient -l http://localhost:8080/axis/services/BinaryServer deploy.wsdd
D:\workspace-java\axis\web\WEB-INF>java -classpath %CLASSPATH% org.apache.axis.client.AdminClient -l http://localhost:8080/axis/services/BinaryServer deploy.wsdd
客户端代码:
Java代码
package samples.userguide.example5;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import javax.xml.rpc.ServiceException;
import org.apache.axis.client.Call;
public class BinaryClient {
public static void main(String[] args) throws ServiceException, IOException {
String url = "http://localhost:8080/axis/services/BinaryServer";
String dir = BinaryClient.class.getResource(".").getFile().toLowerCase();
System.out.println(dir);
// System.exit(0);
FileInputStream input = new FileInputStream(new File(dir+"Desert.jpg"));
byte [] image = new byte[input.available()];
input.read(image);
org.apache.axis.client.Service service = new org.apache.axis.client.Service();
org.apache.axis.client.Call call = (Call) service.createCall();
call.setTargetEndpointAddress(url);
javax.xml.namespace.QName qn = new javax.xml.namespace.QName("BinaryServer","saveImage");
call.setOperationName(qn);
call.addParameter("arg0", org.apache.axis.encoding.XMLType.XSD_STRING, javax.xml.rpc.ParameterMode.IN);
call.addParameter("arg1", org.apache.axis.encoding.XMLType.SOAP_BASE64BINARY, javax.xml.rpc.ParameterMode.IN);
call.setReturnType(org.apache.axis.encoding.XMLType.AXIS_VOID);
Object[] args1 = new Object[]{"desert1.jpg",image};
call.invoke(args1);
input.close();
}
}
package samples.userguide.example5;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import javax.xml.rpc.ServiceException;
import org.apache.axis.client.Call;
public class BinaryClient {
public static void main(String[] args) throws ServiceException, IOException {
String url = "http://localhost:8080/axis/services/BinaryServer";
String dir = BinaryClient.class.getResource(".").getFile().toLowerCase();
System.out.println(dir);
// System.exit(0);
FileInputStream input = new FileInputStream(new File(dir+"Desert.jpg"));
byte [] image = new byte[input.available()];
input.read(image);
org.apache.axis.client.Service service = new org.apache.axis.client.Service();
org.apache.axis.client.Call call = (Call) service.createCall();
call.setTargetEndpointAddress(url);
javax.xml.namespace.QName qn = new javax.xml.namespace.QName("BinaryServer","saveImage");
call.setOperationName(qn);
call.addParameter("arg0", org.apache.axis.encoding.XMLType.XSD_STRING, javax.xml.rpc.ParameterMode.IN);
call.addParameter("arg1", org.apache.axis.encoding.XMLType.SOAP_BASE64BINARY, javax.xml.rpc.ParameterMode.IN);
call.setReturnType(org.apache.axis.encoding.XMLType.AXIS_VOID);
Object[] args1 = new Object[]{"desert1.jpg",image};
call.invoke(args1);
input.close();
}
} 运行测试,OK。确实上传成功。
发表评论
-
log4j配置输出hibernate执行的SQL和相应参数以及打印结果
2017-09-01 20:26 5614hibernate的配置文件:hibernate.prope ... -
使用Gson将对象类转成Json对象时出现\u003d的问题
2015-11-03 17:07 4279Gson将对象转成Json对象的方法 ... -
maven pom.xml加载不同properties配置
2015-10-30 11:52 12971.pom.xml =================== ... -
剖析淘宝TDDL(TAOBAO DISTRIBUTE DATA LAYER)
2015-10-19 19:03 744剖析淘宝 TDDL ( TAOBAO DISTRIBUTE ... -
"org.eclipse.wst.validation" has been removed
2015-10-15 11:22 1188从SVN服务器上导出maven工程遇到的问题," ... -
mysql/Java服务端对emoji的支持
2015-09-19 10:43 876前言: 最近开发的iOS项目因为需要用户文本的存储,自然就 ... -
Ehcache配置详解及CacheManager使用
2015-04-09 14:40 2087<?xml version="1.0&quo ... -
详解 Too many open files
2014-09-07 00:25 1247运行在Linux系统上的Java程序可能会出现" ... -
Could not find jar tool executable问题解决
2014-03-21 00:28 1272eclipse 中,在用PROGUARD生成混淆包Obfus ... -
eclipse不小心删除了代码文件的一个解决办法
2013-08-15 17:02 1332平时用eclipse写代码,不小心删除了一个文件,一般就找不回 ... -
关于ProGuard的学习了解
2012-09-20 09:51 1479在Android项目中用到JNI, ... -
Java实现MD5加密
2012-08-23 23:32 1100import java.io.UnsupportedEnco ... -
叫你怎么下载开源代码,例如:hg clone https://gtalksms.googlecode.com/hg/ gtalksms .
2012-07-04 17:29 1662svn的就不说了,git的也不说了,这些都是常用的,直说hg ... -
Java NIO与IO 区别和比较
2012-06-17 11:20 1518本文将通过一些实例来 ... -
jar打包出现java.io.IOException: invalid header field 解决方案
2012-06-10 12:10 4873执行: D:\aaa\DMDemo>jar -cvfm ... -
java内存原型分析-基本知识
2012-06-06 13:53 791java虚拟机内存原型寄存 ... -
java InputStream读取数据问题
2012-05-21 15:45 10031. 关于InputStream.read() 在从数 ... -
java读取文件夹下的所有文件夹和文件
2012-05-15 10:46 1197package com.borland.samples.wel ... -
Java中yield(),sleep()以及wait()的区别
2012-05-08 11:03 771往往混淆了这三个函数的使用。 从操作系统的角度讲,os会维护一 ... -
Netbeans 7和Subversion(svn) 1.7
2012-05-02 23:07 2089Netbeans的SVN插件,最后一次更新是07年了,所以它根 ...
相关推荐
1. **Axis1.4 JAR文件**:这是核心库,包含了处理SOAP消息、WSDL(Web服务描述语言)解析、服务部署等功能的类和接口。 2. **Axis1.4工具**:这些是命令行工具,如wsdl2java和java2wsdl,用于将Java类转换为WSDL或...
- **步骤2:启动Axis** - 运行Axis1.4的wsdl2java工具,输入WSDL文件的URL或本地路径,该工具会自动生成Java客户端代码。 - **步骤3:构建客户端代码** - 编译生成的Java源代码,然后在你的项目中引入这些类,这些...
2. **集成 Axis1.4**:首先,你需要在Spring Boot的`pom.xml`文件中添加Axis1.4的依赖。这通常意味着你需要手动添加Axis的库,因为Spring Boot默认并不包含对Axis的支持。你需要找到Axis1.4的Maven坐标,并在`...
"axis-1_4"很可能包含了整个Axis1.4的源代码或二进制文件,包括JAR包、文档、示例和必要的配置文件等。 使用Axis1.4的一般步骤如下: 1. **安装和配置**:解压缩轴的二进制包,将所需的JAR文件添加到项目的类路径...
5. **客户端生成**:同样,Axis1.4可以从WSDL文件自动生成Java客户端代码,这使得开发者可以快速创建与Web服务交互的客户端应用程序。 6. **模块和Policy**:Axis1.4支持模块化架构,允许添加额外的功能或扩展。...
了解并熟练使用Axis1.4和Axis2的相关jar文件,对于开发和维护Web服务至关重要。这不仅可以帮助开发者快速构建服务,还能确保与现有系统和其他Web服务的互操作性。在实际项目中,应根据具体需求选择适合的版本,同时...
当你已经有了服务端代码,例如Java类,你可以使用Axis1.4来生成相应的WSDL文件。首先,确保你的项目已经包含了Axis1.4的库,即axis1.4.jar。在Eclipse中,右键点击项目,选择"属性" -> "Java构建路径" -> "库",...
1. **添加依赖**:首先,我们需要在`pom.xml`文件中添加Axis1.4的依赖。这可以通过在Maven仓库中查找相应的坐标并将其添加到依赖管理部分完成。 2. **创建Web服务**:编写一个Java类,该类将作为Web服务的实现。这...
在压缩包文件名称列表中,"axis-bin-1_4.tar.gz"很可能包含了Axis1.4的完整二进制分发包,包括运行和部署Web服务所需的全部文件。而单独的"mail.jar"和"activation.jar"文件,通常需要与Axis1.4一起部署,以提供完整...
以下将详细讲解如何在Spring Boot应用中集成Axis1.4以及使用wsdd文件发布Web服务。 首先,了解 Axis1.4:Axis 是一个开源的Java Web服务框架,它允许开发者快速地创建和部署Web服务。Axis1.4是该框架的一个较老版本...
首先,你需要下载 Axis1.4 的二进制包,通常是 `axis-bin-1_4`,从中获取所需的 JAR 包。这些 JAR 包包含了 Axis 框架的核心组件和依赖库。确保将这些 JAR 文件复制到你的 Eclipse Web 项目的 `lib` 目录下,以便于...
4. **部署服务**:使用`wsdl2java`生成的服务骨架类,将服务部署到Axis1.4服务器上,这通常涉及修改服务配置文件(如`services.xml`)。 5. **测试服务**:创建一个客户端测试程序,使用Axis1.4的`java2wsdl`工具...
2. **使用wsdl2java工具**: AXIS1.4提供了一个名为`wsdl2java`的命令行工具,可以将WSDL(Web Service Description Language)文件转换为Java源代码。WSDL文件描述了Web服务的接口,包括方法名、参数和返回类型。 3...
二、安装与配置Apache Axis1.4 1. 下载Apache Axis1.4的最新版本,解压缩到本地文件夹。 2. 配置环境变量,将Axis1.4的bin目录添加到PATH环境变量中。 3. 验证安装,运行`axis`命令,如果出现Axis的欢迎界面,说明...
在 Axis1.4 开发 Web 服务(Web Service)时,使用正确的库文件至关重要。Axis 是 Apache 组织提供的一款开源工具,它主要用于构建和部署 SOAP(Simple Object Access Protocol)Web 服务。以下是对给定文件中每个 ...
- 下载 Apache Axis 1.4 的二进制版本 `axis-1_4_bin.zip`。 - 解压到 `D:\Tomcat5.5\webapps` 目录下,解压后的目录结构为 `axis-1_4_bin\webapps\axis`。 2. **复制 Axis 文件夹**: - 将解压后的 `axis` ...
二、Apache Axis1.4的安装与配置 1. **下载**:尽管官网不再提供下载,但可以从第三方存储库或历史版本仓库获取Apache Axis1.4的压缩包。 2. **解压**:将下载的压缩包解压到指定目录,例如`C:\axis1.4`。 3. **...
【标题】"axis1.4 上传数据示例"是一个基于Axis1.4框架的Web服务客户端和服务器端实现,用于演示如何通过编程方式上传数据。Axis1.4是Apache组织开发的一个开源SOAP(简单对象访问协议)工具包,它允许开发者创建、...
总的来说,Axis1.4是Web服务开发的一个强大工具,通过本教程提供的文件和说明,开发者可以快速掌握Web服务的开发流程,无论是在服务端发布还是客户端调用,都能得心应手。在深入学习和实践过程中,还会涉及到WS-...
在Axis 1.4中,这通常通过WSDL文件完成,WSDL描述了服务的地址、操作、输入和输出消息的格式等信息。 在客户端,开发者需要生成针对服务的代理类,这些类可以像调用本地方法一样调用Web服务。Axis 1.4提供了wsdl2...