'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]

Similar Messages

  • 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

  • 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 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

  • 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

  • Remote Service - Configuring Destination - Scope attribute

    I want to clarify my understanding that destination of Remoting Service if configured as "request" scope is safe to use in load balancer (having no session stickiness) with multiple web servers. Pls. note that there is no state maintained at server side for the calls.
    <service id="remoting-service"
        class="flex.messaging.services.RemotingService">
        <destination id="restaurant">
            <properties>
                <source>samples.restaurant.RestaurantService</source>
                <scope>request</scope>
            </properties>
        </destination>
    </service>
    This post is related: http://forums.adobe.com/message/2245383#2245383
    -Amit

    Here's my setup:
    Jar located at:
    C:\lcds\tomcat\webapps\Alerts\WEB-INF\lib\CliqAlert.jar
    Remote-Config file here:
    C:\lcds\tomcat\webapps\Alerts\WEB-INF\flex\remoting-config.xml
    Service definition:
    <destination id="AlertService">
    <properties>
    <source>com.company.cliq.alert.service.AlertServiceImpl</source>
    <scope>application</scope>
            </properties>
    </destination>            
    Navigating to class from Jar file:
    C:\lcds\tomcat\webapps\Alerts\WEB-INF\lib\CliqAlert.jar\com\company\cliq\alert\service\Ale rtServiceImpl.class

  • 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

  • Hyperion Shared Services Configuration Error with Weblogic 9.2

    Hi All,
    I have been trying to configure Hyperion Shared Services 9.3.1 with Weblogic Ver 9.2
    During configuration of the Database and the Application Server, I select Manual Configuration option on Weblogic 9
    However, it returns a configuration failure everytime of the Database.
    In my case, the DB used is SQL 2005.
    Can someone, please advise me.
    Thanks in advance
    Regards,
    Apo

    Hi Apo,
    Check the configtool.log in the logs/config folder and post the error message that is being returned.
    Thanks
    Nick

  • Tpinit error when call a remote service

    i have to call a remote tuxedo service in my local service,and the remote
    service need to be authenticated when use tpinit. when i use tpinit in my
    service,it will be error, i think maybe the application does not know which
    tuxedo service i will call(local or remote),so,it may think my tpinit was
    for my local service,then some error here.
    what shall i do when call a remote service which need to be authenticated at
    tpinit???
    fish

    it's ok now,i made a stupid mistake.:)
    "Anthony Fryer" <[email protected]> дÈëÏûÏ¢ÐÂÎÅ
    :[email protected]..
    >
    What you should do is configure DOMAIN gateways between the remote tuxedodomain
    and your own local domain. Then you don't need to call tpinit at all fromthe
    local service that calls the remote service.
    "fish" <[email protected]> wrote:
    i have to call a remote tuxedo service in my local service,and the remote
    service need to be authenticated when use tpinit. when i use tpinit in
    my
    service,it will be error, i think maybe the application does not know
    which
    tuxedo service i will call(local or remote),so,it may think my tpinit
    was
    for my local service,then some error here.
    what shall i do when call a remote service which need to be authenticated
    at
    tpinit???
    fish

  • Unable to create Database in Reporting Service Configuration

    Hi,
    We have SQL Server 2012 in our environment. I want to enable monitor report in Lync 2013. i have separate Lync sql instance.
    I am trying to configure new database in Reporting Service Configuration manager in report Server database Configuration wizard.
    while testing connection getting below error.
    could not connect to server:A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to
    allow remote connections.(provider:Named Pipes provider,error:40-could not open a connection to SQL Server)
    kindly help to resolve issue.

    Hi Rakesh,
    Please check the below details information:
     Check the ReportServer db is present in the Database engine.
    Go and check the report server configurations (go here:Start -> All Programs -> Microsoft sql server 2012-> Configuration Tools -> Report Service Configuration Manager
    check all the connections if still not working. then create a new reporting services Database. While creating it make sure you select native mode, if you want to create a share point services then select share point integration mode.
    If the above didn't work, Please check which port is used for SQL Server database engine from SQL Server Configuration Manager.
    If we are using dynamic port, please make sure:
    SQL Server Browser service is running.
    UDP 1434 port is enabled in the firewall.
    If we are using static port, please make sure the port is enabled in the firewall.
    Below is useful link about how to troubleshoot connection issue:
    http://blogs.msdn.com/sql_protocols/archive/2005/12/22/506607.aspx
    https://msdn.microsoft.com/en-us/library/ms156468.aspx?f=255&MSPPError=-2147217396
    Similar thread for your reference:
    http://www.mssqltips.com/sqlservertip/2340/resolving-could-not-open-a-connection-to-sql-server-errors/
    If you have any more questions, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • How configure reporting services configuration with sql server business development studio

    I have installed sql server 2008 r2 mixed mode(sql server authentication) with native mode
    I want to run report using reporting  services config manager.
    I made report in ssrs and I have configured reporting services configuration and  web url from RSCM( reporting  services config manager), i put on ssrs report.
    report is build and deployed but when i take deployed url on Internet explorer, it shows the window below:
    when I put the password nothing happened . if I put url in google chrome then it shows authentication required window like the same in IE
    if I passed username=(levent/sa) and password then goes on window but does not see on page,  if I passed only administrator name (levent) not passed sql server login name (sa) then does not close 'Authentication window'
    'Computer connect net with modem'
    before i tried on earlier PC, it worked fine.
    setting is below link like this.
    only set service Account is Use_built=NetworkSrvice 
    link
    http://www.azurecurve.co.uk/2012/02/how-to-configure-sql-server-reporting-services-in-order-to-deploy-reporting-services-reports-in-gp/
    what is the problem 
    Plz give suggestion quickly

    Hi tusharshinde,
    Per my understanding that when you log in the report Manager you got the pop-up window ask for credential, you try to enter  the SA account and the window account as the username and password but both not work, right?
    Your issue related to the authentication. As you mentioned you have choose the ”Network Service” as the Service account, generally using this account in RSCM and RSWindowsNegotiate is added to the RSReportServer.config file as the default setting. With this
    setting, the report server can accept requests from client applications requesting Kerberos or NTLM authentication. If Kerberos is requested and the authentication fails, the report server switches to NTLM authentication and prompts the user for credentials
    unless the network is configured to manage authentication transparently.
    The issue can be caused by many factors and please check one by one.
    Did you enter the username and password for three times and got blank page or got some error? If you got some error, please provide the error information.
    you can delete the specific Authorization Types inside rsreportserver.config  file, open path:” \Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting Services\ReportServer\rsreportserver.config”. 
    Search the file for the “AuthenticationTypes” section. Remove RSWindowsNegotiate and RSWindoeBasic to ensure only “RSWindowsNTLM” is specified in the file rsreportserver.config file.
    Before do any modification, back up the files and remember to restart the ReportServer instance in the RSCM after the modification.
    If step1 doesn’t work ,please also do the trusted Site Setting in the Browser, article with details steps for your reference:
    http://technet.microsoft.com/en-us/library/bb630430.aspx 
    Please check the Report Manager's authentication mode.Have a look in the Report Manager's web.config file to check if you can find below information under the <system.web> (Path is “C:\Program Files\Microsoft SQL Server\MSRS10_50.MSSQLSERVER\Reporting
    Services\ReportManager\Web.config ” ).
    authentication mode="Windows"
    identity impersonate="True"
    Similar threads for your reference:
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/23c5daa0-3232-4e8c-89c9-4526960c9d14/ssrs-2008-credentials-login-prompt?forum=sqlreportingservices
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/0778e2ca-0fb1-4b5c-996c-6e327b5e1473/user-logon-credentials-for-ssrs-web-server-setup?forum=sqlreportingservices
    Please tried to provide us more details information, if the problem still exists:
    Did you login in the report manager locally or remotely via Browser and which URL you are using to login the Report manager?
    Did you modified some configuration file before and what did you modified?
    Did your windows account have the right permission to access the report manager?
    Any problem, please feel free to ask.
    Regards
    Vicky Liu

  • IFS-20010 Unable to get service configuration

    Hi,
    I'm trying to connect to iFS from a Java application. Basically it's a remote server which we'll connect to using RMI for some integration work. It will run on the same server as CM SDK.
    Anyway, I try and connect to the service using:
    LibraryService.startService(name, schemaPassword, serviceConfig, domainName)
    and it comes back with this error:
    oracle.ifs.common.IfsException: IFS-20102: Unable to start service (IfsDefault)
    oracle.ifs.common.IfsException: IFS-20010: Unable to get service configuration properties (SmallServiceConfiguration)
    java.lang.NullPointerException
    at oracle.gss.util.NLSLocale.getNLSLanguage(NLSLocale.java:675)
    I'm running it from the command line, I have a batch file to set the classpath. Interestingly, if I run an Agent (i.e., a java class that extends oracle.ifs.management.domain.IfsServer) standalone, it works fine.
    This makes me think there's some element of the classpath that I'm missing, but I'm not entirely sure what!
    Could anyone shed any light on this? Metalink doesn't seem to have anything!
    Cheers,
    Phill
    P.S. -- my CLASSPATH is as follows:
    set CLASSPATH=%CLASSPATH%;%ORACLE_HOME%\ifs\cmsdk\lib\cmsdk.jar;%ORACLE_HOME%\lib;
    set CLASSPATH=%CLASSPATH%;%ORACLE_HOME%\jdbc\lib\classes12.zip;%ORACLE_HOME%\j2ee\home\lib;
    set CLASSPATH=%CLASSPATH%;%ORACLE_HOME%\j2ee\home\jazn.jar
    set CLASSPATH=%CLASSPATH%;%ORACLE_HOME%\jdbc\lib\nls_charset12.jar
    set CLASSPATH=%CLASSPATH%;%ORACLE_HOME%\ifs\cmsdk\settings\

    Just FYI, the solution to this was that the java security policy was denying access. I changed the java.policy to
    grant {
         permission java.security.AllPermission;
    And this solved the problem.

  • Referencing remote services

    Hi
    I'm having some beginner problems. I've setup BlazeDS and
    have created my remote service. All works fine when I deploy
    everything to the server but I would like to be able to compile my
    Flex project and view it locally while calling the remote service
    on the web server. I've had success doing this with PyAMF but can't
    get it setup with BlazeDS.
    From my understanding I need to first edit the
    services-config.xml file. I've done this and set it to resolve
    my-amf to the server:
    <channel-definition id="my-amf"
    class="mx.messaging.channels.AMFChannel">
    <endpoint url="
    http://combinationstudios.com:8400/samples/messagebroker/amf"
    class="flex.messaging.endpoints.AMFEndpoint"/>
    <properties>
    <polling-enabled>false</polling-enabled>
    </properties>
    </channel-definition>
    However when I compile the app the SWF is still trying to
    connect to services locally - when I trace HTTP requests it's point
    here:
    http://localhost:8400/samples/messagebroker/amf
    rather than
    http://combinationstudios.com:8400/samples/messagebroker/amf
    Is there something in the compiler settings I need to define
    or another XML file needs to be configured.
    Thank a lot
    Ben

    Hey ben,
    how do you configure your remoteObject in flex?? There is an
    endpoint option in there.
    <mx:RemoteObject id="ro" endpoint="/aceadmin/weborb.wo"
    ..... >
    Try to set the endpoint to your remote server and see if that
    works... I never tried it corss domain, only to point it to a other
    service within my own domain.
    Ries

  • Solution Manager prepared for the Remote Service Delivery?

    In preparation of GoingLive Session, we received a mail with some questions. Among them the following:
    Is your Solution Manager prepared for the Remote Service Delivery? Yes/No  
    Is the solution transferred to SAP?: Yes/No  
    What does the first question mean? what should be done to prepare the Solman for session delivery?
    How do I check if the solution is transferred to SAP?
    Thanks a lot,
        Dino

    Hello Dino,
    The SAP Solution Manager is a platform for the delivery of services for the following areas:
    ●     Risk minimization
    ●     Optimization of SAP solutions
    ●     Knowledge transfer
    Services in the SAP Solution Manager are services which help you to monitor and optimize the performance and availibility of your system landscapes and minimize your system operation risks.
    You can have the support services performed by SAP or perform them yourself:
    ●     Remote Services
    SAP experts deliver this service type via a remote connection (SAP Safeguarding Services, e.g. SAP GoingLive Check).
    For checking whether solution manager is prepared for remote service delivery u need to check the following.
    Prerequisites
    You have:
    ●     created a solution.
    ●     set-up a connection to the SAP Service Marketplace (Explorer).
    Procedure
           1.      Choose the transaction SOLUTION_MANAGER.
           2.      Choose Delivery of SAP Services ® Service Plan, in Operations.
           3.      Choose Order Service from SAP.
    You go to the Service Catalog.
           4.      Choose the link to the service.
    The system goes to the catalog entry of the service, in the SAP Service Marketplace.
           5.      Follow the procedure described in the SAP Service Marketplace.
    =============================================
    Solution transfered to SAP means that the u have done the configuration, testing and validation of the SAP system components and then transfered this to the satellite systems connected to Solman. Please note that solman is the central point of access for supporting implementation activities and the satellite systems are SAP systems comnected to solman in the landscape.
    Hope this helps. Please assign points and let me know if u need anything specific.
    Rgds
    Manish

  • How do I run  a weblogic platform portal 8.1 on a weblogic server 7.0 service pack 4?

    Hello.
    How do I run a weblogic platform portal 8.1 on a weblogic server 7.0 service
    pack 4?
    Is that a supported configuration? any problems / Issues ?
    Weblogic Integrator

    Why the hell do you want to do that ? ? ?
    just run it on 8.1, if you need to get info from the 7.0 server just get it.
    8.1 is a whole new framework, what you suggest a hack that is probably not supported.
    nerdi
    "Integrator" <[email protected]> wrote:
    >
    Hello.
    How do I run a weblogic platform portal 8.1 on a weblogic server 7.0
    service
    pack 4?
    Is that a supported configuration? any problems / Issues ?
    Weblogic Integrator

Maybe you are looking for