Need to restrict access to multiple servlet applications on same box

Hi!
I have deployed two separate servlet applications to the same IAS. I need
to restrict access to each application - that is requests from one source
should only have access to one application and not the other. The web
server we are using is IIS.
Should I create a separate IAS to deploy the second application to? Can I
restrict based on IP - that is port 80 is reserved to application 1 while
port 81 is restricted to application 2? If so, how do I go about this? It
appears that the web connector only receives on one port (default 80).
Any help would be greatly appreciated.
Sheila

I see. So do you mean that I can override the port number in the proxy startup script itself? I can try doing that and see if it works fine.
About Coherence 3.7, yes. I did see that it has some cool features about proxy discovery. But at this point I am stuck at using 3.6 and 3.6.1.
Edited by: online19 on Jun 29, 2011 5:41 PM

Similar Messages

  • HT201304 I need to restrict access to Settings on an iPad so settings like VoiceOver cannot be activated while letting them access multiple apps on the device. Is their any way to restrict access to settings without locking the device with a PIN?

    I need to restrict access to Settings on an iPad so settings like VoiceOver cannot be activated while letting them access multiple apps on the device. Is their any way to restrict access to settings without locking the device with a PIN?
    This is so our guests cannot tamper or disable the device. We are already using Apple Configurator but their does not seem to be a way to lock down settings without a PIN.

    There's a lot of restrictions information in Chapter 19 of the 4.2 User Guide.
    http://support.apple.com/manuals/#ipad
    By the way, a more extensive version of the User Manual is available at no charge through iBooks.

  • Need to restrict access to XD02/XD03

    Hi All,
    I  need to restrict access to some acct group in the search screens for individuals who do not have access to this account group in transaction XD02/XD03.  Other than this group we should not allow to search the screens.
    Please guid me if any exit / badi....etc. where i can put this validation.
    Thanks.
    Raj.

    Hi,
    Try this link...
    Customer Master Maintenace - restriction general data tabs
    Regards,
    Guru

  • I want to use multiple colors in the same box - Pantone plus process. I am trying to create a support plate of cyan under a PMS.

    I want to use multiple colors in the same box - Pantone plus process. I am trying to create a support plate of cyan under a PMS.

    How is the external drive formatted?
    Allan

  • Restrict Access and Multiple Upload with Insert

    I continue to have problems with using Restrict Access to Folder with Multiple Upload with Insert. When the restrict access is enabled the uploader does not work, when it's removed it works. Any ideas?

    I've found that if I have a page that displays the kt_login_id, login and then go to that page it doesn't display the login ID. Then if I add the multiple image uploader w/ DB insert and reload the page the login ID is displayed and the uploader works, however, if I set an uploader field to the login ID it inserts and uploads everything but the login id. I thought this might have to do with the fact the the 'Restrict Access to Page' is not on the page yet. When I add it the uploader and insert stops working. I've placed the 'Restrict Access to Page' code in every possible place in the code (above the head) and the only place where the uploader/insert works is when the resrtict code is after the uploader code. But then again the login id does not get inserted. Please someone help.

  • Hi guys I need to restrict access to the settings with a passcode but also need passcode for the screen lock due to MS Exchange. Can these codes be different?

    We are introducing iPhonse into the business but have a question regarding security. We need to restrict user access to the settings on the iphone  probably via a passcode. We also need the user to have access to their emails (which when using exchange enforces a passcode). Is this the same passcode that is used for both by default? Because if it is then by allowing the user access to their emails they would by default have access to the code that allows them to change the settings of the iphone?
    Does anyone have any knowledge of this or how I can achieve something similar.
    Thanks
    Paul

    Hi,
    Thanks for your reply
    Could you by any chance provide a few simple steps on how to do this as i not too sure how you differentiate creating a passcode for restrictions and creating a passcode for lock screen?
    Kind Regards,
    Paul

  • Multiple WD Applications for same WD component

    Hello All,
    How can we generate multiple web dynpro applications for the same Web Dynpro Component?
    I think one way out was to specify different interface view name for each application. But in one of the applications, I can see that 2 different applications have same interface view but have generated different URL's and have different parameters.
    Kindly help me out with this issue.

    Hi Abhishek,
    The functionality of a single Web Dynpro component can be accessed by defining multiple applications, each addressing a different interface view and/or a different inbound plug of the interface view. In order to define a Web Dynpro application, you must specify:
    1) The component to be invoked
    2) Which interface view of the root component will be used
    3) Which inbound plug will act as the entry point for the nominated interface view (this inbound plug must be of type Startup)
    Regards,
    Uday

  • Security question - restricting access to a specific application

    Hello,
    Looking for suggestions on how I could limit connections to a database to a specific application. Here is the scenario.
    I have an application running from a desktop that has oracle accounts for each user. The user has a read only role by default that I cannot alter. This means that the user can use excel (for example) and bypass the application to look at sensitive data.
    I know I can lock down the desktop, remove excel, etc, etc. However, I'm looking for other options that could be used, be it process, additional Oracle software (the database is 10R2 enterprise edition), etc.
    Problems: The app doesn't identify itself internally. I can see the program, but that is easily faked so thus unreliable.
    Any suggestions at all?

    I'll look at VPD again, but don't think the vendor will support us if we do.
    We are unable to modify the app - third party supported
    exactly - dont want toad, excel, sql*plus, whatever accessing the db from the same host.
    thought above secure app roles as well, but need something concrete that I could validate agianst. If the app could call it and supply that, great but I cannot alter the application. I'm using secured app roles in an in house app and it does work well.
    looking with our ti staff about encapsulating the application communication through a secure vpn tunnel into the data zone. may be an option as all other connections would not make it through the firewall into the data zone. (everything is internal, just to be segmented).
    Edited by: GPC on Aug 26, 2010 12:18 PM
    Edited by: GPC on Aug 26, 2010 12:22 PM

  • General design tip needed to write a small Jsp/servlet application

    I am developing a small application using few JSP pages and a single servlet(as it iwas told to me that, number of servlet should be 1).
    My problem is,
    I have multiple JSPs. and multiple button within each JSPs.On click of each button, requeswt should be sent to Servlet and servlet performs some logic for esch button clicked.
    I have 2 option to identify the button clicked and write the logic.
    1.Servlet will get the value of each button.I will write one 'if loop' each for one button value. Whichever (request.getParameter("btnxyz")) returns 'NOT NULL', corresponding 'if loop' gets executed.This works fine.but servlet code looks like a mess as number of if loops = total number of buttons of all jsps.
    2.Have a hidden field in each JSP.Onload of the button i will write some value to the field.On exit of JSp i will make it null.So, when button is clicked, in the servlet i will first identify the JSP from which request has come. and then identify the button as in step1.
    My question is , which option is better?
    Please suggest me other better solutions for the same.
    Thanks,
    Gowtam

    Have you considered using Struts?
    It would make your life so much easier.
    Nick

  • Help needed in restricting access

    Hi all,
    Please recommend me a procedure to remove an access from a transaction code.
    The scenario is for transaction CC31-Create Change Request i need to remove the access for a set of users the "Approve ECR" status that which appears in the Set Status page.
    Kindly send me your valid advice.
    Expecting your kind response
    Vineeth

    Hi Ashok,
    Thanks for your quick reply, but my problem is not solved yet.
    I created a role with the T-Code CC31, searched for the field "RLKEY".
    When trying to remove the CHECK from the GlobalReleases option the option is not working. I am neither able to choose any of the options or remove the checked option.
    Hope you understand.
    Though the field "Release Key for Change Master" is kept open, the user assigned has the access to the "APPROVE ECR" task.
    I am not able to understand the concept of RLKEY's is there further need for options through customization?
    Can you please explain.
    Expecting your kind response.
    Vineeth

  • Cisco WLC with ISE - need to restrict access during non-business hours

    Hello,
    We have a requirement to turn off our wireless during non-business hours.  We have a 5508 WLC with ISE.  What is the best way to accomplish this task?  
    Thank you in advance.
    Beth

    Aside from Steve's respond, there are several methods of doing this and this will all depend on how complex your network is and how technical you want to do this.  
    1.  As what Steve said, use PI and you can define several schedules when to turn off/on the SSID; 
    2.  If you have corporate access, you can use AD to schedule non-business hours; 
    3.  If you have Cisco PoE switches, you can enable EnergyWise to power off the APs; 
    4.  If you manage your core network, you can enable time-based ACL to disable the default gateway of the dynamic interface which is attached to your SSID.  
    The most "destructive" method is option #3, because there are chances that your AP won't power up properly, if not power up at all.  

  • Single log in for multiple apex application in same workspace

    hi forum.
    We created 5 applications based on same schema and all in one workspace now. Actually, initially they were created on different machines. now, we have to authenticate users from AD and depending on user type, have to allow or deny some modules. i have created one pager application which have 5 buttons and can control rendering of buttons according to user logged in but...the problem is, inside the applications, i have restrictions on some reports for some users...now one way was to do that is to create a log in for every application separately and thus every application would exactly know who is logged in. but that would be impractical as we need single-sign-on kind of functionality.
    please let me know how to have a single log in page work for all application inside the apex workspace so that every application would know name of the user currently logged in.
    for the 5 applications, i actually use No_Authentication authentication scheme. and i use following function initially for my one pager application to render the buttons to user or deny
    create or replace function getUserName return varchar2
    is
       userName varchar2(20);
       c owa_cookie.cookie;
    begin
        c := owa_cookie.get('LOGIN_USERNAME_COOKIE');
        userName := c.vals(1);
        return trim(userName);
    end;but i cannot user this function obviously in my 5 actual applications.
    help is requested please.
    bundle of thanks in advance.

    You can create one application that does the login authentication according to your authentication scheme. When authenticated, this login app sets a cookie. That's all the login app does (and maybe show a list of available apps to choose from).
    The other apps have an even simpler authentication scheme. The only thing they have to do is check the cookie and redirect to the login page (Session Not Valid URL) if there is no valid cookie.

  • 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

  • ITunes access for multiple users on the same Apple

    I think I'm really done myself in for the fist time with my iMac. I have decided instead of sharing a single log-in with my girlfriend, to get her her own. This is working out great, but I'm come to a halt in trying to get her access to our music on iTunes. I read the article on the Apple Support website that clearly explains how to do this, I also read Kay and Bert's message thread which I thought would be of help to no avail.
    I've copied my iTunes folder into user/shared then opened iTunes/preferences and connected iTunes the path to the new location. Done... but I can't see any of my music!! ... and I can't even see the music under my log-in. However, I can clearly see the files there in the user/shared folder. I'm starting to feel those "windows" days before I found Apple. Please help!
    iMac G5   Mac OS X (10.4.6)   iLife 06

    I got my answers looking at another post. This individual was able to hit up a Genious Bar, something I had tried to schedule on the internet but was denied because I don't have the care plan. Here is the thread.
    http://discussions.apple.com/message.jspa?messageID=2538248#2538248
    Again, the Apple Discussion has saved the day.

  • Photos library accessed by multiple accounts on the same Mac.

    I have two different log on accounts for my wife and I on our Mac.  Prior to converting my library to Photos, we were able to open the same iPhoto/Aperture library.  Now since converting to Photos, she cannot open the library.  I do have the library set to store in iCloud, but I have it configured to download originals to this Mac.  We get the following error:
    The library is stored on a external drive.
    Thanks

    Try logging out the main user, then switching/logging in as another user. Then open Photos and point to the library you want to share.
    This worked for me. For whatever reason, you can leave the secondary user logged in, and the main user can still open Photos, but not visa-versa. I don't remember that being the case with iPhoto.

Maybe you are looking for