之前的一篇文章是关于开发和部署axis2服务的一个简单例子,由于有的开发者需要在服务中访问数据库,所以我在这里开发一个访问oracle数据库的axis2服务。
具体的axis2服务开发和部署步骤见前面的文章:[url]http://panpan.blog.51cto.com/489034/119204 [/url] 这里不再详述。
新建工程:TestJDBCAxis,在src目录下新建包org.company,在包下新建DB类,这个类就是我要包装成服务的代码。
工程需要加入ojdbc14.jar到build path下。
DB.java代码如下:
package org.company;
import java.sql.*;
public class DB {
private String sConnStr = "";
final static String sDBDriver = "oracle.jdbc.driver.OracleDriver";
public DB()
{
sConnStr = "jdbc:oracle:thin:@202.117.118.45:1521:repace";
}
public DB(String ip,String serviceName)
{
sConnStr = "jdbc:oracle:thin:@"+ip+":1521:"+serviceName;
}
public DB(String ip,String port,String serviceName)
{
sConnStr = "jdbc:oracle:thin:@"+ip+":"+port+":"+serviceName;
}
public java.sql.Connection connectDbByThin()
{
java.sql.Connection conn=null;
try
{
Class.forName(sDBDriver);
conn = DriverManager.getConnection(sConnStr,"RCRegistry","repace");
}
catch(Exception e)
{
System.out.println("ERROR:"+e.getMessage());
}
return conn;
}
public java.sql.Connection connectDbByThin(String userId,String password)
{
java.sql.Connection conn=null;
try
{
Class.forName(sDBDriver);
conn = DriverManager.getConnection(sConnStr,userId,password);
}
catch(Exception e)
{
System.out.println("ERROR:"+e.getMessage());
}
return conn;
}
public boolean save(String serviceid) {
DB myDB = new DB();
java.sql.Connection conn = myDB.connectDbByThin();
System.out.println(conn);
//创建statement对象
Statement stmt;
try {
stmt = conn.createStatement();
String sql = "insert into SERVICE(\"SERVICEID\") VALUES('" + serviceid + "')";
stmt.executeQuery(sql);
return true;
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
return false;
}
}
/*
public static void main(String[] args) throws SQLException {
DB myDB = new DB();
java.sql.Connection conn = myDB.connectDbByThin();
System.out.println(conn);
//创建statement对象
Statement stmt = conn.createStatement();
String sql = "insert into SERVICE(\"SERVICEID\") VALUES('kkkkkkk1')";
stmt.executeQuery(sql); //调用并执行SQL语句
//rs.next();
//rs.next();
//System.out.println(rs.getString(2));
}
*/
}
连接字符串sConnStr = "jdbc:oracle:thin:@202.117.118.45:1521:repace";中,202.117.118.45是oracle数据库服务器的地址,可以是远程或者本地,repace是一个数据库名。
getConnection(sConnStr,"RCRegistry","repace")中,RCRegistry是数据库名,repace是数据库密码。
发布该工程到axis2服务,服务名为TestJDBCAxis_service.aar,在axis2的WEB-INF\services下,在网址中输入:[url]http://localhost:8080/axis2/services/listServices[/url] 可以看到刚部署好的服务。
编写客户端访问代码,同上一篇文章,TestDB.java代码如下:
package org.company;
import javax.xml.namespace.QName;
import org.apache.axis2.AxisFault;
import org.apache.axis2.addressing.EndpointReference;
import org.apache.axis2.client.Options;
import org.apache.axis2.rpc.client.RPCServiceClient;
public class TestDB {
private RPCServiceClient serviceClient;
private Options options;
private EndpointReference targetEPR;
public TestDB(String endpoint) throws AxisFault {
serviceClient = new RPCServiceClient();
options = serviceClient.getOptions();
targetEPR = new EndpointReference(endpoint);
options.setTo(targetEPR);
}
public Object[] invokeOp(String targetNamespace, String opName,
Object[] opArgs, Class<?>[] opReturnType) throws AxisFault,
ClassNotFoundException {
// 设定操作的名称
QName opQName = new QName(targetNamespace, opName);
// 设定返回值
//Class<?>[] opReturn = new Class[] { opReturnType };
// 操作需要传入的参数已经在参数中给定,这里直接传入方法中调用
return serviceClient.invokeBlocking(opQName, opArgs, opReturnType);
}
/**
* @param args
* @throws AxisFault
* @throws ClassNotFoundException
*/
public static void main(String[] args) throws AxisFault, ClassNotFoundException {
// TODO Auto-generated method stub
final String endPointReference = "http://localhost:8080/axis2/services/TestJDBCAxisService";
final String targetNamespace = "http://company.org";
TestDB client = new TestDB(endPointReference);
String opName = "save";
Object[] opArgs = new Object[]{"kkkkkkkk11"};
Class<?>[] opReturnType = new Class[]{boolean[].class};
Object[] response = client.invokeOp(targetNamespace, opName, opArgs, opReturnType);
System.out.println(((boolean[])response[0])[0]);
}
}
运行该代码,可以发现出现错误,在tomcat后台打印出:
ERROR:Class Not found : oracle.jdbc.driver.OracleDriver
这个错误应该引起我们的注意,因为很多程序开发人员写web service访问数据库经常遇到这样的错误,然后花费很长时间也找不到错误的原因。出现这个错误是因为我们没有把ojdbc14.jar放入到axis2下的WEB-INF\lib下导致的。
把ojdbc14.jar放入到到axis2下的WEB-INF\lib下,再次运行这个代码,发现运行成功。
分享到:
相关推荐
抛出无法找到主类:org.apache.axis.wsdl.WSDL2Java(Throws Could not find main class: org.apache.axis.wsdl.WSDL2Java)。 添加本文的jar包压缩包解压出来的所有jar包到当前使用的java.exe 命令的lib目录下的ext...
Apache Axis2 是一个著名的Web服务框架,用于创建和部署SOAP(简单对象访问协议)和RESTful服务。在Java世界中,Axis2提供了高效且灵活的处理机制,支持多种协议和服务模型。Eclipse 是一个广泛使用的集成开发环境...
在开发基于Axis2的Web服务时,可能会遇到各种错误和异常,其中之一就是与`org.apache.axis2.util.JavaUtils.callStackToString`相关的问题。这个问题通常出现在Axis2尝试获取并打印堆栈跟踪信息时。 `...
3. AXIS2:Apache AXIS2是Java平台上用于构建和使用Web服务的一个高性能、轻量级的框架。 在开始之前,请确保你的开发环境已安装了JRE和JDK1.8。JRE是Java运行时环境,而JDK则包含编译器和其他开发工具,对于开发...
<Call Stack = DEBUG_FRAME = org.apache.axis2.util.JavaUtils.callStackToString(JavaUtils.java:564) DEBUG_FRAME = org.apache.axis2.description.ParameterIncludeImpl.debugParameterAdd(ParameterIncludeImpl...
at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder. java:169) at org.apache.axis.encoding.DeserializationContextImpl.endElement(Deseri alizationContextImpl.java:1015) at ...
如果我们在使用 Axis2 时抛出了 org.apache.axis2.AxisFault: Class org.apache.axis2.engine.DefaultObjectSupplier can not access a member of class org.apache.lucene.analysis.Analyzer with modifiers ...
Axis是Apache组织开发的一款开源Web服务框架,主要用于构建和部署SOAP(Simple Object Access Protocol)服务。Axis分为两个主要版本:Axis1.x和Axis2.x,它们都是Java平台上的Web服务实现,但在设计和功能上有所...
1.7.9.zip_axis2_axis2-idea-plugin_idea导入axis2_"提到了几个关键元素,分别是"axis2"、"idea-plugin"和"idea导入axis2",这暗示了这个压缩包是用于在IntelliJ IDEA这款集成开发环境(IDE)中支持Axis2服务的插件...
### Eclipse 下开发 Axis2 Web 服务的详细指南 #### 一、环境搭建与配置 **1.1 环境需求** 为了确保能够顺利地在 Eclipse 中开发 Axis2 Web 服务,首先需要准备好以下环境: - **开发工具**: Eclipse IDE(推荐...
Axis2是Apache软件基金会开发的一个开放源码的Web服务引擎,它是基于SOAP(简单对象访问协议)和WS-*(Web服务扩展)标准的。标题中的"axis2-1.6.1.rar"指的是Axis2的1.6.1版本的压缩包文件,通常包含了该版本的所有...
标题中的“解决axis2-CodegenWizardPluginBUG- java.lang.reflect.InvocationTargetException”指的是在使用Apache Axis2的CodegenWizardPlugin工具时遇到的一个错误。这个工具是Axis2框架的一部分,用于自动生成...
### ant开发axis2知识点 #### 一、Ant与Axis2集成概述 - **Ant简介**:Apache Ant是一款Java编写的构建工具,它提供了一种基于XML格式定义项目构建过程的方法,能够实现项目的编译、测试、部署等操作的自动化。 - ...
AXIS2是Apache软件基金会开发的一个开放源代码的Web服务框架,它主要用于构建和部署SOAP(Simple Object Access Protocol)和RESTful(Representational State Transfer)风格的Web服务。这个框架以其高效、灵活和可...
在C#编程中,Oracle数据库的访问和数据可视化是常见的任务。本文将深入探讨如何使用C#连接Oracle数据库,查询数据,并将结果在Chart控件上以折线图的形式展示出来。这涉及到C#的数据访问技术、Oracle客户端的安装与...
在IT行业中,Axis2是Apache软件基金会开发的一个用于构建Web服务和Web服务客户端的框架,主要基于Java语言。本文将详细讲解如何使用Axis2来发布Web服务以及如何生成客户端代码来调用这些服务。 首先,让我们了解...
### Axis2 WebService 开发指南知识点详述 #### 一、Axis2 WebService 技术概览 **Axis2** 是Apache的一个开源项目,旨在提供一个高性能、灵活且可扩展的Web服务框架,用于实现基于SOAP协议的Web服务。与前代产品*...
Eclipse Java Axis2 是一个基于Java的Web服务开发框架,由Apache软件基金会开发。它主要用于构建和部署SOAP(简单对象访问协议)Web服务。在Java环境中,Eclipse作为流行的集成开发环境(IDE),提供了强大的支持来...
Apache Axis2是著名的开源Web服务框架,用于构建和部署高效且灵活的Web服务。这个框架是基于Axis1的升级版,提供了许多改进和新特性,包括更好的性能、模块化架构和增强的MIME支持。标题提到的“axis2-1.5.1-bin.zip...
axis2-1.6.2.zip, windows axis2工具,根据 WSDL生成java文件。 1、axis2客户端下载地址:http://mirror.esocc.com/apache//axis/axis2/java/core/1.6.2/axis2-1.6.2-bin.zip; 2、下载解压在D:\Work_Program_...