FR client does not connect to the server

Hi All,
i have BI+ 9.3.1. on SUN-64
FR is running.
http://my_server:7777/hr/status.jsp gives me:
Hyperion Financial Reporting is available.
i downloaded FR client from edelivery.
when I try to connect I get a message: this function is not allowed.
what can be the matter?
thanks,
Andrei

the message error is this:
You are not authorised to use this functionality. Contact your administrator."
I checked the rights of admin user in Shared services. admin is reporting administrator.

Similar Messages

  • TS3276 iCloud email on OSX 10.8 does not connect to the server after sleep

    iCloud email on OSX 10.8 does not connect to the server after sleep.  The only way I can reconnect the iCloud email is to restart the computer. Does anyone have any ideas how to resolve this issue?

    I would suggest you try opening "Mail">click on "Mailboxes" in the Menu Bar> and select "Rebuild" from the list.  That may solve it.

  • Server 2008 TS - some client could not connect to the server

    Hi guys,
    I have a Server 2008 x64 Terminal Server with license server (some machine) and installed device CALs.
    I can connect with Windows 7 client to Terminal Server by RDP (TS assign device CAL to every connected machine automatically) without problem, but I get this error message if I try connection with Motorola (Symbol) MC8080 mobile scanners:
    "Because of a security error, the client could not connect to the remote computer.
    Very that you are logged on the network, and then try connecting again."
    I tried different settings by KB2477176 and activate/deactivate server, but it didn't solve the problem.
    http://support.microsoft.com/kb/2477176/hu
    (These scanners can connecto to another Terminal Server.)
    Is it client or server-side issue?
    Have you another idee?
    Regards,
    Gabor

    Hi,
    Thank you for posting in Windows Server Forum.
    Please again cross check whether you have properly configured certificate attached with the server. Because the error which you are facing is generally due to corrupted certificate on server side. As you have already tried, I again want you to back up the registry
    setting and then remove the X509 certificate registry key under below mention path, restart the computer and reactivate the RD Licensing Server. 
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server\RCM
    You can also refer below article for additional information.
    How to resolve the issue “Remote Desktop Disconnected” or “Unable to
    Connect to Remote Desktop (Terminal Server)”
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • Does not connect to the server. (Linux)

    I have the WTK installed and working(?) but when I try to run this .JAD/.JAR file, it works fine until trying to connect to the server. Then the app seems to hang and the power light on the phone sim turns off. Why would it do that? Do I need to set something in the WTK so it knows to use my internet connection? I can access the internet with the computer as I am posting from it now. The WTK does not seem to know I have an active connection and use it though. I know the .jar and .jad files work because they work with my windows WTK just fine. Did I miss something about requirements to run the WTK in Linux?
    Thanks,
    Kyle
    Here are my files.
    http://www.mediafire.com/?5yixwdclkjj
    http://www.mediafire.com/?flv9sxgvzz3
    Steps to run (if you want to check my problem).
    Options>Login
    Cell#: 12604185412
    PIN: 111585
    Accept
    Accept
    You should see it showing the "connecting..." and then switch over to the "login..." then it just hangs at "login..."
    Edited by: LifeForceIV on Dec 23, 2007 5:40 AM

    the message error is this:
    You are not authorised to use this functionality. Contact your administrator."
    I checked the rights of admin user in Shared services. admin is reporting administrator.

  • Client does not connect with the webservice no more when using jnlp

    Hello
    I am experiencing an issue, apparently only when i am trying to use my application from java web start
    I have a server/client application that works well when run.
    When trying to start the client using a .jnlp file (server allready being turned on) i stumbled upon an exception:
    org.apache.axis2.AxisFault: Error during encryption
    any help will be greately appreciated
    thank you

    Appears to be an Apache product fault , not a Java problem. Try Apache w/s.

  • There was a problem connecting to the server "Time Capsule".  The share does not exist on the server. Please check the share name, and then try again.

    The following error pop's up as an [OK] dialogue box after logging in the iMac,
    There was a problem connecting to the server "Time Capsule".
    The share does not exist on the server. Please check the share name, and then try again."
    As it happens, a connection to the Time Capsule is established usually, anyway. On occasion it doesn't.
    I have a Volume, Data, on the capsule, which similarly, usually mounts, but occassionally doesn't, with access permissions denied.
    Any suggestions on how begin to work out how to achieve networking seamlesness?

    First, restart the Time Capsule by disconnecting the power adapter and reconnecting it. If other devices on the network can see it, you can skip this step.
    From the menu bar, select
     ▹ System Preferences ▹ Network
    Click the lock icon in the lower left corner of the window and authenticate to unlock the settings, if necessary. Click the Advanced button, then select the TCP/IP tab in the sheet that drops down. Click Renew DHCP lease.
    Try again to back up.
    If you still can't, open the Time Machine preference pane and delete the TC from the list of backup destinations. You may have to unlock the settings by clicking the lock icon in order to do this. Then add it back.

  • The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.

     try
                    MailMessage mail = new MailMessage();
                    SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
                    mail.From = new MailAddress("[email protected]");
                    mail.To.Add("[email protected]");
                    mail.Subject = "Test Mail..!!!!";
                    mail.Body = "mail with attachment";
                    System.Net.Mail.Attachment attachment;
                    attachment = new System.Net.Mail.Attachment(@"C:\Attachment.txt");
                    mail.Attachments.Add(attachment);
                    SmtpServer.Port = 587;
                    SmtpServer.UseDefaultCredentials = true;
                    SmtpServer.Credentials = new System.Net.NetworkCredential("userid", "Password");
                    SmtpServer.EnableSsl = true;
                    SmtpServer.Send(mail);
    Catch(Exception exception)
    When i m run this part of code it throw an Ecxeption                                                          
            Given Below is the Error.. 
        The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.
    Bikky Kumar

     try
                    MailMessage mail = new MailMessage();
                    SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
                    mail.From = new MailAddress("[email protected]");
                    mail.To.Add("[email protected]");
                    mail.Subject = "Test Mail..!!!!";
                    mail.Body = "mail with attachment";
                    System.Net.Mail.Attachment attachment;
                    attachment = new System.Net.Mail.Attachment(@"C:\Attachment.txt");
                    mail.Attachments.Add(attachment);
                    SmtpServer.Port = 587;
    SmtpServer.UseDefaultCredentials = true;    ///Set it to false, or remove this line
                    SmtpServer.Credentials = new System.Net.NetworkCredential("userid", "Password");
                    SmtpServer.EnableSsl = true;
                    SmtpServer.Send(mail);
    Catch(Exception exception)
    Given Below is the Error..      The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.
    Solution:
    The error might occur due to following cases.
    case 1: when the password is wrong
    case 2: when you try to login from some App
    case 3: when you try to login from the domain other than your time zone/domain/computer (This
    is the case in most of scenarios when sending mail from code)
    There is a solution for each
    solution for case 1: Enter the correct password.
    Recomended: solution for case 2: go to
    security settings at the following link https://www.google.com/settings/security/lesssecureapps and
    enable less secure apps . So that you will be able to login from all apps.
    solution 1 for case 3: (This might be helpful) you need to review the activity. but reviewing the activity will not be helpful due to latest security
    standards the link will not be useful. So try the below case.
    solution 2 for case 3: If you have hosted your code somewhere on production server and if you have access to the production server, than take remote
    desktop connection to the production server and try to login once from the browser of the production server. This will add exception for login to google and you will be allowed to login from code.
    But what if you don't have access to the production server. try
    the solution 3
    solution 3 for case 3: You have to enable
    login from other timezone / ip for your google account.
    to do this follow the link https://g.co/allowaccess and
    allow access by clicking the continue button.
    And that's it. Here you go. Now you will be able to login from any of the computer and by any means of app to your google account.
    Regards,
    Nabeel Arif

  • TS1702 Hello, we have a Mac and an ipad,the Mac is working and wifi is on and the Ipad's wifi is on too, but Ipad Safari can not open because it could not connect to the server, does any one know what have happened?

    Hello, we have a Mac and an ipad, the Mac is working and wifi is on and the ipad's wifi is on too, but Ipad Safari can not open the page because it could not connect to the server, does any one know that?

    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are drooping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    6. Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    Fix WiFi Issue for iOS 7
    http://ipadnerds.com/fix-wifi-issue-ios-7/
    iOS 6 Wifi Problems/Fixes
    Wi-Fi Fix for iOS 6
    https://discussions.apple.com/thread/4823738?tstart=240
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    iPad: Issues connecting to Wi-Fi networks
    http://support.apple.com/kb/ts3304
    How to Boost Your Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Boost-Your-Wi-Fi-Signal.h tm
    Troubleshooting a Weak Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/Troubleshooting-A-Weak-Wi-Fi-Sig nal.htm
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    10 Ways to Boost Your Wireless Signal
    http://www.pcmag.com/article2/0,2817,2372811,00.asp
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    Some Wi-Fi losses may stem from a problematic interaction between Wi-Fi and cellular data connections. Numerous users have found that turning off Cellular Data in Settings gets their Wi-Fi working again.
    You may have many apps open which can possibly cause the slowdown and possibly the loss of wifi. In iOS 4-6 double tap your Home button & at the bottom of the screen you will see the icons of all open apps. Close those you are not using by pressing on an icon until all icons wiggle - then tap the minus sign. For iOS 7 users, there’s an easy way to see which apps are open in order to close them. By double-tapping the home button on your iPhone or iPad, the new multitasking feature in iOS 7 shows full page previews of all your open apps. Simply scroll horizontally to see all your apps, and close the apps with a simple flick towards the top of the screen.
    Wi-Fi or Bluetooth settings grayed out or dim
    http://support.apple.com/kb/TS1559
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Addon in Client is not connecting to SQL Server 2005

    Hi, we have an add-on, which is working in SBO 2005 with SQL Server 2000.
    When the addon tries to connect to the same DB, restored on a SQL Server 2005, the addon is hanging up on the oCompany.Connect method. But this only happens when we try a remote connection from a SBO client.
    If we run the addon from the SBO server, where the SQL Server is running too, the addon completes the connection in the expected way.
    The SBO Client is connecting to the server, and works fine, but the addon is not connecting to the server.
    We try to connect to the server from the client, using SQL Query Analizer from SQL Server 2000, and it works fine too.
    Does anyone knows how to fix this issue?
    Thanks

    Hi Alejandro, thanks for your response.
    After installing SBO Patch 20 the add-on is now connecting fine, so I think it must be an upgrade on the new DI API. I noticed the version changes from 6.80.318 to 6.80.319
    I had checked the SQL to confirm is was allowing remote connections.
    Thank you guys.

  • CS5 - Contribute could not connect because the server is down

    we have a client who has site hosted with us. They are using Contribute CS5 to connect to our web server and make changes to their site. They've been using Contribute for a month when all of a sudden they started receiving the error:
    Contribute could not connect because the server is down or not accepting connections. Please contact your administrator.
    Our server is up and running, their site is up, their ftp password is not locked and network said they can see can see end to end FTP transactions, logins and authentications. Communications between the application and the server is being allowed through all the various firewalls and devices along the way.
    I've done some research but cannot find a definitive resolution. Any help with your product would be appreciated.

    Can you please try clearing the Contribute preferences once?
    In Windows -
    Quit Contribute.
    Go  to C:\Documents and Settings\<username>\Local  Settings\Application Data\Adobe\ and delete the Contribute CS5 folder.  (In Windows Vista or Windows 7, go to  C:\Users\<username>\AppData\Local\Adobe\ and delete the Contribute  CS5 folder.)
    Also, run reg delete "HKCU\Software\Adobe\Contribute 6" /f
    In Mac -
    Quit Contribute.
    Go to Users/<username>/Library/Application Support/Adobe/ and delete Contribute CS5 folder.
    Also, go to Users/<username>/Library/Preferences and delete Adobe Contribute 6 Preferences file.
    Note: Doing this will remove all the existing connections in Contribute. It will be like a fresh installtion of Contribute.

  • Contribute could not connect because the server is down"

    My client tries to connect to the website with Contribute and
    gets the error "Contribute could not connect because the server is
    down" however I connect with no problems, using Contribute or
    Dreamweaver.
    I sent him a new connection key but the same error.
    Only problem I ever have is that sometimes I get a "can't
    save files to shared something-or-other" on exit after
    administrating, but I don't know if that's related or not - it
    never seems to affect anything at my end.
    Please help! Thanks

    OK, problem solved here:
    The access denied or file does not exist error was being
    caused by the fact there was a 0KB index file somehow.
    Once we got rid of that we still had the "Contribute could
    not connect because the server is down or not accpeting
    connections" error to get round.
    I had previously asked my client to go in an change the FTP
    settings in the Advanced screen to be Choose FTP server settings
    manually and select Use Passive FTP to connect to the server and
    make sure Use FTP Performance Optimization is not selected. I don't
    think this was ever done (and if it had been it would have saved me
    HOURS of time spent trying to diagnose this problem).
    Today I ended up backing up every contribute related file and
    folder on the server to my local machine then deleting them. After
    having done that I asked my client to create a new connection using
    the FTP details (not a connection key). That still didn't work so I
    got them to (and this time they did it) change the advanced FTP
    settings as above and BINGO! they can now publish.
    I'm guessing that if I had sent a connec tion key with the
    same settings specified in the Advanced FTP then it still would
    have worked.
    I hope this saves someone else some time. I am going to have
    a few beers now to celebrate.

  • How to fix ipad error -1004 "could not connect to the server"

    I am trying to access the tablet edition of Vanity Fair. I already have a subscription and when I click on the "Tap here for acces to the tablet edition" it takes me to a screen & this error message pops up:
    Cannot Open Page
    This page cannot be opended because of an error
    This error is "Could not connect to the server."(-1004).
    I have deleted, reinstalled via itunes on my mac, done a hard restart and nothing seems to be working. I can browse the web using safari and am connected to the internet via wifi.
    Any suggestions?

    I have the same issue, too. My New Yorker subscription is fine, always has been. But my Conde Nast Traveler subscription won't work. I can get to the screen where you enter your information (either with name and address or subscription number and zip code), but once I press Continue I get the error.
    I emailed Conde Nast's customer service, and this is what they said:
    Dear Subscriber:
    Please accept our sincere apologies for the inconvenience you have
    experienced.
    We have applied a fix to the app for the server error and you will need
    to close and re-open your app. To do so, please double click the "home"
    button to close the running app and then re-open your app.
    Please let us know if you still experience any problems.
    If you should need further assistance, please be sure to include all
    previous e-mail correspondence.
    Thank you for your interest in Conde Nast Traveler.
    Sincerely,
    Shar
    That didn't work. I tried the restarting the iPad, as someone here suggested, but that didn't work, either. Interesting that this seems to be a Conde Nast issue - my NY Times and National Geographic subscriptions are just fine, too.
    I'm afraid I'm not sure what the guidance in this knowledge base article means: "Check security software. Ensure that communication to gs.apple.com is allowed. Follow this article for assistance with security software." How does one do that on one's iPad?
    I actually wonder if it's a firewall issue. Are any of you attempting to enter this information at work, for example? I am, and my company has a firewall/proxy that gives me issues sometimes. I'm going to try to find a wifi hotspot at lunch to see if it'll work there.

  • Apple Tv is telling me it can not connect to the server. How do I fix that?

    I changed my apple id and after I did, now my apple tv says it can not connect to the server when I try to view my purchases. Hulu and netflix work so the internet is working fine.  My phone and ipad also work fine with the new id.  Does anyone know how to make my apple tv purchases come back?

    Power cycle the router and the ATV.
    If the issue continues on the ATV go to Settings > General > Reset

  • Iwc application does not connect to IM server[JCS6 vmware image]

    iwc application does not connect to IM server[JCS6 vmware image].
    In the iwc application there is in right side menu the buddy list; this always displayed the message: "Connecting..." and in the log there is this message:
    [12 Jan 2009 09:35:02,317] ERROR httpbind [Thread-23] Error opening stream to server: chimaera.varrius.org : 5222
    [12 Jan 2009 09:35:02,317] INFO httpbind [Thread-23] Component specified is not known : chimaera.httpbind.varrius.org
    org.jabberstudio.jso.StreamException: Component specified is not known : chimaera.httpbind.varrius.org
         at net.outer_planes.jso.AbstractStream.firePacketTransferredEvent(AbstractStream.java:697)
         at net.outer_planes.jso.AbstractStream$Input$1.addExtendedData(AbstractStream.java:116)
         at net.outer_planes.jso.AbstractStream$Input.process(AbstractStream.java:204)
         at net.outer_planes.jso.AbstractStream.process(AbstractStream.java:1176)
         at net.outer_planes.jso.AbstractStream.openInbound(AbstractStream.java:950)
         at net.outer_planes.jso.AbstractStream.open(AbstractStream.java:890)
         at com.sun.im.gateway.http.ComponentSession.createStream(ComponentSession.java:558)
         at com.sun.im.gateway.http.ComponentSession.connectAndAuthenticate(ComponentSession.java:307)
         at com.sun.im.gateway.http.ComponentSession$ConnectRunnable.run(ComponentSession.java:714)
         at java.lang.Thread.run(Thread.java:595)
    How can I resolve the problem?
    Thanks in advance.

    Hi,
    Have you configured the IM server for convergence to talk.Refer the following doc for the same - http://wikis.sun.com/display/CommSuite6/Convergence+1.0+Initial+Configuration#Convergence1.0InitialConfiguration-ConfigureIMComponentstoEnableCommunicationwiththeInstantMessagingServer
    HTH,
    Swetha

  • I am not able to use iMessage, While I am trying to connect, it says 'Can not connect to the server'

    I am not able to use iMessage, While I am trying to connect, it says 'Can not connect to the server'.
    I tried to reset apple id for iMessage but now it is not accepting any apple id with gmail or icloud id.
    Kindly help

    Try here:
    iTunes Store: My credit card's security code or zip code does not match my bank's records
    Then try contacting iTunes
    Apple - Support - iTunes - Contact Us

Maybe you are looking for

  • "complete check box" in version management

    Dear Gurus, User has entered values for version change, and he forgot to click the "complete" check box and saves the document. So release is not get effected. I want this "complete" check box to be mandatory, in the case of purchase order. please gu

  • A Problem with java

    I have a question with the program.I have write a program that it about polynomial which is in order to desc. But my teacher want me to modify the program to in order to asc. But I don't have any idea with that. Can anyone give me some ideas for this

  • Will not open in normal mode

    Firefox will crash every time I try to open it. It then opens in safe mode. I have reset it and restarted the computer and it still crashes. I have sent over 127 crash reports in December alone. I have tried to reinstall but it stops and says it cann

  • PO-MIGO-MIRO date validation

    Hi We have found many MIGO entries with document date prior to purchase data and many invoice document date prior to MIGO date. Auditors have objected to it and would like to know whether SAP does not have any option to control this. Please let us kn

  • Receipient name in PR

    Can I make 'Receipient name ' in PR mandatory for a PR type ? When I check in configuration in 'Define screen layout at doc level' , the field 'Receipient name' is not available.