RIM BES Trusted App - No GUID

Having issues with adding new BB users /address books on 4.1.6.22 BES with GW7 client.
(Our GW server is GW8SP1HP1 on NW6.5SP8 with eDir 8.85)
I followed "Solving Trusted Key Issues with BB Server and ConsoleOne[" Cool Solution about generating a new Trusted App but the generated key will not paste into server's key field on BES because it is not the correct format.
So I found a few docs showing how the key is based on the RIM BES Trusted App GUID and where to find it in ConsoleOne (Tools, GW Diags, Record Enumerations, select Trusted Apps by name then Info. ).However,it seems there is no GUID to be found. I also did a search by GUID under the Record Enumerations and eventually found an object with an empty GUID that showed the RIM BES info. So it appears my system isn't creating a usable GUID for this object.
Does anyone have any ideas how I can get a usable key?

Are you installing the BES and having troubles with the key? I have only
used C1 to delete the trusted key and used the key generator provided by
RIM, it should be in: C:\Research In Motion\BlackBerry Enterprise Server\Key
Generator Application from were the installation package unpackaged the
install.
Now it's important to run the key generator on a PC that has the Novell
client installed, so I often have copied that directory to a PC that has it
and so far I have never had any issue.
Once generated and the key copied to the prompt during installation, you
should be good to go; there shouldn't be anything you need to do after that,
if it works for one user, it should work for everyone?
"krmcclure" <[email protected]> wrote in message
news:[email protected]..
>
> Having issues with adding new BB users /address books on 4.1.6.22 BES
> with GW7 client.
> (Our GW server is GW8SP1HP1 on NW6.5SP8 with eDir 8.85)
>
> I followed "Solving Trusted Key Issues with BB Server and ConsoleOne["
> Cool Solution about generating a new Trusted App but the generated key
> will not paste into server's key field on BES because it is not the
> correct format.
>
> So I found a few docs showing how the key is based on the RIM BES
> Trusted App GUID and where to find it in ConsoleOne (Tools, GW Diags,
> Record Enumerations, select Trusted Apps by name then Info. ).However,it
> seems there is no GUID to be found. I also did a search by GUID under
> the Record Enumerations and eventually found an object with an empty
> GUID that showed the RIM BES info. So it appears my system isn't
> creating a usable GUID for this object.
>
> Does anyone have any ideas how I can get a usable key?
>
>
> --
> krmcclure
> ------------------------------------------------------------------------
> krmcclure's Profile: http://forums.novell.com/member.php?userid=25930
> View this thread: http://forums.novell.com/showthread.php?t=402975
>

Similar Messages

  • HT1937 I have installed an app : Birdfield guide in my iPhone 4. But the app is not working after installation. It shows black screen when opened

    I have installed an app : Birdfield guide in my iPhone 4. But the app is not working after installation. It shows black screen when opened. I need suggestions to make it work or the reasons for not working.

    Yes TeeKnows, try deleting it and download it again. After finished installation if still shows black screen delete it out off 'running apps' by double tapping the home button and swipe it off. If still shows black screen then try fully turning off your iPad (holding the sleep button) and turn back on again.
    I hope I helped
    thanks
    Lydia

  • On-premise High-trust App and 401 (appredirect.aspx) for anomyous user

    Hello,
    I've developed a provider hosted App. The App can be used by authenticated and anonymous users. On my development platform the App is working in both cases as expected. Then I configured a new test Server (I did all the steps for high trusted Apps) and installed
    the new App (Register app, created a new package in Visual Studio, did the changes for the TokenHelper class and so on). Now, the App ist working for authenticated users only. For anonymous users the appredirect page is asking for credentials. The SharePoint
    log contains only a few Information about the problem:
    client_id: i:0i.t|ms.sp.ext|..... and instance_id:
    https://xxx/Pages/AppPartPage.aspx?SPHostUrl=http%3A%2F%2FXXXXXXX%2FDE%2FSP2013Standard&SPHostTitle=SP2013%20Standard%20Layout&SPAppWebUrl=""&SPLanguage=de%2DCH&SPClientTag=1&SPProductNumber=15%2E0%2E4420%2E1017&wpId=g%5F5b8feaca%5F038f%5F473d%5F8001%5F0a91849f9a05&editmode=0&SenderId=1DD84F040
    from query string
    redirectLaunUrl after getting it from query string, web or app instance:
    https://remote-domain-app/Pages/AppPartPage.aspx?SPHostUrl=http%3A%2F%2FXXXXXXX%2FDE%2FSP2013Standard&SPHostTitle=SP2013%20Standard%20Layout&SPAppWebUrl=""&SPLanguage=de%2DCH&SPClientTag=1&SPProductNumber=15%2E0%2E4420%2E1017&wpId=g%5F5b8feaca%5F038f%5F473d%5F8001%5F0a91849f9a05&editmode=0&SenderId=1DD84F040
    redirectLaunUrl after getting token replacement:
    https://remote-domain-app/Pages/AppPartPage.aspx?SPHostUrl=http%3A%2F%2FXXXXXXX%2FDE%2FSP2013Standard&SPHostTitle=SP2013%20Standard%20Layout&SPAppWebUrl=""&SPLanguage=de%2DCH&SPClientTag=1&SPProductNumber=15%2E0%2E4420%2E1017&wpId=g%5F5b8feaca%5F038f%5F473d%5F8001%5F0a91849f9a05&editmode=0&SenderId=1DD84F040
    m_oauthAppId after NormalizeAppIdentifier() i:0i.t|ms.sp.ext|548......  Now getting app principal info.
    decided that we need to do a POST to the app.
    NOTHING MORE
    The remote IIS web allows anonymous access and I can open the remote web site as anonymous user. Tried to set the the App Principal permission again, but without luck.  When the remote web is stopped the 401 error still exist - no other error.
    I've no idea what I can check next.

    Hi,
    You can use PowerShell to get the AppPrincipal.
    $targetWeb = Get-SPSite "http://dev.my.com"
    $clientID = "82ea34fc-31ba-4e93-b89a-aa41b023fa7e"
    $authRealm = Get-SPAuthenticationRealm -ServiceContext $targetWeb
    $AppIdentifier = $clientID + "@" + $authRealm
    $appPrincipal = Get-SPAppPrincipal -Site $targetWeb.RootWeb -NameIdentifier $AppIdentifier
    I suggest you try to delete the app and use the following PowerShell script to install the APP.
    param
    [string]$Web = $(throw '- Need a SharePoint web site URL (e.g. "http://portal.contoso.com/")'),
    [string]$Source = "ObjectModel"
    Write-Host -ForegroundColor White "-------------------"
    Write-Host -ForegroundColor White "| App Installer |"
    Write-Host -ForegroundColor White "-------------------"
    Write-Host -ForegroundColor White "- "
    #Global vars
    $AppPackageName = "App.app";
    #Loads powershell settings
    Write-Host -ForegroundColor White "- Load Powershell context.."
    $0 = $myInvocation.MyCommand.Definition
    $dp0 = [System.IO.Path]::GetDirectoryName($0)
    #Loads the SharePoint snapin
    Write-Host -ForegroundColor White "- Load SharePoint context.."
    $ver = $host | select version
    if ($ver.Version.Major -gt 1) {$host.Runspace.ThreadOptions = "ReuseThread"}
    if ((Get-PSSnapin "Microsoft.SharePoint.PowerShell" -ErrorAction SilentlyContinue) -eq $null) {
    Add-PSSnapin "Microsoft.SharePoint.PowerShell";
    [void][System.Reflection.Assembly]::Load("Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c")
    #Imports the App package
    Write-Host -ForegroundColor White "- Import app package '$AppPackageName'..."
    $appPath = "C:\Projects\App\App\bin\Debug\app.publish\1.0.0.0" + "\" + $AppPackageName;
    if ($Source.Equals("ObjectModel", [System.StringComparison]::InvariantCultureIgnoreCase)) {
    $sourceApp = ([microsoft.sharepoint.administration.spappsource]::ObjectModel);
    elseif ($Source.Equals("Marketplace", [System.StringComparison]::InvariantCultureIgnoreCase)) {
    $sourceApp = ([microsoft.sharepoint.administration.spappsource]::Marketplace);
    elseif ($Source.Equals("CorporateCatalog", [System.StringComparison]::InvariantCultureIgnoreCase)) {
    $sourceApp = ([microsoft.sharepoint.administration.spappsource]::CorporateCatalog);
    elseif ($Source.Equals("DeveloperSite", [System.StringComparison]::InvariantCultureIgnoreCase)) {
    $sourceApp = ([microsoft.sharepoint.administration.spappsource]::DeveloperSite);
    elseif ($Source.Equals("RemoteObjectModel", [System.StringComparison]::InvariantCultureIgnoreCase)) {
    $sourceApp = ([microsoft.sharepoint.administration.spappsource]::RemoteObjectModel);
    $spapp = Import-SPAppPackage -Path "$appPath" -Site $Web -Source $sourceApp -Confirm:$false -ErrorAction SilentlyContinue -ErrorVariable err;
    if ($err -or ($spapp -eq $null))
    Write-Host -ForegroundColor Yellow "- An error occured during app import !"
    throw $err;
    Write-Host -ForegroundColor White "- Package imported with success."
    #Installs the App
    Write-Host -ForegroundColor White "- Install the APP in web site..."
    $app = Install-SPApp -Web $Web -Identity $spapp -Confirm:$false -ErrorAction SilentlyContinue -ErrorVariable err;
    if ($err -or ($app -eq $null)) {
    Write-Host -ForegroundColor Yellow "- An error occured during app installation !"
    throw $err;
    $AppName = $app.Title;
    Write-Host -ForegroundColor White "- App '$AppName' registered, please wait during installation..."
    $appInstance = Get-SPAppInstance -Web $Web | where-object {$_.Title -eq $AppName};
    $counter = 1;
    $maximum = 150;
    $sleeptime = 2;
    Write-Host -ForegroundColor White "- Please wait..." -NoNewline;
    $url = "$($Web)_layouts/15/appinv.aspx?AppInstanceId={$($appInstance.Id)}"
    $ie = New-Object -com internetexplorer.application
    try
    $ie.visible=$true
    $ie.navigate2($url)
    while ($ie.busy)
    sleep -milliseconds 60
    $trustButton = $ie.Document.getElementById("ctl00_PlaceHolderMain_BtnAllow")
    $trustButton.click()
    sleep -Seconds 1
    Write-Host "App was trusted successfully!"
    catch
    throw ("Error Trusting App");
    while (($appInstance.Status -eq ([Microsoft.SharePoint.Administration.SPAppInstanceStatus]::Installing)) -and ($counter -lt $maximum))
    Write-Host -ForegroundColor White "." -NoNewline;
    sleep $sleeptime;
    $counter++;
    $appInstance = Get-SPAppInstance -Web $Web | where-object {$_.Title -eq $AppName}
    Write-Host -ForegroundColor White ".";
    if ($appInstance.Status -eq [Microsoft.SharePoint.Administration.SPAppInstanceStatus]::Installed) {
    Write-Host -ForegroundColor White "- The App was successfully installed.";
    $appUrl = $appInstance.AppWebFullUrl;
    Write-Host -ForegroundColor White "- The App is now available at '$appUrl'.";
    Write-Host -ForegroundColor White "- (Don't forget to add app host name in your host file if necessary...).";
    Write-Host -ForegroundColor White "- "
    else {
    Write-Host -ForegroundColor Yellow "- An unknown error has occured during app installation. Read SharePoint log for more information.";
    More TroubleShooting Tips for High Trust Apps on SharePoint 2013
    http://blogs.technet.com/b/speschka/archive/2012/11/01/more-troubleshooting-tips-for-high-trust-apps-on-sharepoint-2013.aspx
    Thanks,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected].
    Dennis Guo
    TechNet Community Support

  • Cannot find BI Apps Product Guides for 7.9.6.4

    Does anyone know where I can find the BI Apps Product Guides for 7.9.6.4? (I have found them for 7.9.6.3 but cannot find them for .4.............if they are so similar as to have little difference then that is worth knowing as well).
    Thanks!

    are you looking for this? :
    http://docs.oracle.com/cd/E35287_01/index.htm

  • Iframe auto height based on content in high trust apps on premise

    Hi, 
    how to adjust the app part height based on the content, in high trust apps. 
    Thanks
    Ram

    Hi Ram,
    We can use JavaScript to adjust the iframe height, the following code for your reference:
    <script type="text/javascript">
    function iframeLoaded() {
    var iFrameID = document.getElementById('idIframe');
    if(iFrameID) {
    // here you can make the height, I delete it first, then I make it again
    iFrameID.height = "";
    iFrameID.height = iFrameID.contentWindow.document.body.scrollHeight + "px";
    </script>
    More information:
    How To Adjust IFrame Height on Its Content
    http://www.codeproject.com/Articles/19499/How-To-Adjust-IFrame-Height-on-Its-Content
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Unhandled exception was thrown by the sandboxed code wrapper's Execute method in the partial trust app domain

    Hi All,
      I have created a custom web part in VS 2008 for Share point server 2010 with DevExpress v12.2.17, and deployed as Sandboxed solution. when i add that web parts in web part zone i am getting the error as "Web Part Error:
    Unhandled exception was thrown by the sandboxed code wrapper's Execute method in the partial trust app domain: An unexpected error has occurred. ".
    If there is any way to get detailed error either log file or event viewer.
    Kindly advice to find the cause of the problem.
    Thanks,
    Selvakumar.S

    Hello,
    Are you impersonating your code? Have you tried to debug your code by attaching SPUCHostService.exe? if not please do so.
    You also need to check ULS log for more information about this error. Here is one ref link if this could help
    http://sohilmakwana.wordpress.com/2013/11/29/sandbox-error-unhandled-exception-was-thrown-by-the-sandboxed-code-wrappers-execute-method-in-the-partial-trust-app-domain/
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Trusted App key on test server

    Hi,
    I'm using the the SOAP services on the test server (151.155.5.234) and instead of using individual logins, I would prefer to login using a Trusted App key.
    Is there a Trusted App key available to use on the test server?
    Thanks,
    Paul

    Sorry, my time restraints don't allow me to look into
    the issue. If you want to try trusted application
    logins, I would suggest you get an evaluation copy of
    GroupWise and try it on that.
    I can't remember the password I used to setup the server.
    If I need to do anything with the server, I would need to
    do a fresh install. Setting up the server so that it can
    sit outside the firewall takes a lot of time. Time that I
    don't have now.
    I believe there is still a 5 user evaluation copy of
    GroupWise that you can get.
    Preston
    >>> On Wednesday, May 26, 2010 at 8:26 AM,
    paulward<[email protected]> wrote:
    > Hi,
    >
    > I'm using the the SOAP services on the test server (151.155.5.234) and
    > instead of using individual logins, I would prefer to login using a
    > Trusted App key.
    >
    > Is there a Trusted App key available to use on the test server?
    >
    > Thanks,
    >
    > Paul

  • TD Canada Trust app not working

    Has anyone tried installing TD Canada trust banking application on Z10? I tried several times but it keeps saying "Unavailable for this device". I phoned TD and they say it has nothing to do with them, but with Telus, Telus says nothing to do with them but with Blackberry.........And I cannot reach anyone from BB to give me an answer. Thanks
    Solved!
    Go to Solution.

    Ok, I understand your point, but when I buy this phone (suppose to be better than all other BB), I am looking forward to have at least the same apps that I add on my bold before. so don't put it on a market before you can propose at least the same apps.

  • I am stuck in an App with Guided Access and have forgotten pass code? Help!

    I have forgotten pass code for Guided Access and can not get of the App? I don't know what to do next? I have tried resetting by holding Home button and on/off for 10 seconds. What now?

    Hi Suzanne
    If you continue to be unable to guess the passcode by brute force attempts, you can connect the device to a computer that has synced the device and unlock things with a sync.
    If you have never synced with iTunes then you can try this:
    1.Hold the Lock Button
    2.Slide the Slide To Power Off slider [If touch is disabled/you're unable to slide it, do a hard reset — hold the lock and home button until the Apple Logo appears]
    3.When your iDevices powers up, immediately exit the app that automatically opens.
    4.Go to Settings > General > Accessibility > Guided Access
    5.Click Set Passcode
    6.Enter new password
    7.Reboot again.
    8.Wait for the app to automatically open and Triple tap the home button
    9.Enter the new password

  • Tokens + Trusted App

    Because Trusted Applications use MultiLogin it appears that you can't
    run a Token against them. Does anyone know of a way around this? I've
    looked at the GroupWiseCommander object and it dosen't look like it has
    a specific method that would let you pass the login to use.
    Thanks,
    Shane

    In article <[email protected]>,
    [email protected] says...
    > Because Trusted Applications use MultiLogin it appears that you can't
    > run a Token against them. Does anyone know of a way around this? I've
    > looked at the GroupWiseCommander object and it dosen't look like it has
    > a specific method that would let you pass the login to use.
    >
    > Thanks,
    >
    > Shane
    >
    Actually now that I think about it it's the not having a RootAccount
    that is the problem. Unfortunately you cannot set the RootAccount after
    a MultiLogin.

  • How to make Safari stop asking whether to trust app Signature

    I'm running Safari 4.0.5 on a Tiger system. When I sign on to my work VPN (I go to a website, enter credentials, and it starts up Network Connect), it always says "this applet was signed by ... and then I have to hit "Trust" or "Don't trust" or "Examine certificate". Can I get rid of this somehow?
    thanks
    Mike

    Hi Mike,
    Anytime you go to a secure site you will know because there will be a small gray lock icon top right in your Safari window. Click the lock to view the certificate information.
    If a site's certificate consistently requires you to click Trust over and over, report that to the site. Hopefully they have a contact link somewhere.
    Note.. you have to enter your username and password in most cases before you will see the gray icon.
    When you see the certificate click the purple circle with a black ? in it bottom left side of the certificate window. A Help viewer window will open with information about certificates.
    Carolyn

  • I am stuck on the Subway Surfers app in guided access mode the info its giving me to fix it is a liar! none of the buttons will work all I can do is lock it unlock it and play subway surfers. I cannot turn it off and refuse to let it die. HELP ME PLEASE!!

    Ok I dont understand this SOS!!!! Please dont tell me to restart my Ipad Cause none of the buttons work except the lock button and that will not allow me to turn it off please help all suggestions are welcome.

    What you need to do is triple-press the HOME BUTTON three times. You will be prompted to enter your passcode. This will bring up the options for guided-access mode and you will then need to click "End" in the top corner.
    Guided-access mode must have accidentally been enabled by triple-clicking the home button.

  • IPhone App Start Guide

    Hi, I am looking for resources about ways to create iPhone apps. I'd appreciate if you could point me towards entry-level resources. I'm new to app development, with experience in web development (HTML,PHP and MySQL).
    Thanks,
    Stephane

    Hi Stephane,
    Welcome to Apple Discussions.
    You've stumbled into the AppleWorks forum, dedicated to issues and techniques concerning Apple's now discontinued productivity application AppleWorks.
    Your can find out more about developing applications for Apple products by entering 'developer' in the search box beside Support at the right end of the grey bar at the top of this page. Links to registration for the iPhone Developer Program and Apple developer Connection should appear by the time you get to 'dev'
    Regards,
    Barry

  • Sound for Apps, Simple Guide?

    Ok so i want to do some sound stuff like play some short audio clips. I can have them in any kind of format but it seems like i should be able to do wav. So now how do initialize a sound file and play it. There are some tutorials out there and most of them cover sound in applets. And very few do it with applications. And the problem is that they do complex stuff, they dont even tell u how to intialize the sound file. So either can someone give me some basic code or point me to a good site/ tutorial.
    Thanks

    Yes, the class is long and complicated, but it solves a big complicated problem.
    The method playShortClip near the bottom of that code does just that. It uses the applet support, but it can be used anywhere. It is restricted to short clips in PCM encoding. The playClip method does the same thing for more difficult cases.

  • Creating High trust provider hosted app in SharePoint online

    Hi,
    I need to create high trust provider hosted app for SharePoint Online. provider hosted would be not going to host in Azure but it will be some where else.
    some kindly provide step by step that how to create High trust app for SharePoint online but not for SharePoint 2013.
    Kaps

    check this link
    http://msdn.microsoft.com/en-us/library/office/fp179901(v=office.15).aspx#Intro
    A high-trust app for SharePoint is is primarily intended for use in an on-premises environment. The high-trust
    app cannot be installed to Microsoft SharePoint Online, and the remote components are typically installed on premises, too, within the corporate firewall. Thus, the instances of the app for SharePoint are specific to each individual company.
    Kind Regards, John Naguib Technical Consultant/Architect MCITP, MCPD, MCTS, MCT, TOGAF 9 Foundation

Maybe you are looking for

  • Let me know how to Display "No Record found"

    Hello All, Please help me in displaying the text " No record found" when no datas are present. I use lexical parameter and bind paramter to retrieve datas. Appreciate your help! Thanks Ashok

  • My N95 is still on V12!

    Hello! I have Nokia N95-1 RM-159 with product code 0551406. My latest update version is still V12.0.013, when will be available v20.0.015 or v21.0.016? Im tired to wait! I am waiting almost 5 months! My phone is not network branded. Thank you!

  • New Creative Zen Firmware Upgrade Borked - update: I think it's fi

    Hello! I got a new 6gb Creative Zen today. Have a question: 1. I upgraded the firmware after the original CD load. There were 4 critical updates. However, after all that ran, the Zen is messed up - I get a screen that has Clean Up, Format All, Reload

  • Brush is making dots instead of a line

    Last night in CS5 I was playing with the opacity and spacing of the brush, and now I can't get back to a normal brush. I want just a normal stroke, but the brush is making lots of transparent dots instead. I've switched to Photoshop Elements 7 for no

  • Snow Leopard in Macbook Pro 9.2 (mid 2012)

    Hi!!! I need to install Snow Leopard in my macbook pro 9.2. I Have made the instalation in any kind of macbook pro (versions 5,6,7,8) but I can´t do it in my 9.2. What I get in Verbose mode is: Loading system library caches com.apple.kext.caches star