Client Console Administration

Dear Experts,
I'm meeting unexpected system malfunctioning using the Client Console Administration on our Development Workstation (CRM Release 2007 / 5.0 SP 09)
I am trying to connect to the CRM Server in order to generate the table script and the metadata (the connection settings are correct). As soon as I click the "Connect" button the system displays the error "SAP.Connector.RfcLogonException: Name or password is incorrect".
The message is clear and self explained... but if I try to do the same things from our Mobile Client everything is ok, the system shows the list of the table script and the metadata.
Thanks in advanced for your help.
Kind regards,
Alberto

Dear ALL,
Just implement note "1074669 - Client Console does not connect to MW server" to solve the issue.
Regards,
Alberto

Similar Messages

  • Client Console Metadata Generation failed

    Hi,
    I try to connect with Client Console to CRM 5.0 SP06. When I use Metadata Replication, the connection mask disappear and I have this error in the RFC log:
    ">>> RfcGetAttributes [1] ...
      >>>> rfcOrgHandle [1]
      <<<< rfcOrgHandle returned [1]
    <* RfcGetAttributes [1] successfull
    >>> [1] RfcSetCodePage (4103)...
    ***Turning on UNICODE-tunneling mode
    L-GetCodePage (DEFAULT-CP) rc = 0: 1100
    resize I/O buffer to 16000 bytes
    >>>> [2] <unknown>    : EXT  <ac: 7> x.x.50.246 >>> OPEN  
    Instrument: ab_drvstate create uuid {33457FC7-8FAB-4D1B-B367-41A4A8F63C4C}
    ======> Connect to message server failed
    Connect_PM  MSHOST=x.x.50.246, R3NAME=CRD, GROUP=PUBLIC
    LOCATION    CPIC (TCP/IP) on local host
    ERROR       Group PUBLIC not found
    TIME        Mon Jan 08 15:23:50 2007
    RELEASE     620
    COMPONENT   LG
    VERSION     5
    RC          -6
    MODULE      lgxx.c
    LINE        3441
    DETAIL      LgIGroup
    COUNTER     1
    >>>> [2] <unknown>    : EXT  <ac: 8> x.x.50.246 >>> CLOSE abrfcio.c 537 
      -{33457FC7-8FAB-4D1B-B367-41A4A8F63C4C}
    >>> RfcOpenEx ...
    Got following connect_param string:
       CLIENT=1 USER=REPOSITORY PASSWD=******* LANG=EN R3NAME=CRD
    >>>>RfcLastErrorEx
    >>>> [2] <unknown>    : EXT  <ac: 9> x.x.50.246 >>> FREE abrfcio.c 3327 
      -{33457FC7-8FAB-4D1B-B367-41A4A8F63C4C}
    Trace file opened at 20070108 152350 W. Europe Stand, SAP-REL 620,0,1945 RFC-VER 3 847836 MT-SL
    <* RfcLastErrorEx *>
    <<< RfcOpenEx failed
    >TS> Mon Jan 08 15:23:54 2007
    >>>> irfcnt.c:534  *********************************************
    >>>> irfcnt.c:535  Dump ISAPrfc statistics:
    >>>> irfcnt.c:484           2 CSAPrfcITab instances created so far
    >>>> irfcnt.c:485           0 CSAPrfcITab instances currently active
    >>>> irfcnt.c:484           1 CSAPrfcDataConvert instances created so far
    >>>> irfcnt.c:485           0 CSAPrfcDataConvert instances currently active
    >>>> irfcnt.c:484           1 IRowset instances created so far
    >>>> irfcnt.c:485           0 IRowset instances currently active
    >>>> irfcnt.c:484           1 IRowsetChange instances created so far
    >>>> irfcnt.c:485           0 IRowsetChange instances currently active
    >>>> irfcnt.c:539  *********************************************
    Trace file opened at 20070108 152354 W. Europe Stand, SAP-REL 620,0,1945 RFC-VER 3 847836 MT-SL
    Number of known structure: 2
    Total size needed by the structure directory: 1018"
    The Client Console can retrieve tables list for generating tables, but cannot generate them, so it can connect to the server but cannot do complex operations.
    It seems the Client Console is trying to connect in load balancing mode, but I use dedicated server mode.  I suppose the Client Console cannot write and then find registry entries to make the communication.
    I installed note yet
    Can I drive this behaviour directly with registry entries?
    Thanks in advance,
    Piercarlo

    Hi,
    Ask you R3 Administrator to define group PUBLIC and add the client console user to this group. This should work.
    Cheers,
    Sandeep

  • How to create a client console to connect to server in windows service using c#

    my code is error
    can you check the code please
    client console code
    partial class Program : ServiceBase
            public static void Main(string[] args)
                serverservice ss = new serverservice();
                ss.myserver();
                    TcpClient tcpc = new TcpClient();
                    Console.WriteLine("connecting.......");
                    tcpc.Connect("10.128.1.116", 80);
                    Console.WriteLine("connected........");
                    Console.Write("enter msg to be transimitt");
                    string str = Console.ReadLine();
                    Stream stm = tcpc.GetStream();
                    ASCIIEncoding asc = new ASCIIEncoding();
                    byte[] ba = asc.GetBytes(str);
                    Console.WriteLine("transmitting..........");
                    stm.Write(ba, 0, ba.Length);
                    byte[] bb = new byte[100];
                    int k = stm.Read(bb, 0, 100);
                    for (int i = 0; i < k; i++)
                        Console.Write(Convert.ToChar(bb[i]));
                    tcpc.Close();
                windows service for server code is
      public partial class serverservice : ServiceBase
            public serverservice()
                InitializeComponent();
            protected override void OnStart(string[] args)
                myserver();
               Thread mythread = new Thread(new ThreadStart(myserver));
                 mythread.Start();
            public void myserver()
                char d;
                IPAddress ipad1 = IPAddress.Parse("10.128.1.116");
                TcpListener tcpc = new TcpListener(ipad1, 80);
                tcpc.Start();
               // System.Diagnostics.Process.Start(@"C:\Users\PC\Documents\Visual Studio 2010\Projects\WindowsFormsApplication1\webs\webs\clientconsole\clientconsole\bin\Debug\clientconsole.exe");
                Console.WriteLine("server is running at port 80");
                Console.WriteLine("local end point is" + tcpc.LocalEndpoint);
                Console.WriteLine("waiting for connection");
              // var client=new TestExecutionEngine
                Socket s = tcpc.AcceptSocket();
                Console.WriteLine("connection is accepted from" + s.RemoteEndPoint);
                byte[] b = new byte[100];
                int k = s.Receive(b);
                Console.WriteLine("received");
                for (int i = 0; i < k; i++)
                    d = Convert.ToChar(b[i]);
              Console.WriteLine(char.ToUpper(d));
                ASCIIEncoding asc = new ASCIIEncoding();
                s.Send(asc.GetBytes("msg is recveived"));
                Console.WriteLine("\n send aknwldge");
                s.Close();
                tcpc.Stop();
               protected override void OnStop()
                EventLog.WriteEntry("stopped");

    kavya --
    You have erroneously posted this question in a user forum dedicated to questions about Project Online, an enterprise project management application.  I would recommend you repost your question in a user forum that deals with C sharp programming questions. 
    Hope this helps.
    Dale A. Howard [MVP]

  • How can I create a client console and work together with the Cache Server?

    How can I edit the following Cache-Server.cmd file to create a client console and work together with the Cache Server?
    The following is the cache server file: contacts-cache-server.cmd
    @echo off
    setlocal
    if (%COHERENCE_HOME%)==() (
    set COHERENCE_HOME=c:\coherence
    set CONFIG=C:\home\oracle\coherence\Contacts
    set COH_OPTS=%COH_OPTS% -server -cp %COHERENCE_HOME%\lib\coherence.jar;C:\home\oracle\
    coherence\Contacts;C:\home\oracle\coherence\Contacts\classes;
    set COH_OPTS=%COH_OPTS% -Dtangosol.coherence.cacheconfig=%CONFIG%\contacts-cache-config.xml
    java %COH_OPTS% -Xms1g -Xmx1g -Xloggc: com.tangosol.net.DefaultCacheServer %2 %3 %4 %5 %6 %7
    :exitEdited by: junez on 23-Oct-2009 09:20

    Hi
    To run the console, change DefaultCacheServer to CacheFactory
    Paul

  • How to run Content DB Client console from JDevloper

    Hi
    I have downloaded all the content db client console pages from server. Please let me know how to run the console from my local machine thru jdeveloper. When i tried to run it is giving some runtime exceptions.
    Sep 10, 2007 10:46:07 AM oracle.ifs.fdk.http.HttpNodeManager
    INFO: Creating HTTP Node ...
    07/09/10 10:46:07 Cannot create HTTP Node:
    oracle.ifs.common.IfsException: IFS-45061: Unable to create node
    oracle.ifs.common.IfsException: IFS-20016: Required parameters are null (either "Schema Name" or "Domain Name" should be non-null)
         at oracle.ifs.management.domain.HttpServletNodeUtilities.createNode(HttpServletNodeUtilities.java:243)
         at oracle.ifs.management.domain.HttpServletNodeUtilities.createNode(HttpServletNodeUtilities.java:156)
         at oracle.ifs.fdk.http.HttpServer.createNode(HttpServer.java:162)
         at oracle.ifs.fdk.http.HttpNodeManager.contextInitialized(HttpNodeManager.java:37)
    Please let me know if there is any documentation for this.
    Thanks
    Ravi

    Hi,
    I built berkeley DB 4.4.20 and use it from Jbuilder2005, I noticed that tha size of Jbuilderw.exe consumes about 96MB of memory and the size of javaw.exe consumes (in my application) about 63MB. so I thought that if I load the jdk1.4 only ( by running my code from the command line) this will save memory because not all compenents of Jbuilder will be loaded into memory. to do so, I copied the directory jdk1.4 from inside jbuilder2005 and put it on c:\, then I build berkeley DB using visaul c++ 6.0 and filled the following pathes in the include directory(tools-->options->directories)
    c:\jdk1.4\include
    c:\jdk1.4\include\win32
    and in the executable files directories I added the following path:
    c:\jdk1.4\bin
    then I set the classpath from inside windows (server2003), and I set the path as well but when I run the java class from the command line, I recieved message like "the packege com.sleepycat.db " not exist
    thanks

  • Conntrans u2013 initialization error and Client console show no inbound queue

    Hallo,
    I installed Communication station and Client application to two computers. Test from Communication station to CRM is OK, test from client to Communication station is OK too. When I run Conntrans it show: u201CError during Conntrans initalizatin; contact system administratoru201D. In log file is:
    Exception in CGUIDlg::CreateComObjects_AltThread . Was comerror exception (Neplatný ukazatel hr:80004003); technical hint: Create InitPar NamedCollection</SESS_LOG_TEXT>
    </SESSION_ENTRY>
    Client console show me, that I have u201CNo unprocessed messages available in the queueu201D. But in transaction smq1 I have 923 entries to send to Mobile Client.
    I regenerate metadata, reassign siteID and did transaction table again, but still no messages in inbound queue.
    Configuration: CRM 2007, CRM Mobile Client 6.0 SP02.
    Can anyone help me please with these problems.
    Thank you very much.
    Jiri

    Hallo Wolfhard,
    thank you very much for your help and fast reply. I uninstall .NET 1.1 on client side (I had both .NET 1.1 and 2.0). Now I can run Conntrans. When I try synchronizaiton, it wrote "initializing transfer process" and after few second Conntrans fell down. In log is no error - everything have succeeded. I include ending part of log. In Client console inbound queue is the same.
    <SESSION_ENTRY>
      <SESS_LOG_ENTRY_ID>43090EC6134E43479082B5043DD7E18F</SESS_LOG_ENTRY_ID>
      <SESS_LOG_SERVICE_NAME>GUI</SESS_LOG_SERVICE_NAME>
      <SESS_LOG_TYPE>I</SESS_LOG_TYPE>
      <SESS_LOG_DATETIME>8.7.2008 15:04:19</SESS_LOG_DATETIME>
      <SESS_LOG_TEXT>Returning from CGUIDlg::OnInitDialog...</SESS_LOG_TEXT>
      </SESSION_ENTRY>
    - <SESSION_ENTRY>
      <SESS_LOG_ENTRY_ID>A49BAA7D177D463491F635F8A64591E6</SESS_LOG_ENTRY_ID>
      <SESS_LOG_SERVICE_NAME>GUI</SESS_LOG_SERVICE_NAME>
      <SESS_LOG_TYPE>I</SESS_LOG_TYPE>
      <SESS_LOG_DATETIME>8.7.2008 15:04:20</SESS_LOG_DATETIME>
      <SESS_LOG_TEXT>Call to CGUIDlg::OnInitDialog in CTSDialog::OnInitDialog succeeded</SESS_LOG_TEXT>
      </SESSION_ENTRY>
    - <SESSION_ENTRY>
      <SESS_LOG_ENTRY_ID>F5AE51A961664408830DDF07DA60C1F5</SESS_LOG_ENTRY_ID>
      <SESS_LOG_SERVICE_NAME>GUI</SESS_LOG_SERVICE_NAME>
      <SESS_LOG_TYPE>I</SESS_LOG_TYPE>
      <SESS_LOG_DATETIME>8.7.2008 15:04:20</SESS_LOG_DATETIME>
      <SESS_LOG_TEXT>Call to GetConfigurationDetails in CTSDialog::OnInitDialog succeeded</SESS_LOG_TEXT>
      </SESSION_ENTRY>
    - <SESSION_ENTRY>
      <SESS_LOG_ENTRY_ID>1163EBE1ABB249ECAE0D3B230E6CCBB8</SESS_LOG_ENTRY_ID>
      <SESS_LOG_SERVICE_NAME>GUI</SESS_LOG_SERVICE_NAME>
      <SESS_LOG_TYPE>I</SESS_LOG_TYPE>
      <SESS_LOG_DATETIME>8.7.2008 15:04:20</SESS_LOG_DATETIME>
      <SESS_LOG_TEXT>Call to InitConfiguration in CTSDialog::OnInitDialog succeeded</SESS_LOG_TEXT>
      </SESSION_ENTRY>
    - <SESSION_ENTRY>
      <SESS_LOG_ENTRY_ID>BE6FFFFE896D410A80D58C020195B56D</SESS_LOG_ENTRY_ID>
      <SESS_LOG_SERVICE_NAME>GUI</SESS_LOG_SERVICE_NAME>
      <SESS_LOG_TYPE>I</SESS_LOG_TYPE>
      <SESS_LOG_DATETIME>8.7.2008 15:04:20</SESS_LOG_DATETIME>
      <SESS_LOG_TEXT>Call to CreateAndPlaceControls in CTSDialog::OnInitDialog succeeded</SESS_LOG_TEXT>
      </SESSION_ENTRY>
    - <SESSION_ENTRY>
      <SESS_LOG_ENTRY_ID>FD53890701BA40AE8DADB1F9701FDCFC</SESS_LOG_ENTRY_ID>
      <SESS_LOG_SERVICE_NAME>GUI</SESS_LOG_SERVICE_NAME>
      <SESS_LOG_TYPE>I</SESS_LOG_TYPE>
      <SESS_LOG_DATETIME>8.7.2008 15:04:20</SESS_LOG_DATETIME>
      <SESS_LOG_TEXT>Call to TaskBarCreateIcon in CTSDialog::OnInitDialog succeeded</SESS_LOG_TEXT>
      </SESSION_ENTRY>
      </SESSION_ENTRIES>
    After I applied  note 1071267 on Client 6.0 SP02 I could not run Client Console. When I run it, I got "Failed to load control sbtstatus. Your version may be outdated. Make sure you are using the version of the control that was provided with your application". Conntrans after fix I can run, but it is the same as above - it will fell down after few second of synchronization.
    My version of librfc32.dll is newer, so I did not applied note 1074669.
    I will try to uninstall client side and apply note again to clean installation if it helps.
    Thank you very much. With regards
    Jirka

  • Client Console: Queue Manager - inqueue all ?

    Hello forum,
    I've the problem in msa-conntrans, that I can receive data, but the
    data is not imported. When I look in Queue Manager I can see the data,
    but when I press process, there is only one of them processed.
    How can I process all bdocs in inqueue ?
    I use msa 50sp6, applied many notes and new client console, new mwimport.dll
    and so on. Metadata and tablescripts syncronized.
    But I have still hanging inqueues.
    Has anybody a solution how to import them ??
    Thanks
    Gerd

    Hello Ankan, here trace_log.dat
    Can you check this ?
    18.07.2007 14:13:02 : Start of Log
    18.07.2007 14:13:05 : Object reference not set to an instance of an object.
       at Interop.QMTTransCompress.QMTCompressLibraryClass.ABAPDeCompressBytes(Object inBytes, Object& outString)
       at TLClientQueueHandler.QueueHandler.GetNextQInMsg(String& sBdocGName, String& sXmlContent, String& sMsgOrder, Int32& iMsgSize, Boolean& HasMsg, Boolean SaveToFile, String FileName, Int32& MsgVersion)
       at TLClientQueueHandler.QueueHandler.RetrieveInboundMessages(String& BDocGName, String& XmlMsg, String& MsgOrder, Int32& MsgSize, Boolean& HasMsg, Boolean SaveToFile, String FileName, Int32& MsgVersion)
       at MWImport.ExInterface.RetrieveInboundMessage(SqlConnection oConn, String& BDocName, String& XmlMessage, String& MsgOrder, Int32& MsgSize, Boolean& HasMsg, Boolean SaveToFile, String FileName, Int64& time, Int32& MsgVersion)
       at MWImport.QInDataImport.GetTopMessageInQueue(String& BDocName)
    Message Count - Confirmation = 0
    Message Count - UnKnown = 0
    Message Count - Archive = 0
    Message Count - Zap = 0
    Message Count - Error = 0
    Message Count - Import = 0
    Message Count - QBCurrentState = 0
    Message Count - QBlocker = 0
    Message Count - CurrentState = 0
    Message Count - Bulk = 0
    Message Count - Service = 0
    Start Time        :     18.07.2007 14:13:02
    InitializeTime    :     2072
    MetaDataAccess    :     0
    ReadQInData       :     0
    Confirm QIn Msgs  :     0
    ApplicationDBTime :     30
    Other Times       :     -10
    Time for 4.0 xml  :   0
    End Time          :     18.07.2007 14:13:05
    Total Time        :     2092
    Message Size      :   0 bytes
    InitializeTime    % :     99,0120205945003
    MetaDataAccess    % :     0
    ReadQInData       % :     0
    Confirm QIn Msgs  % :     0
    ApplicationDBTime % :     1,43357172675435
    Other Times       % :     -0,477857242251449
    Number of Database Connection Opened = 1
    Number of Database Connection Closed = 0
    18.07.2007 14:13:05 : End of Log

  • Query on Connection parameters on Client console

    Hi all,
    I've a question on Connection parameters used in Client console.
    "Is there any restriction for the password to be used while connecting to the CRM server through Client Console while assigning a site Id or generating the Metadata? If yes what the restrictions?"
    Regards,
    Praveen.
    Edited by: Praveen on Jul 9, 2008 1:44 PM

    Hi Ankan,
    Thanks for your response.
    what are the restrictions on every version of BASIS system for the password? How can we find these rules/restrictions?
    Regards,
    Praveen.

  • Do we need license for Client 10g (Administrator Option) ?

    Hello All,
    We have an Oracle Database Server License for 32 CPUs.
    Do i need to buy separate license for installing 'Oracle Client with Administrator Option' on PCs ?
    Could not find any details of this(regarding CLIENT) in the Oracle website.
    TIA,
    J J

    J..J wrote:
    Hello All,
    We have an Oracle Database Server License for 32 CPUs.
    Do i need to buy separate license for installing 'Oracle Client with Administrator Option' on PCs ?
    Could not find any details of this(regarding CLIENT) in the Oracle website.
    TIA,
    J JIf we give you an answer, and the answer is wrong, and Oracle takes you to court - who is in trouble?
    (Hint: you are)
    If you ask Oracle Sales and they give you an answer, and the answer is wrong, and Oracle takes you to court - who is in trouble?
    (Hint: Oracle is)
    Which do you prefer?

  • EIS client console gets hung

    Hi All,
    My server version of EIS is 9.3.1 on AIX 5.3 and client version is 9.3.13 on my windows desktop.
    When I tried to connect to EIS server by client console after entering EIS server name client console just freeze
    And olapisvr.log file is updated with the following message
    [Fri Mar 12 15:29:18 2010] /IS/Listener/0/Informational/1051001/Build-AIS93100B113
    Received client request Login
    If I use ps -ef|grep|ais on my EIS server it returns back with the following output, does it mean AIS is running on server?
    uzcce5 803056 1 0 09:52:45 - 0:00 /usr/bin/ksh ./ais_start
    Thanks,
    Rajamani N

    Landon737 wrote:
    It's a FireWire LaCie Porsche 250 GB external HD, which I think is a very decent disk. In fact, I've had no problems with it whatsoever until this past week.
    Maybe, but they're all mechanical contraptions . . .
    Now, something else I've seen is that when I turn off TM and then turn it back on (the actual switch in the pref pane) I am asked to choose a disk to use for backup. When I select "Macbook Pro Backup" it asks me if I want to back on the same disk that my original data is on. That seems weird to me. In fact in my list of disks, I have the external HD (2 partitions) and my Windows partition HD but no "Macintosh HD" start-up disk.
    That sounds like the message you get when you want to back-up to a different partition on the same drive. It will let you do that, but warns you first that it may not be a great idea.
    And you should only get the "Choose a disk" prompt if there isn't one already selected.
    TM should list any volume with TM backups on it (from any Mac) in the excluded list, but in gray, so you can't remove it.
    It's a long shot, but it might be worth a try to do a complete reset:
    Stop TM, de-select your TM drive (select "none"), note your exclusions, then quit System Preferences.
    Delete the top-level (not in your home folder) file: /Library/Preferences/com.apple.TimeMachine.plist
    Re-select your TM drive, re-enter any exclusions, try a +Back Up Now+.

  • Installation of client Essbase Administration Services Console 11.1.2

    My EAS console opens and connects successfully, but I am unable to right-click outline members or expand the outline by clicking on dimension names.
    I tried to install the client tier of Oracle EPM 11.1.2 including EAS console, EPMA, and Reports on my laptop. I'm running 32-bit Windows 7. After a few failures, I thought I successfully installed these products by:
    1) first installing the Microsoft Loopback Adapter (not sure this was necessary),
    2) running the install "as Administrator", and
    3) copying this folder from a colleague's installation: C:\Oracle\Middleware\EPMSystem11R1\products\Essbase\EssbaseStudio\Console\workspace. The last folder was probably not created in the installation for some reason. I only realized that this folder was missing when I found this error log when trying to login Essbase Studio -
    !STACK 1
    java.lang.IllegalStateException: The platform metadata area could not be written: C:\Oracle\Middleware\EPMSystem11R1\products\Essbase\EssbaseStudio\Console\workspace\.metadata. By default the platform writes its content
    under the current working directory when the platform is launched. Use the -data parameter to
    specify a different content area for the platform.
    etc.
    After all this, I can successfully login to Essbase Studio, however, my EAS console still does not work properly. I realize I can use the web console, but I think this is an installation problem that will cause problems later with other products.
    Does anyone have any ideas?

    I've experienced similiar problems in multiple environments. Even the outline for Sample.Basic was locked. I just stumbled across something that corrected the problem (at least for now :) ). I opened one of my outlines, selected the "*Account*" dimension and then chose to "*sort the children of the selected member in descending order*" (menu option directly above database outline) and somehow that unlocked my outline. Not sure why that solved the problem, but it did.

  • Re: Installation of client Essbase Administration Services Console 11.1.2

    Hi,
    I am going through the same issue.
    I've installed and configured Hyperion 11.1.2.3 on my XP machine(XP Service Pack3 32-bit) which has Oracle 11G installed on it..
    I'm able to open Shared Services URL and am able to open Workspace URL but I don't see Administrative Services Console in Essbase from Start >> All Programs.
    I've checked for the console folder in <MIDDLEWARE_HOME>\EPMSystem11R1\products\Essbase\eas\console\bin. but I don't see a console folder.
    I even searched for the file, admincon.bat and din't find that either.
    Can any one help me to bring up the Administration Services Console back.
    And I also see that Import Data from Earlier Release is failed while configuration is done. Did that has got something to do with?
    Kindly help.
    Thanks,
    Raj

    You may have to install and configure Essbase server to use it.
    I think it doesn't support XP.
    You can look at the support matrix for supported platforms and get essbase server installed to continue working on it. Have a look at the link Supported Platforms Matrices - Oracle Enterprise Performance Management System to get you started.
    At minimum, you need to have windows server 2003 for essbase server
    Regards
    Amarnath
    ORACLE | Essbase

  • How to Use a Certificate for Two Way SSL and another certificate for WS Security Header at Client Console Application(C# Dotnet)

    Hi,
    I want to consume a Java Web service from Dotnet based client Application. The service require one Certificate("abc.PFX") for Two Way SSL purpose and another certificate("xyz.pfx") for WS security purpose to be passed from client Application(Dotnet
    Console based). I tried configuring the App.config of Client application to pass both the certs but getting Error says:
    Could not establish secure channel for SSL/TLS with authority "******aaaa.com"
    Please suggest how to pass both the certs from client Application..

    Hi,
    This problem can be due to an Untrusted certificate. So you need just full permissions to certificates.
    And for more information, you could refer to:
    http://contractnamespace.blogspot.jp/2014/12/could-not-create-secure-channel-fix.html
    Regards

  • Devices not showing up in client software Administration section

    None of our devices are showing in the "devices" portion of the administration section in the client app.
    Everything is functioning fine and I can administer devices through SysPrefs, but will eventually need to get back to this setup to add "edit in place" volumes, etc. I've tried refreshing, creating a new device to refresh list and many other things. I can't even search for a device by name in the "devices" section. Again, this is the only place where I can't see them.
    Any ideas? Need it back bad!
    Ryan

    Hey!
    Correct, not seeing any devices, but ONLY in the "devices" portion of the client admin. I see all my devices everywhere else and the entire system is functional, except for the fact that I can't get to them through the client admin. I can access it through the Sys Prefs portion of FCS, but need to get into the client admin for "edit in place", etc...
    I do have backups from as far as 6 months ago, however - Much has changed on the server and I'd had to have to revert to one of those. Not sure exactly when this issue started, but I've seen it for at least a month.

  • Weblogic Portal Console Administration and SSO

    Hello!
    I have integrated Oracle Weblogic Server(10.3.2) with Oracle Identity Manager to achive Single Sign On. In IDM is set form login.
    My base_domain configuration is : AdminServer and a Cluster_0 with two managed servers : Server_1 and Server_0.
    I have as proxy server : Oracle HTTP Server (OHS) for each server : Admin-Server, Server-0, Server-1.
    I targeted my portal app to cluster. My portal application contains Portal Administration Console, avaibled at /myAppAdmin.
    Security Providers are (in this order):
    1. OAMIDAsserter - Oracle Access Manager Identity Asserter( Control Flag : REQUIRED, Active Types : ObSSOCookie)
    2. OIDAuthentificator - Provider that performs LDAP authentication (Control Flag: SUFFICIENT )
    3. DefaultAuthenticator - Weblogic Authentication Provider ( Control Flag : SUFFICIENT
    4. DefaultIdentityAsserter - Weblogic Identity Assertion provider.
    When I access Portal Administration Console from /myAppAdmin (admin-tools.war)
    1. I login first in IDM with the user from LDAP : weblogic_ldap. The login is ok and the ObSSOCookie is set.
    2. I am redirected to login from Portal Administration Console (this thing is wrong and I want to jump this step. I want to go directly in Portal Administration Console after the first login).
    3. I login in the second login page from Portal Administration Console with the same user : weblogic_ldap. The login has succeed.
    4. I am logged in Portal Administration Console and I can add content ( for exemple)
    What I have to do to have only the login form from IDM. To have the only two steps:
    1. Login in Portal Administration Console using login form from IDM and a LDAP user
    2. Access the Portal Administration Console
    I have tried :
    I have changed domain security Default Model : "Advanced" , set Combined Role Mapping Enabled to "FALSE", set Check Roles and Policies to
    "ALL Web applications and EJBs" and selected for When Deploying Web Applications or EJBs: "Ignore roles and policies to DD".
    After this changes I deployed myApp which contains /myAppAdmin Console with Security policies set to Advanced.
    I have only the IDM login, the correct one, and after that I am able to see first page of the Portal Administration Console and whatever I click I receive the error:
    ####<Mar 29, 2011 11:20:55 AM EEST> <Error> <netuix> <server0-dns> <Server-0> <[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <1301386855474> <BEA-423142> <The control com.bea.netuix.servlets.controls.page.SingleLevelMenu could not be rendered properly due to the following error:
    com.bea.p13n.entitlements.common.PolicyMgmtAccessException: Attempt to access Entitlement Policy Mgmt API by user in invalid role. Entitlement Policy operation attempted by disallowed user ["principals=[]"].
    at com.bea.p13n.entitlements.management.internal.SecurityHelper.isWLPAdminRole(SecurityHelper.java:937)
    at com.bea.p13n.entitlements.management.internal.RolePolicyDelegate.roleExists(RolePolicyDelegate.java:346)
    at com.bea.p13n.delegation.DelegationService.getParentInheritanceFlag(DelegationService.java:189)
    at com.bea.p13n.delegation.DelegationService.getAdminPolicies(DelegationService.java:753)
    at com.bea.p13n.delegation.DelegationService.isAdminPolicyOnResourceRoot(DelegationService.java:450)
    at com.bea.p13n.delegation.DelegationService.isAdminPolicyOnResourceRoot(DelegationService.java:430)
    at com.bea.jsptools.common.ToolsMenuTag.hasMenuAccess(ToolsMenuTag.java:354)
    at com.bea.jsptools.common.ToolsMenuTag.doStartTag(ToolsMenuTag.java:130)
    I have to modified admin-tools.war or something in domain's security or myApp's descriptors to be able to login in Portal Administration Console
    using only SSO and not both SSO and default login?
    Thank you for helping me.

    Thank you user11089180, this bit me too. The new password of Passw0rd for the system account is really buried in the documentation.

Maybe you are looking for

  • How to get list of logged-in users from Flash Media Server in a Flash programm? (Or login/logout notifications)

    Hi there, I'm Very sorry for asking this. I guess it's a very basic problem, but I'm very new to Flash and Flash media Server and I need a very fast answer... Currently I'm working on a Director project using a flash program which connects to Flash M

  • Photoshop Elements 8 quits with OS Lion

    I am having trouble running Photoshop Elements 8 with OSX Lion. Any time I ask for "help" of any kind, the program quits. Anyone know a fix?

  • Summry report for payment advice notes

    Hi, All, I have set up email payment advice notes. So if vendors have email addresses maintained, the process will sent out emaisl. Otherwise, it will print out. But after the process I only got the summary report for those printed ones. Those emaile

  • Tracking a stolen device

    Hi all One of our portables has been stolen. Since a few days, the device is reporting again in Intune. Intune tells us something more about the "Last User to Log on" and "The Network Adaptor Configurations" (a private IP Address, but not one of our

  • Problem with Trusted Reconcilation, Not able to create USERS in Database

    .log file ERROR ExecuteThread: '11' for queue: 'weblogic.kernel.Default' XELLERATE.SERVER - Class/Method: tcRCE/createUserRecord encounter some problems: {1} java.lang.NullPointerException      at com.thortech.xl.dataobj.util.tcAttributeSource.getAtt