Why does WL7 restrict security deployment descriptors?

Hi,
WL7 has nice role based features - I can create a role based on
username/groupname and time.
However, when you define a role for a web application say, in a BEA specific
file weblogic.xml,
then I can only do this:
<security-role-assignment>
<role-name>RoleA</role-name>
<principal-name>SomeName</principal-name>
</security-role-assignment>
Why is this so restrictive? How can I add a time based component to this
role for instance?
Do I have to use the Admin Console? If I do use the console, then I can't
persist my changes, so in effect I can't use all the role features.....
I expected to find something like:
<security-role-assignment>
<role-name>RoleA</role-name>
<constraints>
<and>
<principal-name>SomeName</principal-name>
<group-name> Foobar </group-name>
</and>
<or>
<time> xxxyyxxx</time>
</or>
</constraints>
</security-role-assignment>
or something similar :-)
Regards,
Jon

The iAS registry is stored in a flat file (reg.dat) on UNIX platforms.
David
Raymond Brandon wrote:
And probably now a stupid question:
I'm wondering why IAS needs the GUIDs (global unique identifiers) to
register EJB's when it uses JNDI to look them up?
I'm using windows NT and can see the GUIDs in the registry under iPlanet
Application Server, but I wonder how this is done on platforms that don't
have a registry like Unix?
Raymond

Similar Messages

  • Why does Discover Card Secure number and Kentucky Unemployment refuse to work with Firefox?

    When attempting to access the site below, the message,Your browser is not currently supported for this site. For more information, view.
    the browser compatibility information on this welcome page. shows up and blocks further access.
    When attempting to use Discover Card's Secure Number app, it does not ever find open forms to fill.
    What can we do to repair this problem?
    thank you for your help.
    [email protected]

    That is due to limitations on that site. In their browser support comments they state that they only support IE, the warning message that you get is because it detects that you are not using IE.

  • Why does Pages restrict me to two pages?

    I have recently bought a Mac Pro and am trying to get used to Pages. If I am doing multiple page documents, I keep finding that after two pages, I seem to lose extra pages, although they are still there if I look back to previous versions. Any idea why this is happening, and what I can do to stop it, please?

    Sounds like you have floating images with wrap on them and are using spaces, returns and tabs to push objects around.
    Pages has a particular way of working with pages.
    In Word Processing documents Pages creates or eliminates pages based on whether there is anything in the main text layer ie the area between the page margins.
    If there is more text than fits on a page, a new page is created and the text flows onto that.
    Conversely if you eliminate text so that there is no more text on the current page, the pages shrink back.
    This includes inline objects (things pasted into the text) which act just text, in fact like big fat characters.
    If you have floating images that are not part of the flow of text, they stay put on the page where you created them. If that page has been eliminated when the text was reduced, the image remains where it was on the no longer visible page.
    If you create some more pages by Menu > Insert > Page Break those images or objects will be visible once more.
    In your case I suggest you have a muddled set of floating objects and lots of spaces and returns just to push things in place. The combination of the text wrap from the objects and all those invisible characters can make things pop unexpectedly.
    1. Menu > View > Show Invisibles
    2. Get rid of all the spaces and returns other than just the one after each paragraph or word
    3. Menu > Insert > Page Breaks until you see all your objects again
    4. Cut and paste those where you want them in the text.
    5. Use floating objects when you get a better hang of layout
    Peter

  • Why does the REQUIRED security flag allow the control flow inspite failure

    Hi,
    I have a small query regarding the security flags of for LoginModule(s).
    When a LoginModule is given a required flag, it allows the login mechanism to continue checking the other login modules. However, the overall login mechanism will fail even if one single module with the required flag has failed.
    Can someone help me understand why is it so. The only reason i can think of is to allow some sort of debugging.
    Thanks

    Thank you for your reply.  I changed the error handling as you suggested on the 2nd lookup to redirect to unmatched rows.  Now I get all greet.  I don't have the conditional split as in your diagram.  But also, nothing appears to have
    happened in the DB.  Aren't the rows in my text file supposed to be added to the FactCurrencyRate table?
    How do I get a conditional split?
    Rich P
    OK, sorry I forgot to reply you back.
    Conditional Split was just dummy task. Ignore it.
    Manipulate the data in such way that you get matching records.
    Inside Source, for first 2 rows I put the dates which are available in DimDate.
    1.00010001,ARS,7/1/2005 0:00,0.99960016
    1.00010001,ARS,2/5/2006 0:00,1.001001001
    1.00020004,ARS,9/5/2001 0:00,0.99990001
    1.00020004,ARS,9/6/2001 0:00,1.00040016
    1.00050025,ARS,9/7/2001 0:00,0.99990001
    1.00050025,ARS,9/8/2001 0:00,1.001001001
    Then in OLE DB Destination, I loaded the rows to TestFactTable.
    (Now, you don't even need NO MATCH OUTPUT as there are matching records here)
    Cheers,
    Vaibhav Chaudhari
    [MCTS],
    [MCP]

  • Why does Null restrict my movement?

    With the help of these forums I was able to place JLabels with the use of frame.getContentPane().setLayout(null); The problem I'm having now is that the JLabel (whose image path is penguin.gif) can move around in all directions except down. Can anyone help me fix this?
    Here is the code:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class PenguinWars extends JFrame implements KeyListener {
         public boolean left = false, right = false, up = false, down =false;
         private static boolean start = false, end = false;
         public static int w = 300, h = 500, x = 200, y = 520, xw = 20, xh = 25; //w,h for frame; x,y for penguin position, xw, xh for penguin size
         private static int startLabX=200;
         private static int startLabY=520;
         private JLabel example=new JLabel();
         private static JLabel lab;
      public PenguinWars() {
        // Create a MovingMessagePanel for displaying a moving message
        add(new MovingMessagePanel("O", "X"));
        example.setSize(20,25);
        example.setLocation(0,0);
        example.setBackground(Color.black);
        add(example);
      public void keyControl() {
             if (0 < x) {
                 if (left) {
                     x -= 3;
             if (w > x + xw) {
                 if (right) {
                     x += 3;
             if (25 < y) {
                 if (up) {
                     y -= 3;
             if (h > y + xh) {
                 if (down) {
                     y += 3;
       public void keyPressed(KeyEvent ke) {
          switch (ke.getKeyCode()) {
                 case KeyEvent.VK_LEFT:
                     if (-186 < startLabX) {
                     left = true;
                    startLabX-=5;
                     else
                         left = false;
              lab.setLocation(startLabX,startLabY);
                     break;
                 case KeyEvent.VK_RIGHT:
                     if (186 > startLabX) {
                     right = true;
                     startLabX+=5;
                     else
                         right = false;
              lab.setLocation(startLabX,startLabY);
                     break;
                 case KeyEvent.VK_UP:
                     if ( -550< startLabY){
                     up = true;
                     startLabY-=5;
                     else
                         up =false;
              lab.setLocation(startLabX,startLabY);
                     break;
                 case KeyEvent.VK_DOWN:
                     if (0 > startLabY) {
                     down = true;
                     startLabY+=5;
                     else
                         down = false;
              lab.setLocation(startLabX,startLabY);
                     break;
              /*     case KeyEvent.VK_ENTER:
                    start = true;
                    end = false;
                    break;
         public void keyReleased(KeyEvent ke) {
             switch (ke.getKeyCode()) {
                 case KeyEvent.VK_LEFT:
                     left = false;
                     break;
                 case KeyEvent.VK_RIGHT:
                     right = false;
                     break;
                 case KeyEvent.VK_UP:
                     up = false;
                     break;
                 case KeyEvent.VK_DOWN:
                     down = false;
                     break;
         public void keyTyped(KeyEvent ke) {
      /** Main method */
      public static void main(String[] args) {
        PenguinWars frame = new PenguinWars();
        int optionType = JOptionPane.YES_NO_OPTION; // YES+NO+CANCEL
        int messageType = JOptionPane.QUESTION_MESSAGE; // no standard icon
        int res = JOptionPane.showConfirmDialog(null, "Welcome to Penguin Wars!\n"+
                "How To Play The Game: \n"+
                "You can begin the game by pressing the SPACE BAR. \n"+
                "The goal of this game if to save our penguin from the garbages that are contaminating its environment.  \n"+
                "Move the penguin using the arrow keys to avoid all the garbages. \n"+
                "The game will be over when the penguin eats too much garbages. \n"+
                "You can earn points by feeding healthy fish to the penguin. \n", "Directions",
                                            optionType, messageType);
        if (res == JOptionPane.NO_OPTION) {
            System.exit(0);
        if (res == JOptionPane.CLOSED_OPTION) {
            System.exit(0);
        *lab=new JLabel();*
        *lab.setSize(25,25);*
        *lab.setLocation(startLabX, startLabY);*
        *lab.setIcon(new ImageIcon("penguin.gif"));*
        frame.setTitle("Penguin Wars");
        frame.getContentPane().setLayout(null);
        frame.getContentPane().add(lab);
        frame.setLocationRelativeTo(null); // Center the frame
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(400, 600);
        frame.setLocation(200, 100);
        frame.addKeyListener(new PenguinWars());
        frame.setVisible(true);
        ImageIcon icon = new ImageIcon("garbage.gif");
         // allocate array for enemy labels
         JLabel[] enemies = new JLabel[5];
         // all elements of this array are null, not instantiated
         // initialize the array by instantiating the elements
         for(int i = 0; i < enemies.length; i++)
          int en_posx = (int)(Math.random()*300)+1;;
          int en_posy = 0;
        enemies=new JLabel();
    enemies[i].setSize(25,25);
    enemies[i].setLocation(en_posx,en_posy);
    enemies[i].setIcon(new ImageIcon("garbage.gif"));
    frame.getContentPane().add(enemies[i]);
         } //end for
    //setting background image
    Color background = new Color(150,100,255);
    Container con = frame.getContentPane();
    con.setBackground( background );

    Your code is too large and won't compile. Your best bet is to try to solve your problem with a very simple class -- one that does nothing but moves a simple JLabel around a JPanel, one that has no extraneous dependencies, such as "MovingMessagePanel" or other classes. This way if the code still fails, you can post it here, we can more easily understand it and actually try it out, and we can more easily help provide you with a solution. This is called creating an SSCCE (please see the link).
    edit: you may have a solution above by tjacobs, but I still stand by my recommendations, if not for this thread then for future threads.
    edit 2: You should seriously consider using key bindings and not a key listener.
    edit 3: You never replied to my post in your most recent thread: [http://forums.sun.com/thread.jspa?threadID=5419871&messageID=10885069#10885069]
    By responding and acknowledging, you'll encourage folks to help you in the future. Just fyi.
    Edited by: Encephalopathic on Dec 13, 2009 10:59 AM
    Edited by: Encephalopathic on Dec 13, 2009 11:00 AM

  • Why does discoverer restrict the folders i can select from?

    I select some attributes from one folder, then afterwards go to another folder and i want to add some more attributes to my selection. but i cannot because the folder's are gray and disco doesn't let me access them.
    why?
    any help would be greatly appreciated
    nate

    Hi,
    Your problem it's that you don't have joins defined between the two folders.
    Discoverer automatically disables the selection of folders that don't have joins with the folder you select.
    You have two options to solve that problem:
    1.- Define joins between the folders you want to select from. That is , if there's a way two join the two folders.
    2.- Define joins between the two folders an a third folder that has something in common with the others. Here you have to be carefull in chosing a folder that have the info needed for the query and that doesn't generate duplicate results.
    hope this helps

  • Why does Encore restrict  importation of certain video resolutions?

    As a new Encore user, my jaw dropped when I discovered that Encore retricts importing (PAL) video assets to only 720x576 or 704x576 especially now that so many other DVD authoring applications offer other DVD compliant resolutions of 352x288 and 352x576. Are there any particular reasons for these restrictions? I'm surprised that a company of Adobe's stature would release this software with these limitations. For the present time, I think I'll stick to my trusty old Spruce DVDMaestro.
    Tom

    I'm guessing two reasons:
    1. The lower resolutions are in the DVD-Video spec mainly for compatibility with MPEG1 video. Encore doesn't do MPEG1.
    2. Encore supports widescreen (16:9) pixel aspect ratios. The lower resolutions don't allow for 16:9 PARs.
    Other than that, you'd have to ask Adobe, because only they know for sure.
    -Jeff

  • Why does AVG Internet Security keep warning me that Firefox is using excessive memory and advisin me to close it and reopen?

    My browser was open and I was on Facebook. A message appeared from AVG Internet Security 2012, which is operating on my computer, telling me that FireFox was using excessive memory -- "260 MB of memory" and suggesting I close FireFox and reopen.
    This has happened several times; also when I was on CNN and Yahoo webpages.

    How much RAM do you have?
    300MB is a lot if you only have 512MB, but not too much if you have 1 or 2 GB, or more.
    http://blogs.avg.com/community/avg-feedback-update-week-44/
    See - 3. AVG Advisor = Disable AVG Advisor performance notifications <br />
    or try using the "Change when these notifications appear" and set a higher threshhold

  • EJB Deployment Descriptors not deploying to WLS

    Hi,
    We're using Eclipse 3.4.1 with the OEPE to target WLS 10.3 with Java 6/JEE 1.4 on a Windows XP Professional development machine.
    We have an EJB 2.1 project as part of a larger EAR. The beans (all stateless session beans) and associated interfaces and deployment descriptors within are maintained manually for internal reasons; we do not rely on EJBGen or XDoclet or anything like that to manage these. We are NOT using any annotations in these EJBs, as is the default when you create a bean. Instead we rely on weblogic-ejb-jar.xml and ejb-jar.xml.
    We're having an issue where deploying to the local Weblogic server instance fails with the following error displaying in the Eclipse console:
    <Dec 19, 2008 9:21:13 AM CST> <Warning> <Deployer> <BEA-149004> <Failures were detected while initiating deploy task for application 'xxxxxxx'.>
    <Dec 19, 2008 9:21:13 AM CST> <Warning> <Deployer> <BEA-149078> <Stack trace for message 149004
    weblogic.application.ModuleException: Exception preparing module: EJBModule(xxxxxxxEJB.jar)
    [EJB:011023]An error occurred while reading the deployment descriptor. The error was:
    No EJBs found in the ejb-jar file {0}. Please ensure the ejb-jar contains EJB declarations via an ejb-jar.xml deployment descriptor or at least one class annotated with the @Stateless, @Stateful or @MessageDriven EJB annotation..
         at weblogic.ejb.container.deployer.EJBModule.prepare(EJBModule.java:452)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:93)
         at weblogic.application.internal.flow.DeploymentCallbackFlow$1.next(DeploymentCallbackFlow.java:387)
         at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:37)
         at weblogic.application.internal.flow.DeploymentCallbackFlow.prepare(DeploymentCallbackFlow.java:58)
         Truncated. see log file for complete stacktrace
    java.io.IOException: No EJBs found in the ejb-jar file {0}. Please ensure the ejb-jar contains EJB declarations via an ejb-jar.xml deployment descriptor or at least one class annotated with the @Stateless, @Stateful or @MessageDriven EJB annotation.
         at weblogic.ejb.container.dd.xml.EjbDescriptorReaderImpl.createReadOnlyDescriptorFromJarFile(EjbDescriptorReaderImpl.java:199)
         at weblogic.ejb.spi.EjbDescriptorFactory.createReadOnlyDescriptorFromJarFile(EjbDescriptorFactory.java:93)
         at weblogic.ejb.container.deployer.EJBModule.loadEJBDescriptor(EJBModule.java:1198)
         at weblogic.ejb.container.deployer.EJBModule.prepare(EJBModule.java:380)
         at weblogic.application.internal.flow.ModuleListenerInvoker.prepare(ModuleListenerInvoker.java:93)
         Truncated. see log file for complete stacktrace
    We DO have multiple beans defined, but it seems that WLS just isn't aware of them due to the lack of a deployment descriptor. It appears that Eclipse/OEPE is not copying the ejb-jar.xml and weblogic-ejb-jar.xml files to the build directory when the project is build:
    xxxxxEJB
    |-- ejbModule
    |.....|-- META-INF
    |.....|.....|-- ejb-jar.xml
    |.....|.....|-- MANIFEST.MF
    |.....|.....|-- weblogic-ejb-jar.xml
    |.....|-- com (etc., .java files)
    |-- build
    ......|-- classes
    ............|-- META-INF
    ............|......|-- MANIFEST.MF
    ............|-- com (etc, .class files)
    Other notes:
    - Cleaning the project does not help.
    - Starting a new workspace does not help.
    - It works under Eclipse 3.3.2 with the Europa version of OEPE.
    - Explicitly exporting an EJB Jar file DOES include the two deployment descriptors (just not deploying to the embedded test server we've defined in our Servers view)
    Any ideas? This seems like either a bug in the OEPE, or maybe WTP.

    Yes, I have a simple EJB2.1 project with hand-crafted EJB remote/home interfaces/classes and deployment descriptors. Also tried Clean/Rebuild and manually delete
    files under /build/classes.
    Here are my descriptors files:
    ejb-jar.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <ejb-jar id="ejb-jar_ID" version="2.1" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/ejb-jar_2_1.xsd">
         <display-name>TestEJB</display-name>
    <enterprise-beans>
    <session>
    <display-name>HelloSessioin</display-name>
    <ejb-name>HelloSession</ejb-name>
    <home>sessions.HelloSessionHome</home>
    <remote>sessions.HelloSession</remote>
    <ejb-class>sessions.HelloSessionBean</ejb-class>
    <session-type>Stateless</session-type>
    <transaction-type>Bean</transaction-type>
    <security-identity>
    <use-caller-identity/>
    </security-identity>
    </session>
    </enterprise-beans>
    </ejb-jar>
    weblogic-ejb-jar.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <weblogic-ejb-jar
    xmlns="http://www.bea.com/ns/weblogic/90" xmlns:j2ee="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.bea.com/ns/weblogic/90 http://www.bea.com/ns/weblogic/90/weblogic-ejb-jar.xsd">
    <weblogic-enterprise-bean>
    <ejb-name>HelloSession</ejb-name>
    <stateless-session-descriptor>
    </stateless-session-descriptor>
    <jndi-name>ejb.HelloSessionRemoteHome</jndi-name>
    </weblogic-enterprise-bean>
    </weblogic-ejb-jar>
    Did you check if there is any error/warning in Error Log view?

  • RDBMSRealm ACL why if in deployment descriptors?

    I was planning on using deployment descriptors for my ACL. I have users and
    groups in my database and this maps just fine for the RDBMS schema. Why then
    do I need ACLs in the schema? I have them in my deployment descriptors! I'm
    getting errors like column not found, etc when it tries to load my realm
    (obviously, I don't have ACL set up in database). Is there a way around
    this?
    thanks,
    Mike Lee
    Architect
    AfterBOT
    [email protected]
    Just remove nospam_ to email me

    You can not do this. Per J2EE is exactly how WLS works under the hood for
    ACL deployment descriptors. It does not use container managed ACL through
    RDBMSRealm for anything that a deployment descriptor can do (ie: ejb-jar.xml
    and web.xlm security-contraint)
    Michael Lee
    "Michael Lee" <[email protected]> wrote in message
    news:3d6d0765$[email protected]..
    It turns out that it just wants an entry in the schema in the RDBMS setup.I
    created a table that mapped to it just to be safe. If there are no entries
    in the ACL table then thats ok, it just means that there are no ACL
    constraints (outside of what you put on deployment descriptors of course).
    This is all working now! Yay!
    Now I'm looking at taking the ACL information out of the deployment
    descriptors (web.xml and ejb-jar.xml) and putting them in the ACL_ENTRIESin
    the RDBMSRealm. I don't know if this can be done but if it can it would be
    very nice for configurability. I could then write JSPs for the customer to
    change the security of the system.
    Michael Lee
    "Michael Lee" <[email protected]> wrote in message
    news:[email protected]..
    I was planning on using deployment descriptors for my ACL. I have usersand
    groups in my database and this maps just fine for the RDBMS schema. Whythen
    do I need ACLs in the schema? I have them in my deployment descriptors!I'm
    getting errors like column not found, etc when it tries to load my realm
    (obviously, I don't have ACL set up in database). Is there a way around
    this?
    thanks,
    Mike Lee
    Architect
    AfterBOT
    [email protected]
    Just remove nospam_ to email me

  • Why does apple refuse to support flash media? Is it a security issue or politics?

    Constantly I come accross websites that require a flash player and now that we are in an ios7 enviroment you'd think this issue would be resolved. I mean why does my OSX in my mac have no problems but my iphone/ipad forget it. Will Apple ever resolve this issue?

    hot_spur wrote:
    Phil, while there is some truth in what you say, it is a bit misleading.
    "Besides the fact that Flash is closed and proprietary, has major technical drawbacks, and doesn’t support touch based devices, there is an even more important reason we do not allow Flash on iPhones, iPods and iPads. We have discussed the downsides of using Flash to play video and interactive content from websites, but Adobe also wants developers to adopt Flash to create apps that run on our mobile devices." Emphasis mine.
    I guess I should have said "allow" not "support." My bad.
    Read the whole thing:
    http://www.apple.com/hotnews/thoughts-on-flash/
    And why is that bad?
    Yes Apple has said why Flash is not on their devices.  Its up to Adobe to create a version that meets Apple requiremements.  But since they've ceased all development for mobile Flash that is not going to happen.
    Its not that they did not want to allow it ever, its just that it never met their specifications to be on their devices.
    When you go to someone's house you adhere to their rules, you don't go stomping around in your muddy shoes on their couch do you?
    That's what Adobe was trying to do, stomp on their profits by injecting Flash Based Apps that apple cannot control which would be a serious security risk as well as a financial detriment to all the developers that produce high quality Apps for the App store.
    Again, Apple only wants to keep their devices secure, and profitable. Shock that a company is out to make profits

  • Why does my iPad say I am restricted from face time.  I have tried to reset restrictions 50 times

    Why am I restricted from using face time.  I have tried to restore and reboot and rest restrictions. Help

    If you have the WiFi-only iPad (which does not have GPS) your location is determined by the mapped location of nearby WiFi routers.
    Without GPS location-finding is done by using a Apple location database which contains the MAC addresses of routers and their physical location. A MAC address is a unique number which is built-in to all network devices when manufactured.
    The Apple database is built and updated by Apple GPS-enabled devices (primarily iPhones) actually seeing routers and then adding/updating the router's locations into the database.
    Note to be used for location determination, a device does not need to be actually connected to a router, it just has to see the router. More precise location determination can be done if several nearby routers can be seen. When a router is moved from one location to another erroneous locations can sometimes be reported until the router's location is corrected in Apple's database. This may be the source of your problem.

  • Why does the Safari message "This is a non-secure form" pop up everytime I try to use yahoo mail?

    Why does the Safari message "This is a non-secure form" pop everytime I go into yahoo mail?  If I don't press the send option my whole computer freezes.

    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test.
    If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.

  • How to specify the security policy "Allow access to everyone" for security role in Deployment descriptor

    Hi,
    I am migrating a web application from Websphere to Weblogic. The web application has a security role defined in web.xml (Use LDAP for authentication).
    security-role>
            <description>Authenticated</description>
            <role-name>Authenticated</role-name>
        </security-role>
    This role is mapped to a special subject "All authenticated user in appliation realm" in WAS.
    In weblogic, I have the following setting in weblogic.xml
    <wls:security-role-assignment>
            <wls:role-name>Authenticated</wls:role-name>
            <wls:externally-defined />
        </wls:security-role-assignment>
    And after deploy the application, have to manually add a security role and add the security policy "Allow access to everyone" to this role.
    I am wondering if this setting can be specified in  for example weblogic.xml so just deploy web applicaiton using deployment descriptor, and I don't need write script to do that .
    Thanks

    Hi,
    You need to have Back End support to achieve this. In Back End you need to create two groups . You need to know what joins has to be made for which group (which is more important) and also make session variable for the userrole (with SQL supporting it). In the BMM layer, we need to put the security join conditions in the 'where clause'.
    And make a common report. User loggin in with the respective userid will have userrole and joins assigned in the Back end. And they will be viewing the report according to their access.
    Hope this will solve your problem.
    Regards
    MuRam

  • Why does the Flash player update push me to install McAfee Security Scan Plus?

    When Flash asks me if I want to update, it takes me to an Adobe page to update it, but there is a checkbox already checked to install McAfee Security Scan Plus. I already have an anti-virus program installed. Why does the flash update page assume that I want to install this software?

    Generally this occurs because there's a third-party plug-in that affects how the JavaScript on the page got executed.  Ghostery, AdBlock Pro and NoScript are common candidates.
    Under normal operating conditions, you should see an opt-out dialog like the one below.  While cost-recovery measure are a reality for a product that is tremendously expensive to develop and distribute free of charge, the intent is absolutely to allow you to opt out.
    If you want to avoid the download and installation experience for Flash altogether, switch to a browser that includes Flash Player as a built-in component, like Google Chrome or Internet Explorer on Windows 8 and higher.

Maybe you are looking for

  • Please help. Half my contacts are missing and think I've tried everything!

    Hi there Sorry this is a long post but I'm a bit desperate and hope you can help: I dont have a PC or ipad or anything but do have an iphone 5 and over the weekend my emails (to my live.com account) weren't sending off my phone.  So I deleted the liv

  • HT1338 server will not respond when trying to update

    The Software Update Server (macupdate.cg.ac.uk) is not responding. Please help this is the message i get every time i try and update my software now i have an iphone 5 my itunes needs to be updated but it wont because i need the latest software updat

  • HT1926 ITunes 11 install issue, Error 7 (Windows error 126)

    While trying to install ITunes11 on a Windows Desktop with MS XP SP3 I keep getting an error message that states "ITunes was not installed correctly.Please reinstall ITunes.Error 7(Windows error 126)".There is an initial message that states that "App

  • Generate topics from a linked Word document failes

    RH 9: Every time I try to generate topics from a linked Word document, RH failes and has to be shut. How do I solve this problem? or is this a bug in the application?

  • Loader Does not work

    my Loader Does Not Work. i am create loader with animation. total animation are build a 100 frame.code should be write but loader does not work .Please help................