Version L Clients working with Version N ServerPartitions

My "L" clients are successfully communicationg with a
3.5 server partition. Anyone else doing this? Any
potential problems I need to look out for?
Bill
a year! http://personal.mail.yahoo.com/

My "L" clients are successfully communicationg with a
3.5 server partition. Anyone else doing this? Any
potential problems I need to look out for?
Bill
a year! http://personal.mail.yahoo.com/

Similar Messages

  • RE: [forte-users] Version L Clients working with Version NServer Partit

    we were not able to get this combination to work, for some reason, our cache
    was not loading when we do this.
    suma
    -----Original Message-----
    From: Bill Bhatta [mailto:[email protected]]
    Sent: Wednesday, May 30, 2001 3:04 PM
    To: [email protected]
    Cc: Ravi; Kent Smith; John Werry
    Subject: [forte-users] Version L Clients working with Version N Server
    Partitions
    My "L" clients are successfully communicationg with a
    3.5 server partition. Anyone else doing this? Any
    potential problems I need to look out for?
    Bill
    a year! http://personal.mail.yahoo.com/
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: [email protected]

    we were not able to get this combination to work, for some reason, our cache
    was not loading when we do this.
    suma
    -----Original Message-----
    From: Bill Bhatta [mailto:[email protected]]
    Sent: Wednesday, May 30, 2001 3:04 PM
    To: [email protected]
    Cc: Ravi; Kent Smith; John Werry
    Subject: [forte-users] Version L Clients working with Version N Server
    Partitions
    My "L" clients are successfully communicationg with a
    3.5 server partition. Anyone else doing this? Any
    potential problems I need to look out for?
    Bill
    a year! http://personal.mail.yahoo.com/
    For the archives, go to: http://lists.xpedior.com/forte-users and use
    the login: forte and the password: archive. To unsubscribe, send in a new
    email the word: 'Unsubscribe' to: [email protected]

  • WLS :: Will Vista web client work with Weblogic Server 8.1.6 over SSL?

    Hello,
    I have installed 51-2 bit SSL cert on weblogic 7 and found that the secure site doesn't work on Vista web client.
    Weblogic gives error in handshaking and says algorithm is not supported.
    Vista web client uses some algorithms which were not supported by weblogic 7.
    So would like to know if would Vista web client work with Weblogic Server 8.1.6 over SSL?
    Any information in this regard would be helpful.
    Thanks in Advance.

    can you use the following debug flags in the weblogic server as java_options and paste the complete ssl handshake exception here.
    -Dweblogic.StdoutDebugEnabled=true
    -Dssl.debug=true
    thanks,
    sandeep

  • Can 9i client work with 8i & 7 database?

    Not sure if this is the correct forum, but here's my question.
    I have a 8i database which I access using a ODP.NET (VB.NET program). I also need access to an Oracle 7 database from the same application.
    1) will 9i client work with 7 database?
    2) if not, if I install 8i & 9i Client, can I programmatically pick which one I use (not using the oracle home selection program)?
    I could create materialized view of the oracle 7 tables on the 8i database, but seems like alot of duplicated storage. If I can't get this to work I would have to resort to the Microsoft ODP for Oracle since I can use 8i client with it.
    Thanks!
    Bob

    Wouldn't changing the system PATH variable in code alter it for every web application running? If I have multiple applications running changing the PATH to suite the current call could inadvertently affect another application. The only other solution is to run MS data provider or ODP.NET/9i on one Web server, and 8i on another.
    Bob

  • How to get remote ejb client working with Weblogic 8.1?

    I have Weblogic 8.1 running on a WinXP box behind my firewall. Port 7001 is open to WL and remote browsers can access the console.
    I have a client machine running WinXP on a different network that is remote to the WL server. It can ping the WL server machine.
    I use JVM 1.4.2_08 on all machines.
    If I put my client machine on the LAN with the WL server, then my EJB test client works fine. If I put the client machine on the remote network then the test client fails with a ClassCastException when trying to do a PortableRemoteObject.narrow on the bean home.
    I had this running fine on JBoss 3.22 using RMI over HTTP. I added an HTTP invoker service to my jboss.xml file. I don't know if something similar is needed on the Weblogic side - any ideas on that? All I've done on the WL side is turn on Tunneling - which obviously works because the remote client gets a correct home object when doing a lookup on the bean - based on the IOR string of the home obj.
    Below I include my client code, exception, ejb-jar.xml and my weblogic-ejb-jar.xml.
    Any ideas on what else needs to be done so that a remote client can do a PortableRemoteObject.narrow? My client.jar has all of the EJB classes, and runs fine when run from LAN.
    Thanks,
    --BobC
    Client Code
    Properties p = new Properties();
    p.put("java.naming.factory.initial", "weblogic.jndi.WLInitialContextFactory");
    p.put("java.naming.provider.url", "http://66.114.140.213:7001");
    InitialContext ic = new InitialContext(p);
    // Test register bean
    Object homeObj = ic.lookup("tacplanner/register");
    RegisterHome home = (RegisterHome) PortableRemoteObject.narrow(homeObj, RegisterHome.class); // <<< ClassCastException here
    Exception
    java.lang.ClassCastException
    at com.sun.corba.se.internal.javax.rmi.PortableRemoteObject.narrow(PortableRemoteObject.java:293)
    at javax.rmi.PortableRemoteObject.narrow(PortableRemoteObject.java:134)
    at com.nimblus.tacplanner.test.TestUtils.<init>(TestUtils.java:60)
    at com.nimblus.tacplanner.test.TestUtils.main(TestUtils.java:196)
    ejb-jar.xml
    <?xml version="1.0"?>
    <!DOCTYPE ejb-jar PUBLIC '-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 1.1//EN' 'http://java.sun.com/j2ee/dtds/ejb-jar_1_1.dtd'>
    <ejb-jar>
    <enterprise-beans>
    <session>
    <ejb-name>register</ejb-name>
    <home> com.nimblus.tacplanner.server.ejb.stateless.RegisterHome</home>
    <remote> com.nimblus.tacplanner.server.ejb.stateless.Register</remote>
    <ejb-class>com.nimblus.tacplanner.server.ejb.stateless.RegisterSession</ejb-class>
    <session-type>Stateless</session-type>
    <transaction-type>Container</transaction-type>
    <resource-ref>
    <description>The Oracle Datasource</description>
    <res-ref-name>java:/OracleDS</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    </session>
    </enterprise-beans>
    <assembly-descriptor>
    <container-transaction>
    <method>
    <ejb-name>register</ejb-name>
    <method-name>*</method-name>
    </method>
    <trans-attribute>Required</trans-attribute>
    </container-transaction>
    </ejb-jar>
    weblogic-ejb-jar.xml
    <?xml version="1.0"?>
    <!DOCTYPE weblogic-ejb-jar PUBLIC
    '-//BEA Systems, Inc.//DTD WebLogic 8.1.0 EJB//EN'
    'http://www.bea.com/servers/wls810/dtd/weblogic-ejb-jar.dtd'>
    <weblogic-ejb-jar>
    <weblogic-enterprise-bean>
    <ejb-name>register</ejb-name>
    <stateless-session-descriptor>
    <pool>
    <max-beans-in-free-pool>100</max-beans-in-free-pool>
    </pool>
    </stateless-session-descriptor>
    <reference-descriptor>
    <resource-description>
    <res-ref-name>jdbc/OracleDS</res-ref-name>
    <jndi-name>OracleDS</jndi-name>
    </resource-description>
    </reference-descriptor>
    <enable-call-by-reference>True</enable-call-by-reference>
    <jndi-name>tacplanner/register</jndi-name>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>
    --------------------

    Problem solved.
    For remote clients you need to generate and use the stub classes for EJB interfaces using Weblogic's appc utility.
    See: "http://e-docs.bea.com/wls/docs81/ejb/appc_ejbc.html#1151900"
    --BobC                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Will 8i Client work with 10g DB?

    We currently use an 8i client install to enable ODBC and Oracle Discoverer access to an 8i database.
    We need to upgrade the database to 10g, but we may not be able to upgrade the client from 8i.
    Will the 8i client work properly/reliably against the 10g database with respect to ODBC and Oracle Discoverer?

    Hi,
    There is a very good Metalink note about Interoperability Between Different Oracle Versions : 207303.1 - Client / Server / Interoperability Support Between Different Oracle Versions.
    Server 10.1 and client 8.1.7 is supported by Oracle (      Supported for customers under Extended Maintenance (EMS) only), if it supported, it should be work.
    Nicolas.

  • Which oracle client works with both Oracle 11.2.0.2 and BizTalk 2006 R2

    Hi there
    My Oracle11.2.0.2 is installed on linux server. My Biztalk2006R2 is installed on Windows Server 2003 R2 x64. I have already installed BizTalk Adapter for Oracle on the Biztalk server and now require to install Oracle Client to make Biztalk able to retrieve data from Oracle11.2.0.2 using the oracle client.
    From the following link,
    http://msdn.microsoft.com/en-us/library/aa559822%28v=BTS.20%29.aspx
    I came to know that the only oracle clients compatible with Biztalk adapter for oracle are as below:
    1) Oracle client 8i
    2) oracle client 9i
    3) oracle client 10i
    Now I need to install an oracle client on biztalk server in order to make biztalk talk to oracle and retrieve data from it.
    Question1: which of the above clients should i install on biztalk server that is compatible with both Oracle11.2.0.2 as well as Biztalk server 2006 R2?
    Question2: How to install and configure this client to make it work correctly?
    Please help.. thanks.
    Edited by: manibest on 19-Dec-2012 03:27
    Edited by: manibest on 19-Dec-2012 03:27

    The Biztalk Adapter interface with Oracle software has information, requirements per referenced document that does not make sense.
    E.g. "10i" does not exist and the requirement "Oracle ODBC driver 9.2.0.5.4" means that only 9.2 Client can be used. (Mixing parts from one Database Client product version with another version is not allowed/supported/certified.)
    Btw, does that machine happen to have Itanium hardware? (probably no, since you stated x64)
    For Oracle's OS requirements, 2003 was certified with/from 9.2.0.3 (and likely also terminal patch set version 9.2.0.8). Not sure about Server 2003 R2, 32 or 64-bit. I'm pretty sure 10.2 was certified on 2003 R2, but the note likely refers to 10.1 versions (before it was known it would be labeled 10g, g for grid replacing the i ).
    This FAQ may have some more information: http://www.oracle.com/technetwork/database/windows/faq-100614.html
    For Oracle client - server interoperability and certification, there's a support matrix on MOS. See doc id 207303.1.
    It seems 9.2 is supported on the wire to operate with 11.2 server, but Client with at least patch set 9.2.0.4 is required.
    So, I guess best bet is to find updated requirements.
    If you manage to get hold of 9.2.0.5, after verifying that 2003 R2 is ok, then it looks like the puzzle could be put together for a complete picture.
    For ease of install, take a look at the Instant Client. (However, there's no 9.2 IC, that type of client install came later)
    http://www.oracle.com/technetwork/database/features/instant-client/index-097480.html
    Edit;
    some corrections, specially about 9.2 version
    Edited by: orafad on Dec 19, 2012 10:58 PM

  • Does the Citrix ICA client work with Safari for Windows XP?

    I really like safari for XP so far. However, I use the Citrix ICA client software to remotely access programs from a server at work. I tried following instructions on the Citrix knowledge base site for installing the client for Firefox, etc. since they did not have any info on Safari for windows. Please help, or I will be stuck using Explorer. Thanks.

    The Citrix ICA client doesn't work with Safari on a Mac. Given the number of bugs and other problems with the Safari 3 Beta for Windows, I'd guess that the chances of Citrix working with this release are slim to none. However, the Citrix ICA client works well with Firefox 2.0, in case you're interested in trying it.

  • Client working with different charset than server

    Hi,
    My name is Tal and I work in Mercury.
    We have a situation that requires setting the client nls_lang to “AMERICAN_AMERICA.UTF8”, but the server is required to work with either “WE8DEC” or “WE8MSWIN1252” charset.
    A. Is “WE8DEC” a valied option?
    B. Is “WE8MSWIN1252” a valied option?
    C. Is there a map of valid options, if yes please refer me to it.
    Regards,
    Tal Olier (972-54-497-151).

    Ahh...been there, done that...
    http://lfhd.blogspot.com/2008/03/first-hiccup.html
    Shane

  • Will Nortel's Contivity VPN Client work with Cisco's VPN 3000 concentrator?

    Hi, need help. We have VPN 3000 concentrator and a number of VPN clients (these are using Cisco VPN client).
    We have one user that wants to use Nortel's Contivity VPN Client. Will this work with the Cisco COncentrator 3000?

    Tricky question - in theory yes, if the nortel client follows all the ISPEC RFC's.
    I did try to get the cisco VPN client working on a Nortel Contivity once - did not get it working - but did'nt have that much time to test and get it working.
    My advise - Configure, TEST DEBUG TEST DEBUG!

  • Does ZAM Client work with Windows 7 and/or OS X Snow Leopard

    Or will there be support for either of those environments? Installer seems to work OK, but client does not report to the Collector.

    I've been advised by our Novell Account Manager that support for Windows 7 will not be incorporated into ZAM 7.5, however, the ZAM 10/ZCM 10 client will support Windows 7. I imagine they will take the same stance with Snow Leopard.

  • Does a 10.7 client work with a 10.6.8 server with portable home directories??

    Subject says it all. I need to move to 10.7 on the clients because I need XCode. But 10.7 Server seems dumbed-down, brittle and bug-ridden, so I'd rather stay at 10.6.8 server for the time being. I know already from some off site users of my server that mail works fine between 10.7 clients and 10.6.8 server. But what about mobile accounts and portable home directories? That is a very important feature for me.

    It seems to work. Slow and I have seen it hang at logout once (had to force shutdown the machine), maybe because I had two clients open at the same time.

  • BI 11G Standard Edition One: can the iOS client work with it?

    Is it possible to run the iOS (iPhone/iPad) BI client with BI 11G Standard Edition ONE? Anyone tried?
    Thanks a lot in advance

    nonsense - if you have only 2 sockets (include the multi-chip factor when calculating the number of sockets -- see my posting) and not using the rest of the sockets and your motherboard allows it - it should be no problem in licensing. The problem arises if your socket count goes more than 2 by installing another CPU -- then you need to upgrade to the proper Oracle license.
    remember, if this is a Linux box, and you installed a single (1) dual-core CPU (AMD or Intel Xeon for example), then the socket count is 1x2x0.5=1 socket (you are paying single processor license for SE1), if you install another dual-core CPU, then your socket count becomes 2 (which is the max # of sockets for SE1) and you pay 2 x processor license. if you install another dual-core CPU, then you have 3 sockets and you need SE license (3 x processor license for SE for the same box).
    note:
    ===============
    apparently, when it comes to SE1 and SE licensing, the MCM (Multi-Chip-Module) definition becomes extremely important. If it is a Power 5 cpu, it is definitely an MCM, for AMD Opteron Barcelona CPU - it is not MCM. For Xeon, yes it uses MCM but the word is that when some folks called their Oracle Sales rep, they were told it is not MCM (even Intel said, it utilized MCM technology for that particular Xeon CPU). I guess it depends what your Sales rep tells you or what your research reveals for the CPU you are planning to use. Here is a related URL, for those who interested:
    http://www.pythian.com/news/1009/recent-changes-to-oracle-se-licensing-rules-higher-price
    I wish there was a clear MCM definition in Oracle's OLSA (such as a table similar -- but more detailed -- to the newly updated core count table).
    hope this proves helpful.
    Zaf
    Edited by: zaferaktan on Jul 6, 2009 3:54 PM

  • Which JOLT version works with WLS6.1?

    I need to connect WLS6.1 to Tuxedo using JOLT.
    Which JOLT version works with WLS6.1?
    I heard that WLS6.1 requires Jolt 8, is that true?
    I can't find that information in WLS/Tuxedo documentation.
    Thanks.
    Francesco

    Jolt 8 client works with Jolt 1.2 server and Tuxedo 6.5. Although preferred way is
    go with WebLogic Tuxedo Connector.
    -Deepak
    Francesco Coda wrote:
    And Jolt 8 works only with Tuxedo 8, correct?
    So, which is the correct (suggested/supported) way to invoke a Tuxedo 6.5 service
    from WLS 6.1? Tuxedo connector (WTC)?
    Thanks for the help.
    Francesco
    Deepak Goel <[email protected]> wrote:
    WLS6.1 requires Jolt 8.
    -Deepak
    Francesco Coda wrote:
    I need to connect WLS6.1 to Tuxedo using JOLT.
    Which JOLT version works with WLS6.1?
    I heard that WLS6.1 requires Jolt 8, is that true?
    I can't find that information in WLS/Tuxedo documentation.
    Thanks.
    Francesco

  • Discoverer 4i not working with Sun JRE plugin

    Hi All,
    Recently i replaced jinitiator with Sun JRE plugin, after the deployment of the plugins the discoverer is not launching from the form based responsibility.
    Its displaying on window as
    Applet oracle.disco.DiscoApplet notinited
    But i see the document 290807.1 for deployment of Sun JRE its no where mentioned that 4i will not Support Sun JRE plugins.
    Any inputs are appreciated
    Thanks in advance.

    Hi,
    You can upgrade to Discoverer 10g (10.1.2.3).
    Note: 313418.1 - Using Discoverer 10.1.2 with Oracle E-Business Suite 11i
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=313418.1
    Note: 459344.1 - What JRE Client Works With Discoverer 10.1.2 and e-Business Suite 11.5.10.2?
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=459344.1
    Note: 367389.1 - Recommended Patch for Discoverer 10g (10.1.2.1 / 10.1.2.0.2) Plus Known Issues
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=367389.1
    If you are not planning to use Oracle AS 10g features (like Discoverer Connection Management, Discoverer Portlet Provider, and Oracle Single Sign On, ..etc), you can choose to install Oracle Business Intelligence Server 10g Release 2. Oracle Business Intelligence Server 10g Release 2 is available on a separate standalone CD and includes Discoverer Server 10g, Discoverer Plus 10g, and Discoverer Viewer 10g.
    Regards,
    Hussein

Maybe you are looking for

  • Ios8.3 cant share photo to wechat in photo gallery.

    I Just upgrade my iphone 6 plus to ios 8.3, but having problem with the photo gallery sharing.after i taking photo i wan to share to wechat from gallery. It turn back to gallery.now i only can share photo bu open the wechat apps and share in side the

  • Lenovo G550 - how can I run three monitors

    I've just bought a Lenovo G550 and am running Windows XP Pro on it.   So far so good.  I'm quite happy with it as I think it represents good value for the money.  I have been able to run two external monitors on my G550 laptop - using the VGA port an

  • Anyone have a solution for the ubiquitous problem of the printer not recognizing a new HP cartridge?

    I have seen other posts about the HP printers not recognizing that a new HP cartridge has been put in.  At the price of the cartridges, this is a most irritating problem, and apparently a weak spot with the HP printers.  Mine is not heavily used at a

  • Changing language in an iPhoto calendar

    Hi For some reason that I don't know my system language is set to Italian and there's nothing that I do that changes it (I already asked in the OS Mountain Lion forum and I'm waiting for the answer). I'm trying to make a calendar using Iphoto and I t

  • Needs software to access pdf files on sun ray client

    Needs software to access pdf files on sun ray client , with mozilla firefoX or Sea monkey as a browsers Tried to install pdf getting error , Needs technique or technical troubleshooting steps to access pdf files on mozilla or sea monkey or other sola