Using AAD as a user-database

I'm wondering if it's possible to use Windows Azure Active Directory (WAAD) as a standard "user-database"? Let me explain..
We currently have a standard, "home-built" user registration system build on top of SQL server, MVC, etc. The users in this database are registered users of the site, and have used email address to register (from various domains, such as gmail.com,
yahoo.com, live.com, etc.).
The idea would be to "lift and shift" these user accounts into a WAAD tenant and replace the home-grown system we have. Why you ask? Two primary reasons:
- Allows us to take advantage of the myriad of authentication methods provided by WAAD (two-factor, etc.)
- Safer than on-site storage of credentials, which is a business we don't want to be in.
The key difference here is we're not using any sync'd directory, and are talking about users with domains different than the WAAD root domain. I realize this is very different than the traditional use cases for a "directory", but it really enables
some powerful scenarios (if possible).
So, to wrap up - is this possible? Are there alternatives?
Thanks!!!

Thanks for the reply, Paul!
"If you do not want the logins to be in your domain, they can be external - either their own AAD or Microsoft accounts."
Therein lies the problem - the accounts we're talking about are neither of these. They are not even directory-related accounts. They are traditional web-style registration accounts, using email addresses as usernames from organizations we will never control
(Google, Yahoo, Twitter, Amazon, etc.). And, by that very nature, these logins are definitely not in our company domain (nor would we want them to be).

Similar Messages

  • Does shared public fixed user database links work with 9.2.0.8

    Hi,
    I'm trying to test benefits of using 'shared public fixed user database links' in 9.2.0.8 .
    I've monitored tcp/ip communication after creating db link via:
    CREATE SHARED PUBLIC DATABASE LINK sales.us.americas.acme_auto.com CONNECT TO scott IDENTIFIED BY tiger AUTHENTICATED BY anupam IDENTIFIED BY bhide USING 'sales';
    but as far as I've observed there is new tcp/ip connection made after new user requesting remote table .
    So looks like there is 1:1 relationship between user sessions requesting remote table and network connection opened .
    Actually there are 2 network connection opened for every session using remote table .
    tcp4       0      0  192.15.x.y.44141        192.15.x.y.1521         ESTABLISHED
    tcp4       0   1127  192.15.x.y.1521         192.15.x.y.44170        ESTABLISHEDAs of both instances sharing same hardware ,maybe better aproatch would be BEQ communication ?
    But I dont see obvious reasons that IPC communication would be better than few connections (because of shared db links) via tcp/ip .
    Maybe my understanding of shared db links is wrong but I think that at some point there will be no 1:1 relation between user session requesting remote table
    and number of network connection with remote instance . So for exaple with 100 user session I see only 10 network connections .
    Regards.
    Greg

    Thank You, that looks promising .
    But could You help with creating test case scenario in which I can clearly see the difference in tcp/ip connection numbers between shared non-shared db links.
    Regards.
    Greg

  • How to Identify database sessions used by forms sso user sessions?

    Hi:
    When using forms with SSO, all database sessions are opened by the same OSUSER (usually oracle), from the same machine (usually the forms server) and by the same program (usually [email protected] [TNS V1-V3]).
    I need a way to identify the database session (v$session) that is beeing used by a specific SSO user. By using SSO, we say implicitly that all users using that SSO resource will be connect to the database by a specific database user.
    So, what can I do to identify the database session that a specific forms user is using ?
    Thanks
    Joao Oliveira

    You could try something like the following in a when new form instance trigger:
    declare
    authenticated_username varchar2(30);
    begin
    authenticated_username := get_application_property(`sso_userid');
    DBMS_APPLICATION_INFO.SET_CLIENT_INFO (
    client_info IN VARCHAR2);
    end;
    This will store the sso userid in the client_info field of v$session.
    I hope this works for you.
    Randy McGregor

  • Multiple websites and applications using one user database

    I've got several applications and websites that will be built around one main application. In a perfect situation users will be able to register once and be able to log into the different applications and websites using that single account. The different
    parts will be:
    Main application (Windows application) that uses the account to get access to it's features and to the server.
    Second application with it's own specific tasks (Also a Windows Application) that uses the account to get access to it's features and to the server.
    Main website which is based on Wordpress. The website has a bbPress forum that would use the account.
    Data server which can be accessed for specific data using the account.
    Most of the data that the users have will be the same for the different applications and websites so to me it seems that having a database for each separate part would complicate things more than having one database for everything.
    My main concern is the Wordpress site and bbPress forum because of the fact that these already have their own account systems.
    What would be a valid approach? Using one of the existing databases from Wordpress or the forums with the risk of having a lot of Wordpress/bbPress specific data with the accounts or making a database especially for the other applications and websites and
    somehow linking those to the website and forum databases? Would the valid approach be secure for use by these different applications and websites?

    Moderators,
    Please look closely, I have already pointed it and you would find that ALL answers which Takken go is from Engsoochean. This is highly not possible its clear favoritism. There are couple of users who are marking ONLY HIS ANSWER and ONLY VOTING HIS POST helpful.
    I am not saying answer is incorrect but question is not relevant to Databse design.
    I have ONLY UNMARKED the answer as I want other moderators to have a look and then they can mark the answer.
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • How get scott user database schema in oracle 10g express edition

    hi
    plz any on can tell me how to get the scott user database table details into the oracle 10g express edition
    Iam created the user as scott but but i didn't get the table details
    ...plz give me the details correctly.

    You will go into this path C:\oraclexe\app\oracle\product\11.2.0\server\rdbms\admin\scott.sql. You can get scott.sql script yhen you need to run the script like @C:\oraclexe\app\oracle\product\11.2.0\server\rdbms\admin\scott.sql. Otherwise you just copy the below script and save it into one file then run that file using @
    Rem Copyright (c) 1990 by Oracle Corporation
    Rem NAME
    REM    UTLSAMPL.SQL
    Rem  FUNCTION
    Rem  NOTES
    Rem  MODIFIED
    Rem    gdudey       06/28/95 -  Modified for desktop seed database
    Rem    glumpkin   10/21/92 -  Renamed from SQLBLD.SQL
    Rem    blinden   07/27/92 -  Added primary and foreign keys to EMP and DEPT
    Rem    rlim       04/29/91 -          change char to varchar2
    Rem    mmoore       04/08/91 -          use unlimited tablespace priv
    Rem    pritto       04/04/91 -          change SYSDATE to 13-JUL-87
    Rem   Mendels     12/07/90 - bug 30123;add to_date calls so language independent
    Rem
    rem
    rem $Header: utlsampl.sql 7020100.1 94/09/23 22:14:24 cli Generic<base> $ sqlbld.sql
    rem
    SET TERMOUT OFF
    SET ECHO OFF
    rem CONGDON    Invoked in RDBMS at build time.     29-DEC-1988
    rem OATES:     Created: 16-Feb-83
    GRANT CONNECT,RESOURCE,UNLIMITED TABLESPACE TO SCOTT IDENTIFIED BY TIGER;
    ALTER USER SCOTT DEFAULT TABLESPACE USERS;
    ALTER USER SCOTT TEMPORARY TABLESPACE TEMP;
    CONNECT SCOTT/TIGER
    DROP TABLE DEPT;
    CREATE TABLE DEPT
           (DEPTNO NUMBER(2) CONSTRAINT PK_DEPT PRIMARY KEY,
        DNAME VARCHAR2(14) ,
        LOC VARCHAR2(13) ) ;
    DROP TABLE EMP;
    CREATE TABLE EMP
           (EMPNO NUMBER(4) CONSTRAINT PK_EMP PRIMARY KEY,
        ENAME VARCHAR2(10),
        JOB VARCHAR2(9),
        MGR NUMBER(4),
        HIREDATE DATE,
        SAL NUMBER(7,2),
        COMM NUMBER(7,2),
        DEPTNO NUMBER(2) CONSTRAINT FK_DEPTNO REFERENCES DEPT);
    INSERT INTO DEPT VALUES
        (10,'ACCOUNTING','NEW YORK');
    INSERT INTO DEPT VALUES (20,'RESEARCH','DALLAS');
    INSERT INTO DEPT VALUES
        (30,'SALES','CHICAGO');
    INSERT INTO DEPT VALUES
        (40,'OPERATIONS','BOSTON');
    INSERT INTO EMP VALUES
    (7369,'SMITH','CLERK',7902,to_date('17-12-1980','dd-mm-yyyy'),800,NULL,20);
    INSERT INTO EMP VALUES
    (7499,'ALLEN','SALESMAN',7698,to_date('20-2-1981','dd-mm-yyyy'),1600,300,30);
    INSERT INTO EMP VALUES
    (7521,'WARD','SALESMAN',7698,to_date('22-2-1981','dd-mm-yyyy'),1250,500,30);
    INSERT INTO EMP VALUES
    (7566,'JONES','MANAGER',7839,to_date('2-4-1981','dd-mm-yyyy'),2975,NULL,20);
    INSERT INTO EMP VALUES
    (7654,'MARTIN','SALESMAN',7698,to_date('28-9-1981','dd-mm-yyyy'),1250,1400,30);
    INSERT INTO EMP VALUES
    (7698,'BLAKE','MANAGER',7839,to_date('1-5-1981','dd-mm-yyyy'),2850,NULL,30);
    INSERT INTO EMP VALUES
    (7782,'CLARK','MANAGER',7839,to_date('9-6-1981','dd-mm-yyyy'),2450,NULL,10);
    INSERT INTO EMP VALUES
    (7788,'SCOTT','ANALYST',7566,to_date('13-JUL-87')-85,3000,NULL,20);
    INSERT INTO EMP VALUES
    (7839,'KING','PRESIDENT',NULL,to_date('17-11-1981','dd-mm-yyyy'),5000,NULL,10);
    INSERT INTO EMP VALUES
    (7844,'TURNER','SALESMAN',7698,to_date('8-9-1981','dd-mm-yyyy'),1500,0,30);
    INSERT INTO EMP VALUES
    (7876,'ADAMS','CLERK',7788,to_date('13-JUL-87')-51,1100,NULL,20);
    INSERT INTO EMP VALUES
    (7900,'JAMES','CLERK',7698,to_date('3-12-1981','dd-mm-yyyy'),950,NULL,30);
    INSERT INTO EMP VALUES
    (7902,'FORD','ANALYST',7566,to_date('3-12-1981','dd-mm-yyyy'),3000,NULL,20);
    INSERT INTO EMP VALUES
    (7934,'MILLER','CLERK',7782,to_date('23-1-1982','dd-mm-yyyy'),1300,NULL,10);
    DROP TABLE BONUS;
    CREATE TABLE BONUS
        ENAME VARCHAR2(10)    ,
        JOB VARCHAR2(9)  ,
        SAL NUMBER,
        COMM NUMBER
    DROP TABLE SALGRADE;
    CREATE TABLE SALGRADE
          ( GRADE NUMBER,
        LOSAL NUMBER,
        HISAL NUMBER );
    INSERT INTO SALGRADE VALUES (1,700,1200);
    INSERT INTO SALGRADE VALUES (2,1201,1400);
    INSERT INTO SALGRADE VALUES (3,1401,2000);
    INSERT INTO SALGRADE VALUES (4,2001,3000);
    INSERT INTO SALGRADE VALUES (5,3001,9999);
    COMMIT;
    SET TERMOUT ON
    SET ECHO ON

  • How can I share a Tiger server's User database to a Panther server?

    I need some help to set this up. Keep in mind I do not have a DNS server.
    I have a Tiger server with Xserve and an older Panther server, both on the same local network. I have a whole bunch of users setup on the Tiger server. The Panther server does not have any users setup on it. I do not want to have to type in all the users all over again in the Panther server. What I'd like to be able to do is somehow share and syncronize the user database on the Tiger server with the Panther server.
    I looked into the Open Directory settings but I do not understand what to do. How do I configure the Tiger and Panther servers respectively so the Panther server can sync with the Tiger server's users database. Is this possible? It seems like it with Open Directory, one being the Open Directory Master and the other being the Open Directory Replica? But I just don't understand how to set this up. Also the Panther OD settings seem quite different than Tiger's in Open Directory.
    Any help would be appreciated.
    Message was edited by: robocub1

    Hi
    It may be best to set up your 10.4 Server as an Open Directory Master first and then use Directory Access on your 10.3 Server to connect to the Tiger Server so as it can use the same User Database. This should be possible. OD Master/Replica relationships are not possible if the OS versions are different, even if the Master was 10.4.11 and the Replica was 10.4.10. You have no chance when its 10.4 and 10.3.
    http://images.apple.com/server/macosx/docs/OpenDirectory_Adminv10.5.pdf
    The link is for 10.5 but the basics are the same. This is a recent post that describes how to set up an OD Master:
    http://discussions.apple.com/thread.jspa?threadID=1377046&tstart=0
    I'm guessing that your 10.4 Server is Standalone and is serving simple file services only (AFP and possibly SMB/Windows). If this is the case (and I can't see how it can't be) then your users will be in the local NetInfo node. This will be the default node that is presented to you in WorkGroup Manager. You always get a warning that your are working in an invisible node (if you have not disabled this) when working in the Server's local node. Don't worry there is nothing wrong with the warning. WorkGroup Manager on Panther (10.3) Server works the same way.
    You could if you wanted to simply export the Users and Groups from WGM in 10.4 and import them into WGM on 10.3. This should save you having to key them all in again. If the prospect of configuring internal DNS Services and all that goes with it seems to much for you then this is probably the simplest option. How do you do this? Launch WGM (its the same for both versions), select the Server Menu and select Export after first selecting desired users. Do the same for Groups. Use the same procedure in reverse. The Users and Groups files are not very big and can easily be transferred using a memory stick etc.
    There are differences between the two versions which are mostly to do with Server Admin. In 10.4 Server there are more services. One of the Services will be Open Directory. In 10.4 Open Directory will only show a green light by the side of the service if it is in any role other than Standalone. Server Admin on 10.3 Server will always show the green light by the side of the Open Directory Service. This does not mean that it is an OD Master, you have to click on Settings and inspect the Role to see what it actually is.
    You should be able to connect to a 10.3 Server with 10.4's Admin tools but don't be tempted to use Server Admin to configure/change anything on the 10.3 Server. You should not be able to go the other way 10.3 > 10.4 using the same tools.
    Internal DNS Services are a requirement for LDAP Services (and pretty much everything else) on Servers generally, although for simple file services not absolutely necessary. Internal DNS Services do not have to be configured on the Server itself just as long as they are configured on another server, for example, on the same network. If these are the only two servers on the network then you will have to configure DNS Services on either one or both of them depending on what you want.
    Not available on your 10.3 Server but is on your 10.4 Server are Access Control Lists (ACLs). This is a permissions model that is in addition to the standard POSIX permissions. Think carefully about how you provide permissions to your network clients if there is a mix of client OS, 10.3, 10.4 etc.
    Hope this helps, Tony

  • Permission to run SQL Server DTA - dbo access needed --- to the user database, or msdb ?

    Hi All,
           I am remotely working with a developer who wants to run DTA (SQL Server 2008 R2). I gave the AD Group "ALTER TRACE" permission, and also "execute" permission to xp_msver in master db. I also read that
    the user needs to be in dbo group. This is to the user database they wish to use DTA with, correct ? I just want to be sure that dbo to msdb is not needed.
    Thank you,
    Joe Clark
    Joe Clark

    Please see the link bellow
    http://technet.microsoft.com/en-us/library/ms190987(v=sql.105).aspx
    vt
    Please mark answered if I've answered your question and vote for it as helpful to help other user's find a solution quicker

  • How to give security to prevent using oracle forms "FORMS_DDL"  In Database

    How to prevent user to use FORMS_DDL in program or security in database to prevent this in Database level
    Thanks in Advance.

    user to use FORMS_DDLHuh? Your users write forms-modules? There is no way to "forbid" the use of FORMS_DDL. What about defining a rule for your developers that they are not allowed to do so. Then you could write a little JDAPI-program whichs "scans" new modules if FORMS_DDL is used.

  • To list only user databases with the size for a instance in sql server 2005

    Hi,
    I looking for T-SQl to  list only user databases with their size for a instance in sql server 2005

    Try this:
    use [databasename]
    go
    if convert(varchar(20),SERVERPROPERTY('productversion')) like '8%'
    SELECT [name], fileid, filename, [size]/128.0 AS 'Total Size in MB',
    [size]/128.0 - CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0 AS 'Available Space In MB',
    CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0 AS 'Used Space In MB',
    (100-((([size]/128.0 - CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0)/([size]/128.0))*100)) AS 'percentage Used'
    ,((CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0)/([size]/128.0))*100 as 'percentage used'
    FROM sysfiles
    else
    SELECT [name], file_id, physical_name, [size]/128.0 AS 'Total Size in MB',
    [size]/128.0 - CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0 AS 'Available Space In MB',
    CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0 AS 'Used Space In MB',
    (100-((([size]/128.0 - CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0)/([size]/128.0))*100)) AS 'percentage Used'
    --,((CAST(FILEPROPERTY(name, 'SpaceUsed') AS int)/128.0)/([size]/128.0))*100 as 'percentage used'
    FROM sys.database_files
    go
    Or can refer below link:
    http://gallery.technet.microsoft.com/scriptcenter/All-Databases-Data-log-a36da95d
    Please click the Mark as answer button and vote as helpful if this reply solves your problem

  • How to use taglibs in JSP for Database access

    Hi
    Could any one please tell me how to use taglibs in JSP for Database access
    with regrds
    Jojo

    This is a sample how to connect to a MySQL database with JSTL 1.0:
    <%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="" %>
    <%@ taglib uri="http://java.sun.com/jstl/sql" prefix="sql" %>
    <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>JSTL MySQL</title>
    <link href="styles.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <c:catch var="e">
    <sql:setDataSource var="datasource" url="jdbc:mysql://Your_Server_Name_Here/You_Schema_Here"
                           user="Your_Username_Here" password="Your_Password_Here"
                           driver="com.mysql.jdbc.Driver"/>
    <c:out value="datasource= ${datasource},  Class = ${driver.class}"/>
    <br />
    <br />
    <sql:query var="deejays" dataSource="${datasource}">SELECT * FROM Your_Table_Name_Here</sql:query>
    <table>
    <%-- Get the column names for the header of the table --%>
    <c:forEach var="columnName" items="${deejays.columnNames}"><th><c:out value="${columnName}"/></th></c:forEach>
    <tbody>
    <%-- Get the value of each column while iterating over rows --%>
    <c:forEach var="row" items="${deejays.rows}">
      <tr><c:forEach var="column" items="${row}">
            <td><c:out value="${column.value}"/></td>
          </c:forEach>
      </tr>
    </c:forEach>
    </tbody>
    </table>
    </c:catch>
    <br />
    <br />
    <c:if test="${e!=null}"><span class="error">Error</span>�
      <c:out value="${e}" />
    </c:if>
    </body>
    </html>And this thread might help you:
    http://forum.java.sun.com/thread.jspa?threadID=639471&tstart=44

  • How to make API manager developer console client use AAD as a oauth2 token issuer

    the answer is configure the oauth2 authorization service record to ONLY use the client_credentials grant type.
    See
    https://yorkporc.wordpress.com/2015/02/23/getting-api-manager-to-use-aad-sts-finally/ for a success case.
    Do NOT (as one might do, thinking as a security engineer) use the authorization_code grant.
    So, after a week of effort, I figured my way through awful documentation to do something really easy (once one knows how).
    The documentation at
    http://azure.microsoft.com/en-us/documentation/articles/api-management-howto-oauth2/#step1 sends one the wrong way, since its picture happens to select authorization_code (which doesn't work, at least with AAD as the AS).
    its pretty clear that the developer console site is not architected to be using AADs own rather excellent delegated user identity security model. One could be leveraging the web site's own session (itself derived from the id_token issued by AAD) to entitle
    the web app server-side process to act for the user, which would normally supply (user's) auth_code and the sites own client credential set  to get privileged access to certain api endpoints of the api management instance. Obviously, that would require
    the console to be nominating which resouces (Api endpoint, within a product) are to be placed in the audience field of the token, which in turn requires more advanced AAD configuration (of those API endpoints, as AAD apps in their own right).
    Sigh. MSDN editorial culture strikes yet again.

    hi Peter,
    Thanks for your feedback!
    I will try to reproduce this issue on my side and report it. Thanks for your time and appreciate your patience.
    Any results, I will post back ASAP.
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Trouble with Component Wizard and User Database

    Hello,
    I am a user of Circuit Design v.13.0 Power Pro Edition (Windows 8 Pro x64, intel Core i7 3GHz, 4GB memory, 500GB HDD).
    On MultiSim, I tried to create a 324-pin component via the Component WIzard, and had this component listed in the User Database.
    I failed, however, to register the symbol (ANSI Y32.2) created on the Symbol Editor, receiving an error saying something like:
    "The ANSI symbol for component ......... cannot be found or is invalid. The symbol is saved in the database. Check if the symbol is correct."
    (This is an English intepretation of the original Japanese, so may not be the exact English error message.)
    Actually, no symbol appears on the Database Manager.
    I have found that this error does not occur for pin counts equal to or fewer than 144.
    Furthermore, other 324-pin and 256-pin components created on MultiSim v.12.0 caused an error when I tried to edit these components in the User Database, with a message like:
    "A trouble occurred in reading the symbol data of component ..."
    Could anyone tell me how I can resolve these problems?
    I will greatly appreciate your help.
    Regards,
    Akira

    I have the same problem. I am using Multisim 13.0.1 (13.0.1059) with database version 13.0.c, Win7 x64
    I found that when you have a component symbol with 146 pins, it works, but when you add one more pin, you get an error saying, "The ANSI symbol for component [my component name] in family [component family name] is missing or invalid. The symbol will still be saved to the database. Check to ensure the symbol is correct.
    Multisim will not allow opening the component in the database for editing. If you try to place the component on a schematic, you get the error "There was a problem reading symbol data for component [component family name]/[my component name]

  • R/3 User database Migration to LDAP

    Dear all,
    I would like to ask for your suggestion about migration from using user database in R/3 to using LDAP as users data source.
    Currently we are using SAP R/3 as user data source since infrastructure in LDAP side will be deployed to the large user groups which includes just small group using SAP and the LDAP live date will be later than portal Live date.
    In next few years, we plan to use LDAP as datasource for portal to consolidate and use the
    same source of users.
    I would like to ask for your advice that in which specific areas that we would have to be
    careful to handle it.
    So far, I can determine only:-
    - User Naming Convention.
    - Prepare LDAP in QA and DEV environment to also support testing.
    If anyone has experience with such scenarios, kindly advise.
    Thank you

    Hi
    Hi,
    SSO
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/89/6eb8deaf2f11d5993700508b6b8b11/frameset.htm">SSO</a>
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/89/6eb8deaf2f11d5993700508b6b8b11/frameset.htm">SSO To SAP system</a>
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/89/6eb8deaf2f11d5993700508b6b8b11/frameset.htm">Single Sign-On with SAP Logon Tickets</a><a href="http://help.sap.com/saphelp_nw04/helpdata/en/89/6eb8deaf2f11d5993700508b6b8b11/frameset.htm">Single Sign-On with User ID and Password</a>
    Connectiing to LDAP
    http://help.sap.com/saphelp_nw04s/helpdata/en/12/7678123c96814bada2c8632d825443/frameset.htm
    Anonymous
    http://help.sap.com/saphelp_nw04s/helpdata/en/cd/1aad4abcb98c4597f9e395a6b62f43/frameset.htm
    Federated Portal.
    I have never worked so cant tel much about that.
    In the above three if you have nay problem you can reach , i guess u have my mail id also.
    Thanx
    Pankaj

  • Spamassasin and users database with sun java messaging server

    Does anybody has managed to deploy spam scanning using personal databases (bayesian filters databases), i mean using spamassasin with user databases.
    Thanks,
    Andr�s.

    Yea, i do the same thing, but i see that some people want to receive mail that other people don't want.
    Can i ask you another question? How do you deploy sa-learn?
    I use this scripts:
    learn_nospam.sh
    dir_nospam='/mail_store/*/*/*/\=no_spam/*/*.msg'
    for i in $dir_nospam
    do
    echo $i
    sa-learn no-sync ham $dir_nospam
    done
    sa-learn --sync
    learn_spam.sh
    dir_spam='/mail_store/*/*/*/\=spam/*/*.msg'
    for i in $dir_spam
    do
    echo $i
    sa-learn no-sync spam $dir_spam
    done
    sa-learn --sync
    That 's works but it too slow, do you know some other ways.
    Thank you very much,
    Andr�s.

  • BPM Deployment - User Database

    Hi every one, I'd like get some reference how to integrate a user database(ldap directory/database system) with a bpm deployed process.
    Thanks for help
    Rodrigo

    Yes... The OIM uses an Internal Database...
    If it is OIM 11G R1 and R2, you can find the database information in the following location:-
    *$MIDDLEWARE_HOME/user_projects/domains/oimdomain/config/jdbc*
    In this jdbc folder, there are some xml files.. One of them in oimOperationsDB-0237-jdbc.xml
    Here you will find the following entries:-
    <jdbc-driver-params>
    <url> jdbc:oracle:thin:@oim.database.host.com:1521/oimdb </url>
    <driver-name>oracle.jdbc.xa.client.OracleXADataSource</driver-name>
    <properties>
    <property>
    <name>user</name>
    <value> DEV_OIM </value>
    </property>
    <property>
    <name>oracle.net.CONNECT_TIMEOUT</name>
    <value>10000</value>
    </property>
    </properties>
    *<password-encrypted>{AES}d2ersr32wer2r2rder2ncksnurr21uGWblbdB+/rcmgUk6F9iQI77JM8pK8owrtk=</password-encrypted>*
    </jdbc-driver-params>
    So there is one database on host machine oim.database.host.com, at port 1521... The SID is oimdb...
    And DEV_OIM is the name of the OIM Schema user...
    Consult your Database Administrator to obtain the decrypted value of the encrypted password..
    With these values you can use SQL Developer to connect to OIM Database...
    In this you will find USR table...
    In this table OIM stores the User Information you were looking for.
    And if it is OIM 9102,
    the xellerate/server/config/xlconfig.xml contains Database information:-
    <DirectDB>
              <driver>oracle.jdbc.driver.OracleDriver</driver>
              <url> jdbc:oracle:thin:@oim.database.host.com:1521:oimdb </url>
              <username>oimdb</username>
              <password encrypted="true">ZlsdyCP213ddr32r4xXWkZZ+A==</password>
              <maxconnections>5</maxconnections>
              <idletimeout>360</idletimeout>
              <checkouttimeout>1200</checkouttimeout>
              <maxcheckout>1000</maxcheckout>
         </DirectDB>

Maybe you are looking for