Can I use .htaccess file for authentication if running pl/sql gateway?

The server is on Windows system with Apache as the web listener
and webDB as pl/sql gateway so if any script is under pls/,
server would invoke pl/sql. My question is: I know .htaccess can
be used for directory protection, in this case(with the pls/),
can I still use it? if yes, where should I put the .htaccess
file?
Thanks very much in advance.
Patricia

Welcome to the discussions!
+Is this feasible ?+
Feasible, yes. Practical, no...unless you are willing to put up with very slow access to files that are on the Time Capsule.
Keep in mind that the Time Capsule was designed primarily for Time Machine backups, not as a media server for quick access to data. You might want to explore other options that would allow much faster access to files when you need them.

Similar Messages

  • How can I use accounting status for authentication on ACS?

    Dear all,
    I'm using ACS 5.5 to authenticate dot1x users on my switches.
    I have enabled accouting reports on my switches. I can see the accounting reports abut the net usages of every user on the monitring secton.
    However, I was wondering if there is any option to use this accounting reports on authentication policies t limit the users' net usage?
    I use the ACS for authenticating my hotspots and I haveno access on limiting the net usage there too.
    If there is any solution, it wuld help me a lot.
    Thanks

    Hi Masood,
    Please go through the following path that describes the reports available when you select Monitoring and Reports, launch Monitoring and Report Viewer, then select Monitoring and Reports > Reports > Catalog.
    For more information about managing the reports in ACS 5.5, please go through the following link:
    http://www.cisco.com/c/en/us/td/docs/net_mgmt/cisco_secure_access_control_system/5-5/user/guide/acsuserguide/viewer_reporting.html#wp1121647

  • Can I Use multiple HTTPHeaders for authentication?

    Hello,
    I got a question about login into portal with HTTP Headers.
    My system has two different reverse proxys with their respective agents of authentication, and each one of them gives me a HTTP Header with a different name, but the content will be always the same: the user name.
    Can I configure a Login Module Stack with two HeaderVariableLoginModules? I guess it's possible, but I'm not really sure. If it's possible, will be something like the next?
    EvaluateTicketLoginModule     SUFFICIENT    {ume.configuration.active=true}
    HeaderVariableLoginModule     OPTIONAL      {ume.configuration.active=true, Header=HEADER1}
    CreateTicketLoginModule        SUFFICIENT     {ume.configuration.active=true}
    HeaderVariableLoginModule     OPTIONAL      {ume.configuration.active=true, Header=HEADER2}
    CreateTicketLoginModule        SUFFICIENT     {ume.configuration.active=true}
    BasicPasswordLoginModule    REQUISITE {}
    CreateTicketLoginModule        OPTIONAL     {ume.configuration.active=true}
    Thank you in advance

    Hi Marc,
    What you have is exactly right - we are using a very similar stack.
    In essence, you can chain any number of authentication modules using the form:
    EvaluateTicket - SUFFICIENT
    Module1 - OPTIONAL
    CreateTicket - SUFFICIENT
    Module2 - OPTIONAL
    CreateTicket - SUFFICIENT
    ModuleN - OPTIONAL
    CreateTicket - SUFFICIENT
    BasicPassword - REQUISITE
    CreateTicket - OPTIONAL
    The principle is that CreateTicket will only be successful if there is a valid user in the context (from the previous Module), so the logic progresses down the stack until a Module correctly gets a user, and then exits with a successful Sufficient CreateTicket.
    The last two lines provide a fallback position which is to allow a username/password login if all else fails.
    Hope this helps,
    Darren

  • How can i use JS files in ADF for language translation.

    Hi,
    I have JS for different languages and dn't want to convert them to property files(resource bundle files). How can i use JS files in ADF for language translation.
    Thanks

    Hi ILya Cyclone,
    Thanks alotfor the reply. Can you tell me where should i include this in the jspx page.
    Step 1)
    I have the js file as js/ifl_messages_US.js and i created a resource file as you mentioned: JS_FILE_PATH=js/ifl_messages_US.js
    Step 2)
    Then added the entry in faces-config.xml for the resource file as follow:
    <resource-bundle>
    <base-name>resource_en.properties</base-name>
    <var>resource</var>
    </resource-bundle>
    <locale-config>
    <supported-locale>en</supported-locale>
    </locale-config>
    Step 3) This is my jspx page. In which a table is dynamically created on page load. Can you help me where should i enter the "#{resource.JS_FILE_PATH}"
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document id="d1">
    <af:messages id="m1"/>
    <af:resource type="javascript" source="/js/pdfFile.js"/>
    <af:form id="f1">
    <input type="hidden" name="checkRadio" id="checkRadio" value=""/>
    <af:panelGroupLayout id="pgl1" halign="left" layout="vertical">
    <af:image source="/images/BRAND_IMAGE.gif" id="i1"/>
    </af:panelGroupLayout>
    <af:spacer width="10" height="10" id="s1"/>
    <af:table varStatus="rowStat" summary="table"
    value="#{backingBeanScope.DummyBean.collectionModel}"
    rows="#{backingBeanScope.DummyBean.collectionModel.rowCount}"
    rowSelection="none" contentDelivery="immediate" var="row"
    rendered="true" id="t1" styleClass="AFStretchWidth"
    binding="#{backingBeanScope.DummyBean.myTableBinding}"
    columnResizing="disabled">
    <af:column id="c2" headerText="Actions">
    <af:activeOutputText value="#{row.Actions}" id="aot2"/>
    <af:goLink text="#{row.Actions}" id="gl1"
    clientComponent="true" visible="false"/>
    <af:selectBooleanRadio text="" id="sbr1"
    valueChangeListener="#{backingBeanScope.DummyBean.checkselectbox}">
    <af:clientListener method="selectCheckBox" type="click"/>
    </af:selectBooleanRadio>
    </af:column>
    <af:forEach items="#{backingBeanScope.DummyBean.columnNames}" end="#{backingBeanScope.DummyBean.columnSize}"
    var="name" begin="1">
    <af:column sortable="false" sortProperty="#{name}"
    rowHeader="unstyled" headerText="#{name}"
    inlineStyle="width:100px;" id="c1">
    <af:activeOutputText value="#{row[name]}" id="aot1" escape="false">
    </af:activeOutputText>
    <!-- <af:outputFormatted value="#{row[name]}" id="of1"/>-->
    <!--<af:goLink text="goLink 1" id="gl1"
    destination="#{row.bindings.url.inputvalue}"/>-->
    </af:column>
    </af:forEach>
    </af:table>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    Thanks in advance

  • Using .htaccess file to block access from certain networks

    Does anybody have any tips on getting a .htaccess file to work to block access to my Web Access server from certain network ranges on SuSE 10 SP3 with GW 8.0.2.
    It does seem like the file does anything? With Web Access I'm not exactly sure where to put the file. I used to accomplish this using iptables, but I was seeing if I could do the same with .htaccess.
    Thanks!

    Originally Posted by bbilut
    Does anybody have any tips on getting a .htaccess file to work to block access to my Web Access server from certain network ranges on SuSE 10 SP3 with GW 8.0.2.
    It does seem like the file does anything? With Web Access I'm not exactly sure where to put the file. I used to accomplish this using iptables, but I was seeing if I could do the same with .htaccess.
    Thanks!
    You can block a range with the .htaccess file, for example by defining the range as
    Code:
    order allow,deny
    deny from 10.0.
    allow from all
    ...that would block all 10.0.0.0 upto 10.0.255.255 addresses
    You cannot use this file in tomcat, so useless I think... but as Apache is used as frontend for the tomcat webacc application and you might be able to edit the gw conf apache files to include the range denies (which by default can be found in /etc/opt/novell/groupwise/webaccess/gw.conf).
    Maybe this thread might help as there are some examples in howto include denies in the .conf files.
    Deny IP Ranges in httpd.conf Apache Web Server forum at WebmasterWorld
    Do make a backup of you current gw.conf in case it blows up :)
    -Willem

  • How can I use jbo:InputSelect for a char type filed?

    How can I use <jbo:InputSelect for a char type filed?
    I have two tables. One is room (primary key is room(type is char)), another table is responsibility (foreign ker is room(type is char)). Both tables have same length for room column.
    There is a problem:
    If I use (in the "DataEditComponent.jsp" file)
    <jbo:InputSelect multiple="false" datasource="dsEdit" displaydatasource="roomData" displaydataitem="ROOM" displayvaluedataitem="ROOM" ></jbo:InputSelect>
    to get the room input for responsibility from combobox(Datasource roomData is from room table). In the form the room field cannot bind the data in combobox, alway select the first item. And if I select one item and click the update button.There is an error message:
    Error Message: JBO-27010: Attribute set with value H409 for Room in Responsibility has invalid precision/scale
    I found If I changed the field type from char to varchar2 in database also change the entity objects, it works well. I wonder if there are any diffrence using <jbo:InputSelect tag in char and varchar2 type. How can I use <jbo:InputSelect for a char type filed as i don't want to change my datatype in database at this stage.
    I try this in JDeveloper 9.03, 9.034, 9.04. The result is the same.

    If I were in your shoes, here's how I would do it:
    <%-- Assuming you have dsRoom and dsResponsibility --%>
    <%-- Select is an HTML tag --%>
    <select name="ROOM" size="1">
    <% char roomID =""; // Init your character var
    // Open a rowsetIterator to get the records and add them to the LOV
    <jbo:RowsetIterate datasource="dsResponsibility" changecurrentrow="true" >
    <% roomID = (char)dsResponsibility.getRowSet().getCurrentRow().getAttribute("ROOM"); // Grab the char value
    // add the value to the LOV
    %>
    <option value="<%=roomID%>"><%=roomID%></option>
    </jbo:RowsetIterate>
    </select>
    If you are using this as part of an edit page you may want to utilize the "selected" option of the <option> tag. In one instance I am doing this on an edit page because the use may open an existing record. If I don't account for it, then it will change the DB to contain the first value from the list! You can do a simple check like:
    //Set the current record's char
    char curRecord = (char)rowEdit.getAttribute("ROOM");
    // inside the iterate:
    if (curRecord == roomID) {
    <option value="<%=roomID%>" selected><%=roomID%></option>
    } else {
    <option value="<%=roomID%>" ><%=roomID%></option>
    Hope that helps!

  • How can i use my files(apps,media) from my main os to another os in one mac?

    When yosemite was released, i was excited to install it but the problem is that i don't want my main os to be compromised because i think that yosemite is kinda new and it's only 10.0 version and Dota 2 does not work on Yosemite and it's very unstable according to Steam forums and many other sites. My main OSX is still mountain lion and the only os x version that makes dots 2 stable. What i did is I partitioned my hard drive into two one for my main os and one for yosemite. Now i have two os x on my macbook pro. Now the problem is i don't want to install Logic Pro X again and re-download many samples and stuff. When i open the finder in Yosemite, i can see my mountain lion disk where all my files located at? Can i use those files without copying it because my yosemite disk is only 40 gb and my projects and sample audios is 60 gb and open apps from that disk to yosemite? Thanks. Sorry for the long text. I just want to give you the background.

    If you live near an Apple Store, make a Genius Bar appointment to have the computer tested. Supposedly there is no charge for testing. They can also give you an estimate.
    Genius Bar Reservation US

  • Can I use "dvt" function for customizing the chart format in OBIEE 11g?

    Hi,
    ".pcxml" file cannot be found in OBIEE11g. However, can I use "dvt" function for customization? If yes, how?
    Reference for dvt function:
    http://docs.oracle.com/cd/E23943_01/apirefs.1111/e12418/tagdoc/dvt_pieGraph.html

    Hello,
    I know it's possible, because i already found some blogs about changing the chart colors and turning off the animated graphs.
    <Graph visualEffects="NONE" animationDuration="0">
    But we want to alter more chart options, like make a bar chart default stacked. In 10G this was possible. I think this is also
    possible in 11G through the dvt-graph-skin.xml, but what i want to know is, is there a document that explains which tags you could use in this file.
    It would be great to get some help on this.

  • How can i build RPMs file for my own Java Application?

    How can i build RPMs file for my own Java Application?....I have my own directory that contains all Java Source files and some files that my Application required....I want to build RPMs file like a install File to Linux System, Now my OS is Linux Fedora core 1.....How can i do this?

    I think that in order to create a RPM, you'd need to
    use some C.Nope - the RPM is all about packaging and the "magic" x.spec file. You can have anything you want in the RPM, but you have to use RPM tools to build the .rpm file. One of the features is that you can also indicate (via "install" scripts) modifications to other files or the filesystem to support the installation of whatever's in the RPM.

  • I have the exact problem, only have 6 computers with indesign CC version 10.1.0.70, but 2 computers, is version 9, i try actualization no CC, but no success. i can´t use open file, em others computers, because problem version, i liked if all indesign had

    i have the exact problem, only have 6 computers with indesign CC version 10.1.0.70, but 2 computers, is version 9, i try actualization no CC, but no success. i can´t use open file, em others computers, because problem version, i liked if all indesign had the same version.

    http://www.microsoft.com/mac/support
    http://answers.microsoft.com/en-us/mac/forum/macword?auth=1
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011-macword/microsoft-wor d-for-mac-2011-will-not-open-error/ecc42616-6f49-40bb-b8f5-e21c711ea359

  • Can I use the LCDS for... ?

    Hi,
    I'm a beginner in LCDS.
    I have a MySQL database for my ordering system. In this database there is a user table and there are some other tables. These tables use foreign keys of user.id. People can register on my sytem (+1 row in a user table). I communicate throught web services in my mobile application. People can see only their own rows (own orders) (it is defined by the user.id).
    I would like to improve my mob.app. with offline, sync, and real time changings features.
    Can I use the LCDS for my system?
    Thanks

    +information:
    Server: Apache Tomcat 7
    Web Services: Java WS, and it is protected with Custom Basic Authentication. The session contains user.id after the successful authentication.

  • Can I use Publications SDK for merging PDFs?

    Hi,
    Can i use Publications SDK for merging PDFs.? Logically i think it should be possible.
    Scenario:-  PDFs will be the report output format for webI, Crystal etc. I will query the repository and get the PDF instances from various BO Reports. Can i use this PDFs as input for Publications SDK? Is there any known limitations?
    Please help.
    Ted, if you are there please update.
    Thanks,
    Anu

    Thanks Ted. Thats really informative.
    Can you please provide a brief description on 'There's an out-of-the-box post-processing extension that merges PDF from Crystal.'
    I'm already using Itext. but it is a costly affair as PDF file size is an issue (200 single page PDF results in 8 MB). And seems like there is no otherway around in Itext to compress PDF.
    About using WebI and Crystal together, I will export PDF from these and give those PDF as input for Publications.Then it should work. Right?
    Edited by: Anu Cherian on Feb 2, 2011 11:35 AM

  • Can I USE ASP FILES ON A MAC?

    CAN I USE ASP FILES ON A MAC?

    >Yes, but only with a properly configured testing server like Apache or MAMP.
    For ASP?!?
    You need to have a testing server running on Windows.

  • Within itunes, can I use the file/library/export library option to transfer itunes to a new pc

    Within itunes, can I use the file/library/export library option to transfer itunes to a new pc? I have read the other options but they will be difficult for me to action. Can this be used as an easier route?

    No. See this migrate iTunes library post.
    tt2

  • Can i use create function for MSSql scalar and table valude function.

    Hi,
    1) Can i use create function for MSSql scalar and table valued function?
    2) How many type of user defined function are there in oracle 11g express?
    3) And can i reture any "type" form user defined function?
    yourse sincerely

    944768 wrote:
    Q1)That means even if i return predefined types like integer, varchar2 then also PGA is used ?The data type does not determine where the variable is stored. A string (called a varchar2 in Oracle) can be stored in stack space, heap space, on disk, in a memory mapped file, in a shared memory, in an atom table, etc.
    It is the who and what is defining and using that string, that determines where and how it is stored.
    The Oracle sever supports 2 languages in PL/SQL. The PL (Programming Logic) language is a procedural/declarative language. It is NOT SQL. SQL is integrated with it. The PL/SQL engine uses private process memory (PGA). So PL/SQL variables exist in the PGA (but there are exceptions such as LOBs).
    Q2) So please suggest me solution in oracle.Sounds to me you are looking at how to implement a T-SQL style function as an Oracle function, and once implemented, do joins on the function.
    Do not use PL/SQL in SQL in place of a SQL select. It is not T-SQL.
    One cannot use PL/SQL to create functions along the style of T-SQL, where the function executes a SQL using some conditional logic, and then return as if the function was a native SQL select.
    T-SQL is an extension to the SQL language - making it a hybrid and very impure language implementation. PL is based on ADA - part of the Pascal family of languages. The E-SQL (embedded SQL) approach used in languages like C/C++, Cobol and Ada, has been transparently done in PL/SQL. You can write and mix PL code and variables with SQL code. And the PL/SQL engine figures out how to make the call from the PL/SQL engine to the SQL engine.
    But PL/SQL is not "part" of the SQL language and does not "extend" the SQL language in a T-SQL fashion.
    So you need to check your SQL-Server preconcepts in at the door, as they are not only irrelevant in Oracle, they are WRONG in Oracle.
    The correct way in Oracle, in a nutshell - Use the SQL language to do data processing. Use PL/SQL to manage conditional process flow and the handling of errors.

Maybe you are looking for

  • Tv series on my ipad

    I have an ipad - 16gb memory - i have purchsed a tv series on it and obviously it wont hold all the episodes. when i have watched an episode how do i delete it off my ipad but not lose it from itunes on my computer?

  • Westell 6100G Data light constant activity

    I recived a new modem to replace my old 6100,my old one had 5 lights This new one (6100g) has 3 lights a internet ,data, and dsl light.Now I'm aware that when a light is flashing it means data is flowing through and or it's connecting.So why is it th

  • Installing the latest version of Flash Player

    Since installing the latest version of Flash Player I receive a constant "Plug In " failure message. I have re installed, uninstalled, sent error reports, checked my system, followed trouble shooting instructions.  It still does not work. Is the upgr

  • Ipod touch v 4.2.1, unable to download ios 5...

    Every time I open up iTunes (10.5) and let my ipod back up and finish its usual sync, I go to my ipod and chose check for update, however it states that the 4.2.1 update I have now is the current one... I have a 3rd generation ipod, anyone have any i

  • Crashes with: Adapter Device ID: 03d0, Vendor ID: 10de, can't find?

    I have two computers that do have the same problem. I can't seem to find this adapter, it could be anyone