Do I need to configure UBBCONFIG if I'm Developing Client side only

Hello Tuxedo Experts,
I have successfully run the simplest of Tuxedo sampes (simpapp) after a lot of effort and issues.
I have to develop Tuxedo Client Only for a Tuxedo Server running in client environment. I have already written client code in C.
I want to know, what things do I need to get/know to be able to successfully run the client application. If I am making just the client on my side, Do I still create the UBBCONFIG file? Wouldn't the server already have UBBCONFIG file created on server side?
If I have to create the UBBCONFIG, what parameters are server related information that I should ask for, from client.
Any other things (environment variables, other bits) that I need to take from tuxedo server side team (client).
Thanks & Regards,
Ahsan

Hello Todd/Venkat/Tuxedo Experts,
I wanted to clarify the part that says: "You will also need to add the WSL to the UBBCONFIG file and recompile UBBCONFIG."
I am guessing this means adding a WSL entry in UBBCONFIG file of Tuxedo Server since (I have been told in Venkat's post that) UBBCONFIG/tuxconfig file is not required on client side of tuxedo. Am I right in saying that client will have no UBBCONFIG and tuxconfig, while server UBBCONFIG has to have appropriate WSL entry?
Btw, if I look at the ubbconfig of simpapp, it has no WSL entry. It does have the following server details though:
==============================
DOMAINID simpapp
MASTER DevnonAOMapp
DevnonAOMapp LMID=DevnonAOMapp
*GROUPS
GROUP1
LMID=DevnonAOMapp GRPNO=1 OPENINFO=NONE
*SERVERS
DEFAULT:
CLOPT="-A"
simpserv SRVGRP=GROUP1 SRVID=1
*SERVICES
TOUPPER
==============================
Where will the WSL entry fit and what would it look like?
Thanks & Regards,
Ahsan

Similar Messages

  • Need to change IP address of printer on CLIENT side.

    I'm connected to a network printer (HP 4200 laser) and it's been working just fine. Then the boys in IT changed its static IP address. I need to go into my configuration for this printer and change the IP address so that my Macbook Air (10.9.4) can find this printer. But I can see no other way to change the IP address than to delete the printer and reconfigure it all over again. Is that right? It can't be right. What am I missing? The best I can seem to do is to "Open Print Queue" and then click "Settings" but this is all I'm seeing. There is no way to change the destination IP address on the client side.

    MrHoffman wrote:
    Why aren't your network people using DNS to name the printer?  If they change DNS, then the printer should resolve automatically.
    What a comedian! It was just the other day that I went through a few programs at work and replaced the DNS name with a hard-coded IP address. It seems they are moving the service to a new machine and this is part of their migration strategy. I can't argue with logic like that.

  • Need help configuring for POF

    I am trying to use POF to serialize one specific named cache only. The client nodes are configured for near caches with no local storage. I ran into a problem where I got error log complaints that another node in the cluster was not configured for POF serialization for the DistributedCache service. So, I created a new service PofDistributedCache service for use by the pof cache. That changed my errors but didn't get me very far.
    Q1: If I have mixed pof / non-pof caches, to they need to use different DistributedCache services?
    Q2: Does the server (back-cache) also need a <serializer> block?
    Q3: Does the server need all the object classes and the classes needed to (de)serialize the objects?
    --Larkin
    Client side coherence-cache-config.html:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE cache-config SYSTEM "cache-config.dtd">
    <cache-config>
         <caching-scheme-mapping>
              <cache-mapping>
                   <cache-name>pof-*</cache-name>
                   <scheme-name>default-near-pof</scheme-name>
                   <init-params>
                        <init-param-name>front-size-limit</init-param-name>
                        <init-param-value system-property=foo.coherence.default.front-size-limit">0</init-param-value>
                   </init-params>
              </cache-mapping>
              <cache-mapping>
                   <cache-name>*</cache-name>
                   <scheme-name>default-near</scheme-name>
                   <init-params>
                        <init-param-name>front-size-limit</init-param-name>
                        <init-param-value system-property="foo.coherence.default.front-size-limit">0</init-param-value>
                   </init-params>
              </cache-mapping>
         </caching-scheme-mapping>
         <caching-schemes>
              <near-scheme>
                   <scheme-name>default-near</scheme-name>
                   <front-scheme>
                        <local-scheme>
                             <scheme-ref>default-local</scheme-ref>
                        </local-scheme>
                   </front-scheme>
                   <back-scheme>
                        <distributed-scheme>
                             <scheme-ref>default-distributed</scheme-ref>
                        </distributed-scheme>
                   </back-scheme>
              </near-scheme>
              <near-scheme>
                   <scheme-name>default-near-pof</scheme-name>
                   <front-scheme>
                        <local-scheme>
                             <scheme-ref>default-local</scheme-ref>
                        </local-scheme>
                   </front-scheme>
                   <back-scheme>
                        <distributed-scheme>
                             <scheme-ref>default-distributed-pof</scheme-ref>
                        </distributed-scheme>
                   </back-scheme>
              </near-scheme>
              <local-scheme>
                   <scheme-name>default-local</scheme-name>
                   <high-units>{front-size-limit 0}</high-units>
              </local-scheme>
              <!--
                   This config file is for client use only. The back-cache will not
                   provide any local storage to the cluster.
              -->
              <distributed-scheme>
                   <scheme-name>default-distributed</scheme-name>
                   <service-name>DistributedCache</service-name>
                   <local-storage>${coherence.back-cache.storage}</local-storage>
                   <backing-map-scheme>
                        <local-scheme>
                             <scheme-ref>default-local</scheme-ref>
                        </local-scheme>
                   </backing-map-scheme>
              </distributed-scheme>
              <distributed-scheme>
                   <scheme-name>default-distributed-pof</scheme-name>
                   <service-name>PofDistributedCache</service-name>
                   <local-storage>${coherence.back-cache.storage}</local-storage>
                   <backing-map-scheme>
                        <local-scheme>
                             <scheme-ref>default-local</scheme-ref>
                        </local-scheme>
                   </backing-map-scheme>
                   <serializer>
                        <class-name>com.tangosol.io.pof.ConfigurablePofContext</class-name>
                   </serializer>
              </distributed-scheme>
         </caching-schemes>
    </cache-config>
    Server side coherence-cache-config.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE cache-config SYSTEM "cache-config.dtd">
    <cache-config>
    <caching-scheme-mapping>
    <cache-mapping>
    <cache-name>pof-*</cache-name>
    <scheme-name>default-distributed-pof</scheme-name>
    </cache-mapping>
    <cache-mapping>
    <cache-name>*</cache-name>
    <scheme-name>default-distributed</scheme-name>
    </cache-mapping>
    </caching-scheme-mapping>
    <caching-schemes>
    <distributed-scheme>
    <scheme-name>default-distributed</scheme-name>
    <service-name>DistributedCache</service-name>
    <backing-map-scheme>
    <local-scheme>
    <scheme-ref>default-local</scheme-ref>
    </local-scheme>
    </backing-map-scheme>
    <autostart>true</autostart>
    </distributed-scheme>
    <distributed-scheme>
    <scheme-name>default-distributed-pof</scheme-name>
    <service-name>PofDistributedCache</service-name>
    <backing-map-scheme>
    <local-scheme>
    <scheme-ref>default-local</scheme-ref>
    </local-scheme>
    </backing-map-scheme>
    <autostart>true</autostart>
    </distributed-scheme>
    <local-scheme>
    <unit-calculator>BINARY</unit-calculator>
    <scheme-name>default-local</scheme-name>
    </local-scheme>
    </caching-schemes>
    </cache-config>

    Hi Larkin,
    llowrey wrote:
    I am trying to use POF to serialize one specific named cache only. The client nodes are configured for near caches with no local storage. I ran into a problem where I got error log complaints that another node in the cluster was not configured for POF serialization for the DistributedCache service. So, I created a new service PofDistributedCache service for use by the pof cache. That changed my errors but didn't get me very far.
    Q1: If I have mixed pof / non-pof caches, to they need to use different DistributedCache services?Yes. You can control POF/old-style-serialization on a service by service basis only.
    Q2: Does the server (back-cache) also need a <serializer> block?It is not relevant on near-cache. The scheme defining the back cache (and invocation services and replicated cache schemes) need to have the serializer specified.
    Q3: Does the server need all the object classes and the classes needed to (de)serialize the objects?
    If you want to deserialize the objects, then certainly they do. But with POF you don't necessarily need to deserialize entries from partitioned caches to define indexes or run entry-processors/aggregations on them. You can leverage PofExtractor-s and PofNavigator-s to do all your server-side logic, although for complex data access it may be less efficient. You do need the key classes (on cache NamedCache caller side) for being able to do operations on a partitioned cache, though.
    Best regards,
    Robert

  • Configuring UBBCONFIG for Tuxedo/Q-Error for rebuild message queue server

    Hi..
    Am using Tuxedo10g R3 on AIX 5.3..
    Am using IBM COBOL..
    I need to write a program with Queue Concept in cobol,so for that i created queuespace and queue using the qmadmin command..
    While configuring UBBCONFIG file, as per the document which i referred:
    http://e-docs.bea.com/tuxedo/tux80/pdf/usingq.pdf
    i used (pg no: 28)
    TMQUEUE SRVGRP="TMQUEUEGRP1" SRVID=1000 RESTART=Y GRACE=0 CLOPT="-s myqueuespace:TMQUEUE" in the servers section but while
    booting TMQUEUE failed to start.. so i went for the alternative option provided in the same document as
    buildserver -o TMQUEUE -s myqueuespace:TMQUEUE -r TUXEDO/QM \
    -f ${TUXDIR}/lib/TMQUEUE.o
    followed by
    TMQUEUE SRVGRP="TMQUEUEGRP1" SRVID=1000 RESTART=Y GRACE=0 \
    CLOPT="-A"
    while rebuilding TMQUEUE am getting this error:
    buildserver -o TMQUEUE -s myqueuespace:TMQUEUE -r TUXEDO/QM -f ${TUXDIR}/lib/TMQUEUE.o
    ld: 0711-317 ERROR: Undefined symbol: .qs_tcm_setup
    ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information.
    CMDTUX_CAT:1832: ERROR: can't execute cc -brtl -qstaticinline -qrtti=all -I$TUXDIR/include -o TMQUEUE BS-23f0be.c -L${TUXDIR}/lib
    /usr/Oracle/Tuxedo10g/lib/TMQUEUE.o -brtl -qstaticinline -ltux -lbuft -lqm -ltmib -lfml -lfml32 -lengine -lpthread
    can anyone help me in this??
    Thanks in advance..

    Hi Todd,
    Thanks for ur reply..
    my sample program will fetch records from a table in a database and will store that in a queue and will retrieve that records from the queue.. i hope one queuespace is enough for this program.. while booting am getting these messages in the ULOG.. am i missing any step in the configuration??
    230153.ibmsceai!BBL.2502724.1.0: 04-24-2009: Tuxedo Version 10.3.0.0, 32-bit, Patch Level (none)
    230153.ibmsceai!BBL.2502724.1.0: LIBTUX_CAT:262: INFO: Standard main starting
    230153.ibmsceai!TMS_QM.2019544.1.0: 04-24-2009: Tuxedo Version 10.3.0.0, 32-bit
    230153.ibmsceai!TMS_QM.2019544.1.0: LIBTUX_CAT:262: INFO: Standard main starting
    230153.ibmsceai!TMS_QM.2355258.1.0: 04-24-2009: Tuxedo Version 10.3.0.0, 32-bit
    230153.ibmsceai!TMS_QM.2355258.1.0: LIBTUX_CAT:262: INFO: Standard main starting
    230153.ibmsceai!TMS_QM.2568346.1.0: 04-24-2009: Tuxedo Version 10.3.0.0, 32-bit
    230153.ibmsceai!TMS_QM.2568346.1.0: LIBTUX_CAT:262: INFO: Standard main starting
    230154.ibmsceai!TMQUEUE.651302.1.0: 04-24-2009: Tuxedo Version 10.3.0.0, 32-bit
    230154.ibmsceai!TMQUEUE.651302.1.0: LIBTUX_CAT:262: INFO: Standard main starting
    230154.ibmsceai!TMQUEUE.651302.1.0: Q_CAT:1497: ERROR: xa_open() - no more process table slots
    230154.ibmsceai!TMQUEUE.651302.1.0: LIBTUX_CAT:466: ERROR: tpopen TPERMERR xa_open returned XAER_RMERR
    230154.ibmsceai!TMQUEUE.651302.1.0: Q_CAT:1630: ERROR: tpopen() failed, tperrno = 16
    230154.ibmsceai!TMQUEUE.651302.1.0: LIBTUX_CAT:250: ERROR: tpsvrinit() failed
    230154.ibmsceai!tmboot.495778.1.-2: 04-24-2009: Tuxedo Version 10.3.0.0, 32-bit
    230154.ibmsceai!tmboot.495778.1.-2: CMDTUX_CAT:825: ERROR: Process TMQUEUE at cicsapp failed with /T tperrno (TPERMERR - resource manager error)

  • I need to configure Acrobat to display PDF files in Safari, but I have a lot of troubles to do it.I have OX S yosemite, I unistalled adobe acrobat, I closed safary and I installed the new version of adobe acrobat.

    Dear everyone
    I need to configure Acrobat to display PDF files in Safari, but I have a lot of troubles to do it.
    I read a european commission document explaining that
    http://ec.europa.eu/research/participants/data/support/sep_usermanual.pdf
    If Safari does not display pdf forms in the browser window, uninstall all older versions of Adobe Reader and download the most recent one. First close Safari and then install Reader. Launch Safari and you ought to be able to open the pdf files inside the Safari window. If you install Adobe Reader 10.1.x without first closing Safari, Safari will not display the pdf file inside its browser window until it is re-launched. For further help, please see http://helpx.adobe.com/acrobat/kb/troubleshoot-safari-plug-acrobat-x.html
    I have OX S yosemite, I unistalled adobe acrobat, I closed safary and I installed the new version of adobe acrobat
    but when I open a web page that I need to allow me to display and modify PDF files it is not working.
    I checked the following web page
    Troubleshoot Safari plug-in | Acrobat X, Reader X
    that is recommending the following:
    The AdobePDFViewer plug-in is used to display PDF files in Safari using Acrobat and Reader.
    This plug-in is installed as part of the Acrobat X or Reader X installation. The location of this plug-in is:
    /Library/Internet Plug-ins/AdobePDFViewer.plugin
    but after the new installation with this folder is completely empty and I am still
    unable to open these pdf.
    Does anybody knows anything else I can do?
    Best regards
    Ramon

    Moving this discussion to the Adobe Reader forum.

  • I need to configure a new hard disk as backup disk for time machine. The set up program is running and it says it will take 9 days to backup about 56 GB. Is it normal ?

    I need to configure a new hard disk as backup disk for time machine.
    The set up program is running since two hours and it says it will take 9 days to backup about 56 GB.
    Is it normal ?

    Roberto 17 wrote:
    I started this morning at 12 and after 5 hours now the backup is about 6 GB up on 56 GB.
    The new HD is a WD My Passport Edge 500 GB capacity
    5 hours to do 6 GB of transfer is NOT normal, even for USB 2.0 so there's something wrong here. I'd say cancel it, wipe the drive and then test the integrity of the drive. Do some file transfers over to and see if it's behaving normally. It could be a bad USB cable, it could be a bad drive or bad enclosure. As it's new, I suspect you haven't really put it through its paces yet and it's important to do that first before commissioning it to serve as your "reliable backup."

  • You may need to configure the connection settings in the deployment descrip

    Hi All
    I am new to BPEL and going through Order Booking Tutorial (using 10.1.3.4 version of opmn ) .
    I have a problem in 'Designing the Database Adapter to Insert Data' Chapter.
    I have installed Oracle 10g Express Edition and BPEL Process Manager on my local system.
    In the Example it has been asked to create a daabase connection with Third Party JDBC Driver. Instead I have created a database connection with Oracle(JDBC) Driver.So i didnt have to register any third party driver.
    I cud access the Order/OrderItems table as well .
    I Deployed the same on the server.But while running the process I get following error--
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    nested exception is:
         ORABPEL-11622
    Could not create/access the TopLink Session.
    This session is used to connect to the datastore. [Caused by: Listener refused the connection with the following error:
    ORA-12519, TNS:no appropriate service handler found
    The Connection descriptor used by the client was:
    localhost:1521:XE
    See root exception for the specific exception. You may need to configure the connection settings in the deployment descriptor (i.e. $J2EE_HOME/application-deployments/default/DbAdapter/oc4j-ra.xml) and restart the server. Caused by Exception [TOPLINK-4002] (Oracle TopLink - 10g Release 3 (10.1.3.4.0) (Build 080602)): oracle.toplink.exceptions.DatabaseException
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    I have checked several post on this error but every post talks about third party database.I have used Oracle Database only so why/What shud I change anything in oc4j-ra.xml?? This is my doubt .
    Pls help me on this .Also Let me knowe in my case is there any need to create the datasource.?I am low at concept of database.
    Pls help
    Regards
    Naveen

    Hi
    I am trying to insert orader and order Items as given in the Order booking tutorial..
    Here are the files description
    .wsdl file looks like
    <service name="DBInsert">
    <port name="DBInsert_pt" binding="tns:DBInsert_binding">
    <jca:address location="eis/DB/MyConnection"
    UIConnectionName="MyConnection"
    ManagedConnectionFactory="oracle.tip.adapter.db.DBManagedConnectionFactory"
    mcf.DriverClassName="oracle.jdbc.OracleDriver"
    mcf.PlatformClassName="oracle.toplink.platform.database.oracle.OraclePlatform"
    mcf.ConnectionString="jdbc:oracle:thin:@localhost:1521:XE"
    mcf.UserName="system"
    mcf.Password="6672B62098892995C8B651EFDF798A59"
    />
    </port>
    </service>
    data source file looks like
    <connection-pool name="MyConnection">
    <!-- (DESCRIPTION=(ADDRESS_LIST=(LOAD_BALANCE=on)(ADDRESS=(PROTOCOL=tcp)(HOST=nakhanna)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=XE))) below is in the form: [hostname]:[port]:[oracle sid]" -->
    <connection-factory factory-class="oracle.jdbc.OracleDriver" user="orabpel" password="->pwForOrabpel" url="jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(LOAD_BALANCE=on)(ADDRESS=(PROTOCOL=tcp)(HOST=nakhanna)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=XE)))"/>
    </connection-pool>
    <managed-data-source name="MyConnection" connection-pool-name="MyConnection" jndi-name="jdbc/MyConnectionDS"/>
    </data-sources>
    oc4j-ra.xml looks like
    <connector-factory location="eis/DB/MyConnection" connector-name="Database Adapter">
              <config-property name="xADataSourceName" value="jdbc/MyConnectionDS"/>
              <config-property name="dataSourceName" value=""/>
              <config-property name="platformClassName" value="oracle.toplink.platform.database.Oracle9Platform"/>
              <config-property name="usesNativeSequencing" value="true"/>
              <config-property name="sequencePreallocationSize" value="50"/>
              <config-property name="defaultNChar" value="false"/>
              <config-property name="usesBatchWriting" value="true"/>
              <connection-pooling use="none">
              </connection-pooling>
              <security-config use="none">
              </security-config>
         </connector-factory>
    ##################################################################3
    Still I get the same error .
    <bindingFault xmlns="http://schemas.oracle.com/bpel/extension"><part name="code"><code>null</code>
    </part><part name="summary"><summary>file:/C:/product/10.1.3.1/OracleAS_1/bpel/domains/default/tmp/.bpel_FulfillOrder_4.0_e77c64251e45eb4711a3a093f92e6a86.tmp/DBInsert.wsdl [ DBInsert_ptt::merge(OrdersCollection) ] - WSIF JCA Execute of operation 'merge' failed due to: java.util.MissingResourceException
    java.util.MissingResourceException
    ; nested exception is:
         ORABPEL-00001
    java.util.MissingResourceException
    java.util.MissingResourceException
    java.util.MissingResourceException
    </summary>
    </part><part name="detail"><detail>null</detail>
    </part></bindingFault>
    Pls let me know if something looks wrong in the above files
    Thanks
    naveen

  • Need to configure output type for adobe form

    Hello All,
    I need to configure output type for Adobe Form thru NACE. What would be print program and how do I call my form from that program? and, what would be the FORM routine for that form in NACE?
    I'm little confused, Pls I need your help.
    Thanks in advance,
    Chandra

    Hi,
    Just before few weeks we did this task.
    Say for example if you want to print PO details through ADOBE form instead of normal sapscript layout or standard MEDRUCK, you can follow the following steps.
    1. Design the form in SFP tcode, by passing the necessary inputs through form interface.
    2. Then use tcode tcode NACE and select EF as application and click output types button on the          application tool bar. Select NEU output type and double click processing routines on left side.
    3. Then, in the right side of the screen we can see the calling program and the form (may be sapscript or smartform) whatever used.
    4. For form names we have two options in NACE tcode.
    One is Form and the otherone is PDF/Smartform Form. If you are using adobe form give your form name under PDF/Smartform and also select PDF under the type option in the same screen.
    This worked perfectly for us. But pass the required parameters to the form from the routine used in standard program.
    If any queries please post it.

  • I need to configure a smtp authenticated. How do i do that?

    I need to configure a smtp authenticated. How do i do that?

    Just sync your old phone with your computere with itunes and when you sync your new phone it will put your muxic and dcontacts into the new phone. Make sure you have sync checked in the settings box.

  • ThinkPad 2nd HDD Adapter for T40 -do I need to configure the hard drive?

    I purchased a new Samsung HM160HC hard drive and a Thinkpad 2nd HDD adapter for Ultrabay slim for a Thinkpad T40. When I install the PATA hard drive into the adapter do I need to configure the hard drive as slave, cable select, or leave as master? Any help would be appreciated.   

    Reformat usiing the original install disc then update to v10.6.8.
    Mac OS X 10.6: Reinstalling Mac OS X

  • WVRS4400N wireless router - What do i need to configure for VPN software to work?

    Hi,
    My VPN software can't establish connection ever since i changed to the WVRS4400N router.  What do i need to configure inorder to establish a VPN connection to the outside network?
    On a side note, i am not sure if i am on the right track but i read a little bit about setting IPSec Pass-Through.  If this is the case, do i really need to get all the remote connection information inorder for my VPN software to work?  And under Key Management setting, what would my pre-shared key use for (assuming this is a key i generated)?
    Better yet, how can i get the vpn software to work with only having access to the internet without going through alot of hassle???
    Thanks ahead for any solutions given...

    Thank you for responding.
    If i am not mistaken, i believe what you are suggesting is setting up a VPN connection to my local area network and use the bundled Quick VPN client software to connect.
    I currently have Sentinel VPN software on my laptop and it is configured to have access to my work's network. In most cases, i am able to connect to work without a problem as long as i have internet connection. Apparently, my vpn doesn't work when i am running it behind the WVRS4400N router. This problem didn't occur with my previous router. I believe the WVRS4400N router is blocking the connection by default. What can i do or configure to resolve this?

  • Which runtime systems do i need to configure in CMS

    Hi,
    We have development,Test,Production systems in the system landscape.
    So What runtime systems do i need to configure in CMS
    I am assuming it should be
    Development-Development
    Consolidation-Test
    Test-?
    Production-Production
    Which runtime system do i need to configure for test system in my landscape(is it consolidation or test).what exactly is the role of consolidation runtime system.is it mandatory to configure that runtime system
    Points will be rewarded for the helpful answer

    HI Bala,
    configure system as
    Development-Development
    Consolidation- if you dont have server then dont configure it.
    Test-Test
    Production-Production
    NWDI upto consolidation is driven by activities. and assembly to production is driven by SCA. i.e complete software packaging
    as Test server means where you can test your complete application.That means you need to deploy whole application  as a sca file.
    and in NWDI sca file is generated after assembly.
    consolidation is only for verifying you changes before packaging you application. it can't be a test server.

  • Do I need to configure any settings of Virtual Machine for 64bit guests?

    I have installed VirtualBox on a Windows 2008 R2 64bit machine which has Intel Xeon E5506 processor.
    Now, I have started to create Virtual Machine for:
    1. Oracle Linux Release 5 Update 7 for x86 64 (64 bit)
    2. Windows 2008 R2 64bit
    I think I need to enable VT-x in BIOS but how about Execute Disable Bit?
    Acccording to the VirtualBox User Manual, VirtualBox will automatically use the correct settings for each selected 64-bit operating system type. However, I don't see any setting to specify whether I will install 32bit or 64bit OS. When I check the setting Enable IO APIC, it is not checked. My understanding is that setting must be enabled for any 64bit guests. Does VirtualBox use the correct settings including Enable IO APIC when I actually install the OS not before that?
    Thanks for any help.
    Peter

    Hello Todd/Venkat/Tuxedo Experts,
    I wanted to clarify the part that says: "You will also need to add the WSL to the UBBCONFIG file and recompile UBBCONFIG."
    I am guessing this means adding a WSL entry in UBBCONFIG file of Tuxedo Server since (I have been told in Venkat's post that) UBBCONFIG/tuxconfig file is not required on client side of tuxedo. Am I right in saying that client will have no UBBCONFIG and tuxconfig, while server UBBCONFIG has to have appropriate WSL entry?
    Btw, if I look at the ubbconfig of simpapp, it has no WSL entry. It does have the following server details though:
    ==============================
    DOMAINID simpapp
    MASTER DevnonAOMapp
    DevnonAOMapp LMID=DevnonAOMapp
    *GROUPS
    GROUP1
    LMID=DevnonAOMapp GRPNO=1 OPENINFO=NONE
    *SERVERS
    DEFAULT:
    CLOPT="-A"
    simpserv SRVGRP=GROUP1 SRVID=1
    *SERVICES
    TOUPPER
    ==============================
    Where will the WSL entry fit and what would it look like?
    Thanks & Regards,
    Ahsan

  • Do I need to configure something different,​when I'm using SCXI-1000,​1102 and 1180, together.?

    I am wanting to use SCXI-1000 with 2 modules SCXI-1102, but I also want to access the DAQ (ni pci 6035), through the SCXI-1180, to access some Digital I/O. How can I do that? What cable type between the SCXI and DAQ (6035) do I need to use? Do I need to configure something different? When I only configure the SCXI-1000 and SCXI-1102, I use the cable with 68 pins in both extremities and I don't have problems. But when inserting SCXI-1180, a following error message it is generated:
    "Dev1" digital lines 0, 1, 2 & 4 are in use by the connected SCXI subsystem.
    It happens when observing DIGITAL I/O in Test Panel in M A X.
    thanks
    Brás

    Thanks for the information! The examples sent me, were useful, but always I use Digital functions, just after I can't perform tests with SCXI, it doesn't respond, it becomes inactive until I reset Traditional NI-DAQ Devices.What can I do to have the VI attached running well? Can you help me?
    thanks
    José Brás
    Attachments:
    E_ser_dig_test.vi ‏109 KB

  • Do I need to configure my iPhone 4 to make it work in Argentina. Had a contract in England but moved overseas. I'm sure that it is unlocked.

    Do I need to configure my iPhone 4 to make it work in Argentina. Had a contract in England but moved overseas. I'm sure that it is unlocked.

    Easy to find out, put in a different sim (borrow from someone) and if it works, you are good to go.
    Or call Apple Care and ask if your iPhone is unlocked. If not, get it unlocked first before you moved since only the carrier you are with can officially unlock the iPhone.
    Yes, you need to get a new cellular sim card from the new carrier, you change your Apple ID's Country/Region.

Maybe you are looking for

  • How to configure link between 2921 and SM-D-ES3G-48-P EtherSwitch Service Module

    hi, I can't do that like the procedure given by Cisco. http://www.cisco.com/en/US/partner/docs/routers/access/interfaces/software/feature/guide/eesm_sw.html#wp1942894 Cisco Procedure : interface gi10/0 ip address x.x.x.x x.x.x.x service-module gigabi

  • Font issue. Project created in CS5 converted to CS6

    After I open a project I created with cs5 in cs6 the fonts are changed and the position is different. Same computer?   I also noticed the title location on the title editor does not match the title location on the preview monitor.  It shows in the ce

  • How to get my purchase history back?

    Hi, I suspect the merge between Nokia Dev and Ovi accounts to have deleted all my purchase history. The last 9th of september, I purchased Billboard for my N9. So, it was less than a year before, it should be still valid and I should still be able to

  • Removing Locations in open/save

    I am looking for a way to remove some locations in the open/save dialog. This is a reg setting in office and I am hoping it's the same for Adobe if is possible. Thanks in advance for any help.

  • After running software update, iChat closes in error

    Hello! I just ran software update and iChat is now 4.0.5. However, the buddy list doesn't show and it does not log me into AIM. So, I opened Preferences and if I click on any tab except for Accounts, the program keeps running. But, if I click on acco