Setting connectionProperties on OracleConnectionPoolDataSource

Hi all,
we are using on our project the SAP Netweaver 2004, Java 1.4 and the Oracle database with the JDBC driver 10.2.0.4. Netweaver as application server supports the use of JNDI datasources.
The configuration is as follows:
Factory: oracle.jdbc.pool.OracleDataSourceFactory
DataSource Type: ConnectionPoolDataSource
CPDS Classname: oracle.jdbc.pool.OracleConnectionPoolDataSource
Due to the huge amount of data, we need to set different parameters to optimize the connection performance.
connectionProperties     {packetSize=8192, defaultRowPrefetch=100}
If we set the properties like the user or the password the connectionProperties parameter will be ignored. I read in the JDBC documentation that the class OracleConnectionPoolDataSource extends the OracleDataSource, so the class supports the parameters. For me it looks like that the OracleDataSourceFactory doesn't pass the parameters to the OracleConnectionPoolDataSource instance, therefore the parameters are not set on the connection.
Now I have the following questions:
Is it possible to set the connection parameters?
Is there any reason why the parameters aren't passed to the datasource?
What others possibilities do we have?
Thanks in advance
Detlef

Change this:
$users = get-aduser -filter {createTimeStamp -gt $date} -Properties * | select samaccountname
To this:
$users = get-aduser -filter {createTimeStamp -gt $date} -Properties * | select -expandproperty samaccountname
Also, you're creating an access rule that only applies to the folder itself (not to the subfolders and files). If that's what you're after, then leave it as is. If you want to apply to subfolders and files, though, change this:
$permission = "$_","FullControl","Allow"
to this:
$permission = "$_","FullControl","ContainerInherit,ObjectInherit","None","Allow"
Let me know if that works (there's a chance you're going to have some issues with Set-Acl, but we'll see about that later)

Similar Messages

  • Setting Credentials in Reporting Services

    I am using SSRS 2005 and importing a report that runs fine in Visual Studio 2005 into an existing 3rd party Windows based software, part of which provides reporting functions already in use.  the third party software, as well as VS 2005 are on a Windows Server 2003 machine. After importing to the 3rd party software the error below occurs.
    "An attempt was made to set credentials for a data source 'Manitou' associated with the report. Report data source settings are specified in a way that prevents credentials from being submitted to the report server." 
    One issue that causes this problem is if the XML document I am importing has an entry of "Integrated Security = true"  However, the last three files I have imported trying to get this report to work do not have this entry, but I am still receiving this error. 
    What are some other causes for this error?

    I have solved the error ""An attempt was made to set credentials for a data source 'Manitou' associated with the report. Report data source settings are specified in a way that prevents credentials from being submitted to the report server."
    The problem was that there was a line in the .rdl file like <DataSourceReference>database name here</DataSourceReference>
    This is apparently not sufficient for Report Server authentication.  I found a working existing report that had
    <ConnectionProperties>
            <DataProvider>SQL</DataProvider>
            <ConnectString>Data Source=Server Name Here;Initial Catalog=database naem here</ConnectString>
          </ConnectionProperties>
    in the file.  I added this and removed the   "DataSourceReference" line, imported and it worked.

  • OracleConnectionPoolDataSource and JNDI

    I am attempting to use the OracleConnectionPoolDataSource via JNDI.
    I have defined two <data-source> items in the data-sources.xml file; one is for a non-pooled javax.sql.DataSource object, the other is for a pooled oracle.jdbc.pool.OracleConnectionPoolDataSource.
    data-sources.xml:
    <!-- Standard JDBC+JNDI -->
    <data-source
    class="javax.sql.DataSource"
    name="jdbc/myDS"
    location="jdbc/myDS"
    url="jdbc:oracle:thin:@nn.nnn.nnn.nnn:1521:MYSID"
    username="xxx"
    password="yyy"
    />
    <!-- Oracle Pool -->
    <data-source
    class="oracle.jdbc.pool.OracleConnectionPoolDataSource"
    name="jdbc/pool/myDS"
    location="jdbc/pool/myDS"
    url=" jdbc:oracle:thin:@nn.nnn.nnn.nnn:1521:MYSID "
    username="xxx"
    password="yyy"
    />
    I can get a non-pooled DataSource, however, when I attempt to obtain a pooled DataSource, OC4J (via JDeveloper 10g) throws an exception:
    Error instantiating web-app JNDI-context: Unknown resource type: oracle.jdbc.pool.OracleConnectionPoolDataSource
    Why can't OC4J recognize this object?

    ok man you shell set teh class12.jar in you server class path , try it

  • Set up DB Connection Pool for Oracle DataBase Using Java App Server8

    Hi,
    In the Admin Console of Java App Server 8, I tried to create a connection pool for the oracle database. I chose Resource Type to be "javax.sql.ConnectionPoolDataSource" and the Vendor is Oracle. So the Data Source Class Name is filled by the system to be "oracle.jdbc.pool.OracleConnectionPoolDataSource". Now, I set up the class path to point to the database driver class "sun.jdbc.odbc.JdbcOdbcDriver" and also the to the Data Source Class Name. Also I set up the JVM options in the console. Restart the server, and then try to ping to the database, but get the error:
    Operation 'pingConnectionPool' failed in 'resources' Config Mbean. Target exception message: Connection could not be allocated because: No suitable driver
    I don't understand what else I should do and why this error is coming?
    Please help me out.
    Thank you
    Regards,
    Sarah

    Hi,
    I've already solve the problem. I did the following:
    set the Url to be: jdbc:oracle:thin:@hostname:port:SID
    set username
    set password
    add oracle.jdbc.drivers.OracleDriver into the JVM options -Djdbc.drivers
    restart the server
    test the connection
    it works :)

  • How to set database location in the crystal report X1 from the Source code.

    Dear All,
    I am using Crystal report X1 for report generation.Now I am setting the database location manually in the crystal report. How can I Set the database location from the Source code.
    Awaiting for your reply.
    Thanks in advance.
    Regards,
    Rahaneef T

    Here's a routine that also searches for subreports to set the log on info. Simply remove that aprt to set the main report logon info:
    IDatabaseTablePtr pTable;
    //get first table
    pTable = m_Report->Database->Tables->GetItem(1) ;
    long lTableCount = m_Report->Database->Tables->Count;
    for( long lTable=1; lTable<=lTableCount; lTable++ )
         pTable = m_Report->Database->Tables->GetItem(lTable);
         pTable->ConnectionProperties->DeleteAll();
         pTable->ConnectionProperties->Add("DSN", "Name of your DSN");
         pTable->ConnectionProperties->Add("Database", "Demo");
         pTable->ConnectionProperties->Add("Password", "sa");
         pTable->ConnectionProperties->Add("User ID", "1Oem2000");
    // Log on the tables of the subreports.
    long lSectionCount = m_Report->Sections->Count;
    for( long lSection=1; lSection<=lSectionCount; lSection++ )
         ISectionPtr pSection = m_Report->Sections->Item[lSection];
         long lSubreportCount = pSection->ReportObjects->Count;
         for( long lSubreport=1; lSubreport<=lSubreportCount; lSubreport++ )
              IReportObjectPtr pSubreportObject = pSection->ReportObjects->Item[lSubreport];
              CRObjectKind crObjectKind;
              pSubreportObject->get_Kind(&crObjectKind);
              if( crObjectKind == crSubreportObject )
                   ISubreportObjectPtr SubReportPtr = pSubreportObject;
                   IReportPtr pSubReport = SubReportPtr->OpenSubreport();
                   long lTableCount = pSubReport->Database->Tables->Count;
                   for( long lTable=1; lTable<=lTableCount; lTable++ )
                        pTable = m_Report->Database->Tables->GetItem(lTable);
                        pTable->ConnectionProperties->DeleteAll();
                        //pTable->ConnectionProperties->Add("DSN", "dwcb12003");
                        pTable->ConnectionProperties->Add("Database", "CrystalEport_DB");
                        pTable->ConnectionProperties->Add("Password", "sa");
                        pTable->ConnectionProperties->Add("User ID", "1Oem2000");
    If that doesn't work you need to tell us what is the error you are getting and paste in the code you are using.

  • OracleConnectionPoolDataSource Problem

    I'm Trying to connect a JSP tomcat-based application to Oracle using
    OracleConnectionPoolDataSource and related classes. I have used
    javax.sql.DataSource an it did work fine. I have made changes I need for using
    that classes and when I get the DataSource it throws exception
    "javax.naming.NamingException: Cannot create resource instance".
    I'm using Apache Tomcat 5.5.23 for windows, Java JDK 1.5.0_05 and Oracle 9i
    Release 2 (9.2.0.1.0). All for windows.
    Changes I have made are these:
    In context.xml:
    <Context path="/test" docBase="test" debug="0"
    reloadable="true" >
    <Resource
    name="jdbc/test" auth="Container"
    type="oracle.jdbc.pool.OracleConnectionPoolDataSource"
    maxActive="0" maxIdle="-1" maxWait="-1"
    removeAbandoned="true" removeAbandonedTimeout="60" logAbandoned="true"
    username="test" password="test"
    driverClassName="oracle.jdbc.pool.OracleConnectionPoolDataSource"
    url="jdbc:oracle:thin:@192.168.1.109:1521:GLOBALDB" />
    </Context>
    In web.xml (only resource-ref):
    <resource-ref>
    <res-ref-name>jdbc/test</res-ref-name>
    <res-type>oracle.jdbc.pool.OracleConnectionPoolDataSource</res-type>
    <res-auth>Container</res-auth>
    </resource-ref>
    Code that creates connection:
    initCtx = new InitialContext();
    ctx = (Context) initCtx.lookup("java:/comp/env");
    ds = (OracleConnectionPoolDataSource) ctx.lookup("/jdbc/test");
    PooledConnection pc = ds.getPooledConnection();
    con = pc.getConnection();
    I have searched in google and found some examples that use
    oracle.jdbc.driver.OracleDriver in driverClassName. I have also tried this
    option with the same results. I suppose bug is elsewhere.
    I have tried to create DataSource instance in the code instead of get it from
    resource. Doing this it drops no error and page works, but I don't know how can
    I control maximun number of pooled connections. This is the code I have used for
    that:
    initCtx = new InitialContext();
    OracleConnectionPoolDataSource ds = new OracleConnectionPoolDataSource();
    ds.setDataSourceName("oracle.jdbc.pool.OracleConnectionPoolDataSource");
    ds.setURL(dbURL);
    ds.setDescription(DS);
    ds.setUser(dbUsuario);
    ds.setPassword(dbPassword);
    initCtx.rebind(DS, ds);
    pc = ds.getPooledConnection();
    But it creates only one connection and doesn't allow two users to log in at the
    same time.
    Please. I need help.

    how can
    I control maximun number of pooled connections.
    Maximum number of dB connections in pool are set using the maxActive parameter.
    <parameter>
    <name>maxActive</name>
    <value>100</value>
    </parameter>
    Maximum number of idle dB connections to retain in pool are set using the maxIdle parameter.
    <parameter>
    <name>maxIdle</name>
    <value>30</value>
    </parameter>

  • Cache_scheme and OracleConnectionPoolDataSource

    Hi guys.
    I am implementing Oracle's OracleConnectionPoolDataSource to provide Connection Pooling. So far, so good. However, I also wanted to introduce the use of cache_scheme for optimising once we reach the max connections limit. Do I need to use OracleConnectionCacheImpl instead of OracleConnectionPoolDataSource in order to utilise cache_scheme ? Or does OracleConnectionPoolDataSource make use of this within it's own implementation ?
    Thanks.
    Steve.

    Hi Dmitry,
         The behavior of the near cache depends on the invalidation startegy used. You can choose invalidation strategy by adding <invalidation-strategy> element to your <near-scheme> definition, and choosing one of the following four options:
         none -- typically used with the size and/or time limited front cache. The cache will not use events to evict items from the front cache.
         present -- a separate cache listener will be registered for each item in the front cache. That way front cache only receives the events for the items it cares about.
         all -- a single cache listener is registered that notifies front cache of any changes to the back cache. That means that it receives the events for all cache items, including those it doesn't care about (i.e. does not contain). On the other hand it helps keep the number of cache listeners low.
         auto -- currently same as all and default value if <invalidation-strategy> element is not specified.
         What you have to keep in mind when working with the near cache is that the front cache is only updated on gets, not on puts, unless invalidation strategy is set to none. If that wasn't the case, bulk load through the near cache would be problematic from the performance standpoint because of the large number of listener registrations (present) or the large number of events received (all).
         So, if you use time/size based expiration you can set invalidation strategy to none and items will be cached on the client side (front cache) on inserts. Otherwise, you should simply keep this difference in behavior in mind when working with the near cache.
         Finally, you should also be aware that queries against the near cache are simply passed through to the back cache and the results of the queries are not cached on the client side -- only subsequent gets will cache individual items.
         HTH,
         Aleks
         Message was edited by: aseovic

  • Getting error while setting SFTP adapter properties dynamically in Biztalk 2013

    Hi ,
    I am getting error while doing setup SFTP adapter in biztalk 2013.
     Error details: Microsoft.BizTalk.Adapter.SftpInvoker.SftpException: Create SFTP facade error.
    Server stack trace: 
       at Microsoft.BizTalk.Adapter.SftpInvoker.SftpInvoker..ctor(String host, Int32 port, String username, String password, String key, String privateKeyPassword, Boolean acceptAnyserverKey, String expectedServerFingerPrint, String proxyhost, Int32 proxyport,
    String proxyuserName, String proxypassword, Int32 proxytype, Int32 encryptionType, Boolean isKeyData)
       at Microsoft.BizTalk.Adapter.Sftp.SftpConnection.OpenUnderlyingConnection(SftpConnectionProperties connectionProperties)
       at Microsoft.BizTalk.Adapters.CommonHelpers.Connection`3.ConnectionPool`3.GetConnection(T1 connectionProperties, TimeSpan timeout)
       at Microsoft.BizTalk.Adapters.CommonHelpers.Connection`3.GetConnection(T connectionProperties, TimeSpan timeout)
       at Microsoft.BizTalk.Adapter.Sftp.SftpOutputChannel.Send(Message message, TimeSpan timeOut)
       at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object[] args, Object server, Object[]& outArgs)
       at System.Runtime.Remoting.Messaging.StackBuilderSink.AsyncProcessMessage(IMessage msg, IMessageSink replySink)
    Exception rethrown at [0]: 
       at System.Runtime.AsyncResult.End[TAsyncResult](IAsyncResult result)
       at System.ServiceModel.Channels.ServiceChannel.SendAsyncResult.End(SendAsyncResult result)
       at System.ServiceModel.Channels.ServiceChannel.EndCall(String action, Object[] outs, IAsyncResult result)
    Exception rethrown at [1]: 
       at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
       at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
       at System.ServiceModel.Channels.IOutputChannel.EndSend(IAsyncResult result)
       at Microsoft.BizTalk.Adapter.Wcf.Runtime.WcfClient`2.SendCallback(IAsyncResult result) 
     MessageId:  {1059433E-B2D4-4394-8277-C31BDFC00553}
     InstanceID: {BED31F04-E764-446D-A587-65B1F72F7A98}

    Hi Abhay,
    Can you pls explain what are you trying to achieve here? Little bit about your solution/requirement and the way you implementing things?
    As you have mentioned that you are setting the SFTP adapter properties dynamically within your orchestration, can you share the code where you are assigning the properties and constructing the message?
    Rachit

  • OracleConnectionPoolDataSource with a JDBC defined in Sun Java App Server?

    How do I use OracleConnectionPoolDataSource with a JDBC Resource defined in Sun Java System Application Server 8.2?
    I created a JDBC Resource labeled "jdbc/__PetroPool" that is backed by a Connection Pool labeled "PetroPool".
    Should I even be using OracleConnectionPoolDataSource or should I be using Apache Commons DBCP?
    Thanks,
    --Todd                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Check this documentation from MS on using the JDBC driver with DataSource
    http://msdn2.microsoft.com/en-us/library/ms379052.aspx
    SJS Web Server 7.0 should work with any driver that has support for javax.sql.DataSource. The great majority of drivers do.
    So instead of using the driver name, use the DataSource class name:
    com.microsoft.sqlserver.jdbc.SQLServerDataSource
    The properties to add should be:
    user=username
    password=password
    servername=sql_server_hostname
    portnumber=sql_server_port
    databasename=databasename
    In general, all the setters required to get the datasource configured can be set as properties.

  • Setting DatabaseName in Report is ignored by Crystal Engine

    Post Author: nan
    CA Forum: Data Connectivity and SQL
    Hello.
    I have a VB6 application using CR8.5 that i am currently migrating to CRXI. I connect to both SQLServer 2000 and Oracle 10g databases via ODBC. I have some reports on my PC which use a database
    named TEST. On the production machine i have a database named LIVE. I also have the following variable in my application:Public cReport As CRAXDRT.ReportChanging the ODBC connection DSN using cReport.Database.Tables().ConnectionProperties("DSN") or cReport.Database.Tables().ConnectBufferString was successful. I cannot change the database name though.  Even though i set the cReport.Database.Tables(*).ConnectionProperties("Database") property to "LIVE" at runtime, the Crystal Engine is still trying to connect to TEST. Even setting the ConnectBufferString directly does not help. I would appreciate any ideas on how to change the database name at runtime.

    Thanks TST,
    I had to do a lot of drilling and exploring but found the location based on your suggestion.  For the record, the mod is in  the "Enter Row Cell Data" VI.  I have included a screen shot of the mod.
    Greg Cole
    “It is not the ship so much as the skillful sailing that ensures the prosperous voyage.”
    Attachments:
    vi mod.gif ‏7 KB

  • Setting roles on connection pools

    Hi,
    using OracleConnectionCacheImpl and OracleConnectionPoolDataSource,
    how can I set a role on the pooled connections since the creation of the physical
    connection is out of my hands ? Ideally, I would like to set the role only once
    so that when I call getConnection() to get the logical connection I do not have
    to set it again and again ...
    We are using exclusively stored procedures which one can execute according to its role.
    Typically, my client has a role and uses a well known ConnectionCache which should
    set the role accordingly.
    Is the only solution to set the role on each request ?
    I hope not.
    Is anybody using roles in their applications ?
    Cheers
    Arnaud

    Hi,
    using OracleConnectionCacheImpl and OracleConnectionPoolDataSource,
    how can I set a role on the pooled connections since the creation of the physical
    connection is out of my hands ? Ideally, I would like to set the role only once
    so that when I call getConnection() to get the logical connection I do not have
    to set it again and again ...
    We are using exclusively stored procedures which one can execute according to its role.
    Typically, my client has a role and uses a well known ConnectionCache which should
    set the role accordingly.
    Is the only solution to set the role on each request ?
    I hope not.
    Is anybody using roles in their applications ?
    Cheers
    Arnaud

  • Xorg 1.10.1 no longer affected by manual DPI setting

    I use my 23 inch 1920x1080 monitor as TV also. As this means I sit rather far from it, I manually set DPI quite low to enlarge windows and fonts by default. However after the last upgrade, which brought Xorg 1.10 and Gnome 3, Xorg seems to no longer be affected by my setting DPI in xorg.conf. The logs show that the value is read, and xdpyinfo shows the DPI I have set manually, but this setting no longer seems to affect any windows or fonts.
    The DPI is set via the nvidia driver. Relevant parts of xorg.conf and the full Xorg.0.log are attached.
    Does anyone know what could have caused this?
    xorg.conf:
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "Unknown"
    HorizSync 28.0 - 33.0
    VertRefresh 43.0 - 72.0
    Option "DPMS"
    Option "DPI" "60x60"
    EndSection
    Xorg.0.log:
    [ 45267.074]
    X.Org X Server 1.10.1
    Release Date: 2011-04-15
    [ 45267.074] X Protocol Version 11, Revision 0
    [ 45267.074] Build Operating System: Linux 2.6.38-ARCH x86_64
    [ 45267.074] Current Operating System: Linux norstaurar 2.6.38-ARCH #1 SMP PREEMPT Fri May 13 09:24:47 CEST 2011 x86_64
    [ 45267.074] Kernel command line: root=/dev/disk/by-uuid/41bd750d-271b-4392-898a-51e284889d43 ro
    [ 45267.074] Build Date: 16 April 2011 12:02:01PM
    [ 45267.074]
    [ 45267.074] Current version of pixman: 0.20.2
    [ 45267.074] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 45267.074] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 45267.074] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Jun 3 10:40:17 2011
    [ 45267.074] (==) Using config file: "/etc/X11/xorg.conf"
    [ 45267.074] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 45267.075] (==) ServerLayout "Layout0"
    [ 45267.075] (**) |-->Screen "Screen0" (0)
    [ 45267.075] (**) | |-->Monitor "Monitor0"
    [ 45267.075] (**) | |-->Device "Device0"
    [ 45267.075] (**) |-->Input Device "Keyboard0"
    [ 45267.075] (**) |-->Input Device "Mouse0"
    [ 45267.075] (==) Automatically adding devices
    [ 45267.075] (==) Automatically enabling devices
    [ 45267.075] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 45267.075] Entry deleted from font path.
    [ 45267.075] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 45267.075] Entry deleted from font path.
    [ 45267.075] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 45267.075] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 45267.075] Entry deleted from font path.
    [ 45267.075] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 45267.075] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 45267.075] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 45267.075] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 45267.075] (WW) Disabling Keyboard0
    [ 45267.075] (WW) Disabling Mouse0
    [ 45267.075] (II) Loader magic: 0x7d6fa0
    [ 45267.075] (II) Module ABI versions:
    [ 45267.075] X.Org ANSI C Emulation: 0.4
    [ 45267.075] X.Org Video Driver: 10.0
    [ 45267.075] X.Org XInput driver : 12.2
    [ 45267.075] X.Org Server Extension : 5.0
    [ 45267.076] (--) PCI:*(0:2:0:0) 10de:0848:1043:82f2 rev 162, Mem @ 0xfd000000/16777216, 0xf0000000/134217728, 0xfa000000/33554432, I/O @ 0x0000ec00/128, BIOS @ 0x????????/131072
    [ 45267.076] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 45267.076] (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    [ 45267.076] (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    [ 45267.076] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    [ 45267.076] (II) "record" will be loaded by default.
    [ 45267.076] (II) "dri" will be loaded by default.
    [ 45267.076] (II) "dri2" will be loaded by default.
    [ 45267.076] (II) LoadModule: "dbe"
    [ 45267.077] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 45267.077] (II) Module dbe: vendor="X.Org Foundation"
    [ 45267.077] compiled for 1.10.1, module version = 1.0.0
    [ 45267.077] Module class: X.Org Server Extension
    [ 45267.077] ABI class: X.Org Server Extension, version 5.0
    [ 45267.077] (II) Loading extension DOUBLE-BUFFER
    [ 45267.077] (II) LoadModule: "extmod"
    [ 45267.077] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 45267.077] (II) Module extmod: vendor="X.Org Foundation"
    [ 45267.077] compiled for 1.10.1, module version = 1.0.0
    [ 45267.077] Module class: X.Org Server Extension
    [ 45267.077] ABI class: X.Org Server Extension, version 5.0
    [ 45267.077] (II) Loading extension MIT-SCREEN-SAVER
    [ 45267.077] (II) Loading extension XFree86-VidModeExtension
    [ 45267.077] (II) Loading extension XFree86-DGA
    [ 45267.077] (II) Loading extension DPMS
    [ 45267.077] (II) Loading extension XVideo
    [ 45267.077] (II) Loading extension XVideo-MotionCompensation
    [ 45267.077] (II) Loading extension X-Resource
    [ 45267.077] (II) LoadModule: "glx"
    [ 45267.077] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 45267.092] (II) Module glx: vendor="NVIDIA Corporation"
    [ 45267.092] compiled for 4.0.2, module version = 1.0.0
    [ 45267.092] Module class: X.Org Server Extension
    [ 45267.092] (II) NVIDIA GLX Module 270.41.19 Mon May 16 23:48:30 PDT 2011
    [ 45267.092] (II) Loading extension GLX
    [ 45267.092] (II) LoadModule: "record"
    [ 45267.092] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 45267.092] (II) Module record: vendor="X.Org Foundation"
    [ 45267.092] compiled for 1.10.1, module version = 1.13.0
    [ 45267.092] Module class: X.Org Server Extension
    [ 45267.092] ABI class: X.Org Server Extension, version 5.0
    [ 45267.092] (II) Loading extension RECORD
    [ 45267.092] (II) LoadModule: "dri"
    [ 45267.092] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 45267.092] (II) Module dri: vendor="X.Org Foundation"
    [ 45267.092] compiled for 1.10.1, module version = 1.0.0
    [ 45267.092] ABI class: X.Org Server Extension, version 5.0
    [ 45267.092] (II) Loading extension XFree86-DRI
    [ 45267.092] (II) LoadModule: "dri2"
    [ 45267.092] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 45267.092] (II) Module dri2: vendor="X.Org Foundation"
    [ 45267.092] compiled for 1.10.1, module version = 1.2.0
    [ 45267.092] ABI class: X.Org Server Extension, version 5.0
    [ 45267.093] (II) Loading extension DRI2
    [ 45267.093] (II) LoadModule: "nvidia"
    [ 45267.093] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 45267.093] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 45267.093] compiled for 4.0.2, module version = 1.0.0
    [ 45267.093] Module class: X.Org Video Driver
    [ 45267.094] (II) NVIDIA dlloader X Driver 270.41.19 Mon May 16 23:33:35 PDT 2011
    [ 45267.094] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 45267.094] (++) using VT number 8
    [ 45267.096] (II) Loading sub module "fb"
    [ 45267.096] (II) LoadModule: "fb"
    [ 45267.096] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 45267.097] (II) Module fb: vendor="X.Org Foundation"
    [ 45267.097] compiled for 1.10.1, module version = 1.0.0
    [ 45267.097] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 45267.097] (II) Loading sub module "wfb"
    [ 45267.097] (II) LoadModule: "wfb"
    [ 45267.097] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 45267.097] (II) Module wfb: vendor="X.Org Foundation"
    [ 45267.097] compiled for 1.10.1, module version = 1.0.0
    [ 45267.097] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 45267.097] (II) Loading sub module "ramdac"
    [ 45267.097] (II) LoadModule: "ramdac"
    [ 45267.097] (II) Module "ramdac" already built-in
    [ 45267.097] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 45267.097] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 45267.097] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 45267.097] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
    [ 45267.097] (==) NVIDIA(0): RGB weight 888
    [ 45267.097] (==) NVIDIA(0): Default visual is TrueColor
    [ 45267.097] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 45267.097] (**) NVIDIA(0): Option "DPI" "60x60"
    [ 45267.369] (II) NVIDIA(GPU-0): Display (Samsung SyncMaster (DFP-0)) does not support NVIDIA
    [ 45267.369] (II) NVIDIA(GPU-0): 3D Vision stereo.
    [ 45267.370] (II) NVIDIA(0): NVIDIA GPU GeForce 8300 (C77) at PCI:2:0:0 (GPU-0)
    [ 45267.370] (--) NVIDIA(0): Memory: 524288 kBytes
    [ 45267.370] (--) NVIDIA(0): VideoBIOS: 62.77.2f.00.00
    [ 45267.370] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    [ 45267.370] (--) NVIDIA(0): Connected display device(s) on GeForce 8300 at PCI:2:0:0
    [ 45267.370] (--) NVIDIA(0): Samsung SyncMaster (DFP-0)
    [ 45267.370] (--) NVIDIA(0): Samsung SyncMaster (DFP-0): 165.0 MHz maximum pixel clock
    [ 45267.370] (--) NVIDIA(0): Samsung SyncMaster (DFP-0): Internal Single Link TMDS
    [ 45267.372] (WW) NVIDIA(0): The EDID for Samsung SyncMaster (DFP-0) contradicts itself:
    [ 45267.372] (WW) NVIDIA(0): mode "720x480" is specified in the EDID; however, the
    [ 45267.372] (WW) NVIDIA(0): EDID's valid HorizSync range (27.000-81.000 kHz) would
    [ 45267.372] (WW) NVIDIA(0): exclude this mode's HorizSync (15.7 kHz); ignoring
    [ 45267.372] (WW) NVIDIA(0): HorizSync check for mode "720x480".
    [ 45267.372] (WW) NVIDIA(0): The EDID for Samsung SyncMaster (DFP-0) contradicts itself:
    [ 45267.372] (WW) NVIDIA(0): mode "720x576" is specified in the EDID; however, the
    [ 45267.372] (WW) NVIDIA(0): EDID's valid HorizSync range (27.000-81.000 kHz) would
    [ 45267.372] (WW) NVIDIA(0): exclude this mode's HorizSync (15.6 kHz); ignoring
    [ 45267.372] (WW) NVIDIA(0): HorizSync check for mode "720x576".
    [ 45267.375] (WW) NVIDIA(0): The EDID for Samsung SyncMaster (DFP-0) contradicts itself:
    [ 45267.375] (WW) NVIDIA(0): mode "720x480" is specified in the EDID; however, the
    [ 45267.375] (WW) NVIDIA(0): EDID's valid HorizSync range (27.000-81.000 kHz) would
    [ 45267.375] (WW) NVIDIA(0): exclude this mode's HorizSync (15.7 kHz); ignoring
    [ 45267.375] (WW) NVIDIA(0): HorizSync check for mode "720x480".
    [ 45267.376] (WW) NVIDIA(0): The EDID for Samsung SyncMaster (DFP-0) contradicts itself:
    [ 45267.376] (WW) NVIDIA(0): mode "720x576" is specified in the EDID; however, the
    [ 45267.376] (WW) NVIDIA(0): EDID's valid HorizSync range (27.000-81.000 kHz) would
    [ 45267.376] (WW) NVIDIA(0): exclude this mode's HorizSync (15.6 kHz); ignoring
    [ 45267.376] (WW) NVIDIA(0): HorizSync check for mode "720x576".
    [ 45267.402] (II) NVIDIA(0): Assigned Display Device: DFP-0
    [ 45267.402] (==) NVIDIA(0):
    [ 45267.402] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 45267.402] (==) NVIDIA(0): will be used as the requested mode.
    [ 45267.402] (==) NVIDIA(0):
    [ 45267.402] (II) NVIDIA(0): Validated modes:
    [ 45267.402] (II) NVIDIA(0): "nvidia-auto-select"
    [ 45267.402] (II) NVIDIA(0): Virtual screen size determined to be 1920 x 1080
    [ 45267.426] (**) NVIDIA(0): DPI set to (60, 60); computed from "DPI" X config option
    [ 45267.426] (--) Depth 24 pixmap format is 32 bpp
    [ 45267.426] (II) NVIDIA: Using 768.00 MB of virtual memory for indirect memory access.
    [ 45267.430] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 45267.430] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 45267.430] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 45267.430] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 45267.430] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 45267.430] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 45267.430] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 45267.430] (II) NVIDIA(0): Config Options in the README.
    [ 45267.431] (II) NVIDIA(0): Setting mode "nvidia-auto-select"
    [ 45267.472] (II) Loading extension NV-GLX
    [ 45267.508] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 45267.508] (==) NVIDIA(0): Backing store disabled
    [ 45267.508] (==) NVIDIA(0): Silken mouse enabled
    [ 45267.509] (**) NVIDIA(0): DPMS enabled
    [ 45267.509] (II) Loading extension NV-CONTROL
    [ 45267.510] (II) Loading extension XINERAMA
    [ 45267.510] (II) Loading sub module "dri2"
    [ 45267.510] (II) LoadModule: "dri2"
    [ 45267.510] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 45267.510] (II) Module dri2: vendor="X.Org Foundation"
    [ 45267.510] compiled for 1.10.1, module version = 1.2.0
    [ 45267.510] ABI class: X.Org Server Extension, version 5.0
    [ 45267.510] (II) NVIDIA(0): [DRI2] Setup complete
    [ 45267.510] (==) RandR enabled
    [ 45267.510] (II) Initializing built-in extension Generic Event Extension
    [ 45267.510] (II) Initializing built-in extension SHAPE
    [ 45267.510] (II) Initializing built-in extension MIT-SHM
    [ 45267.510] (II) Initializing built-in extension XInputExtension
    [ 45267.510] (II) Initializing built-in extension XTEST
    [ 45267.510] (II) Initializing built-in extension BIG-REQUESTS
    [ 45267.510] (II) Initializing built-in extension SYNC
    [ 45267.510] (II) Initializing built-in extension XKEYBOARD
    [ 45267.510] (II) Initializing built-in extension XC-MISC
    [ 45267.510] (II) Initializing built-in extension SECURITY
    [ 45267.510] (II) Initializing built-in extension XINERAMA
    [ 45267.510] (II) Initializing built-in extension XFIXES
    [ 45267.510] (II) Initializing built-in extension RENDER
    [ 45267.510] (II) Initializing built-in extension RANDR
    [ 45267.510] (II) Initializing built-in extension COMPOSITE
    [ 45267.510] (II) Initializing built-in extension DAMAGE
    [ 45267.512] (II) Initializing extension GLX
    [ 45267.586] (II) config/udev: Adding input device Power Button (/dev/input/event3)
    [ 45267.586] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 45267.586] (II) LoadModule: "evdev"
    [ 45267.586] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 45267.586] (II) Module evdev: vendor="X.Org Foundation"
    [ 45267.586] compiled for 1.10.0, module version = 2.6.0
    [ 45267.586] Module class: X.Org XInput Driver
    [ 45267.586] ABI class: X.Org XInput driver, version 12.2
    [ 45267.586] (II) Using input driver 'evdev' for 'Power Button'
    [ 45267.586] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 45267.586] (**) Power Button: always reports core events
    [ 45267.586] (**) Power Button: Device: "/dev/input/event3"
    [ 45267.605] (--) Power Button: Found keys
    [ 45267.605] (II) Power Button: Configuring as keyboard
    [ 45267.605] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
    [ 45267.605] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 45267.605] (**) Option "xkb_rules" "evdev"
    [ 45267.605] (**) Option "xkb_model" "evdev"
    [ 45267.605] (**) Option "xkb_layout" "se"
    [ 45267.636] (II) config/udev: Adding input device Video Bus (/dev/input/event1)
    [ 45267.636] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 45267.636] (II) Using input driver 'evdev' for 'Video Bus'
    [ 45267.636] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 45267.636] (**) Video Bus: always reports core events
    [ 45267.636] (**) Video Bus: Device: "/dev/input/event1"
    [ 45267.648] (--) Video Bus: Found keys
    [ 45267.648] (II) Video Bus: Configuring as keyboard
    [ 45267.648] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A03:00/device:12/LNXVIDEO:00/input/input1/event1"
    [ 45267.648] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
    [ 45267.648] (**) Option "xkb_rules" "evdev"
    [ 45267.648] (**) Option "xkb_model" "evdev"
    [ 45267.648] (**) Option "xkb_layout" "se"
    [ 45267.650] (II) config/udev: Adding input device Power Button (/dev/input/event2)
    [ 45267.650] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 45267.650] (II) Using input driver 'evdev' for 'Power Button'
    [ 45267.650] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 45267.650] (**) Power Button: always reports core events
    [ 45267.650] (**) Power Button: Device: "/dev/input/event2"
    [ 45267.662] (--) Power Button: Found keys
    [ 45267.662] (II) Power Button: Configuring as keyboard
    [ 45267.662] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input2/event2"
    [ 45267.662] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
    [ 45267.662] (**) Option "xkb_rules" "evdev"
    [ 45267.662] (**) Option "xkb_model" "evdev"
    [ 45267.662] (**) Option "xkb_layout" "se"
    [ 45267.666] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event5)
    [ 45267.666] (**) Logitech USB Receiver: Applying InputClass "evdev keyboard catchall"
    [ 45267.666] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
    [ 45267.666] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 45267.666] (**) Logitech USB Receiver: always reports core events
    [ 45267.666] (**) Logitech USB Receiver: Device: "/dev/input/event5"
    [ 45267.675] (--) Logitech USB Receiver: Found keys
    [ 45267.675] (II) Logitech USB Receiver: Configuring as keyboard
    [ 45267.675] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:04.0/usb4/4-3/4-3:1.0/input/input5/event5"
    [ 45267.675] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD)
    [ 45267.675] (**) Option "xkb_rules" "evdev"
    [ 45267.675] (**) Option "xkb_model" "evdev"
    [ 45267.675] (**) Option "xkb_layout" "se"
    [ 45267.676] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event6)
    [ 45267.676] (**) Logitech USB Receiver: Applying InputClass "evdev pointer catchall"
    [ 45267.676] (**) Logitech USB Receiver: Applying InputClass "evdev keyboard catchall"
    [ 45267.676] (II) Using input driver 'evdev' for 'Logitech USB Receiver'
    [ 45267.676] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 45267.676] (**) Logitech USB Receiver: always reports core events
    [ 45267.676] (**) Logitech USB Receiver: Device: "/dev/input/event6"
    [ 45267.685] (--) Logitech USB Receiver: Found 12 mouse buttons
    [ 45267.685] (--) Logitech USB Receiver: Found scroll wheel(s)
    [ 45267.685] (--) Logitech USB Receiver: Found relative axes
    [ 45267.685] (--) Logitech USB Receiver: Found x and y relative axes
    [ 45267.685] (--) Logitech USB Receiver: Found absolute axes
    [ 45267.685] (--) Logitech USB Receiver: Found keys
    [ 45267.685] (II) Logitech USB Receiver: Configuring as mouse
    [ 45267.685] (II) Logitech USB Receiver: Configuring as keyboard
    [ 45267.685] (II) Logitech USB Receiver: Adding scrollwheel support
    [ 45267.685] (**) Logitech USB Receiver: YAxisMapping: buttons 4 and 5
    [ 45267.685] (**) Logitech USB Receiver: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 45267.685] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:04.0/usb4/4-3/4-3:1.1/input/input6/event6"
    [ 45267.685] (II) XINPUT: Adding extended input device "Logitech USB Receiver" (type: KEYBOARD)
    [ 45267.685] (**) Option "xkb_rules" "evdev"
    [ 45267.685] (**) Option "xkb_model" "evdev"
    [ 45267.685] (**) Option "xkb_layout" "se"
    [ 45267.685] (II) Logitech USB Receiver: initialized for relative axes.
    [ 45267.685] (WW) Logitech USB Receiver: ignoring absolute axes.
    [ 45267.686] (**) Logitech USB Receiver: (accel) keeping acceleration scheme 1
    [ 45267.686] (**) Logitech USB Receiver: (accel) acceleration profile 0
    [ 45267.686] (**) Logitech USB Receiver: (accel) acceleration factor: 2.000
    [ 45267.686] (**) Logitech USB Receiver: (accel) acceleration threshold: 4
    [ 45267.686] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/mouse0)
    [ 45267.686] (II) No input driver/identifier specified (ignoring)
    [ 45267.687] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event4)
    [ 45267.687] (II) No input driver/identifier specified (ignoring)
    [ 45267.692] (II) config/udev: Adding input device PC Speaker (/dev/input/event0)
    [ 45267.692] (II) No input driver/identifier specified (ignoring)

    I seem to have been unclear in my original post. Setting it in Gnome 3 would all be fine and dandy, however although Gnome 3 was installed (upgraded from 2.x), I use fvwm. Gtk etc is still used but I don't see why upgrading a DE I don't use would impair another WM from using the X11 DPI settings. Also changing that setting in Gnome 3 does not affect neither the login screen (GDM) nor anything in fvwm.

  • Cannot send email from Iphone. A setting is off.

    What are the correct settings to send email from my aol account that's included in my I Cloud acct. any suggestions???? Thanks Sue

    Read this
    How do I set up AOL Mail on my iPhone or iPod Touch? - AOL Help

  • HOW TO SET UP PARTNER APPLICATION TO USE SSO OUTSIDE OF PORTAL

    If anyone knows how Portal switches context to run as the db user mapped to the lightweight schema and how it knows the db schema password please let me know.
    Should you have any queries please do not hesitate to contact me on 07775 896738.
    From document Oracle Portal Security Overview on PortalStudio.oracle.com:
    In Single Sign On mode (EnableSSO=Yes in the DAD), mod_plsql determines the name of the light-weight user and mapped database schema by calling
    WPG_SESSION_PRIVATE.GET_LW_USER and WPG_SESSION_PRIVATE.GET_DB_USER respectively.
    ** These calls are done using the Portal Schema (PORTAL30) and Portal schema password **
    mod_plsql then executes the procedure in the requested URL by using the N-Tier Authentication feature to connect to the database as the user returned from
    WPG_SESSION_PRIVATE.GET_DB_USER. ..... Note that N-Tier Authentication requires all schemas to be used for Portal user mappings to be granted 'connect
    through' privleges to the Portal schema (PORTAL30).
    The WWCTX packages are also used.
    So this is how it works with standard Portal
    - the document states that the WPG_SESSION_PRIVATE package is only accessible to the Portal schema
    - but I checked and it is also available to PORTAL30_SSO
    SQL> desc WPG_SESSION_PRIVATE
    PROCEDURE CREATE_SESSION
    Argument Name Type In/Out Default?
    P_COOKIE_NAME VARCHAR2 IN
    FUNCTION GET_DB_USER RETURNS VARCHAR2
    FUNCTION GET_LW_USER RETURNS VARCHAR2
    PROCEDURE GET_SESSION_INFO
    Argument Name Type In/Out Default?
    NUM_PARAMS NUMBER OUT
    PARAM_NAMES TABLE OF VARCHAR2(32000) OUT
    PARAM_VALUES TABLE OF VARCHAR2(32000) OUT
    PROCEDURE RESET_SESSION
    Argument Name Type In/Out Default?
    P_COOKIE_NAME VARCHAR2 IN
    In my case only the Login Server (PORTAL30_SSO) is going to be used/installed
    - the SAMPLE_SSO_PAPP application will only work if the DAD used to access is it set to use Basic authentication, i.e. the actual integration with the Login Server
    is done in the sample application code calls, stored in the database
    - when a DAD has enableSSO=yes it automatically accesses Portal (PORTAL30) packages to implement N-Tier authentication
    I'm currently testing:
    1. Configuring the SAMPLE_SSO_PAPP sample as documented with a DAD with Basic authentication
    2. Amending the ssoapp procedure to set context to another (db) user on successful authentication:
    wwctx_api.set_context (
    p_user_name => 'SCOTT',
    p_password => 'TIGER' );
    3. If this works then set_context with get_lw_user instead
    I have now amended the ssoapp procedure as follows to print out
    1. The userid entered when the login box is presented
    2. The Database user which the Portal Lightweight user is mapped to
    3. The Lightweight user Portal has used for authentication
    Amendments to papp.pkb:
    (ssoapp procedure, declare db_user_info and lw_user_info as VARCHAR2 in declare section)
    htp.p('Congratulations! It is working!<br>');
    db_user_info := wwctx_api.get_db_user;
    lw_user_info := wwctx_api.get_user;
    htp.p('User Information:' || l_user_info || '<br>');
    htp.p('DB User Information:' || db_user_info || '<br>');
    htp.p('LW User Information:' || lw_user_info || '<br>');
    The following shows the interesting results from my testing:
    - if the user owning the sample_sso_papp package is PORTAL30_SSO then the call to wwctx_api.get_db_user succeeds
    - if the user owning the sample_sso_papp package is a non-portal schema e.g. SSOAPP below the call to wwctx_api.get_db_user generates a User Defined exception
    Steps to test:
    Created new schema SSOAPP on the database
    - edited it in Portal and checked the use this schema for Portal users checkbox
    - created new Lightweight user SSO_LW in Portal, mapped it to SSOAPP schema
    - created new Lightweight user SSO_SCOTT in Portal, mapped to SCOTT schema
    - loadjava -user ssoapp/ssoapp@portal30 SSOHash.class
    - sqlplus portal30/portal30@portal30
    @provsyns ssoapp
    - sqlplus ssoapp/ssoapp@portal30
    @loadsdk.sql
    @loadpapp.sql
    Created DAD with basic authentication SAMPLE_SSO_PAPP
    - username: ssoapp
    - default home page: sample_sso_papp.ssoapp
    Registered the Sample SSO Partner Application with the Login Server and ran regapp.sql
    Commented out the calls to get_db_user in papp.pkb to avoid exception
    - called http://<server>/pls/sample_sso_papp
    - logged on as SSO_LW/sso_lw
    - got output:
    Congratulations! It is working!
    User Information: SSO_LW
    LW User Information: PUBLIC
    So the Portal lightweight user is not returned as SSO_LW
    if anyone knows why the Lightweight User in my test is returned as PUBLIC not SSO_LW
    Best Regards
    MIchael

    http://support.mozilla.com/en-US/kb/Changing+the+e-mail+program+used+by+Firefox

  • Battery , time , signal strength bar is not getting displayed in home screen , these will be displayed only when i click on any app. Can u let me know the setting change ?

    Battery , time , signal strength bar is not getting displayed in home screen , these will be displayed only when i click on any app. Can u let me know the setting change ?

    Did you check the Zoom setting?
    Have you tried a reset (reboot)? Hold HOME and SLEEP until an Apple logo appears.
    If it isn't Zoom and a reboot doesn't help try Settings/General/Reset - Reset all settings

Maybe you are looking for