AM SDK SSO with AM server running in Realm mode throws exception

Hi All,
we have a web application which does SSO with AM server using AM SDK APIs. Following is the code snippet.
SSOTokenManager ssoMgr = SSOTokenManager.getInstance();
SSOToken token = ssoMgr.createSSOToken(request);
boolean tokenValid = ssoMgr .isValidToken(token);
AMUser amuser = null;
if (!tokenValid) {
MStoreConnection amsc= new AMStoreConnection(token);
amuser = amsc.getUser(token.getPrincipal().getName());
String uid = amuser.getStringAttribute("uid");
This code works perfectly fine with AM running in Legacy mode. But throws following exception with AM running in Realm mode.
com.iplanet.am.sdk.AMException: Unable to get attributes from data store.
at com.iplanet.am.sdk.ldap.DirectoryServicesImpl.getAttributes(DirectoryServicesImpl.java:791)
at
com.iplanet.am.sdk.ldap.CachedDirectoryServicesImpl.getAttributes(CachedDirectoryServicesImpl.java:823)
at
com.iplanet.am.sdk.ldap.CachedDirectoryServicesImpl.getAttributes(CachedDirectoryServicesImpl.java:625)
at
com.iplanet.am.sdk.AMObjectImpl.getStringAttribute(AMObjectImpl.java:669)
at
com.sun.comms.client.security.sso.impl.AMSSOProvider.SingleSignOn(AMSSOProvider.java:73)
at
com.sun.comms.client.web.sso.SSOFilter.doFilter(SSOFilter.java:154)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
at
org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:75)
at
org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:181)
at java.security.AccessController.doPrivileged(Native Method)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:177)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:288)
at
org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:271)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:202)
at
org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
at
org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:94)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:206)
at
org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
at
org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:150)
at
org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
at
org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
at
org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:272)
at
com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.invokeAdapter(DefaultProcessorTask.java:637)
at
com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.doProcess(DefaultProcessorTask.java:568)
at
com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.process(DefaultProcessorTask.java:813)
at
com.sun.enterprise.web.connector.grizzly.DefaultReadTask.executeProcessorTask(DefaultReadTask.java:341)
at
com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:263)
at
com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:214)
at
com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:265)
at
com.sun.enterprise.web.connector.grizzly.ssl.SSLWorkerThread.run(SSLWorkerThread.java:106)
We have created a realm with sunDS datastore where all our application users data is stored. Same LDAP is used as authentication module (AM auth module) in realm.
--Balamurugan.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Hi All,
we have a web application which does SSO with AM server using AM SDK APIs. Following is the code snippet.
SSOTokenManager ssoMgr = SSOTokenManager.getInstance();
SSOToken token = ssoMgr.createSSOToken(request);
boolean tokenValid = ssoMgr .isValidToken(token);
AMUser amuser = null;
if (!tokenValid) {
MStoreConnection amsc= new AMStoreConnection(token);
amuser = amsc.getUser(token.getPrincipal().getName());
String uid = amuser.getStringAttribute("uid");
This code works perfectly fine with AM running in Legacy mode. But throws following exception with AM running in Realm mode.
com.iplanet.am.sdk.AMException: Unable to get attributes from data store.
at com.iplanet.am.sdk.ldap.DirectoryServicesImpl.getAttributes(DirectoryServicesImpl.java:791)
at
com.iplanet.am.sdk.ldap.CachedDirectoryServicesImpl.getAttributes(CachedDirectoryServicesImpl.java:823)
at
com.iplanet.am.sdk.ldap.CachedDirectoryServicesImpl.getAttributes(CachedDirectoryServicesImpl.java:625)
at
com.iplanet.am.sdk.AMObjectImpl.getStringAttribute(AMObjectImpl.java:669)
at
com.sun.comms.client.security.sso.impl.AMSSOProvider.SingleSignOn(AMSSOProvider.java:73)
at
com.sun.comms.client.web.sso.SSOFilter.doFilter(SSOFilter.java:154)
at
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
at
org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:75)
at
org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:181)
at java.security.AccessController.doPrivileged(Native Method)
at
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:177)
at
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:288)
at
org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:271)
at
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:202)
at
org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
at
org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:94)
at
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:206)
at
org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
at
org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
at
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:150)
at
org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
at
org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
at
org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
at
org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
at
org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:272)
at
com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.invokeAdapter(DefaultProcessorTask.java:637)
at
com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.doProcess(DefaultProcessorTask.java:568)
at
com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.process(DefaultProcessorTask.java:813)
at
com.sun.enterprise.web.connector.grizzly.DefaultReadTask.executeProcessorTask(DefaultReadTask.java:341)
at
com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:263)
at
com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:214)
at
com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:265)
at
com.sun.enterprise.web.connector.grizzly.ssl.SSLWorkerThread.run(SSLWorkerThread.java:106)
We have created a realm with sunDS datastore where all our application users data is stored. Same LDAP is used as authentication module (AM auth module) in realm.
--Balamurugan.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • Enabling SSO with Weblogic Server

    Hi,
    Can someone please forward some documention on enabling SSO with Weblogic server for different applications using the admin console.
    Is enabling SSO only possible programmatically??
    Is there an external server amongst the Weblogic Platform that maintains this SSO information??
    Regards,
    Mukta

    Pradeep,
    Here are some questions for you.
    1. what version of Weblogic App Server you are using?
    2. Is it a weblogic Portal or a Java application deployed
       on a Weblogic App Server?
    3. You have mentioned that the users are stored in a table. Is it a database table ?
    Anyway see the following link as a starting point?
    http://e-docs.bea.com/wls/docs81/jconnector/security.html#1216783
    If the customer has lot of other web applications that they want to integrate you can look at third party authentication solutions (Ex: Siteminder). But if it is a few or limited applications then custom solution would be more appropriate from the cost perspective.
    Hope this can be a starting point.
    -Regards
    -Venkat Malempati

  • Report server running in integrated mode , but cannot deploy reports again and again prompts for login

    Report server running in integrated mode , but cannot deploy reports again and again prompts for login
    Nur Mondal

    Hello,
    How are you deploying the reports? Via Visual Studio, Report builder or manually uploading RDL files?
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS

  • Window 2003 server running on Native mode

    Hi,
    Our portal running on unix envioment and we have to integrate Windows 2003 server running on native mode into CM or File system repository.
    Is it possible to integrate the win servers running native mode to portal running on unix env unsing KM.
    Thanks,
    Damodhar.

    its worked, i don't know it cameup after upgraded to SP9.
    Thanks

  • Putting the Displays to Sleep with Game Server Running

    I have a game server, ok?
    I have the console box on my desktop, which runs the sever (COD2) and keeps it active.
    I try to put my displays to sleep ( hot corner bottom left ), but it always turns back on again. I don't want to put my computer to sleep because I have an active webserver and if I enable sleep mode, the webserver will stop listening.
    Is there a way to keep my displays shut off with my computer still active, but still have the Game Server running fro my desktop console box running the server?

    Something is waking the display up then--it might even be that server connection.
    Do the brightness keys lower the display brightness to an "off" state? I know they do on the Mac notebooks.
    I know that wouldn't be the best solution, but that would get the result you're looking for.
    ~Lyssa

  • Forms with OC4J instance runs in http mode, Y?

    I don't want my forms to run in http mode - http://fulham:8889/forms/frmservlet.
    Can someone help in making me run it in forms itself
    I have Enterprise server 9i and forms 10g running on my local machine. At the initial stages, it says about about not being started. Ok, I had to simulate forms in run time by starting an OC4J instance but it now runs in http mode.
    Is there a way around this? Has anyone come across this?
    many thanks in advance
    cube60

    What's the alternative you're looking for?
    If it is HTTPS to secure the communication - yes that's possible
    If it's a plain socket connection in stead of HTTP - I think Oracle dropped that after version 6i, but I'm not 100% sure.
    If it is traditional client-server - Oracle dropped that after version 6i.
    So, please explain what is you want.

  • Fx 5900 U with agp 8x runs in pci mode

    I just bought a msi fx9500 ultra card with 8x agp but the configuration box shows it as a agp card running in pci mode, when i run dxdiag i cant enable agp.
    i want the card to run in agp 8x mode, does someone knows a solution for this problem please help i am sure my mainboard supports 8x agp.
    my harware congig looks like this:
    Intel 3.00 ghz
    1024 mb ddr kingston memory
    875 p neo lsr mainboard from msi
    120 gb maxtor harddisk
    and the msi geforce fx 5900 ultra vtd256 with 256 mb ddr

    NewGamer you are running a system that locks you out of alot of the BIOS settings. An Intel board would work real good. It will give you most stable platform to build on and compatiblity second to none. only problem I have had with my new system was all ths crap software that came with the MSI video card. just make sure that after you install the operating system that u install the Chipset drivers first thing. by doing this it updates the INF files and things will be configured right. In the BIOS always have the plug and play OS set to NO that way windows will get it's instuctions from the system board for configuring things. and by the way my last system was a P3 933MHz with 512 MBs ram and a MX 440 card it played BF1942 fine, nice and smooth. I just lost alot of one on one fights the speed was not there.

  • Communicating with presentation server in the background mode

    Hi Folks,
        I have a requirement to communicate the presentation server in the background mode. I'm following the below article for achieving it.
    [http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/9831750a-0801-0010-1d9e-f8c64efb2bd2?quicklink=index&overridelayout=true|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/9831750a-0801-0010-1d9e-f8c64efb2bd2?quicklink=index&overridelayout=true]
    But I'm getting an error while testing in the dos prompt. The error is as following.
    The system cannot execute the specified program.
    Kindly Help.
    Regards,
      santosh

    But I'm getting an error while testing in the dos prompt. The error is as following. The system cannot execute the specified program.
    You see this error usually if some libraries (dll's) are missing. To investigate this issue it might help to use the [dependency walker|http://www.dependencywalker.com/] tool on the executable and check for any missing libraries. If you cannot figure it out yourself, please try to post exact comments of what you're doing and complete error messages including ideally version of your RFCSDK.
    Cheers, harald

  • How to set a default firefox homepage on client workstations on a network with a server running windows 2003 server?

    I am running a small client server network with about 27 client machines and windows server 2003 is the server OS. I want the default webpage on firefox to display our department homepage when users log on. I have set IE7 already in the groups policy in the ISS section but this only affects IE7. Any idea how I can do this with Firefox?

    You can set or lock default prefs via a mozilla.cfg file.
    Pref: browser.startup.homepage , see http://kb.mozillazine.org/browser.startup.homepage
    defaultPref(); // set new default value
    pref(); // set pref, but allow changes
    lockPref(); // lock pref, disallow changes
    See http://kb.mozillazine.org/Locking_preferences

  • Retiring SBS2003 with second server running 2008 server with terminal services

    Hi,
    Can i install Windows Server Essentials R2 2012 and keep the second server that is server 2008 and run it as a terminal server?

    Follow any migration document that allows you to migrate from SBS to Essentials. the domain will not change and the member server will remain intact. If it is not already an RDS/TS server you will have to install the role and add the appropriate licensing.
    If it is, and the license server is the SBS you will have to move the licensing server from the SBS to the 2008 RDS server itself.
    Larry Struckmeyer[MVP] If your question is answered please mark the response as the answer so that others can benefit.

  • App Server 8 Admin console hangs throws Exception

    After deploying System App Server 8, on Win2000 sp4 box, the following exception is thrown when trying to start the Admin Console
    [#|2005-09-14T11:27:53.953-0400|SEVERE|sun-appserver-pe8.1|javax.enterprise.system.container.web|_ThreadID=10;|WEB0600: WebModule [/asadmin] failed to deploy and has been disabled: [java.lang.NoSuchMethodError: org.apache.commons.digester.Digester.setEntityResolver(Lorg/xml/sax/EntityResolver;)V].|#]
    Can someone tell me what might be the cause of this exception?
    Thank you.

    Try asking the Customer to fire up the JNDI browser in the admin console and try to browse the JNDI tree.
    What class is the InitialContext.lookup() happening in? Is that getting executed in the servlet class or a standalone client?
    thanks.

  • BAM Cluster setup - issue with whole server migration configuration

    HI,
    We are working on a SOA , BAM , BPM Cluster setup on OEL VMs
    With Admin server running on Host1 and Soa_server1, BAM_server1 , Host2 - Soa_server2 , Bam_server2.
    We were successfully able to setup clustering for Soa without using the webTier utilities in our environment, Just by adding entries in the /etc/hosts file.
    Followed the document - except for web tier setup
    http://www.namredlek.nl/orasoa/InstallSOASuite11gOnCluster_v1.pdf
    1)     Installed Weblogic 11g.
    2)     Soa 11g.
    3)     Domain creation
    4) Configured Node manager
    5) Soa Clustering completed successfully.
    6) Domain up and running with SOA_Cluster up and running.
    7)     Extended the domain with BAM
    The issue revolves when we are doing teh Migration configurations from the console for BAM and we restart BAM server we get an error -
    Apr 14, 2011 2:30:35 AM weblogic.nodemanager.server.Handler handleStart
    WARNING: Exception while starting server 'bam_server1'
    java.io.IOException: Command '/oracle/Shared_MWHome/user_projects/domains/SOA_Domain/bin/server_migration/wlsifconfig.sh -addif eth0 192.168.1.6 255.255.255.0 ' returned an unsuccessful exit code '1'. Check NM logs for script output.
    and Bam server goes to Failed Not Restartable state.

    The error is clearly out there
    java.io.IOException: Command '/oracle/Shared_MWHome/user_projects/domains/SOA_Domain/bin/server_migration/wlsifconfig.sh -addif eth0 192.168.1.6 255.255.255.0 ' returned an unsuccessful exit code '1'. Check NM logs for script output.
    This error occurs due to a failure in adding the virtual IP of BAM server to the network interface you have specified in nodemanager.properties.
    You need to check whether you have specified the correct interface and subnet mask in node manager.properties as below :
    The fourth step is to edit the Node Manager's properties file. This file is called nodemanager.properties
    and is located in the ORACLE_BASE/product/osbmw/wlserver_10.3/common/nodemanager directory.
    For server migration to work properly, you need to add the properties listed below:
    Interface=eth0
    NetMask=255.255.255.0
    UseMACBroadcast=true
    · Interface
    This property specifies the interface name for the floating IP (for example, eth0).
    · NetMask
    This property specifies the net mask for the interface for the floating IP. The net mask should the
    same as the net mask on the interface; 255.255.255.0 is used as an example in this document.
    · UseMACBroadcast
    This property specifies whether or not to use a node's MAC address when sending ARP packets,
    that is, whether or not to use the -b flag in the arping command.

  • Help with Client/Server communication

    Im working on a project for university, and one aspect of it is downloading files from a remote computer.
    The majority of my project so far has been using RMI only, for browsing the remote computer, deleting files, renaming files, creating new directories and searching for files. All of this is done via a GUI client, with a server running on the server machine.
    Ive now reached the part where I'll need to implement the downloading of files. I want the user to select a file from within the GUI and click download, and get it off the server.
    I dont need any help with event handlers or getting the contents of the remote computer or anything of that sort.
    Consider when I have the name of the file that I want to download from the client.
    Im having trouble understanding how exactly its going to work. Ive seen examples of file transfer programs where the user types in the name of the file in the command line which they want to download. But my implementation will differ.
    Every time the user clicks the button, I have to send to the server the name of a different file which will need to be downloaded.
    I imagine in the event handler for the Download button I'll be creating a new socket and Streams for the download of the file that the user wants. But how am I to send to the client a dynamic file name each time when the user tries to download a different file?
    I am a bit new at this, and Ive been searching on the forums for examples and Ive run through them, but I think my situation is a bit different.
    Also, will RMI play any part in this? Or will it purely be just Socket and Streams?
    I'll also develop an Upload button, but I imagine once I get the Download one going, the Upload one should be much harder.
    Any ideas and help would be appreciated.

    Hi
    I'm no RMI expert... and I did not understand your question very well....
    I think you should do this procedure:
    you should send a request for the file from the client to the server . then a new connection between the two machines should be made which will be used to send the file.
    by using UDP you will achive it quite nicely...
    //socket - is your TCP socket  you already use on the client...
    //out - socket's output stream
    byte [] b=new String("File HelloWorld.java").getBytes();
    // you should use a different way for using this rather than using strings...
    out.write(b);
    DatagramSocket DS=new DatagramSocket(port);
    DS.recieve(packet); //the data is written into the packet...on the server side you should...
    //socket - is your TCP socket  you already use on the server...
    //in - socket's input stream
    byte [] b=new byte[256];
    out.read(b);
    /*Here you check what file you need to send to the client*/
    DatagramSocket DS=new DatagramSocket(server_port);
    byte [] data=//you should read the file and translate it into bytes and build a packet with them
    DS.send(packet); //the data is in the packet...This way the server sends the required file to the client .....
    I hope it will help, otherwise try being clearier so I could help you...
    SIJP

  • Simply setup client features with server installed in advanced mode...

    Hi,
    If I setup my server in standard "mode" I see that Leopard clients discover my server automatically and the server try to set all clients fatures (Mail accounts, Ical server, etc.).
    There is a way to activate this useful fature ALSO with a server installed in "advanced" mode?
    My server need to be installed in advanced mode because it's an open directory master with a DNS that serve all my lan.
    Thanks in advance...

    Hi Kranthi_06,
    According to your description, you have an environment with reporting services installed, the info given by the client they are using reportingservices with sharepoint integrated mode. In SSMS, you can see two databases with names reportserver$DEN2010 and
    reportserver$DEN2010tempdb.
    In Native Mode, in the SQL Server Installation Wizard, if we select Install and configure option, the ReportServer database will be created automatically through Setup. If we choose the Install only option, we must use the Reporting Services Configuration
    Manager to create the database manually. By default, the database format is ReportServer and ReportServerTempDB. In SharePoint Mode, we need to create at least one Reporting Services service application by using SharePoint Central Administration or Reporting
    Services PowerShell cmdlets, then three databases are created for each Reporting Services service application and the database names by default include a guid that represents the service application. The following are example names of the three SharePoint
    mode databases:
    ReportingService_90a9f37075544f22953c4a62e4a9f370
    ReportingService_90a9f37075544f22953c4a62e4a9f370TempDB
    ReportingService_90a9f37075544f22953c4a62e4a9f370_Alerting
    For SSRS 2008 R2 or early versions, we can identify report server mode using the Reporting Services Configuration Manager. For SSRS 2012 or later versions, Reporting Services Configuration Manager no longer supports Reporting Services SharePoint mode. Configuration
    of SharePoint mode is completed using SharePoint Central Administration.
    Reference:
    Verifying SharePoint integrated mode installation
    Create a Report Server Database
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu

  • Java Access Bridge and Windows 7 Run as Administrator Mode

    I've had to add java access bridge support to a winforms .net application. The application must be run as administrator for certain functions to work on Windows 7. Unfortunately, I've found the JAB breaks when it's run from a program that has been elevated to administrator.
    I'm able to reproduce the issue with JavaFerret.exe. Running with a simple double click has no issue tracking mouse events etc, but if I start it via right click "run as administrator" then nothing gets presented in the output window. Can others confirm JavaFeret.exe breaks for them as well in Windows 7 admin mode? Any ideas what's going on and how to work around the issue?

    So after a bit of experimenting we've found that as long as the accessibility program that's hosting the JAB and the java program that is being interacted with are both run in administrator mode then the issue goes away.
    In our case we were able to launch IE from the accessibility program (which was already in administrator mode), opening the java applet in IE and successfully use the JAB between the two.

Maybe you are looking for

  • To find open line items as in FS10N

    Hi Friends, I need your advise since I don't know the accounting funtionality happening in FS10N open items with standard tables (open items). The open line items available or showing in FS10N which is not stored in open item tables like BSIS,BSID or

  • My InDesign document has two page 1s and I can't get the page numbers to work.  Help!

    My InDesign document has two page 1s and I can't get the page numbers to work.  Help!  How do I fix this?

  • Disc Copy with no audio

    I am trying to copy a disc into FCP so I can edit it and create a video show. When I try to copy the disc into the bin All I get is video no audio. It is a VOB extension. Is there a way to get them copied over together?

  • Print quality / resolution for iPhoto books

    Hi - I am getting ready to upload my first iPhoto book for printing, and a colleague told me to beware of a potential issue. After searching these forums, and searching Google, I found that people in the past (perhaps prior to iPhoto '08?) have had p

  • Images won't open in Elements. Can't even create a new image.

    I am trying to open .jpg images in Elements 12 running on Windows 8. File, Open, (select image from thumbnails provided in directory) Nothing happens. The image doesn't appear on screen. If I try to create a new image (File, New), nothing happens eit