Tuxedo to Oracle 9iAS via JMS

A client wants to connect a Tuxedo application to an Oracle 9iAS
application (Oracle was not my choice, forced into it by upper
management). Obviously this is already well handled with Weblogic, but
how about something non-BEA? I'm not a J2EE person, but someone said
JMS Connectors, and someone else said the Java Native Interface to JMS.
I see this as a Tuxedo question, how do I interface to JMS?
Suggestions? (getting Weblogic is not a valid answer. Oracle cut the
clients annual license by a $1 Million if they would use 9iAS for their
new projects instead of Weblogic. You do the math.)
Brian Douglass
Transaction Processing Solutions, Inc.
8555 W. Sahara
Suite 112
Las Vegas, NV 89117
Voice: 702-254-5485
Fax: 702-254-9449
e-mail: [email protected]
[briand.vcf]

Brian Douglass <[email protected]> wrote:
>
But JOLT only gets me a Client connection. In my case, I need to send
messages
to the 9iAS environment and get asych responses. Other times, the 9iAS
sends me
messages and I send back asych responses (could be up to 5 days later!).Well, I guess you can sort of "call" the Java environment from the Tux side by
means of an unsolicited notification targeted to a Java JOLT "client". I am not
a Java programmer but reading the JOLT docs it seems to me it should be doable.
If it is practical in the real world might be another story, though...
I want
a queueing environment like /Q, AQ, or MessageQ, but must adhere to the
J2EE
interface standards. Does /Q support JMS?
Brian
"Per Lindström" wrote:
As long as O9iAS is a Java environment, you should be able to use JOLTto do
at least some basic integration, I guess... (and for $1M you wouldbe able
to write a LOT of JOLT code B-))
/Per
Per Lindström R2Meton AB, SWEDEN
[email protected]
Brian Douglass skrev i meddelandet <[email protected]>...
A client wants to connect a Tuxedo application to an Oracle 9iAS
application (Oracle was not my choice, forced into it by upper
management). Obviously this is already well handled with Weblogic,
but
how about something non-BEA? I'm not a J2EE person, but someone said
JMS Connectors, and someone else said the Java Native Interface toJMS.
I see this as a Tuxedo question, how do I interface to JMS?
Suggestions? (getting Weblogic is not a valid answer. Oracle cutthe
clients annual license by a $1 Million if they would use 9iAS fortheir
new projects instead of Weblogic. You do the math.)
Brian Douglass
Transaction Processing Solutions, Inc.
8555 W. Sahara
Suite 112
Las Vegas, NV 89117
Voice: 702-254-5485
Fax: 702-254-9449
e-mail: [email protected]
Transaction Processing Solutions, Inc.
8555 W. Sahara
Suite 112
Las Vegas, NV 89117
Voice: 702-254-5485
Fax: 702-254-9449
e-mail: [email protected]
Content-Description: Card for Brian Douglass
begin:vcard
n:Douglass;Brian
tel;fax:702-562-3206
tel;work:702-254-5485
x-mozilla-html:TRUE
url:www.tps-eoltp.com
org:TPS, Inc.
version:2.1
email;internet:[email protected]
title:President
adr;quoted-printable:;;8555 W. Sahara=0D=0ASuite 112;Las Vegas;NV;89117;US
x-mozilla-cpt:;15296
fn:Douglass, Brian
end:vcard

Similar Messages

  • XML parser Problem in Oracle 9iAS

    Dear All,
    I am trying to parse a xml file by using a SAX Parser.
    I am getting error "oracle.xml.parser.v2.XMLParseException: Invalid InputSource.'. I have already included 'xerces.jar' in the classpath.
    But it is always taking oracle xml parser.
    How to change the default XML parser in Oracle 9ias.
    This is my report.jsp File
    &lt;%@ page import="java.io.*,java.util.*,java.sql.*,javax.sql.*,javax.naming.*,javax.jms.*,iims.util.*,javax.xml.parsers.*,org.xml.sax.*,org.xml.sax.helpers.*, org.w3c.dom.*"%&gt;
    &lt;%
    generateTree();
    %&gt;
    &lt;%!
         //This method is to be called during startup. It will generate the template and rule nodes.
         public static void generateTree() throws Exception
              //Proceed with this method if the template and rule trees are not built already.
              //if (nodeTemplate != null && nodeRule != null) return;
              // Validate
              Node nodeRule = parseXml("d:\\ora9ias\\j2ee\\home\\Reports\\IIMSReportsTemplate1.xml");
         }//generateTree
    %&gt;
    &lt;%!
         //parse the input file and return a node.
         private static Node parseXml(String fileName) throws Exception
              //Parse the input file
              Document objDocument = null;
              DocumentBuilder objDocumentBuilder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
              objDocument = objDocumentBuilder.parse(fileName);
              Node nodeRet = objDocument;
              return nodeRet;
         }//parseXml
    %&gt;
    Report template:
    &lt;ROOT&gt;
         &lt;HEADINGS&gt;
              &lt;HEADING1&gt;H1&lt;/HEADING1&gt;
              &lt;HEADING2&gt;H2&lt;/HEADING2&gt;
              &lt;HEADING3&gt;H3&lt;/HEADING3&gt;
              &lt;HEADING4&gt;H4&lt;/HEADING4&gt;
              &lt;HEADING5&gt;H5&lt;/HEADING5&gt;
              &lt;HEADING6&gt;H6&lt;/HEADING6&gt;
         &lt;/HEADINGS&gt;
         &lt;ROWSETS&gt;
              &lt;ROWSET&gt;
                   &lt;COLHDRS&gt;
                   &lt;/COLHDRS&gt;
                   &lt;ROWS&gt;
                   &lt;/ROWS&gt;
              &lt;/ROWSET&gt;
         &lt;/ROWSETS&gt;
         &lt;Footer&gt;
              &lt;PageNo&gt;Generate&lt;/PageNo&gt;
              &lt;Date&gt;SystemDate&lt;/Date&gt;
         &lt;/Footer&gt;
    &lt;/ROOT&gt;
    Stack Trace:
    strRuleFileD:\ora9ias\j2ee\home\Reports\IIMSReportsRules.xml
    oracle.xml.parser.v2.XMLParseException: Invalid InputSource.
    at oracle.xml.parser.v2.XMLError.flushErrors(XMLError.java:145)
    at oracle.xml.parser.v2.XMLReader.pushXMLReader(XMLReader.java:208)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:140)
    at oracle.xml.jaxp.JXDocumentBuilder.parse(JXDocumentBuilder.java:96)
    at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:165)
    at iims.REPORTS.IIMSGenerateReport.parseXml(IIMSGenerateReport.java:115)
    at iims.REPORTS.IIMSGenerateReport.generateTree(IIMSGenerateReport.java:
    100)
    at iims.REPORTS.IIMSGenerateReport.buildXML(IIMSGenerateReport.java:147)
    at PCREPORT_PROCESS.processBody(PCREPORT_PROCESS.java:3248)
    at PCREPORT_PROCESS.doPost(PCREPORT_PROCESS.java:100)
    at PCREPORT_PROCESS.doGet(PCREPORT_PROCESS.java:92)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:244)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)
    at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterC
    hain.java:59)
    at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
    at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletReque
    stDispatcher.java:523)
    at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(Ser
    vletRequestDispatcher.java:269)
    at com.evermind.server.http.HttpRequestHandler.processRequest(HttpReques
    tHandler.java:735)
    at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java
    :151)
    at com.evermind.util.ThreadPoolThread.run(ThreadPoolThread.java:64)
    Please advise.
    Thanks
    Siva Kishor Rao U

    Adding Xerces XML parser is not enough to make it work. Since some version of JDK (I think 1.4.X) XML parser is included and for older version it can be setup like a runtime option. And this is probably how ORACLE is using its XML parser. If you want to use different parser, you have to pass runtime option to JVM - for Xalan it looks like this:
    -Djavax.xml.transform.TransformerFactory=org.apache.xalan.processor.TransformerFactoryImpl
    ...this way it becomes default parser factory used by javax interface functions. Look for documentation on xml.apache.org
    Myrra

  • Oracle 9iAS dcmctl permission error

    How do I configure Oracle 9iAS to permit a new user (domain account) the ability to run the dcmctl utility?
    Currently only the account used to install Oracle 9iAS is permitted to run the dcmctl utility. All other users receive the following error:
    dcmctl getstate -v
    ADMN-100999
    See Base Exception for details
    Base Exception:oracle.ias.repository.schema.schemaexception: Password cound not
    be retrived. Run the application as the same user who installed the
    application. See base exception for details.

    Noticed your thread here, and it fits a question of mine also.
    We are a dev/test shop and currently key developer/testers have ias_admin access for deploying and administering the OAS via the Console. As this is not production and they are doing heavy OAS work, this works nicely. The problem is they have no CLI access, as they are not oracle and their accounts do not belong to the DBA grp.
    The ability to use a common admin user (ias_admin) in the console, and the restriction to run as oracle or DBA grp for the CLI (dcmctl) seems to be a rather large functionality gap that severely limits the ability of developers to write and run their own automated deployment scripts.
    Has anyone else noticed this limitation and have any good ideas? (Stickybits are not allowed on our filesystems, so that workaround is unfortunately out for us also)

  • Deploying BC4J JSP app to 9iAS (via EJB?)

    Hello. Please help a newbie (new to Java, JDev, JSP, and 9iAS R2).
    I've just built my first BC4J JSP app in JDev, and I've even setup a remote DCM connection to my 9iAS R2 server.
    1. JDev release notes say that BC4J deployment from JDev to 9iAS R2 is not supported. Confusing. What is the best way to deploy this app?
    2. I've created an EJB .ear file in JDev 9.0.3 and deployed it using the EM from OC4J_home. It seemed to deploy okay, but I don't know how to find it via an http path (I know, sounds dumb). Do I need to include a port number? Do I still point to my JSP page, or do I point to a servlet? What would a sample path look like?
    3. Can you recommend a good book, something like "Oracle 9iAS and JSP Apps for Dummies?"
    Thanks in advance.
    -Tony.

    Hello - I've just asked one of the BC4J team to take a look at your questions, so please keep a lookout for a response.
    I am not super familiar with BC4J, but since it's deployed as a J2EE application it should work in the following way:
    When you deploy an EAR file which contains a Web application module, you have to tell the server what URL pattern it should use to know when to send the request to the Web application. The deployment screens in OEM prompt you to enter these URLs when the deployment is done.
    Once the deployment is complete (and assuming that you've not modified the HTTP server port) you should then be able to access the application using
    http://<server-host>:7777/<url>
    where <url> is the pattern you entered for the Web application during the deployment process.
    cheers
    -steve-

  • State update via JMS

    Has anyone tried working with entity EJB's that are read-only in cluster
              environment, and doing invalidation of replica entities using JMS messages.
              Any comments on performance/issues with this solution.
              Another question, has anyone tried using Oracle's Java triggers, to call
              refresh() on entity EJB's, maintaining consitency that way?
              thanks in advance for your thoughts on this,
              Ilya
              

    Hello Tarek,
    That can be achieved but you would need to set the with max-cache setting to
    1 for the stateless sesssion bean. This would make sure that there is one
    and only one bean in the server that set up the java class for the message
    listener. But this would be like creating a SLSB just for setting up a class
    as a message listener. Why not have a startup class that works as a message
    listener?
    Hope that helps
    "Tarek Hammoud" <[email protected]> wrote in message
    news:[email protected]..
    Hello,
    We have a need for an SSB to update its internal state based on external
    events propogated via JMS. I understand that it is illegal to set up theSSB
    to be a message listener (don't know why). How about having the SSB accessa
    Java class that will encapsulate the volitile data and be a message
    listener. The Java class will simply be discarded at passivation and
    reconstituted at activation.
    Is this OK ?
    Tarek Hammoud

  • Error in the assistant of installation of Oracle 9ias 9.0.2 single sing-on

    Install oracle 9ias 9.0.2.0, but when this in the assisting existing Oracle 9ias single singn-on the error that the host or port are not been worth appears. in the host sijita.uptc.edu.co places and in the port 7777. That it can be the error??? one doesn't also eat to pull up the Apache service because the following error appears:
    $ apachectl start
    Syntax error on line 6 of /u06/oracle/ora9ias/Apache/Apache/conf/mod_osso.conf:
    Unable to deobfuscate the SSO server config file,
    /u06/oracle/ora9ias/Apache/Apache/conf/osso/osso.conf, error Bad padding
    pattern detected in the last block.
    /u06/oracle/ora9ias/Apache/Apache/bin/apachectl start: httpd could not be started
    WARNING!! Direct use of apachectl within Oracle9iAS is
    deprecated. Using apachectl in conjunction with opmn may lead
    to unexpected behavior (such as opmn automatically restarting
    OHS after it has been shutdown using apachectl). Please use
    dcmctl (located at ORACLE_HOME/dcm/bin/dcmctl) instead.
    apachectl may not be shipped with future versions of Oracle9iAS.
    $ httpd start
    Ouch! ap_mm_create(1048576, "/tmp/apache/logs/mm.1262") failed
    Error: MM: mm:core: failed to open memory file (No such file or directory):
    OS: No such file or directory

    9iAS (9.0.2.0.1) is desupported and will not be certified against any new OS releases...
    Regards,
    Martin

  • Installation problem of Oracle 9iAS rel2 on redhat advanced server 2.1

    Hi,
    I am trying to install Oracle 9ias Rel2 on redhat advanced server 2.1
    Following instructions i downloaded and installed the binutils patch binutils-2.11.90.0.8-13.i386.rpm
    I have set ORACLE_HOME appropriately and created a new user oracle.
    During installtion of 'J2EE and WebCache' , when it starts linking, the installer gives the following error
    Error in invoking target ntcontab.o of makefile /home/oracle/Appserver/network/lib/ins_net_client.mk
    Retry, Ignore,cancel...
    If i press ignore, it gives series of such errors.
    My ORACLE_HOME is /home/oracle/Appserver/
    I am trying to set up the production environment.
    Please help!!!
    thanks
    srinath

    Check out Metalink Note:191567.1
    (http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=191567.1)
    Step 11.
    11. Error in invoking target relink of makefile
    /home/ias/infrastructure/precomp/lib/ins_precomp.mk      
    To fix it:      
    As ias go to $ORACLE_HOME/bin      
    vi genclntsh      
    change line LD_SELF_CONTAINED="-z defs" to LD_SELF_CONTAINED="" (line 147 of 200)      
    save genclntsh file      
    ./genclntsh      
    Created /home/ias/infrastructure/lib/libclntst9.a      
    Click "Retry" at error popup window. Installer will continue.      
    Link successful.

  • DISCOVERER REPORT ISSUE IN Oracle 9iAS

    Hi All,
    I am trying to export file on Oracle 9iAS using discoverer using excel format, But not able to export in proper format. Can anyone help me for this please
    Regards
    Kumar

    Please reply for this

  • Setup problem in Oracle 9iAS

    I like to install my machine in Oracle 9ias. My machine has the Windows 2000 OS and Oracle 9i DB. When i clicked the Isetup.exe from the cd getting the error
    "Setup has detected that your isuite Product Install has not been setup correctly, probably because the installation was aborted Please restart setup"
    Please give me some suggestion for installing Oracle 9iAS

    Do you have SP 2 or higher ?
    Do you want to install only J2EE and Web Cache or another kind of installation ?
    Joel Pérez

  • Multiple Copy to Print on Oracle 9iAS Report

    Dear Friends
    When I an Trying to Print a Report on Oracle 9iAS, and Pass the Parameter More than One in Numbers of Copies it returns error wirh Error Code 1
    Report Error Code REP-50157,
    After Each Page One Blank Page Printed, On some documenttaion they mentioned that pass BACKGROUND = NO in URL, I did the same but probelm remains
    Can you Help me ?

    You should post this question in the general application server forum for an appropriate response: Oracle Application Server - General
    OTN

  • How can I generate SSL Keys from a Oracle 9iAS server version 1.0.2.2.0

    How can I generate SSL Keys for use on Oracle 9iAS server
    version 1.0.2.2.0. I have tried using the open_ssl method but
    was unsuccessful.

    <?xml version="1.0" encoding="UTF-8" ?>
    <nodes>
    <node>
    <category_id>3</category_id>
    <parent_id>2</parent_id>
    <name>Mobile</name>
    <is_active>1</is_active>
    <position>1</position>
    <level>2</level>
    <children>
    <node name="Nokia" category_id="6" parent_id="3" is_active="1" position="1" level="3">
    <node name="Nokia N79" category_id="7" parent_id="3" is_active="1" position="2" level="3" />
    <node name="Nokia N95" category_id="7" parent_id="3" is_active="1" position="2" level="3" />
    <node name="Nokia N97" category_id="7" parent_id="3" is_active="1" position="2" level="3" />
    </node>
    <node name="Samsung" category_id="7" parent_id="3" is_active="1" position="2" level="3">
    </node>
    </children>
    </node>
    <node>
    <category_id>4</category_id>
    <parent_id>2</parent_id>
    <name>Laptop</name>
    <is_active>1</is_active>
    <position>2</position>
    <level>2</level>
    <children></children>
    </node>
    <node>
    <category_id>5</category_id>
    <parent_id>2</parent_id>
    <name>Monitor</name>
    <is_active>1</is_active>
    <position>3</position>
    <level>2</level>
    <children></children>
    </node>
    <node>
    <category_id>8</category_id>
    <parent_id>2</parent_id>
    <name>Camera</name>
    <is_active>1</is_active>
    <position>4</position>
    <level>2</level>
    <children></children>
    </node>
    </nodes>
    Is this correct format to create dynamic menu?

  • "Error while accessing porting layer for ORACLE database via getSessionId()

    Hi,
    My ejb3.0 Entity is created from Emp table in scott/tiger schema of an Oracle 10g database. I am guessing I made some mistake creating the datasource or uploading the driver, because when I run my application, I get a long exception stack trace. The bottom-most entry in the stack trace is:
    Caused by: com.sap.sql.log.OpenSQLException: Error while accessing porting layer for ORACLE database via getSessionId().
         at com.sap.sql.log.Syslog.createAndLogOpenSQLException(Syslog.java:148)
         at com.sap.sql.jdbc.direct.DirectConnectionFactory.createPooledConnection(DirectConnectionFactory.java:527)
         at com.sap.sql.jdbc.direct.DirectConnectionFactory.createDirectPooledConnection(DirectConnectionFactory.java:158)
         at com.sap.sql.jdbc.direct.DirectConnectionFactory.createDirectPooledConnection(DirectConnectionFactory.java:118)
         at com.sap.sql.connect.factory.PooledConnectionFactory.createPooledConnection(PooledConnectionFactory.java:119)
         at com.sap.sql.connect.factory.DriverPooledConnectionFactory.getPooledConnection(DriverPooledConnectionFactory.java:38)
         at com.sap.sql.connect.datasource.DBDataSourceImpl.createPooledConnection(DBDataSourceImpl.java:685)
         at com.sap.sql.connect.datasource.DBDataSourcePoolImpl.matchPool(DBDataSourcePoolImpl.java:1081)
         at com.sap.sql.connect.datasource.DBDataSourcePoolImpl.matchPooledConnection(DBDataSourcePoolImpl.java:919)
         at com.sap.sql.connect.datasource.DBDataSourcePoolImpl.getConnection(DBDataSourcePoolImpl.java:67)
         at com.sap.engine.core.database.impl.DatabaseDataSourceImpl.getConnection(DatabaseDataSourceImpl.java:36)
         at com.sap.engine.services.dbpool.spi.ManagedConnectionFactoryImpl.createManagedConnection(ManagedConnectionFactoryImpl.java:123)
         ... 90 more

    Actually, now (after the GRANT described in my reply before) the Exception has changed to:
    Caused by: com.sap.sql.log.OpenSQLException: Error while
    accessing porting layer for ORACLE database via
    <b>getDatabaseHost</b>().
         at com.sap.sql.log.Syslog.createAndLogOpenSQLException
    (Syslog.java:148)
         at com.sap.sql.jdbc.direct.DirectConnectionFactory.
    createPooledConnection(DirectConnectionFactory.java:527)
         at com.sap.sql.jdbc.direct.DirectConnectionFactory.
    createDirectPooledConnection(DirectConnectionFactory.java:158)
         at com.sap.sql.jdbc.direct.DirectConnectionFactory.
    createDirectPooledConnection(DirectConnectionFactory.java:118)
         at com.sap.sql.connect.factory.PooledConnectionFactory.
    createPooledConnection(PooledConnectionFactory.java:119)
         at com.sap.sql.connect.factory.DriverPooledConnectionFactory.
    getPooledConnection(DriverPooledConnectionFactory.java:38)
         at com.sap.sql.connect.datasource.DBDataSourceImpl.
    createPooledConnection(DBDataSourceImpl.java:685)
         at com.sap.sql.connect.datasource.DBDataSourcePoolImpl.
    matchPool(DBDataSourcePoolImpl.java:1081)
         at com.sap.sql.connect.datasource.DBDataSourcePoolImpl.
    matchPooledConnection(DBDataSourcePoolImpl.java:919)
         at com.sap.sql.connect.datasource.DBDataSourcePoolImpl.
    getConnection(DBDataSourcePoolImpl.java:67)
         at com.sap.engine.core.database.impl.DatabaseDataSourceImpl.
    getConnection(DatabaseDataSourceImpl.java:36)
         at com.sap.engine.services.dbpool.spi.
    ManagedConnectionFactoryImpl.createManagedConnection(ManagedConnectionFactoryImpl.java:123)
         ... 90 more

  • How to tell the version of the ORacle 9iAS?

    How to find the version information about the Oracle 9iAS (Not OC4J) from Enterprise Manager? In windows, we can always use help-->about to get the version number, how do I know the version of the application server is 9.0.2 or 9.0.3?
    thanks

    AS rel 2 is 9.0.2, never 9.0.3. But AS suite has many many product components that has different version number strings depending on your installations and your set of installed Patch Sets (e.g. you could have Infrastructure 9.0.2.3.0 and Core RSFs 9.0.1.4.0a)
    OC4J has been released as 9.0.3, next full AS is 9.0.4 (according to Metalink but who knows, maybe it'll be 10.0.1, 10.1.4 or whatever sounds marketingishly good)

  • Oracle 9iAS on Solaris w/Oracle 8.1.6 on NT 4

    We are currently running Oracle 7.3.4 on NT 4 w/Oracle Application Server 4.0.8.1 on NT 4. We are planning to set up a new Oracle 8.1.6 database server to replace the 7.3.4 database, and after that set up a Solaris box with Oracle 9iAS to replace the OAS 4.0.8.1. Can someone (ideally from Oracle) comment whether there are any issues which would cause problems between such a final set up? I heard that database-wise 8.1.5 was the minimum necessary to work with iAS even back when it was 8iAS. In any case, I would like to get some confirmation that the NT database and the Solaris Application Server will not have problems. I didn't see any comments about problems in a quick look at the 9iAS release notes or installation guide.
    Thanks.
    -Ken Ho

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Todd Eisemann ([email protected]):
    HI
    Can anyone tell me the mystical secrets buried in Note 131299.1? I have this same problem on a Pentium 4. Yet, I do not have an Oracle support contract. I bought the OTN bundle, but did not buy any support.
    Do I have to buy support just to load any of the OTN bundle on my new P4 system?
    thanks
    <HR></BLOCKQUOTE>
    problem @see: http://developer.intel.com/design/processor/future/manuals/knownissue.htm
    solution @see: JRE Version 1.2.2_007 for Microsoft Windows
    (http://java.sun.com/products/jdk/1.2/jre/download-windows.html)to get new symcjit.dll, replace old version.
    null

  • Where can i find the temp file in oracle 9ias ver 9.0.3

    Hi All,
    When I am trying to deploy stateless session bean(SLSB)in oracle 9ias ver 9.0.3,i am getting the following exception
    SequenceHome_StatelessSessionHomeWrapper3.java:9: SequenceHome_StatelessSessionHomeWrapper3 should be declared abstract; it does not define create (java.lang.String) in SequenceHome_StatelessSessionHomeWrapper3
    public class SequenceHome_StatelessSessionHomeWrapper3 extends com.evermind.server.ejb.RemoteStatelessSessionEJBHome implements sequence.SequenceHome
    and one more where can i find this temp file.I want to see this SequenceHome_StatelessSessionHomeWrapper3.java file..how its possible
    Thanks and Regards,
    Bala

    Try this link - it should always point to the latest iteration

Maybe you are looking for