WebLogic Tuxedo Connector config question.

I am not sured if I experienced a network configuration problem that my WebLogic
Tuxedo Connector application from My machine "B" (which is a PC with window
2000 and WebLogic Server 6.1 installed ) to My machine "A" (which is a UNIX
work station with BEA TUXEDO installed).
I have decided to do an experiment and receive a result like this:
Situation 1:
1) Machine "A" ( UNIX Work Station ... ) hosts a RMI server process.
2) Machine "B" ( PC Win 2K ... ) run a RMI client process to request
a service from RMI server above.
Result: It 's OK
Situation 2:
1) Machine "B" hosts a RMI server
2) Machine "A" run a RMI client to request a service from RMI server above.
Result: NOT OK
Does it mean that if my situation 2 doesn't work so is My WebLogic Tuxedo Connector
application?
Many Thanks
Khanh

Khanh,
The samples/examples/wtc/atmi/simpserv example shows how to export
a service defined in WLS to Tuxedo. The problem that you ran into can
be anything from a configuration error to a usage that was not supported
for the 6.1 release. Please check the example, your logs and the release
notes for WLS/WTC 6.1.
Bob Finan
Khanh Mai wrote:
I am not sured if I experienced a network configuration problem that my WebLogic
Tuxedo Connector application from My machine "B" (which is a PC with window
2000 and WebLogic Server 6.1 installed ) to My machine "A" (which is a UNIX
work station with BEA TUXEDO installed).
I have decided to do an experiment and receive a result like this:
Situation 1:
1) Machine "A" ( UNIX Work Station ... ) hosts a RMI server process.
2) Machine "B" ( PC Win 2K ... ) run a RMI client process to request
a service from RMI server above.
Result: It 's OK
Situation 2:
1) Machine "B" hosts a RMI server
2) Machine "A" run a RMI client to request a service from RMI server above.
Result: NOT OK
Does it mean that if my situation 2 doesn't work so is My WebLogic Tuxedo Connector
application?
Many Thanks
Khanh

Similar Messages

  • How to configure Weblogic Tuxedo Connector ?

    Hi:
    I have 2 machines. One machine "A" installed with BEA TUXEDO 8.0 software.
    The other machine "B" doesn't have BEA TUXEDO 8.0 software but it has BEA WebLogic
    Server 6.1
    installed.
    My desire is to be able to make a successful application using WebLogic Tuxedo
    Connector from the machine "B" to machine "A".
    I have tried to follow the instruction for the WebLogic Tuxedo Connector example.
    However, I wasn't able to make the application work. I am suspecting that
    I must have BEA TUXEDO 8.0 software installed into machine "B" in order to make
    it work. Am I right or wrong?

    Khanh,
    You don't need Tuxedo installed on the same machine as WLS to use WTC.
    Your problem must be caused by some error in your configuration, either
    in the dmconfig on the Tuxedo side, or the xml config on the WTC side.
    I think you will need to post more detail to get any further help.
    Regards,
    Peter.
    Khanh Mai wrote:
    Hi:
    I have 2 machines. One machine "A" installed with BEA TUXEDO 8.0 software.
    The other machine "B" doesn't have BEA TUXEDO 8.0 software but it has BEA WebLogic
    Server 6.1
    installed.
    My desire is to be able to make a successful application using WebLogic Tuxedo
    Connector from the machine "B" to machine "A".
    I have tried to follow the instruction for the WebLogic Tuxedo Connector example.
    However, I wasn't able to make the application work. I am suspecting that
    I must have BEA TUXEDO 8.0 software installed into machine "B" in order to make
    it work. Am I right or wrong?

  • Weblogic Tuxedo Connector configuration issue

    Hi all,
    I must implement a client app in Java running over Weblogic 9.23 to connect to a Tuxedo service using WTC (Weblogic Tuxedo Connector).
    I'm using JATMI api based in this schema:
    public String Toupper(String toConvert) throws TPException, TPReplyException {
    Context ctx;
    TuxedoConnectionFactory tcf;
    TuxedoConnection myTux;
    TypedString myData;
    Reply myRtn;
    int status;
    try {
    ctx = new InitialContext();
    tcf = (TuxedoConnectionFactory) ctx.lookup("tuxedo.services.TuxedoConnection");
    catch (NamingException ne) {
    // Could not get the tuxedo object, throw TPENOENT
    myTux = tcf.getTuxedoConnection();
    myData = new TypedString(toConvert);
    try {
    myRtn = myTux.tpcall("TOUPPER", myData, 0);
    } catch (TPReplyException tre) {
    throw tre;
    } catch (TPException te) {
    throw te;
    } catch (Exception ee) {
    throw new TPException(TPException.TPESYSTEM, "Exception: " + ee);
    myData = (TypedString) myRtn.getReplyBuffer();
    myTux.tpterm(); // Closing the association with Tuxedo
    return (myData.toString());
    The point is the Tuxedo service provider gave me some examples written in C (not Java) which use TPINIT structure to supply programatically authentication params (usrname, grpname, cltname, ...) before starting the connection and calling tpcall().
    Where do these params enter the model above? Should they be supplied programatically inside my client code or should they be configured in WTC?
    Any help will be highly appreciated, many thanks

    Hi:
    This information is done under-the-covers through configuration:
    "Security and client authentication is provided by configuring the Remote TDM and Imported Services MBean components of a WTCServer MBean. This pathway is created when the WebLogic Server is started and a WTCServer MBean is present in the config.xml file and assigned (targeted) to a server."
    http://docs.oracle.com/cd/E13222_01/wls/docs91/wtc_atmi/Clients.html
    Using WTC you are trying to call Tuxedo services through Tuxedo domains. Your Tuxedo service provider should have domains configured and provide you with
    configuration information to define the remote access points and the services that are provided those those remote access points. Your WTC local access point will become
    a remote access point to your service provider's domains.
    Here is the WTC admin guide link:
    http://docs.oracle.com/cd/E13222_01/wls/docs92/wtc_admin/index.html
    If your Tuxedo service provider does not have domains configured then you can not use WTC. You will need to find out what ways they allow remote connections to access their Tuxedo services.
    Regards,
    Bob Finan

  • 'Weblogic Tuxedo Connector' remote services configuration

    Hi All,
    I'm trying to use Weblogic Tuxedo Connector to call an external Tuxedo from my
    Weblogic server.
    I have already configured a local domain for my weblogic server and a remote server
    for my external Tuxedo server, and it works fine...
    The only problem is that I have to define all services in my remote server (using
    T_DM_IMPORT entries in the wtc.xml configuration file) and I have more than 6000
    services running in my Tuxedo.
    Can I bypass this definition setting using some default value?
    Thanks for your help,

    Josep,
    The doc is not exactly correct. While it is true that the WTC
    configuration only
    provides for static configuration(there is no usage of runtime mbeans
    yet), the
    WLS SERVER does not need to be restarted in order for configuration
    changes to
    take effect. The WTC SERVICE must be restarted.
    The WTCService that is running on the the WLS server is turned on and off
    by deploying/undeploying the WTCServerMBean against the WLS server. The
    scenario that Johns suggested would be something like: get the new list
    of services
    exported by Tuxedo, modify the MBean configuration accordingly,
    undeploy/redeploy
    the WTCServerMBean. The cost is in loss of that particular WTCService
    for the
    recycling time but the WLS server is still available for some other WTC
    service.
    Sorry for the confusion.
    Bob Finan
    Josep Freixes wrote:
    I post this message just to let you known that I think that this cannot be done.
    In the WTC 7.0 documentation (see http://edocs.bea.com/wls/docs70/wtc_admin/Install.html#1107584),
    just before starting to explain the WTC MBean classes, you can read the following
    paragraph:
    This release of the WebLogic Tuxedo Connector provides only static configuration.
    If you need to change any parameters used to configure the WebLogic Tuxedo Connector,
    the WebLogic Server must be restarted for the changes to take effect. For example,
    you can not add or remove domain network links, change network addresses, or import
    or export new services.
    So we will need to wait until the next version of WTC.
    "John Wells" <[email protected]> wrote:
    That bit can be fixed in WLS 7.0. There are Management Beans I don't know the
    exact details of the Mbeans to use - look at the documentation) that can be used
    to dynamically add and remove services in WTC in WLS 7.0. You could create an
    Tuxedo EJB on the WLS side which uses those MBeans to progromatically change the
    list of services. On the Tuxedo side, you could create a daemon client that subscribes
    to events about service advertisement and then have this client call the EJB on
    the WLS side. It can be done, though it is something of a circuitous route...
    "Josep Freixes" <[email protected]> wrote in message
    news:[email protected]...
    Thanks for your help, John.
    The problem is not the one-time typing of all the service names. The problem
    is
    to get the list up-to-date from now on... and every change needs to
    restart the
    WebLogic Server to be applied...
    "John Wells" <[email protected]> wrote:
    I don't think there is any way to default the services going from
    WLS to
    Tuxedo.
    You just have to start typing... The only suggestion would be to
    get
    very friendly
    with your editor and figure out how to use its macros.
    "Josep Freixes" <[email protected]> wrote in message
    news:[email protected]...
    Hi All,
    I'm trying to use Weblogic Tuxedo Connector to call an external
    Tuxedo
    from
    my Weblogic server.
    I have already configured a local domain for my weblogic server
    and a
    remote
    server for my external Tuxedo server, and it works fine...
    The only problem is that I have to define all services in my remote
    server
    (using T_DM_IMPORT entries in the wtc.xml configuration file) and I
    have
    more
    than 6000 services running in my Tuxedo.
    Can I bypass this definition setting using some default value?
    Thanks for your help,
    [att1.html]

  • Weblogic Tuxedo Connector

    We are working on Weblogic Tuxedo Connector.(WTC)
    This basically allows a tuxedo client to acess EJBs deployed in weblogic server.
    Our aim is to transparently introduce EJBs which will replace the tuxedo service.
    In this transaction we are required to pass something like a structure inside
    structure to the EJB from
    the tuxedo client (which is written in C).
    We were able to pass a structure successfully.But we couldn't achieve this when
    it comes to nested structures .
    Some of the documents of WTC says this is possible.But in no documentation we
    were able to see any example which has implemented this.
    Please guide us on how to implement nested structures in WTC.

    WTC is included with WLS 6.1 (the separate download was only for WLS 6.0).
    Michael Girdley wrote:
    It's in the Tux downloads on our site.
    Michael Girdley
    BEA Systems
    Learning WebLogic? Buy the book:
    http://www.learnweblogic.com/
    At Amazon:
    http://www.amazon.com/exec/obidos/ASIN/0130911119/learnweblogic/103-6817548-
    3834229
    "Mike Mormando" <[email protected]> wrote in message
    news:3bb48f9f$[email protected]..
    Is this included in the wlserver 6.1 download?
    How would I get a hold of it for evaluation?
    tia
    Mike

  • Weblogic Tuxedo Connector on 10gR3 - Where are the Classes?

    Hi everybody,
    I need some help developing an application using WTC. I am trying to build an application using Weblogic Workshop, but I am not able to find the class TuxedoConnection or TuxedoConnectionFactory that was mentioned on the documentation.
    I imported all jar files from \bea\wlserver_10.3\server\lib and still don't find this class. Do you have any idea where I find the correct jar or what is happening?
    Thanks,
    Rafael

    Hi Todd,
    thanks for your answer, but not all classes are there. TuxedoConnection and TuxedoConnectionFactory are examples of classes that are not inside weblogic.jar.
    I found where these classes are:
    <BEA_HOME>\module\com.bea.core.jatmi_1.2.0.3.jar
    Regards,
    Rafael

  • Workshop Weblogic config questions

    I'm using Oracle Workshop for WebLogic 10.3 and I'm hoping someone can answer some setup/config questions.
    When I double click on the server (WebLogic Server v10.3 at localhost) a window opens with various settings that manage how workshop and weblogic work together.
    Under "Startup & Deployment" I have the following turned on:
    Launch WebLogic server in Eclipse console
    Always start WebLogic Server in debug mode
    Ignore project compilation errors when publishing (I have this turned on because of errors in a portal project, the errors aren't inmportant, and don't prevent the project form running)
    Run stand-alone web module directly from workspace
    So, first question, with these settings I was able to quickly switch to debug mode, with out restarting the server, now the server restarts whenever I turn debugging on. What have I done that has stopped this working correctly? How can I get it to start debugging without a full restart?
    next question, what happens if I turn on "Start WebLogic Server in Express Mode"? As far as I can tell nothing happens.
    Lastly, under "Automatic Publishing" I have it set to "Never publish automatically", if I choose another setting workshop essentially freezes because it's constantly publishing. So whenever I make a change, even in a jsp, I need to remove the project, then re-add it to see my changes in the browser. This is frustrating, not just because it takes 8 or 9 minutes (8 or 9 MINUTES!!!), but because the project doesn't run properly until it is redeployed. You'd think that if it needs to be re-deployed, then none of my changes should matter on the server until it is re-deployed.
    So, my question is, Is there any way to get this re-deployment to happen faster?
    Thanks for any and all help

    Well, in my experience performance is not bad as you experienced. Is it locally connected server or remotely connected server? If it is a remote server, network issue could cause this latency issue.
    Is performance better if you run the server without enabling debug mode? If yes, probably you can also review any break points set.
    You could also try out the following options
    1) Run workshop with -clean option, by opening command prompt and navigating to workshop_home\'workshop.exe -clean'
    2) Untick the option 'Launch WebLogic server in Eclipse console' and start server which would enable server to start on command prompt
    3) This would enable you to take multiple thread dumps (cutl +Break) on the server console output, while performance is very bad, to see where threads are halt.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • J2ee Connector basic questions

              Hi all,
              I have a few basic questions about j2ee technology and legacy systems.
              In the past year I have used Bea Jolt to "talk" with Tuxedo legacy code,now I
              read about weblogic j2ee Connector and I have the following question: they are
              2 technology in competition, or they can be collaborative ? I mean If I want to
              "talk" to legacy system I can choose between:
              1) "portable" solution (so I keep j2ee Connector)
              2) Vendor tecnology (Bea Jolt or Tuxedo connector)
              Please correct me if I'm wrong...I'm a bit confused on this topic....
              Thanks
              Francesco
              

    Hello folks, please share your experience working with the lotus notes connector.
    Thanks, M

  • Tuxedo calling EJB question

    Folks,
    I have read some documentation about WTC and got in doubt.
    In order to have the EJB access from Tuxedo service, I have to make it as an EJB 2.0 putting the RemoteHome and Remote as some Weblogic Tuxedo classes.
    That is fine.
    My question: does the method name have to be "service" always?
    I saw that in the example and could not find any other example. Also, testing, it has not executed with any other name.
    http://download.oracle.com/docs/cd/E12840_01/wls/docs103/pdf/wtc_atmi.pdf&chrome=true
    Could you someone give me any light? :-)
    Thanks in advance.

    Hi Richardinho,
    Are you access Tuxedo Service through EJB? or trying to call an EJB from Tuxedo Service?
    If you are accessing Tuxedo Service using an EJB, it should work with any name (EJB name and method can have any name you want).
    Regards,
    Ahsan

  • A few post config questions on new setup

    Hi Group,
    Just a few post config questions.
    First, how can I confirm my controller is in fact associating properly with an NTP server?  On a typically cisco product, I could just do a 'show ntp associations' or a 'show ntp status'.  I cannot see a way to confirm this on the gui or command line.
    Second, on my guest network with web-auth, if one were to choose to not use https for web-auth and instead use unsecure http, would that be possible and if so where in the gui?
    Thanks.

    The third field is from a WLC running v7.4 not v7.2.  I usually would install a 3rd party certificate, but what eles you can try is issue this command on from the CLI.  It had issues working with certain code versions, but you might as well give it a try.
    config network web-auth secureweb disable
    Thanks,
    Scott
    Help out other by using the rating system and marking answered questions as "Answered"

  • Re: PLM4P v6003 Config Question:  Any way to configure UGM Notifications?

    After reading:
    PLM4P v6003 Config Question:  Any way to configure UGM Notifications?
    This is one of the requirements from me as well. We always wanted to customize emails sent not only for UGM but also for other modules. We wanted to conveysome message to approvers. But it seems this is still not possible. Is this functionality on road-map of AgielP4P product management?

    Currently, the subject and body of emails can be customized to an extent, as they are translations that can be overridden. The translations have some placeholder fields that get populated by the system, but you are limited to those placeholder fields. The upcoming release will give you full control of the email body and subject lines, for GSM and SCRM emails, as well as Supplier Rep emails.

  • Redundant FWSM Config Question

    Hello All,
    I'm going to be configuring failover with FWSMs for our 6500 at my job and I have a config question. There is one current 6500 chassis with 2 FWSMs installed. They are both online but currently since failover isn't setup, only one FWSM is actually active. My question is since we are using mutiple contexts where do I setup the failover interface, and do I need to configure failover on every single vlan on the FWSM? We have over 10 contexts each with 2-3 interfaces on them, so do I need a failover IP for every vlan that exists on every context? Also, does the failover config get setup on the admin or system context? Any help would be greatly appreciated, and thank you so much in advance!

    Hi John.
    Failover config goes in the system context. For the data interfaces in each context, you will need a primary and a standby IP i.e. 2 IP's per VLAN. Once failover happens, the secondary FWSM will assume the active role and the secondary FWSM will take over the Primary IP address thus making the failover process transparent to end users.
    HTH.
    Regards
    Zubair

  • Tuxedo Connector

    I would like to know the best way to migrate the applications in AppServer 6.x using the Tuxedo connector
    to AppServer 7 using a JCA connector?
    Who is going to provide this connector? 3rd parties?
    Is Sun going to provide a migration toolkit?
    Are JCA connectors going to be provided free of charge?

    Jaime
    We have just completed the Sun ONE Application Server 6.5 Enterprise Connectors, which should be generally available this month.
    We have not made any public announcements for Application Server 7 connectors as yet, so please stay tuned.
    Regards
    Darren

  • SCCM 2012 application portal: config questions

    Hi,
    We have setup SCCM 2012 application portal correctly and it's working fine.
    However some config questions:
    -can we change the name of the configuration portal? Now its servername/CMApplicationCatalog ... what's not userfriendly.
    We'd like it to be applicationportal.ourcompany.com. Howto achieve that?
    -can we customize layout in a supported way (we could change html pages but after an upgrade of SCCM they would/could be erased)?
    -how does flexera (adminstudio?) plugs in into this. I've read this entry
    http://helpnet.installshield.com/appportal2014/Content/helplibrary/AP_CreatingCatItemSCCM.htm but what's the big picture here? Anybody using this? What are the advantages?
    J.
    Jan Hoedt

    We want to offer software center for overview of mandatory installs, application catalog for optional software.
    On our companies portal, we can then set a link which directs to the application portal. User can then install optional software from there.
    My current config works http://applicationportal.ourcompany.com/ goes to the sccm-server but not to the url below.
    That would be http://applicationportal.ourcompany.com/CMApplicationCatalog/#/SoftwareLibrary/AppListPageView.xaml
    how can I make sure the application portal shows up when this link is opened?
    It sounds like you want to perform a URL rewrite?
    http://www.iis.net/learn/extensions/url-rewrite-module/creating-rewrite-rules-for-the-url-rewrite-module
    You should test this to see if it's what you want - I may have misunderstood your question.
    Also, I wouldn't host this module on your AppCatalog server, I'd host the rewrite module elsewhere.
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Tuxedo connector for Siebel 7

    Hi,
    I would like to know if there is a Tuxedo connector for Siebel 7. I know there
    is a e-Link connector for Siebel 99 or 5.
    Thanks..

    Dear Juan,
              Unfortunately, there is not a specific Tuxedo Connector for Siebel 7. There
              is a BEA PS offering for Siebel 6 (aka Siebel 2000) for Tuxedo.
              Lastly, sorry for the delayed response to your posting. We will be more
              responsive in the future.
              Best regards,
              Timothy Potter
              Senior Software Engineer
              eCommerce Server Division
              BEA Systems, Inc.
              "Juan Eduardo" <[email protected]> wrote in message
              news:3c59b1c9$[email protected]..
              >
              > Hi,
              >
              > I would like to know if there is a Tuxedo connector for Siebel 7. I know
              there
              > is a e-Link connector for Siebel 99 or 5.
              >
              > Thanks..
              

Maybe you are looking for

  • How can I do a clean uninstall of packages built from source?

    I want to remove older versions of Ruby (but not the one packaged with Snow Leopard) from my development machine. I have a couple versions that were built from source that are unused now. How can I do a clean uninstall of those types of packages? I d

  • Help with quality of exported files

    The problem: I'm trying to get a good quality, 34 minute movie onto a DVD with chapter markers separating individual short films. This is supposed to be a compilation of 8 family movies, in addition to an introduction and credits at the end. Four mov

  • 'ORA-01401 inserted value too large for column' - 9i

    I am migrating a java application from 8i to 9i. The application is writing data to a oracle 8i database without any problem. When the underlying database source is switched to oracle 9i database(same databaseschema as 8i) by pointing to 9i instance

  • Problem connecting DataBase Link from windows oracle to oracle on Linux

    I'm facing a problem with database links from windows oracle to Oracle hosted on Linux server. I'm able to successfully create the Database Link using the following query on oracle database hosted on a windows server CREATE DATABASE LINK SampleDB CON

  • RFC fail to connect to CI from DI

    Hi All, During sm59 RFC test from the DIs to the CI, it failed. In t-code smgw, all entries which are connecting to the CI are stated as "connecting" instead of connected. When drill in to the entry, it stated that the connection is pointing to 192.1