Web Images Videos Maps News Shopping Gmail more »
Recently Visited Groups | Help | Sign in
Google Groups Home
IsEntryPointRegistered not working
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  6 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
casey chesnut  
View profile  
 More options Jun 5 2005, 10:58 am
Newsgroups: microsoft.public.windows.developer.mediacenter
From: "casey chesnut" <casey@MORE_SPAMbrains-N-brawn.com>
Date: Sun, 5 Jun 2005 09:58:09 -0500
Local: Sun, Jun 5 2005 10:58 am
Subject: IsEntryPointRegistered not working
this is basically straight from the SDK sample NewsMain.htm
i'm registering my Hosted HTML like this :

var sXMLString = "<application title='brains-N-brawn.com'
companyname='brains-N-brawn LLC'
id='{A3CC7DED-E765-488d-A607-1AD5AD9BF570}'><entrypoint
id='{A3CC7DED-E765-488d-A607-1AD5AD9BF571}'
url='http://www.brains-N-brawn.com/' title='brains-N-brawn.com'
description='brains-N-brawn.com'
ImageUrl='http://www.brains-N-brawn.com/bNbLogoMce.PNG'><category
category='More Programs'/></entrypoint></application>";
window.external.MediaCenter.RegisterApplication(sXMLString, false, true);

then in pageLoadFunctions it calls checkRegistered :

 var bIsRegistered =
window.external.MediaCenter.IsEntryPointRegistered('{A3CC7DED-E765-488d-A60 7-1AD5AD9BF571}');

the problem is that bIsRegistered always returns false?
but if i try to re-register then i get an error dialog saying its already
registered ...

Thanks,
casey


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
casey chesnut  
View profile  
 More options Jun 5 2005, 12:35 pm
Newsgroups: microsoft.public.windows.developer.mediacenter
From: "casey chesnut" <casey@MORE_SPAMbrains-N-brawn.com>
Date: Sun, 5 Jun 2005 11:35:30 -0500
Local: Sun, Jun 5 2005 12:35 pm
Subject: Re: IsEntryPointRegistered not working
it actually just worked a second ago.
it seems to work from 'More Programs', but not from a MCL file?

Thanks,
casey
http://www.brains-N-brawn.com

"casey chesnut" <casey@MORE_SPAMbrains-N-brawn.com> wrote in message

news:Oxwr$8daFHA.3132@TK2MSFTNGP09.phx.gbl...


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Michael Creasy [MSFT]  
View profile  
 More options Jun 6 2005, 12:17 pm
Newsgroups: microsoft.public.windows.developer.mediacenter
From: "Michael Creasy [MSFT]" <mcre...@online.microsoft.com>
Date: Mon, 6 Jun 2005 09:17:31 -0700
Local: Mon, Jun 6 2005 12:17 pm
Subject: Re: IsEntryPointRegistered not working
Only a registred app can tell if an entrypoint is registered and only an
entrypoint it owns.  This is to prevent Company A seeing if Company B's
software is installed on your system.

--
Michael Creasy [MSFT] - http://blogs.msdn.com/mcreasy
This posting is provided "AS IS" with no warranties, and confers no rights.

"casey chesnut" <casey@MORE_SPAMbrains-N-brawn.com> wrote in message

news:%23JwSZzeaFHA.3184@TK2MSFTNGP15.phx.gbl...


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
casey chesnut  
View profile  
 More options Jun 6 2005, 12:31 pm
Newsgroups: microsoft.public.windows.developer.mediacenter
From: "casey chesnut" <casey@MORE_SPAMbrains-N-brawn.com>
Date: Mon, 6 Jun 2005 11:31:57 -0500
Local: Mon, Jun 6 2005 12:31 pm
Subject: Re: IsEntryPointRegistered not working
i like that ...
but i'm assuming it could be sidestepped with an ActiveX control checking
the registry?

Thanks,
casey

"Michael Creasy [MSFT]" <mcre...@online.microsoft.com> wrote in message
news:evtx%23MraFHA.1152@tk2msftngp13.phx.gbl...


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Michael Creasy [MSFT]  
View profile  
 More options Jun 6 2005, 1:09 pm
Newsgroups: microsoft.public.windows.developer.mediacenter
From: "Michael Creasy [MSFT]" <mcre...@online.microsoft.com>
Date: Mon, 6 Jun 2005 10:09:08 -0700
Local: Mon, Jun 6 2005 1:09 pm
Subject: Re: IsEntryPointRegistered not working
Yup, once you've got code on the machine you can do whatever you want.

--
Michael Creasy [MSFT] - http://blogs.msdn.com/mcreasy
This posting is provided "AS IS" with no warranties, and confers no rights.

"casey chesnut" <casey@MORE_SPAMbrains-N-brawn.com> wrote in message

news:%230UDDVraFHA.3144@TK2MSFTNGP14.phx.gbl...


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
casey chesnut  
View profile  
 More options Jun 6 2005, 4:03 pm
Newsgroups: microsoft.public.windows.developer.mediacenter
From: "casey chesnut" <casey@MORE_SPAMbrains-N-brawn.com>
Date: Mon, 6 Jun 2005 15:03:51 -0500
Local: Mon, Jun 6 2005 4:03 pm
Subject: Re: IsEntryPointRegistered not working
Thanks for the info, i updated the /mceSalt article to explain what was
going on.

BTW your blog (and Charlies) has been very helpful

casey

"Michael Creasy [MSFT]" <mcre...@online.microsoft.com> wrote in message
news:eAwj0praFHA.464@TK2MSFTNGP15.phx.gbl...


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google