Is it possible to access a secure zone using the login details of another application?

Given this scenario: A member signs in to an application on another platform (e.g. a MySQL application). Is it possible for that member to access a secure zone of an associated Business Catalyst website without needing to sign in again?
For example, a BC wesbite is set up to promote a MySQL application. The BC website has help files that only members can access. The member has logged in to the MySQL application and clicks a link to view the help files. The member is forwarded to the help files within the BC secure zone without needing to sign in to the secure zone.
I guess this scenario is based on the following:
That the other platform and the BC website are able to share the same member log details.
The other platform is able to communicate with BC to inform BC that the user has signed in, and this is the member’s log in details.
That the above can be done securely.
I’m keen to know if this can be done, and how it would be done. Or if there's a better/different way to achieve the same result. I look forward to your reply.

hi injpix ,
             Thanks for reply.  I am using flex builder 3. and i want to access .proerties file from flex application(web application) . The reason behind using .properties file is that user should be able to modify any property value in that file. This file should not be embeded in application swf  means any change in .properties file need not compile flex application. This file would be under the web context  where swf file reside in web server. It should be accessible from flex application at run time.
Is there any way to implement this. If any one know please reply.
Thanks.

Similar Messages

  • You have attempted to access a secure page without the appropriate authorization. I have used this website every week and today received this error message. I can access it with Internet Explorer.

    I received an error message after attempting to log in to a website. Access prohibited. You have attempted to access a secure page without the appropriate authorization.
    I access this website at least twice a week and now I get this error message. I am able to access this website through Internet Explorer. Is there something I can do to fix this problem, so I can use Firefox?

    Maybe:<br />
    Dafizilla Table2Clipboard: https://addons.mozilla.org/firefox/addon/1852

  • Error message Indesign:Either the file does not exist, you do not have read access to it, or use the file in another application.

    I've got problem with opening a file in InDesign. The file type is an InDesign Markup Document. The error message is: Either the file does not exist, you do not have read access to it, or use the file in another application. What's wrong?

  • Is it possible to send a text message using the UDP protocol?

    Support doc
    http://www.adobe.com/support/director/multiuser/using_udp/using_udp02.html
    says to use the following format with connectToNetServer:
    errCode =
    gMultiuserInstance.connectToNetServer([#remoteAddress:
    "chatServer.myCompany.com", #logonInfo: [#userID: "Bob",
    #password:
    "MySecret", #movieID: "Tech Chat"], #mode: #smus,
    #localUDPPort: 1627,
    #localAddress: "123.45.67.89", #remoteTCPPort: 1626])
    But if I change the mode to #text, it still sends out
    messages as smus.
    In fact, if I leave out the UDP parameters altogether but
    still use the
    list parameters for connectToNetServer, it still always sends
    as smus.
    Sends as smus:
    errCode =
    gMultiuserInstance.connectToNetServer([#remoteAddress:
    "chatServer.myCompany.com", #logonInfo: [#userID: "Bob",
    #password:
    "MySecret", #movieID: "Tech Chat"], #mode: #text,
    #localUDPPort: 1627,
    #localAddress: "123.45.67.89", #remoteTCPPort: 1626])
    Sends as smus:
    errCode =
    gMultiuserInstance.connectToNetServer([#remoteAddress:
    "chatServer.myCompany.com", #logonInfo: [#userID: "Bob",
    #password:
    "MySecret", #movieID: "Tech Chat"], #mode: #text])
    Only the string parameter method can be made to send text
    messages.
    Sends as text:
    errCode = gMultiuserInstance.connectToNetServer("Bob",
    "MySecret",
    "chatServer.myCompany.com", 1626, "Tech Chat", 1)
    Am I missing something? Is this a known issue? Anyone have a
    work around?
    -Jeremy

    Drat!
    Thanks for the answer though.
    alchemist wrote:
    > The multiuserXtra supports either tcp text or tcp smus
    connections.
    > The ability to send udp messages was an expansion to the
    original mus
    > protocol/xtra and is valid only for muXtra instances
    already connected in
    > smus mode.
    > So, if you are asking if you can create a udp instance
    and use it at will
    > (exchange udp messages with some remote udp socket),
    then the answer is no.
    >
    >
    > "Jeremy Aker" <[email protected]> wrote in message
    > news:[email protected]...
    >> I'm really sorry that I wasn't clear enough. I'll
    repeat the questions
    >> more concisely.
    >> Is it possible to send a text message using the UDP
    protocol? If so, how?
    >> Is the bug I described in my original message (see
    below) really a bug or
    >> am I doing something wrong?
    >> If it's a bug, does anyone have a work around?
    >>
    >> alchemist wrote:
    >>> And the question is?
    >>>
    >>> "Jeremy Aker" <[email protected]> wrote in
    message
    >>> news:[email protected]...
    >>>> Support doc
    >>>>
    http://www.adobe.com/support/director/multiuser/using_udp/using_udp02.html
    >>>> says to use the following format with
    connectToNetServer:
    >>>> errCode =
    gMultiuserInstance.connectToNetServer([#remoteAddress:
    >>>> "chatServer.myCompany.com", #logonInfo:
    [#userID: "Bob", #password:
    >>>> "MySecret", #movieID: "Tech Chat"], #mode:
    #smus, #localUDPPort: 1627,
    >>>> #localAddress: "123.45.67.89",
    #remoteTCPPort: 1626])
    >>>>
    >>>> But if I change the mode to #text, it still
    sends out messages as smus.
    >>>> In fact, if I leave out the UDP parameters
    altogether but still use the
    >>>> list parameters for connectToNetServer, it
    still always sends as smus.
    >>>>
    >>>> Sends as smus:
    >>>> errCode =
    gMultiuserInstance.connectToNetServer([#remoteAddress:
    >>>> "chatServer.myCompany.com", #logonInfo:
    [#userID: "Bob", #password:
    >>>> "MySecret", #movieID: "Tech Chat"], #mode:
    #text, #localUDPPort: 1627,
    >>>> #localAddress: "123.45.67.89",
    #remoteTCPPort: 1626])
    >>>>
    >>>> Sends as smus:
    >>>> errCode =
    gMultiuserInstance.connectToNetServer([#remoteAddress:
    >>>> "chatServer.myCompany.com", #logonInfo:
    [#userID: "Bob", #password:
    >>>> "MySecret", #movieID: "Tech Chat"], #mode:
    #text])
    >>>>
    >>>> Only the string parameter method can be made
    to send text messages.
    >>>> Sends as text:
    >>>> errCode =
    gMultiuserInstance.connectToNetServer("Bob", "MySecret",
    >>>> "chatServer.myCompany.com", 1626, "Tech
    Chat", 1)
    >>>>
    >>>> Am I missing something? Is this a known
    issue? Anyone have a work
    >>>> around?
    >>>>
    >>>> -Jeremy
    >

  • Can't access my Directory Server using the Console installed on a machine

    can't access my Directory Server using the Console installed on a remote server, lookied into knowledge base article 4693, but still same any idea ?

    I too am having problems accessing Directory server from Netscape Console installed on Winxp.
    If I try to open Directory server it doesn't give any error. No windows nothing.
    If I try th same from the machine on which it is installed everything is fine. What is strange is that it did open a couple of times. But at the same time I can open the admin server, Netscape Messaging server from the xp box. Searching all over for a solution. Any help/pointers would be greatly appreciated.
    Config details:
    iDS4.13, iMS 5.0, running on Sol 8 box
    Netscape Console 4.2 on WinXP.
    Thanks

  • How do I delete a row in Microsoft Access from a vi using the database toolkit

    Using the database toolkit 1.01 how can I delete a row from my vi

    Bambi,
    I know you already got the answer from Jeremy in the LabVIEW Forum, but I wanted to place this link here so that other users could see the answer.
    How do I delete a row in Microsoft Access from a vi using the database toolkit
    Evan

  • Can i access my account and use the programs on another computer?

    can i access my account and use the programs on another computer? i would like to be able to use both my laptop and my desktop

    yes, you are allowed concurrent installations and activations on, up to, two computers.
    by signing out of one, you can activate on a third etc.

  • How do I know if my I pad is secure when using the Internet.

    How do I know if my I pad is secure when using the Internet?

    Pretty much the same way you'd know with any other device. Are you using cellular data? It's pretty secure. Are you using WiFi? If so, is it public, unsecured wifi? Or private WiFi with a password? If you're doing any type of sensitive transactions, are you checking to make sure that the website is secure by checking to see that the address begins with https not just http? Are you making sure you're typing in address for banks and financial institutions rather than clicking on links in email?

  • I can't access this secure website with the new fireforx upgrade but I could before the upgrade.

    As above. What can I say-I have tried everything listed on the support forum website. I had no problem accessing this secure website, which is my work email, before I upgraded to Firefox 4.0. I would prefer not have to go back to the previous version if possible. I don't like IE because it is just too slow, but right now I have to use it to access this website. I have windows firewall and have allowed firefox.exe as an exception. Any suggestions as this is very frustrating. Thanks

    You should be able to use the OpenVPN Connect app running on your iPad to connect your iPad to the VPN directly. It is an official OpenVPN client for iOS devices.
    In what way is it "not compatible"? Have you tried it? Tunnelblick is an OpenVPN client, so your school's VPN is using the OpenVPN protocol. That means any OpenVPN client should be able to access it. (It is possible, but unlikely, that your school uses encryption that is not available on the iPad, but that would be very unusual.)
    Otherwise, a remote control app on your iPad would let you control your Mac at home. "Back to My Mac", for example, would allow you to control your Mac remotely. The tricky part of this is that usually a VPN is set up to send all Internet traffic via the VPN server, and I'm not sure how that would work with "Back to My Mac".

  • Secure zone - ERROR: The payment gateway that you are using does not support recurring payments

    So I want to sell a product that is made up of 4 downloadable products. (Totalling ~ 200meg)
    The only way I have found is to sell membership to a secure area where the files are linked.
    When I create the secure zone, I want a one-time-fee, but the system says:
    "ERROR: The payment gateway that you are using does not support recurring payments"
    The payment isn't recurring!
    Micah

    "Note that you have to use seamless gateway to process such payments."
    Right, but that's the problem, we're not usiong a seamless gateway and thus we get the error.  Again, the system should note that we're doing a one-time charge and not throw the seamless gateway error.
    Micah

  • Is it possible to execute a stored procedure using the JDBC adapter?

    Hi all,
    Can anybody confirm whether we can execute a stored procedure created in a database using the processing parameters of a JDBC adapter of a communication channel?
    If yes, then please let me know how (may be with an example)
    Thanks.

    Yes, that is possible. You have to chose EXECUTE in the action field to execute the stored procedure. Here's a little piece on the JDBC receiver:
    JDBC Receiver
    For writing data to an SQL database you also need to define a strict data type. The general format is like this:
        <ns:MT_RECORDSET>
              <STATEMENT>
                   <TABLE_NAME ACTION="">
                        <TABLE/>
                        <ACCESS>
                             <FIELD1/>
                             <FIELD2/>
                             <FIELDn/>
                        </ACCESS>
                        <KEY>
                             <ID compareOperation=""/>
                             <FIELDx compareOperation=""/>
                        </KEY>
                   </TABLE_NAME>
              </STATEMENT>
    </ns:MT_RECORDSET>
    This recordset represents an SQL statement like "update TABLE1 set FIELD1=123, FIELD2=456, FIELDn='xyz' where ID=12345 and FIELDx is NULL"
    MT_RECORDSET is the name of the Message Type used.
      For the value of the attribute ACTION you can choose from the following values:
         UPDATE : updates the given fields in the table with their new values
         INSERT : insert the given fields as a new row in the table
         UPDATE_INSERT : insert rows in the table when update is not possible
         DELETE : deletes given fields from the table
         SELECT : selects given fields from the table. Note that this option returns a response in the JDBC Sender form!
         EXECUTE : execution of a stored SQL procedure
         SQL_QUERY | SQL_DML : option to transfer more complex SQL statements to the database
      The attribute compareOperation can have the following values:
         EQ : equal
         NEQ : not equal
         LT : less than
         LTEQ : less than or equal to
         GT : greater than
         GTEQ : greater than or equal to
         LIKE : used to compare strings

  • Accessing dot mac email using the terminal

    Is it possible to access one's dot mac email account using the terminal?
    Thanks-
    db
    Powerbook G4   Mac OS X (10.4.7)  

    Hm, Windows has this dang tendency to make simple things hard :-/
    First note that Putty won't help you much, because it allows you to log into remote SSH servers, but I don't think it gives you a "local shell", i.e. replace or extend the normal DOS shell (or whatever it's called nowadays) that comes with Windows.
    That said, I don't know whether you can find Windows ports of some Unix tool that would help you somewhere in the "vicinity" of Cygwin http://www.cygwin.com/ or so ... I don't use Windows enough to know that
    My personal solution to a similar problem is to rent a Linux root server, together with a few friends, which gives us all a platform to perform anything in the internet as long as we have an SSH capable computer where we are.
    If you have an ADSL flatrate you could even leave a computer at home on and SSH into that...

  • Import xml data in Access when multiple rows use the same fieldname

    HI.
    First of all sorry for my english :-) I have a LiveCycle Designer ES form with multiple rows that I send via e-mail as XML data.
    example:
    Row 1
    Firstname: John  Lastname: Dow
    Row 2
    Firstname: Steve  Lastname: Austin
    The exported XML is OK but when I want to import it into my Access database, only one row is imported. I pretty sure that the problem comes from the fact that may exported XML use the same fieldname (what is important if I want to import data in the correct Access field) but I don't know what to do to be able to import all the rows of the same Form.
    Any idea?
    Thanks a lot
    Frederic

    Hi Viktor,
    In case of order recognition rules you should increase the relevancy in the newer version of the cartridge so appropriate ORR will be triggered. In other xqueries, you can try using new namespace as a model variable for each and every version of the cartridge
    Regards,
    JP

  • Is possible work with boleto from SmartForm using the Tcode FBZP  ?

    HI,
    SAPScript bar code output in PDF format
    As a SAP does not intend to deliver this solution for SAPscript  because The report - RSTXPDFT4 does not work correct to bar code in the boletos (Brazil) when convert to PDF, we are going to change to Smart Form.
    The problem now.....Does someone know if is possible use this boleto from SmartForm using the Tcode FBZP ?
    Here in the customer there were a lot of problems about bar code (Critical) and in the past the Basis consultant had problems to import all Basis Support Packages and kernel patches in Release 4.6C.
    if someone can help me, I really apreciate.
    Since now....Thank you !!!!!!
    Best regards,

    Hello!
    SAP doesn´t have a SMARTFORM for boleto. We're sorry, but  you can´t put a barcode on a SMARTFORM for the boleto in the standard system.
    REgards,
    Renan Correa

  • Security scopes and the Requirements tab on a Application Deployment Type

    I have used security scopes to isolate servers and workstations. My account is a Full Administrator that is a member of the Workstation security scope. When I create a application with my user account the "Create requirement" window does not update
    the Condition field regardless what I choose in the Category field. The Condition drop down menu is "activated", but there is nothing to choose from. Everything works if I put my user in all security scopes.
    Is this a bug?

    Ok, I found the issue.
    I did not initially realize that you have to set the security scopes for the Global Conditions that are created during install. Once I added the security scopes I created earlier, everything started working.

Maybe you are looking for

  • My old iCloud ID still exists on my iPad and I can't delete it.

    I deleted my old email which was also my apple ID.  In ¨manage Apple ID¨  at apple.com I changed my primary email, but on my ipad the old apple ID remains even though the email is gone. When trying to sign in with the old apple ID it says it has been

  • Automatic jre1.4 Plug-in instalation.

    I have a problem with the JRE1.4 beta 2 Plug-in. I'm tring to insert in my thml page a applet, wich need this plug in. And if there is no JRE1.4 installed, then it should download this plug-in. I wrote as an example on 'http://java.sun.com/j2se/1.4/d

  • Is it possible to install solaris on unformated disk?

    Hi! Is it possible to install solaris8 on scsi unformated disk,the new purchased one?It's gonna be the only one disk in workstation,becouse the old one faild.Any ideas? Thank you.

  • New to IPS 4240 - What else can I use to manage it?

    I have just purchased a Cisco IPS 4240 and have it up and running. Have been using the IEV to view IPS information and that works ok. The VMS 2.2 that came included with the IPS will not work with the current Cisco works (LMS 2.5) installation that w

  • Bundling Action in MXP File

    Hello, I've created a Configurator panel containing a series of Photoshop actions. The Configurator panel loads successfully from the .MXP panel provided the Action Set is manually loaded through Photoshop. Otherwise, the panel attempts to run an act