`
daizh868
  • 浏览: 20316 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Java中使用Jolt访问Tuxedo服务 – Tomcat环境部署测试

阅读更多
Java中使用Jolt访问Tuxedo服务 – Tomcat环境部署测试


最近在学习基于Tuxedo的系统架构,网上讨论最多的,比较流行的3层架构是基于Weglogic+Tuxedo+DB的模式,关于这类模式的文章也比较多,可以参见链接:
http://blog.csdn.net/liwei_cmg/article/details/769150

一般来说,Java可用使用3种联机方式访问Tuxedo的服务:
1. WTC          用于Weblogic与Tuxedo的互访,可以实现双向的调用。
2. JOLT          用于Tomcat, Weblogic, Websphere 和其他应用服务器访问Tuxedo,为单向调用。
3. CORBA        (网上有介绍,自己没实践过)

作为学习了解Java如何通过Jolt调用Tuxedo服务,以及如何使用Jolt的链接池技术,本文没有使用Weblogic作为应用服务器,而是直接在Tomcat应用服务器中配置部署了Html+ Servlet来调用Tuxedo的服务。

实现环境:
服务端:       GUN/Linux 2.6.32   + Tuxedo 11gR1
应用服务器:   Apache-tomcat-6.0.29 for Windows
开发工具:     Myeclipse 8.5

实现步骤如下:
1)准备Tuxedo服务程序
2)修改配置ubbconfig
3)修改Jolt访问服务的jrepository文件
4)启动Tuxedo服务
          5)创建Web project
         6)准备Servlet 和 html程序
          7)准备Jolt 连接池配置文件
          8)配置web.xml文件
          9)部署Web项目simpapp
         10)Linux服务器防火墙设置

1. 准备Tuxedo服务程序

这里我们还是用examples中的simpserv.c程序,以及TOUPPER服务,比较容易。
//simpserv.c
#include <stdio.h>
#include <ctype.h>
#include <atmi.h>     /* TUXEDO Header File */
#include <userlog.h> /* TUXEDO Header File */

#if defined(__STDC__) || defined(__cplusplus)
tpsvrinit(int argc, char *argv[])
#else
tpsvrinit(argc, argv)
int argc;
char **argv;
#endif
{
/* Some compilers warn if argc and argv aren't used. */
argc = argc;
argv = argv;

/* userlog writes to the central TUXEDO message log */
userlog("Welcome to the simple server 2");
return(0);
}

#ifdef __cplusplus
extern "C"
#endif
void
#if defined(__STDC__) || defined(__cplusplus)
TOUPPER(TPSVCINFO *rqst)
#else
TOUPPER(rqst)
TPSVCINFO *rqst;
#endif
{

int i;

for(i = 0; i < rqst->len-1; i++)
rqst->data[i] = toupper(rqst->data[i]);

/* Return the transformed buffer to the requestor. */
tpreturn(TPSUCCESS, 0, rqst->data, 0L, 0);
}

编译服务程序,
buildserver -f simpserv.c -o simpserv -s TOUPPER

2.修改配置ubbconfig, 加入如下的组和服务

*GROUPS
JSLGRP          LMID=simpapp1   GRPNO=101             
JREPGRP         LMID=simpapp1   GRPNO=102

*SERVERS 
JSL             SRVGRP=JSLGRP SRVID=1
                CLOPT="-A -- -n //192.168.1.100:8850 -m 5 -M 5 -x 10"
JREPSVR         SRVGRP=JREPGRP SRVID=1
                CLOPT="-A -- -W –P /home/tuxedo/udataobj/jolt/repository/jrepository"

JSL 为Java通过Jolt访问Tuxedo的监听服务,
//192.168.1.100:8850为Tuxedo服务器的地址和端口,在Java客户端要用。

(注意:Jolt不通过WSL来访问Tuxedo服务。)

编译ubbconfig配置文件,
    tmloadcf –y ubbconfig

3.修改Jolt访问服务的jrepository文件,加入TOUPPER服务的定义如下(也可以采用RE.html配置):

add SVC/TOUPPER:vs=1:ex=1:bt=STRING:\
        bp:pn=STRING:pt=string:pf=167772161:pa=rw:ep:

4.启动Tuxedo服务

服务端配置完毕。


5. 在Myeclipse下创建Web project,项目名为simpapp,位于 d:\worksapce\simpapp
创建新的 src包,  my.jolt.servlet,位于d:\worksapce\simpapp\src

6.准备Servlet 和 html程序
程序来自Tuxedo的examples,调试的时候进行了修改。

网页程序 simp.html,  d:\worksapce\simpapp\WebRoot\simp.html

<html>
<head>
<title>Jolt SimpApp Example</title>
</head>
<!--
-- Copyright (c) 1998-99 BEA Systems, Inc.  All rights reserved
--
-- THIS IS SOURCE CODE PUBLISHED FOR DEMONSTRATION PURPOSES
-->

<body bgcolor=#FFFFFF>
<font face="Helvetica">

<h1>
<font color=#DB1260>
Jolt SimpApp Example
</font>
</h1>

<blockquote>

This examples demonstrates how a Java HTTP Servlet running in the
Weblogic Server services a POST request from a
<font face="Courier New" color=#00aaaa size=-1>&lt;FORM&gt;</font> in
this HTML file. The <font face="Courier New" size=-1>simpapp</font>
servlet invokes a service on the BEA TUXEDO Server that converts the
text you enter here into uppercase. The result is posted back inside
a servlet-generated html file.

<form name="simpapp" action="/simpapp/ simpappSrv " method="post">
<table bgcolor=#dddddd border=1>
<tr>
<td>Type some text here and click the Post button:
<!-- Note that "STRING" must be in upper case! -->
<input type="text" name="STRING"></td>
</tr>

<tr>
<td align=center><input type="submit" value="Post!">
</td></tr>
</table>
</form>

</blockquote>

<p>
Click here for <A HREF=PoolList.jhtml>session pools statistics</A>
</font>
</body>
</html>

原程序中一行如下,调试的时候报错,删掉了。
    <input type="hidden" name="SVCNAME" value="TOUPPER">
错误如下:
    严重: Servlet.service() for servlet SimpAppServlet threw exception
    java.lang.NoSuchFieldError: SVCNAME

Servlet程序,SimpAppServlet.java,位于  d:\worksapce\simpapp\src\my\jolt\servlet

package my.jolt.servlet;

import bea.jolt.pool.servlet.*;
import bea.jolt.pool.ApplicationException;
import bea.jolt.pool.SessionPoolException;
import bea.jolt.pool.ServiceException;

import java.util.Properties;
import java.util.Hashtable;
import java.io.IOException;
import javax.servlet.*;
import javax.servlet.http.*;

/**
* This example demonstrates how a Servlet may connect to Tuxedo
* and call upon one of its services; it should be invoked from the
* <i>simpapp.html</i> file. The servlet creates a session pool
* manager at initialization, which is used to obtain a session when the
* <tt>doPost()</tt> method is invoked. This session is used to connect to a service
* in Tuxedo with a name described by the posted "SVCNAME" argument. In this
* example the service is called "TOUPPER", which transposes the posted
* "STRING" argument text into uppercase, and returns the result. This is
* returned to the client browser within some generated HTML.
* THIS IS SOURCE CODE PUBLISHED FOR DEMONSTRATION PURPOSES
*
* @author Copyright (c) 1999 BEA Systems, Inc.  All rights reserved.
*/
public class SimpAppServlet extends HttpServlet {

  /**
   * Private variable to hold the pool manager object.
   */
  private ServletSessionPoolManager b_mgr;
 
  /**
   * Initializes the servlet.  The session pool manager and the
   * simpapp session pool is established here.  The properties of
   * the session pool is specified through an external property
   * file whose path comes from the servlet initial parameter "properties".
   *
   * @param config            Servlet configuration
   * @exception               ServletException if the servlet fails
   */
  public void init(ServletConfig config) throws ServletException {
    super.init(config);
   
    try {
      // Create a session pool and get the session pool manager through
      // a property file.
      String path = config.getServletContext().getRealPath("/") +
    "simpapp.properties";
      Properties prop = ServletPoolManagerConfig.load(path);
      if (prop == null)
throw new ServletException(path + " not found");
      ServletPoolManagerConfig.startup(prop);
     
      b_mgr = ServletPoolManagerConfig.getSessionPoolManager();
    }
    catch (Exception e) {
      throw new ServletException(e.toString());
    }
  }
 
  /**
   * Destroys this servlet. The ServletSessionPoolManager
   * resource is deallocated.
   */
  public void destroy() {
    b_mgr = null;
  }
 
  /**
   * Implements the HttpServlet <tt>doPost()</tt> method.
   * This method expects POSTed arguments for:
   * <dl>
   * <dt>"SVCNAME"<dd>The name of the service to be invoked in Tuxedo.
   * <dt>"STRING"<dd>The text to be transposed to uppercase.
   * </dl>
   *
   * <p> See the provided simpapp.html for the HTML form
   * used to submit the data.
   */
  public void doPost(HttpServletRequest req, HttpServletResponse resp)
       throws ServletException, IOException
  {
    ServletResult result;
    ServletOutputStream out = resp.getOutputStream();
   
    out.println("<html><head><title>Jolt SimpApp Example Response</title></head>");
    out.println("<body><font face=\"Helvetica\">" +
                "<h2><font color=#DB1260>" +
                "This is the response from the SimpAppServlet:" +
                "</font></h2>");
    // Get the "simpapp" session pool
    ServletSessionPool session = (ServletSessionPool)
      b_mgr.getSessionPool("simpapp");
    if (session == null) {
      out.println("The servlet failed to obtain a SessionPool for simpapp. "+
                  "<br>"+
                  "Possibly the Tuxedo server is not running, "+
                  "or there is a configuration problem."+
                  "</font></body></html>");
      out.close();
      return;
    }
   
    //String svcnm[] = req.getParameterValues("SVCNAME");
   

    // Invoke a service and get the result.  Process the
    // template with input and result if there is no error.
    try {
      //result = session.call(svcnm[0], req);
Result = session.call("TOUPPER");
     
      // No error; present the result page.
      out.println("The simpapp sevice was successfully called, and "+
                  "responded with the output string: ");
      out.println("<p><center><font size=+1><b>"+
                  result.getValue("STRING", "")+
                  "</b></font></center><p><hr width=80%>");
    }
    catch (SessionPoolException e) {
      // All sessions are busy.
      out.println("Your request cannot be completed at this moment.\n"+
                  "<p>Diagnostic Message is: "+e.getMessage()+"<p>\n"+
                  "<font color=blue>Possible reasons:<br></font><ul>\n"+
                  "<li>No sessions are available\n"+
                  "<li>The session pool is suspended\n"+
                  "<li>The session pool is shutdown</ul>\n"+
                  "<p>Please resubmit your request later.");
    }
    catch (ServiceException e) {
      // There is a Service Exception.
      out.println("<dl><dt>Service exception</dt>"+
                  "<dd>Error message:"+e.getMessage()+
                  "<p>Error number:"+e.getErrno()+
                  "</dl>");
    }
    catch (ApplicationException e) {
      // There is an application error.
      result = (ServletResult) e.getResult();
     
      out.println("<h3>Application error</h3>\n"+
                  "<p>Application code is "+result.getApplicationCode());
    }
    catch (Exception e) {
      out.println("<h3>Unexpected exception</h3>"+
                  "<p>Exception is "+
                  "<br><font face=\"Courier New\" size=-1"+e+"</font>");
    }
   
    out.println("</font></body></html>\n");
    out.close();
  }
 
  /**
   * Implements the <tt>doGet</tt> HttpServlet method. This simply
   * invokes the <tt>doPost</tt> method.
   */
  public void doGet(HttpServletRequest req, HttpServletResponse resp)
       throws ServletException, IOException
  {
    doPost(req, resp);
  }
}


注释下面的代码,
//String svcnm[] = req.getParameterValues("SVCNAME");
         //result = session.call(svcnm[0], req);

加入如下代码,直接调用TOUPPER 服务,
Result = session.call("TOUPPER",req);


7.准备Jolt 连接池配置文件, simpapp.properties

#simpapp
#Fri Apr 16 00:43:30 PDT 1999
poolname=simpapp
appaddrlist=//192.168.1.100:8500
failoverlist=//192.168.1.100:8500
minpoolsize=1
maxpoolsize=3
userrole=tester
apppassword=appPass
username=guest
userpassword=myPass

将配置文件放在D:\tomcat\webapps\simpapp\simpapp.properties


8.配置web.xml文件,加入SimpAppServlet的配置
此文件在 D:\tomcat\webapps\simpapp\WebRoot\WEB-INF\web.xml,

<servlet>
    <description>ddddddd</description>
    <display-name> SimpAppServlet </display-name>
    <servlet-name> SimpAppServlet </servlet-name>
    <servlet-class>my.jolt.servlet.SimpAppServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name> SimpAppServlet </servlet-name>
    <url-pattern>/simpappSrv</url-pattern>
</servlet-mapping>


9.启动Tomcat, 将Web项目simpapp部署到Tomcat, 测试通过。


10.如果客户,服务在两台不同的机器上,这个例子中就用了Windows和Linux两台机器。出现调用失败的情况,可能是Linux的防火墙需要设置,将 8500-8599的端口开放就可以了。也可以只开发8500之后的5-10个端口也是可以的,设置如下:

以ROOT身份登录Linux,查看 service iptables 的状态,如果开启,要进行路由设置。
      [tuxedo@dcard ~]$ service iptables status

用VI编辑配置文件: 
      [tuxedo@dcard ~]$ vi /etc/sysconfig/iptables
加入    
         -A INPUT -p tcp -m tcp --dport 8850:8899 -j ACCEPT
     或
         -A INPUT -p tcp -m tcp --dport 8850:8859 -j ACCEPT

在命令行下,重新启动 iptables服务就可以了。
      [tuxedo@dcard ~]$ Service iptables restart
分享到:
评论

相关推荐

    Java通过Jolt调用Tuxedo服务[定义].pdf

    Java 通过 Jolt 调用 Tuxedo 服务是指在 Java 应用程序中使用 Jolt 组件来调用 Tuxedo 服务的一种方式。Tuxedo 是一个由 Oracle 公司开发的分布式应用服务器,用于构建高性能、可扩展的企业级应用程序。Jolt 是 ...

    Java通过Jolt调用Tuxedo服务

    Jolt 包含一组 Java 类库,使得开发者能够在 Java 代码中调用 Tuxedo 的服务,而无需编写 C 语言的客户端程序。 调用 Tuxedo 服务的基本步骤如下: 1. **准备 Tuxedo 服务端代码**:首先需要编写 Tuxedo 的服务...

    Java通过Jolt调用Tuxedo服务[参考].pdf

    本文主要讲解如何使用Jolt库来调用Tuxedo服务,以实现Java与Tuxedo的集成。 一、Jolt调用Tuxedo服务的基本流程 1. **准备Tuxedo服务端代码**: Tuxedo服务的实现通常涉及C或C++编写的服务程序,这些程序通过...

    JAVA通过Jolt调用Tuxedo服务参考文档@xutt

    2. Jolt:是一种基于 JAVA 的 Tuxedo 访问接口,允许 JAVA 应用程序访问 Tuxedo 服务。 3. ubbconfig:是 Tuxedo 应用程序的配置文件,定义了应用程序的资源、域、服务器、机器等信息。 4. simpapp:是一个 Tuxedo ...

    java_jolt_tuxedo.rar_TUXEDO_java jolt tuxedo

    Java通过JOLT调用Tuxedo服务是一种在分布式系统中实现跨语言通信的技术。Tuxedo是一款由Oracle公司开发的事务处理监控系统(TPM),主要用于构建高性能、高可用性的C/S架构应用。而JOLT(Java Object-to-LT)是Java...

    用JAVA调用Tuxedo服务必须的JAR包

    Jolt是一个Java接口,它提供了连接到Tuxedo服务的桥梁,使得Java开发者能够直接在Java应用程序中调用Tuxedo的服务。Jolt包含了三部分核心的JAR包,即jolt.jar、joltjse.jar和joltwls.jar。 1. **jolt.jar**:这是...

    tuxedo+jolt

    - 下面是一个简单的示例,展示如何在 Java 中使用 Jolt 调用 Tuxedo 服务: ```java import com.bea.jolt.Jolt; public class TuxedoServiceCaller { public static void main(String[] args) { // 假设这...

    通过wtc、jolt进行tuxedo与weblogic通信开发

    JOLT是另一种连接Tuxedo和WebLogic的方式,它提供了一个Java API,允许Java应用程序直接访问Tuxedo服务。配置JOLT通常包括以下步骤: 1. 安装JOLT库:确保WebLogic Server和Tuxedo的JOLT库已正确安装。 2. 配置...

    jolt WTC 调用TUXEDO jar包

    在Java环境中,通过使用Tuxedo的Java API,开发者可以将Java应用与Tuxedo服务进行集成。 “jolt WTC 调用TUXEDO jar包”这个标题表明我们关注的是如何使用Jolt来调用Tuxedo服务。在这个场景中,"WTC"可能是指World ...

    TUXEDO JOLT配置与编程简介

    BEA Tuxedo JOLT(Java to Tuxedo Open Link Technology)是一种技术,它允许Java应用程序与BEA Tuxedo应用服务进行交互。JOLT简化了Java与Tuxedo之间的通信,使得基于Java的系统能够无缝调用Tuxedo的服务。本文将...

    tuxedo jolt配置与编程简介

    总的来说,Tuxedo JOLT配置涉及多个步骤,包括环境准备、服务定义加载和Java客户端的编程。理解并正确应用这些步骤是成功集成Java应用与Tuxedo服务的关键。通过JOLT,开发者可以利用Java的灵活性和Tuxedo的强大功能...

    JAVA与TUXEDO环境集成.pdf

    因此,如果只需要Java应用访问TUXEDO服务,而不需要TUXEDO访问Java应用,可以选择JOLT。 2. **WTC**:WTC提供了双向解决方案,支持Java应用与TUXEDO服务之间的双向交互,并且在架构层面上实现了事务和安全的集成。...

    tuxedo java客户端 jolt

    服务端配置:http://blog.csdn.net/lu476036355/article/details/13505123 代码包含两个示例: 1、/simpapp 2、/servlet/client

    Tuxedo jolt 配置及使用

    在实际应用中,Tuxedo Jolt的配置和使用需要结合具体的业务场景和系统架构,以确保测试的准确性和有效性。此外,为了获取更精确的性能数据,可能还需要与其他性能监控工具(如Oracle Enterprise Manager)配合使用,...

    TUXEDO JOLT的配置与编程简介

    BEA JOLT系统提供了必要的环境和支持,使得开发者可以在Java环境中调用TUXEDO服务。 ##### 2. 创建BEA TUXEDO应用服务 创建一个BEA TUXEDO应用服务是整个过程中非常关键的一步。这涉及到定义服务的行为、输入输出...

    02.Weblogic通过Jolt pool调用Tuxedo服务参考文档@xutt.docx

    Jolt Pool是Weblogic中用于连接到Tuxedo服务的一种机制,它允许Weblogic客户端应用程序通过Jolt协议与Tuxedo服务进行通信。\n\n一、环境配置\n\n在上述环境中,服务端运行在Asianux release 2.0(Linux)上,使用...

    Tuxedo协议开发jolt.jar

    总之,"Tuxedo协议开发jolt.jar"涉及的知识点包括:Tuxedo系统架构、Java Tuxedo接口、Jolt Utility工具集、事务管理、服务定义与调用、配置文件理解、系统优化以及Tuxedo管理工具的使用。深入理解和熟练掌握这些...

    通过wtc、jolt进行tuxedo与weblogic通信开发.pdf

    JOLT(Java Object to Tuxedo Translator)是一个Java库,它允许Java应用程序(如WebLogic中的EJB)直接与Tuxedo服务进行交互。JOLT提供了一个接口,使得Java开发者可以调用Tuxedo的服务,而无需直接操作Tuxedo API...

Global site tag (gtag.js) - Google Analytics