Need some clarifyication on the header variable login module

Hi ,
I need some clarification on this Header login Module.
It checks for the Header variable sent by IIS a server, when we implement the single sign on from windows system .
1. Is HEADER variable differnet from HTTP header
2. can we use this login module if we have to check the user id in HTTPheader?
3.In my case the header variable(rEmote_user) will not be set by the IIS as i am not doing the windows authentication. can i set the the header variable(rEMOTE_USER)from asp pages and configure the Header variable login module on the portal to enable single sign on from asp application to the portal?
please write to me if you know anything on this.
Thanks,
Lakshmi

Hi Lakshmi,
Header Login Module checks the HTTP headers for the header varible specified in the Header Login Module. In your case it is "remote_user".
> 1. Is HEADER variable differnet from HTTP header
No. Header variable is nothing but HTTP header variable.
> 2. can we use this login module if we have to check
> the user id in HTTPheader?
>
Yes. Portal looks for the user_id in the remote_user header varible.
> 3.In my case the header variable(rEmote_user) will
> not be set by the IIS as i am not doing the windows
> authentication. can i set the the header
> variable(rEMOTE_USER)from asp pages and configure the
> Header variable login module on the portal to enable
> single sign on from asp application to the portal?
>
Here is the hack. Before you set the http header varible through the asp page, what kind of mechanism you are using to ensure this is the authenticated user. Technically you can make it work. Without properly prtotecting the portal, if you simply configure the portal to accept the header variable then it could be a security risk. Anybody can simply set a HTTP header varible with the userid and access as that user.
I am just mentioning the security risk but I assume that you may have other mechanisms in place to ensure proper authentication before setting the header varibles..
> please write to me if you know anything on this.
>
> Thanks,
> Lakshmi
Hope this helps.
Regards
-Venkat Malempati

Similar Messages

  • Header Variable login module doesnt work --- NW7.3

    Hello gurus,
    i have added HeaderVariableLoginModule through NWA tool in NW 7.3. In the components tab of http://hostname:port/nwa/auth
    i have includer the this login module for the ticket template. I changed the authschemes.xml file as below
    <document>
    <authschemes>
    <!-- authschemes, the name of the node is used -->
    <authscheme name="uidpwdlogon">
    <!-- multiple login modules can be defined -->
    <authentication-template>
    ticket
    </authentication-template>
    <priority>20</priority>
    <!-- the frontendtype TARGET_FORWARD = 0, TARGET_REDIRECT = 1, TARGET_JAVAIVIEW = 2 -->
    <frontendtype>2</frontendtype>
    <!-- target object -->
    <frontendtarget>com.sap.portal.runtime.logon.certlogon</frontendtarget>
    </authscheme>
    <authscheme name="certlogon">
    <authentication-template>
    client_cert
    </authentication-template>
    <priority>21</priority>
    <frontendtype>2</frontendtype>
    <frontendtarget>com.sap.portal.runtime.logon.certlogon</frontendtarget>
    </authscheme>
    <authscheme name="basicauthentication">
    <authentication-template>
    ticket
    </authentication-template>
    <priority>20</priority>
    <frontendtype>2</frontendtype>
    <frontendtarget>com.sap.portal.runtime.logon.basicauthentication</frontendtarget>
    </authscheme>
    <authscheme name="header">
    <authentication-template>ticket</authentication-template>
    <loginmodule>
    <loginModuleName>com.sap.security.core.logon.imp.HeaderVariableLoginModule</loginModuleName>
    <controlFlag>REQUISITE</controlFlag>
    <options>Header=REMOTE_USER</options>
    </loginmodule>
    <priority>5</priority>
    <frontendtype>2</frontendtype>
    <frontendtarget>com.sap.portal.runtime.logon.header</frontendtarget>
    </authscheme>
    <!-- Reserved 'anonymous' authscheme added for being in the list of authschemes -->
    <authscheme name="anonymous">
    <priority>-1</priority>
    </authscheme>
    </authschemes>
    <!-- References for Authentication Schemes, this section must be after authschemes -->
    <authscheme-refs>
    <authscheme-ref name="default">
    <authscheme>header</authscheme>
    </authscheme-ref>
    <authscheme-ref name="UserAdminScheme">
    <authscheme>uidpwdlogon</authscheme>
    </authscheme-ref>
    </authscheme-refs>
    </document>
    after doing i uploaded the authschemes.xml file and restarted the server.
    but when i try to access the portal it indicating the below error in NWA tool.
    Deprecated scope of type SERVERSESSION_AT_LEAST_ONE_APP_SCOPE is used! Please replace the usage of scopes with new mechanism based on "Cross application session communication API
    Except the portal everything is working fine......
    can you please provide suggestions ....
    Thanks

    Did you add the login module, for NW 7.3 it is not preconfigured. Have a look at this thread: adding a login module in NW 7.3
    Cheers Michael

  • How to set the header variables in weblogic

    Hi,
    We have a following set up in our environment.
    We have weblogic and on the top of it we have apex listener deployed which redirects Oracle Apex.
    My Issue:
    How can we set up the header variables in weblogic once the user is authenticated against weblogic server.
    We are struck here, not knowing how to set the header variables in weblogic server. Its fairly straight forward for Oracle Access Manager or others..
    Thanks
    Ramesh P.

    maybe you are looking for the routing options
    http://docs.oracle.com/cd/E13159_01/osb/docs10gr3/userguide/modelingmessageflow.html#wp1125348

  • Need some help with the Select query.

    Need some help with the Select query.
    I had created a Z table with the following fields :
    ZADS :
    MANDT
    VKORG
    ABGRU.
    I had written a select query as below :
    select single vkorg abgru from ZADS into it_rej.
    IT_REJ is a Work area:
    DATA : BEGIN OF IT_REJ,
            VKORG TYPE VBAK-VKORG,
            ABGRU TYPE VBAP-ABGRU,
           END OF IT_REJ.
    This is causing performance issue. They are asking me to include the where condition for this select query.
    What should be my select query here?
    Please suggest....
    Any suggestion will be apprecaiated!
    Regards,
    Developer

    Hello Everybody!
    Thank you for all your response!
    I had changes this work area into Internal table and changed the select query. PLease let me know if this causes any performance issues?
    I had created a Z table with the following fields :
    ZADS :
    MANDT
    VKORG
    ABGRU.
    I had written a select query as below :
    I had removed the select single and insted of using the Structure it_rej, I had changed it into Internal table 
    select vkorg abgru from ZADS into it_rej.
    Earlier :
    IT_REJ is a Work area:
    DATA : BEGIN OF IT_REJ,
    VKORG TYPE VBAK-VKORG,
    ABGRU TYPE VBAP-ABGRU,
    END OF IT_REJ.
    Now :
    DATA : BEGIN OF IT_REJ occurs 0,
    VKORG TYPE VBAK-VKORG,
    ABGRU TYPE VBAP-ABGRU,
    END OF IT_REJ.
    I guess this will fix the issue correct?
    PLease suggest!
    Regards,
    Developer.

  • How to have some fields in the header of the report

    Hi All,
    we would like to have some fields in the header of the report (every page but the first page), but Word won’t let you insert fields into the header. Are there any work arounds to do something like that?
    Thanks,
    Vandana

    'Insert Menu -> Field' does not work for headers.
    Try this. Say if you want to insert a XML tag named TRX_NUMBER in header. Put <?TRX_NUMBER?> in the header. This will display TRX_NUMBER tag in header.

  • I need some advice about the macbook pro and iPhone 5. I took a video on my iPhone and tried to email it it said it was too big to send? So i downloaded it to my macbook pro and tried to mail it to no avail? The macbook tells me the server won't let it th

    I need some advice about the macbook pro and iPhone 5.
    I took a video on my iPhone and tried to email it it said it was too big to send? So i downloaded it to my macbook pro and tried to mail it to no avail? The macbook tells me the server won't let it through other mail goes through any ideas how to resize it or what it might take to send it?

    I agree with LowLister, the best option for you to share the video online is to upload it to your online storage account for example : Box, Dropbox, SkyDrive (All of them provide free storage beginning from 2GB).
    You can upload the files which you want to share in this online storage and then they have sharing options in which you'll will get the link of the file to be sent and send the email. You're good to go!
    Tip : You can store multiple files for backup purposes.

  • Need some help understanding the way materialized views are applied through

    Hi, I need some help understanding the way materialized views are applied through adpatch.
    In patch 1, we have a mv with build mode immediate. When applying it PTS hang due to pool performance of mv refresh.
    So we provide patch 2, with that mv build mode deferred, hoping it'll go through. But patch 2 hang too on the same mv.
    How does this work? Is that because mv already exists in the database with build immediate, patch 2 will force it to refresh first before changing build mode? How to get over this?
    Thanks,
    Wei

    Hi Hussein,
    Thank you for the response.
    Application release is 11.5.10.
    Patch 1 is MSC11510: 8639586 ASCP ENGINE RUP#38 PATCH FOR 11.5.10 BRANCH
    Patch 2 is MSC11510: 9001833 APCC MSC_PHUB_CUSTOMERS_MV WORKER IS STUCK ON "DB FILE SEQUENTIAL READ" 12 HOURS
    The MV is APPS.MSC_PHUB_CUSTOMERS_MV
    This happens at customer environment but not reproducable in our internal environment, as our testing data is much smaller.
    Taking closer look in the logs, I saw actually when applying both patch 1 and patch 2, MV doesn't exist in the database. So seems my previous assumption is wrong. Still, strange that patch 2 contains only one file which is the MV.xdf, it took 7 hours and finally got killed.
    -- patch 1 log
    Materialized View Name is MSC_PHUB_CUSTOMERS_MV
    Materialized View does not exist in the target database
    Executing create Statement
    Create Statement is
    CREATE MATERIALIZED VIEW "APPS"."MSC_PHUB_CUSTOMERS_MV"
    ORGANIZATION HEAP PCTFREE 10 PCTUSED 40 INITRANS 10 MAXTRANS 255 LOGGING
    STORAGE(INITIAL 4096 NEXT 131072 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 4 FREELIST GROUPS 4 BUFFER_POOL DEFAULT)
    TABLESPACE "APPS_TS_SUMMARY"
    BUILD IMMEDIATE
    USING INDEX
    REFRESH FORCE ON DEMAND
    WITH ROWID USING DEFAULT LOCAL ROLLBACK SEGMENT
    DISABLE QUERY REWRITE
    AS select distinct
    from
    dual
    AD Worker error:
    The above program failed. See the error messages listed
    above, if any, or see the log and output files for the program.
    Time when worker failed: Tue Feb 02 2010 10:01:46
    Manager says to quit.
    -- patch 2 log
    Materialized View Name is MSC_PHUB_CUSTOMERS_MV
    Materialized View does not exist in the target database
    Executing create Statement
    Create Statement is
    CREATE MATERIALIZED VIEW "APPS"."MSC_PHUB_CUSTOMERS_MV"
    ORGANIZATION HEAP PCTFREE 10 PCTUSED 40 INITRANS 10 MAXTRANS 255 LOGGING
    STORAGE(INITIAL 4096 NEXT 131072 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 4 FREELIST GROUPS 4 BUFFER_POOL DEFAULT)
    TABLESPACE "APPS_TS_SUMMARY"
    BUILD DEFERRED
    USING INDEX
    REFRESH COMPLETE ON DEMAND
    WITH ROWID USING DEFAULT LOCAL ROLLBACK SEGMENT
    DISABLE QUERY REWRITE
    AS select distinct
    from dual
    Start time for statement above is Tue Feb 02 10:05:06 GMT 2010
    Exception occured ORA-00028: your session has been killed
    ORA-00028: your session has been killed
    ORA-06512: at "APPS.AD_MV", line 116
    ORA-06512: at "APPS.AD_MV", line 258
    ORA-06512: at line 1
    java.sql.SQLException: ORA-00028: your session has been killed
    ORA-00028: your session has been killed
    ORA-06512: at "APPS.AD_MV", line 116
    ORA-06512: at "APPS.AD_MV", line 258
    ORA-06512: at line 1
    Exception occured :No more data to read from socket
    AD Run Java Command is complete.
    Copyright (c) 2002 Oracle Corporation
    Redwood Shores, California, USA
    AD Java
    Version 11.5.0
    NOTE: You may not use this utility for custom development
    unless you have written permission from Oracle Corporation.
    AD Worker error:
    The above program failed. See the error messages listed
    above, if any, or see the log and output files for the program.
    Time when worker failed: Tue Feb 02 2010 19:51:27
    Start time for statement above is Tue Feb 02 12:44:52 GMT 2010
    End time for statement above is Tue Feb 02 19:51:29 GMT 2010
    Thanks,
    Wei

  • Hello please i need some information about the blackberr...

    hello please i need some information about the blackberry instant messenger is how does it work , i heard that i send messages for free from a blackberry to a blackberry is it true ? does it need internet ? and does it matter if the other phone is in another country'
    thank you alot

    Hello,
    Here is a page with much information about BBM:
    http://na.blackberry.com/eng/devices/features/im/blackberry_messenger.jsp
    Hope that helps! If not, Please come to:
    http://supportforums.blackberry.com/rim/
    and register an account. Then post to the applicable forum.
    Thanks!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I need some info about the Document Class.

    Hi,
    I need some information about the Document Class, can anybody
    tell me where I can find it.
    thanks

    Emad Zedan,
    > I need some information about the Document Class, can
    > anybody tell me where I can find it.
    The concept of the document class was introduced in Flash
    CS3. What it
    does is allow you to optionally associate a custom AS3 class
    with your FLA
    in the Flash authoring tool. Your document class effectively
    *becomes* the
    main timeline. This is your chance to influence the
    underlying behavior of
    the MovieClip or Sprite instance that serves as the
    foundation for your SWF.
    If you don't associate a custom document class with your
    FLA, the FLA is
    associated automatically with a default document class called
    MainTimeline,
    which extends MovieClip.
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • Need some help in the login form ???!?!?!?!!

    can any one help me with correcting the code or can any one give me another code for using it in the login form.
    this is my problem:-
    i had make a login form using in oracle 9i form builder >>>in this form i have three text boxes one for intering user name and the second one for entering the password and the third text box is not visible and it is used for counting the tries.
    In addition i have a three buttons , one is for login and the two others are not visible and they are a show main menu button and a exit button. For login button i had put a WHEN-BUTTON-PRESSED trigger in the login button and it must check if the user name and the password match what it is on the login table so it allow the user to see the show main menu button otherwise if the user name or the password are wrong and has been putted wrong for 3 times of trying then it will show the exit button.
    and this is a picture of the login form in the design view.
    http://www.al7loh.com/uploader/uploads/login.JPG
    and this is the code for theWHEN-BUTTON-PRESSED trigger on the login button
    declare
         alertNum number;
    dummy1 tbl_login.USER_NAME%type;
         dummy2 tbl_login.PASS%type;
    begin
         select tbl_login.USER_NAME, tbl_login.PASS into dummy1, dummy2 from tbl_login where tbl_login.USER_NAME = :LOGIN.USER_NAME and
         tbl_login.PASS = :LOGIN.PASS;
         if :LOGIN.TRIES<3 then
         if sql%found
              then
              set_item_property('LOGIN.SHOW_MENU', visible, property_true);
                                                                               set_item_property('LOGIN.SHOW_MENU', enabled, property_true);
                                                                               else
                                                                               message ('Invalid password....try again');
                                                                               :LOGIN.TRIES := :LOGIN.TRIES+1;
                                                                               :LOGIN.USER_NAME := null;
                                                                               :LOGIN.PASS := null;
                                                                                    end if;
         else
         message ('Exceeded Number of tries..press exit button');
              set_item_property('LOGIN.EXIT', visible, property_true);
                   set_item_property('LOGIN.EXIT', enabled, property_true);
         end if;
         end;
    can any one help me correcting the code of the WHEN-BUTTON-PRESSED trigger on the login form or can any one give me another code for using it in the login form.
    i hope to get some help from the experts>>> ??!?!?!?!?!

    Something like this
    declare
      alertNum number;
      dummy1 tbl_login.USER_NAME%type;
      dummy2 tbl_login.PASS%type;
    begin
      Begin
        select tbl_login.USER_NAME, tbl_login.PASS
        into   dummy1, dummy2
        from   tbl_login
        where  tbl_login.USER_NAME = :LOGIN.USER_NAME
        and    tbl_login.PASS = :LOGIN.PASS;
        set_item_property('LOGIN.SHOW_MENU', visible, property_true);
        set_item_property('LOGIN.SHOW_MENU', enabled, property_true);
      Exception
        When no_data_found Then
          if :LOGIN.TRIES<3 then
            message ('Invalid password....try again');
            :LOGIN.TRIES := :LOGIN.TRIES+1;
            :LOGIN.USER_NAME := null;
            :LOGIN.PASS := null;
            Go_Item( 'LOGIN.USER_NAME' ) ;
          else
            message ('Exceeded Number of tries..press exit button');
            set_item_property('LOGIN.EXIT', visible, property_true);
            set_item_property('LOGIN.EXIT', enabled, property_true);
          end if;
      end;
    end;Francois

  • Need some help from the management : A deeply dissatisfied customer

    Hi,
    I hope I am one of the very dissatisfied customers of you company. I bought a new T715 and it has already gone for a repair twice. I gave it for repair for the first time in october (ETA was 20 days and told by the service centre) and I got the phone after some 30days only after an intervention of a manager. Prior to that the customer care was saying that they do not have the parts and they have no idea about how much time the repair is gonna take. Surprisingly it took only 2day once the manager intervened.
    When I was submitting the phone on jan 14th 2011(work order number SE311MM110015), they again said that I'll get my phone back in 20 days. This time I expected that the service center guys will learn some thing from the past incidents and provide me a better service. But this time it was even worse. I did not hear from them for 35 days. So I called the customer care and had a long conversation with them on the service that is being provided but no-one including the floor supervisor(nishant) had a clue about what happening with my phone. I was startled by thier reply that they will start working on it as I have registered the complaint. Then I asked them what were they doing till now for which they had no idea. I asked for an escalation of this case to a manager which they refused. They said that I'll get an update after 48 working hours(5days).
    The episode continues. I called the help desk after 5days. Now their reply is that I will get my phone back on march 10 2011. So, it is some 57 days since the day i submitted the phone which is 3 times the ETA they promosed. Now when I ask them why is it taking so long I get the same reply as I got for the first time that they do not have parts. The I told them I cannot accept this kind of service from a company like sony erricsson for the second time. For this the floor supervisor harish said that If I want my phone back earlier they'll return the piece back to me without repairing and they are not responsible for this. This time I again asked for a managerial escalation which they again refused and asked me to call after 2 days. Can I atleast hope for a positive reply this time??
    I am perfectly okay with one device out of a lakh being defective. I understand this is the reason that you provide the customers a warranty. But I have some issues with the support which you are providing:
    1) Managerial escalations : I think I am entitled to talk to some one who can actually solve my issue when the lower level doesn't solve it in time. I do not understand why I am being denied the escalation which I did not find in any other support. They do not even provide me an email ID of a manager.
    2) Support process : What is the use of those processes in place where the people I am talking have no idea of what the next step should be. They do not have the database or knowledge of the previous cases. Even the floor supervisor have no aswers to the legitamate questions that the customer poses, they talk as if they are not responsible for these issues.
    3) Time taken: Taking some  days to provide the customer a mere update is not how a 21st century support should work.
    I hope you people agree with my ideas. And please I request all the managers who stumble upon this thread to reply and guide me about my next action.
    Thanks and Regards
    PRakash Josyula
    Work order number : SE311MM110015

    @management : Please help me... I did not get my phone back yet... this time they were saying that they will investigate into this case and this process can take 10 more days... When I asked for a manager escalation they dropped the call... And surprisingly they started dropping my calls which is not at all acceptable...
    Please managers... I need to talk to you... I need my phone back repaired....
    @others... Please lemme know a contact of a person in managerial cadre if you are ware of one...
    Plleeeeeeeeeeeeeeeeeeeeeeeeeese

  • Holla, I need some help with the mess I have created on my Mac.I deleted Mackeeper...now I have problems everywhere :/

    So the story goes, I for some reason thought it'd be smart to delete mackeeper, I guess not. Since I have done this, I now get survey pop ups, slow slow navigation of my mac and some of my itunes files have entirely vanished.... I put Mackeeper in the trash and deleted it along with the few things in there... before this started happening... I now apparently have to pay to have Mackeeper again? I thought Mac was great in the no virus department or am I an undercover genius and figured out how to properly mess up my Mac to the point that virus's have taken over? I also noticed I had a file convertor where I was able to watch my avi files through has disappeare, entirely no trace of the program.. Is this something I may be able to do or is the shop best off having it?

    Maybe the uninstalling wasn't done correctly. Did you follow these instructions?
    http://applehelpwriter.com/2011/09/21/how-to-uninstall-mackeeper-malware/
    If you didn't, you may need to re-install the dreaded MacKeeper and then uninstall it again following the above.

  • Need some help with the best coding approach

    Here is my scenario.  I need to pull data from AFRU within a certain date range.  Once I have this data i need to look at the confirmation number and counter.  If the confirmation has more than one entry in the table i need to take the value of field ISOM1 associated with counter 2 and move it into the previous record's ISOM1 field.  the reason is the value calculates the set up time form counter 1 to 2 but it is placed in counter 2.
    I was thinking of a select from AFRU into an internal table for the date range.  Then I would sort descending and keep looping until my confirmation changes.  Not sure how to accomplish this however in code.

    Here is the code i put together.  it doens't like my read or loop.
    tables: afru.
         DATA: Ty_afru TYPE standard TABLE OF afru with header line,
              WA_AFRU TYPE TABLE OF afru with header line.
         data: wa_diff_time like afru-ISM01,
               wa_conf like afru-RUECK,
               wa_counter like afru-rmzhl.
         Select * from afru into table ty_afru
         where ERSDA >  '01/01/2005'.
         sort ty_afru descending.
        read table tY_afru
        index 1.
         move ty_afru-ISM02 TO WA_DIFF_TIME.
         move ty_afru-rueck to wa_conf.
         LOOP AT tY_afru.
              wa_counter = ty_afru-RMZHL.
             if  rueck = ty_afru-rueck  and
              RMZHL = yy_afru-RMZHl.
              ty_afru-ISM02 = 0.
              elseif.
              ty_afru-rueck = rueck and
                  ty_afru-RMZHL = RMZHL - 1.
            ty_afru-ISM02 = WA_DIFF_TIME.
    move ty_afru-rueck to wa_conf.
           endif.
          wa_counter = ty_afru-RMZHL - 1.
         ENDLOOP.
    endcase.

  • Just needed some clarification regarding the Viewer Builder and actually publishing your App...

    If someone could let me know if my understanding is correct, that'd be a huge help... So I've designed my publication in InDesign and exported the .zip file from the Folio Producer. I've created all of my certificates/splash screens/icons. Lastly, I just recently went through the steps of the Viewer Builder. I'm now at the stage of this process that requires me to purchase the $395 single edition so that I can enter the serial number in the last stage of the Viewer Builder. Now, to my knowledge, once I get the serial number, Viewer Builder will then give me access to an .ipa file and a .zip file. The .ipa file is for me to test on my iPad, and the .zip would be used to distribute to the App Store. I guess this is where I get confused... Let's say after I test the .ipa on my iPad, I don't like some part of my publication. I know how to update my own documents obviously, and I understand that I would have to export another .zip file from the Folio Producer, in turn requiring me to edit the exported folio link in the Viewer Builder. If I had to do that, would I need to purchase another single edition serial number since the original App was edited? Or would the same serial number apply since I'm editing that same App in the Viewer Builder? My next question is somewhat similar. Let's say all of the information is up to date and I go ahead and publish the App to the App Store. However, maybe a month later or some time in the future, I needed to update a phone number or email address--some little detail like that. Again, I understand that I'd have to update the export link in the Viewer Builder, but would I then need to create a new app since my app was already published? Would I then have to purchase another $395 single edition serial number just so that I can update my information? This seems to be the only thing in this whole process that I could use some clarification on so that I don't run into any surprises in the future. Any help would be great, thanks!

    Hi Joshua,
    When you have purchased the serial, you can rebuild your app with your updated content, as long as you use the same bundleID (applicationID), that is tied to your Apple mobile provisioning profile. The serial number is valid for a one year period.
    After you have submitted your app to Apple and it has been approved, please read: http://forums.adobe.com/message/4172167#4172167
    With kind regards,
    Klaasjan Tukker
    Adobe Systems

  • I need some information regarding the Enable-SPSessionStateService commandlet

    I am our TFS Admin and by default a pseudo SharePoint 2010 admin as well.  We have a couple users who can design and build pages, portals, web parts, etc..  Anyway, one of those users tried to add a web part for SQL Reporting Services
    and in doing so caused an error to occur any time someone attempts to access that page/portal (It is actually a dashboard for TFS).
    After some digging around, the real error (behind the unexpected error with correlation ID) is "Microsoft.Reporting.WebForms.SessionDisabledException: Session state has been disabled for ASP.NET.  The Report Viewer control requires that session
    state be enabled in local mode."
    As a potential solution to this error I found this: 
    http://geekswithblogs.net/naijacoder/archive/2010/06/14/140408.aspx
    among others referencing the same commandlet.
    To my actual questions.
    1.  This commandlet creates a state service database.  Where?  Locally or on the DB server SharePoint is using?  In my case this is a separate machine.
    2.  I noticed on my server running SharePoint 2010 I have an ASP.Net State Service running and a state DB on my DB server.  Do I need to create a new one?  I restarted the service without errors, this did not correct my error.
    3. This commandlet alters the web.config files for the farm. In what way? Is there an easy revert which will change them back should this not solve my problem or make my problem worse somehow?
    I tried to find some deeper documentation on this but couldn't, so maybe a link to that is all I need. 
    Thanks Everyone,  Stu

    The database is created on the default SQL Server/Instance in use by SharePoint, unless you use the -DatabaseServer parameter to specify the server/instance.
    Do you have a State Service Service Application in Manage Service Applications in Central Admin?
    I believe it adds session state to enabled. Just disable or remove the State Service Service App to revert.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

Maybe you are looking for

  • How to lmplement table in applet

    hi friends im not known how to implement table in applet using " java.applet.* " class plz reply as soon as possible..

  • Can I delete iWork '06 once i've installed '08?

    I bought the family pack of iWork '08 after installing and using a trial version of '08 and previously had iWork '06 installed. '06 is about 2 gigs while '08 is about 0.7 gigs and I'm on a gig diet. I'm concerned about doing thsi because my hunch is

  • When i attach my ipod it freezes my computer and itunes...any ideas ?

    When i attach the ipod with the USB...it freezes my itunes and i can't do anything until i unplug the ipod....any ideas ??

  • Upgrade Lessons

    Hello, We are evaluating a upgrade from XI 3.0 to PI 7.3 and are wondering if there have been any Case Studies / Lessons learnt in Upgrade Cycles? Migration is a easier approach but budget and a complex B2B landscape makes us want to go down the upgr

  • Is it possible to have a scrolling text field in a quiz slide?

    I'm trying to build a quiz, and there is too much text that I need to display for the question. Is there any way to implement a scroll-able text field in a quiz slide?