IWeb Url Username and Password protection problem

After renewing a GoDaddy site and re-forwarding an already created iWeb site, I now get a .Mac required User Name and Password. What happened.? I just re-forwarded the url string that was already there on my .mac server.

Hi Robert
I am no expert but I just did a web site as well. If you want to protect it in IWEB click on your welcome page and at the bottom of the page you have a menu selection click on the icon for the inspector. looks like an italizised I then click over the menu option at the top of that that says password. you should be able to do it that way. good luck marty

Similar Messages

  • How-to access username and password protected Java EE Web services from ADF

    The title of this post is exactly the same as this article by Frank Nimphius:
    http://www.oracle.com/technology/products/jdev/howtos/1013/protectedws/access_protected_web_services_from_adf.htm
    The article addresses the problem of securing web services using usernames and passwords, when those web services are accessed through a proxy or a data control. In the examples, the user names and passwords are specified, whether in the code or the definition of data controls. (SKING/SKING).
    In a very common scenario, users login to reach a page, for example, A.jspx, which contains a button that calls a web service, for example displayDate. Suppose that user has logged in by username/pass of (AHUNOLD/AHUNOLD) and AHUNOLD has access to the service and the page. Is there any way to pass the logged in user name and password to the webservice ? Of course we can hard-code the username in the data control definition or proxy code, but this is just one of the thousands of users who have access to the service and the authentication is not dynamic this way.
    Hope my question is clear. Wishing you all a great Christmas.
    Farbod

    Hi Frank, and happy new year.
    Are you implying that it couldn't be done declaratively? What is your suggestion for this problem? You know the problem... As I described:
    - I need to secure my web services, so when exposed, no one from inside network or the internet, can access the web service without proper permission
    - The web services are shown as web controls on jspx pages. The user has logged in before reaching the page. It is irrelevant to ask him to enter user name and password again.
    - I have user names, passwords and roles in Oracle Internet Directory (Identity Management). It provides some APIs and I can retrieve the usernames and attempt logging in programmically. But how can I get username and password from the session in ADF application?
    I guess using SAML or certificate could be the solution, but I have a problem with SAML, described here:
    Re: Webservices Security, SAML, and Identity Management (OID)
    Best Regards,
    Farbod

  • Username and password check problem

    I have learned Java for 3 months and I am going to finish a project for the school. I have had some problems on username & password check and authorization from SQL database using ODBC. Any source code I can learn from?
    Thanks in advance.

    I'm not too clear on what you exactly want, but here's an example from my book using "username", "password", and a "database". I can send you the db file if you need to see it. I hope this helps.
    // Fig. 18.24: TableDisplay.java
    // This program displays the contents of the Authors table
    // in the Books database.
    import java.sql.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    public class TableDisplay extends JFrame {
    private Connection connection;
    private JTable table;
    public TableDisplay()
    // The URL specifying the Books database to which
    // this program connects using JDBC to connect to a
    // Microsoft ODBC database.
    String url = "jdbc:odbc:Books";
    String username = "anonymous";
    String password = "guest";
    // Load the driver to allow connection to the database
    try {
    Class.forName( "sun.jdbc.odbc.JdbcOdbcDriver" );
    connection = DriverManager.getConnection(
    url, username, password );
    catch ( ClassNotFoundException cnfex ) {
    System.err.println(
    "Failed to load JDBC/ODBC driver." );
    cnfex.printStackTrace();
    System.exit( 1 ); // terminate program
    catch ( SQLException sqlex ) {
    System.err.println( "Unable to connect" );
    sqlex.printStackTrace();
    getTable();
    setSize( 450, 150 );
    show();
    private void getTable()
    Statement statement;
    ResultSet resultSet;
    try {
    String query = "SELECT * FROM Authors";
    statement = connection.createStatement();
    resultSet = statement.executeQuery( query );
    displayResultSet( resultSet );
    statement.close();
    catch ( SQLException sqlex ) {
    sqlex.printStackTrace();
    private void displayResultSet( ResultSet rs )
    throws SQLException
    // position to first record
    boolean moreRecords = rs.next();
    // If there are no records, display a message
    if ( ! moreRecords ) {
    JOptionPane.showMessageDialog( this,
    "ResultSet contained no records" );
    setTitle( "No records to display" );
    return;
    setTitle( "Authors table from Books" );
    Vector columnHeads = new Vector();
    Vector rows = new Vector();
    try {
    // get column heads
    ResultSetMetaData rsmd = rs.getMetaData();
    for ( int i = 1; i <= rsmd.getColumnCount(); ++i )
    columnHeads.addElement( rsmd.getColumnName( i ) );
    // get row data
    do {
    rows.addElement( getNextRow( rs, rsmd ) );
    } while ( rs.next() );
    // display table with ResultSet contents
    table = new JTable( rows, columnHeads );
    JScrollPane scroller = new JScrollPane( table );
    getContentPane().add(
    scroller, BorderLayout.CENTER );
    validate();
    catch ( SQLException sqlex ) {
    sqlex.printStackTrace();
    private Vector getNextRow( ResultSet rs,
    ResultSetMetaData rsmd )
    throws SQLException
    Vector currentRow = new Vector();
    for ( int i = 1; i <= rsmd.getColumnCount(); ++i )
    switch( rsmd.getColumnType( i ) ) {
    case Types.VARCHAR:
    currentRow.addElement( rs.getString( i ) );
    break;
    case Types.INTEGER:
    currentRow.addElement(
    new Long( rs.getLong( i ) ) );
    break;
    default:
    System.out.println( "Type was: " +
    rsmd.getColumnTypeName( i ) );
    return currentRow;
    public void shutDown()
    try {
    connection.close();
    catch ( SQLException sqlex ) {
    System.err.println( "Unable to disconnect" );
    sqlex.printStackTrace();
    public static void main( String args[] )
    final TableDisplay app = new TableDisplay();
    app.addWindowListener(
    new WindowAdapter() {
    public void windowClosing( WindowEvent e )
    app.shutDown();
    System.exit( 0 );

  • Can I  change the information,such as MEDIA URL,username and password  ,from English to Chinese?

    I have downloaded the OSMF1.6.1 from the website http://sourceforge.net/projects/osmf.adobe/files/. And here comes the question.When playing encrypted video with OSMFPlayer, I want to change the message such as “user name” and “password” in the AuthenticationDialog into Chinese. However, when I altered the code by Flash Builder 4.5, the message can not be displayed in the browser after running. I have noticed that the font in OSMFPlayer is standard07_55, so I wonder that if this problem is related with the default font? I want to know if there’s a way to display Chinese information instead of “user name” or “password”?
    Thank you!

    I have downloaded the OSMF1.6.1 from the website http://sourceforge.net/projects/osmf.adobe/files/. And here comes the question.When playing encrypted video with OSMFPlayer, I want to change the message such as “user name” and “password” in the AuthenticationDialog into Chinese. However, when I altered the code by Flash Builder 4.5, the message can not be displayed in the browser after running. I have noticed that the font in OSMFPlayer is standard07_55, so I wonder that if this problem is related with the default font? I want to know if there’s a way to display Chinese information instead of “user name” or “password”?
    Thank you!

  • MS OUTLOOK PROMPT USERNAME AND PASSWORD REPEATLY WHEN WE LOGIN WINDOWS 8.1 WITH DOMAIN USER ON WINDOWS SERVER 2008R2

    Dear Sir
       My name is sandeep and i have a technical issue with MS office Outlook 2007 standard. the problem is i have windows 8.1 pro. and i have installed office 2007 standard on it. i have also joined this windows 8.1  to Domain Network(I have
    domain Server on Windows server 2008R2) now problem is that when i login with domain user on this windows 8.1 and configure my MS outlook the it prompts user name and password again and again showing error "
    Server responded -ERR access denied"  and if i login windows 8.1 with its local administrator user the all runs file then ms outlook does
    not prompt for username and password. this problem with only windows 8.1 domain login.. please suggest what to do and how this problem will be resolved..
    Regards
    sandeep Kumar

    Hi,
    Did it work correctly before when logging in with domain user account? If so, please try opening Control Panel > Credential Manager and remove the cached credential entry of the Outlook account, and then restart Outlook to test the issue again.
    See:
    https://support.microsoft.com/en-us/kb/2762344/en-us
    Please also try logging into your email account from webmail access to see if there is any error.
    Please let me know the result.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Problem with iWeb asking for username and password to access my public site

    Today for some reason anyone trying to access my site is being asked for username and password. I have made no changes that would require a password. My site has always been public.

    I am having the same problems. My site is public, I checked the settings on the public folder on MobileMe to ensure that it was public and did not require password protection either. But for some odd reason, even though I didn't change anything, my site's pages seem to require a user name and password to get into them. If one continues to click cancel, the page continues to load.
    This does not happen every single time, but it happens more often than not. I have tried this with my iMac, Macbook, as well as my iPod Touch, and I get this on all machines. My brother has tried logging in from another location using his Macbook Pro, and he gets the password prompt as well.
    I tried turning on password protection to the site and uploading the changes, then disabling password protection and reupping the changes once again. I've tried uploading entire site, instead of just changes, but the problem continues to persist. I definitely need this issue solved since this site is important to me.
    The site url is: http://www.globalwinetour.com
    Does anyone have any suggestions to rectify this, or does anyone have any idea what is causing it? Am I missing something here? Am I doing something wrong? Please help me out!
    Many thanks in advance!

  • IWeb username and password problem

    I've published a few sites now using iWeb, and just ran into this problem for the first time. The site I'm working on when published now asks for my apple username and password (my apple email address and apple password, for itunes etc etc) instead of the username and password I enter in iweb for password protecting the site. It says something like 'the username and password for your mobile me domain is incorrect. and when I put in my email address and apple password, it works. All my other sites that I set individual usernames and passwords for are working fine.
    Anyone know why it would be doing this? I did copy the pages from another site. could that be part of the problem?

    Have you found a good solution to your problem yet? I had an issue like you describe, where I thought I had to enter my MobileMe user/pass when prompted when browsing.
    The issue with passwords that I saw was when creating more than one site within a single domain.sites file. I have one public site without a password, and then the other several sites in this file do have passwords, and each of them has a different password. With this multi-site and multi-password configuration, I was confused why the passwords seemed to NOT be working.
    The result seems to be that the LAST site published is the user/pass used for ALL of the password protected sites. So right now, after editing a page in one of my private sites, I publish that site, and then I ALSO re-publish the site with the password that I want. This way at least I know the password being used. But it's a single password used for ALL the private sites.

  • Hiding Username and Password in Web Report URL

    Hi there,
    I am calling a report from my webforms using the WEB.SHOW_DOCUMENT built-in. The problem is that when using this, when the report or the parameter form is being displayed on the browser, the username and password is also displayed on the browser's URL bar with other report parameters.
    Is there any way to surpress or hide the username and password? Please help as this raises some security issues.

    First off make sure your form
    logs on using an ON-LOGON trigger
    using the logon built in. Inside
    a form level ON-LOGON trigger put the
    following code (i.e.)
    logon('username','password@database');
    The password and database are concatenated together.
    Then you can call reports without
    puting the username and password in the
    URL. Here are two examples.
    web.show_document (i.e.)
    web.show_document('URL_HERE','_blank');
    or via a run_product (i.e)
    Run_Product(REPORTS,'admin_req_snapshot',SYNCHRONOUS, RUNTIME, FILESYSTEM,plist,NULL);
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by hkpang ([email protected]):
    Hi there,
    I am calling a report from my webforms using the WEB.SHOW_DOCUMENT built-in. The problem is that when using this, when the report or the parameter form is being displayed on the browser, the username and password is also displayed on the browser's URL bar with other report parameters.
    Is there any way to surpress or hide the username and password? Please help as this raises some security issues. <HR></BLOCKQUOTE>
    null

  • Using url with username and password in URL class

    Hi,
    I'm writting an applet in which I use getAppletContext().showDocument with an URL.
    The problem is that I'm using URLs with username and password (http://user:[email protected]/page) and it isn't working because the browser is getting the URL http://user/page.
    Is this a bug in the URL class? Or in the showDocument method?
    Is there any way to make this work?
    Thanks for any help,
    Pedro Prospero Luis ([email protected])

    I'm not sure whether this is supported behaviour. I've had this syntax fail to work in the Netscape address bar so I can't recommend it as an approach for authentication.
    If you want to authenticate the user before redirecting to the page, though, you could try creating a connection to another page on the same server and sending the authorization information then. Your browser may then be successfully authenticated.
    See http://www.javaworld.com/javatips/jw-javatip47.html for information on this.
    You might not need to read back the page from the server, just connect to it. Might work.

  • When using a URL it always asks for a username and password

    I’ve just started using the Windows version of OracleXE.exe with Apex3.1 and I would like to create a menu web-page holding a list of URL’s that can be configured by inserting records into a simple table. I am having problems with multiple authentication user-name and password. I can read the table and create a URL within a web-page swapping the text “#SESSION#” with the &Session.
    But each time I open a new application within the same schema I get the login page (when that user has already connected with their password).
    Test data:
    create table x_url_table(url varchar2(256),display_text varchar2(32));
    insert into x_url_table values ('http://127.0.0.1:8080/apex/f?p=106:1:#SESSION#:::','query country details');
    insert into x_url_table values ('http://127.0.0.1:8080/apex/f?p=108:2:#SESSION#:::','simple select as a test ');
    From the Application Builder page I choose:
    "Create" -> "Create Application" -> “add Page" [I entered the table name x_url_table[and implementation set to classic]] -> “Next” [no tabs] -> “Next” [no for shared components] -> “Next” [Application Express for Authentication] -> “Next” -> “Create”
    When I press the run-page-icon it displays the URL like below(if I click-it it does not open webpage):
    http://127.0.0.1:8080/apex/f?p=106:1:#SESSION#:::     query country details
    http://127.0.0.1:8080/apex/f?p=108:2:#SESSION#:::     simple
    I then tried “edit-page”-> “edit-region” -> “region source” I swapped the SQL for this:
    SELECT
    replace(a.url ,'#SESSION#','&SESSION.') as url
    , a.display_text
    FROM x_url_table a
    Plus I then added a link “edit-page”-> “edit-region”-> clicked the tab “Report Attributes”->clicked the “add column link”
    Scroll down to “column link”
    “Link Text” I set to #DISPLAY_TEXT#
    “Target” choose the L.O.V option “URL”
    “URL” I set to #URL#
    Push apply button
    Press the run-page icon it displays everything correctly (see below) but when I click-the-URL it asks me again for the login screen with a user/password request.
    Can this be bypassed?
    As, I am already connected to the schema using the same username and password!
    How do I allow my current session to automatically log me in to a different page?
    link      Url Display Text
    query country details http://127.0.0.1:8080/apex/f?p=106:1:1331572188999480:::     query country details
    simple select as a test http://127.0.0.1:8080/apex/f?p=108:2:1331572188999480:::     simple select as a test
    so what do I need to do login just once!

    Steve,
    See this thread:
    Application Link
    Denes Kubicek
    http://deneskubicek.blogspot.com/
    http://www.opal-consulting.de/training
    http://htmldb.oracle.com/pls/otn/f?p=31517:1
    -------------------------------------------------------------------

  • Passing portal username and password as parameters in URL iview.

    Hi Gurus,
    i Have Created URL iView. i want to send the Username and password of portal to this url ,
    how can i access the portal username and password.
    Note: tried with j_user and j_password
    Regards
    K Naveen Kishore

    Hi,
    Jigar Oza
    Thanks for u r reply, i have tried with application integrator but there is a problem with usermapping.
    now what i have done is created HTTP System based on this system created URL iView,in application parameters username and password as MappedUser and MappedPassword every thing is working fine. user  logged in automatically when he logged into portal.
    there are tabs ,links in application .when i click on tabs or links it is assking to enter username and password of the application.
    did i do any thing wrong in creating HTTP system or URL iView,
    what are the necessary properties should be given.
    replys are highly appreciated.
    Regards
    K Naveen Kishore

  • Entering username and password in URL, 4400g, v5.2 ??

    Hi,
    I am trying to display contents of a website which requires me to login each time i exit the webpage.
    Is there a way to include the username and password in the url itself or is there a way to change the DMP web account to match the username and password which is needed for the website?
    I already tried using the format http://username:[email protected]

    Sorry, this type of functionality is not available on the DMP.
    A lot of the responsibility resides on the Hosting Site on how it
    accepts the authentication or Login credentials.  A web or app savy
    developer could probably develop a App (like for iPhone or iTouch)
    which could bring up a Virtual Keyboard which could be used with
    the DMP-4400G and a supported Touchscreen.  Then the user could
    add the credentials using the touch screen.
    Cheers!
    If this answers your question, Please take time to mark thisdiscussion answered & rate the response.
    Thank You!
    T.

  • Adobe Revel?  I have forgotten:  the URL; my username and password.  How do I ask Adobe for these items?  Thanking your reply !!!

    Adobe Revel? I have forgotten: the URL; my username and password. How do I ask Adobe for these items? Thanking your reply !!!
    [email protected]

    Dave,
    No worries, this link will help you with your issues. You do have a revel account with that email, so resetting your password should be all you need to do. Just click on the "I forgot my password" link on the web page listed below:
    http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html
    Once you reset your password, you should be able to login to revel at adoberevel.com on a browser or from one of our apps on mac, ios, win8, or android.
    Pattie

  • How do i send the username and password to yahoo web page through url

    how do i send the username and password to yahoo web page through url i.e as Query string so that my account in yahoo will open...

    If you don't mind using a library, then download and use the Apache HttpClient library. It takes care of all these details for you.

  • How do I stop Firefox from automatically filling in the spaces for my username and password on one of my password protected websites?

    Firefox is automatically entering my username and password on my Sacramento State University secure password site. I am trying to get that function stopped. I do not want my username and password automatically entered in the spaces provided for log in. I want to manually enter that information myself each time I log in to that particular secure password protected site.
    So far...I can not find a way to do that. All I find is a way to change my password. I do not wish to change my password. I just do not want it automatically entered for me.

    Thanks guys...I did as you suggested and it worked! Thanks!
    However...just want you all to know...a computer illiterate like myself had trouble finding which function on the menu bar to click on to find the options and security settings to "unclick." Eventually...I found the correct window.
    Thanks again...your advice worked!

Maybe you are looking for

  • 27'' iMac i7 w/ Mini-Displayport = connection nightmare...

    Hi guys this IS a long post , please accept my apologies & bear w/ me... when i got my 1st Intel iMac ( white, 17''.. ) i built a desk to stash away cabling & peripherals out of sight yet highly accessible/practical, i learned this pays off when i pl

  • Changing a variable in adapter class

    Hi, I've deployed hello world application and I see that there was a variable like "message". And this was defined in EPN assembly file as instance-propery.     <wlevs:adapter id="helloworldAdapter" class="com.bea.wlevs.adapter.example.helloworld.Hel

  • Color issue with PS CC 2014

    Hello, I work on Mac 10.7.5 with XRite i1 Profiler. I work my pictures with Capture One Pro 7.2.3. Since I've upgraded to Photoshop CC 2014 my colors are wrong. My photos retouched with Iridient Raw Developer or Capture One Pro appear well calibrated

  • ESS - Benefits - Open enrollment  (Concurrent employment is enabled)

    We are trying to set up ESS open enrollment. After adding/editing/changing plans --> review enrollment --> Save. On saving, getting an error "rfc_error_system_failure" on the ESS screen. Checked with ST22 for the error details. The name of runtime er

  • Idoc - Idoc Scenario - Call User-Exit

    Hi, I have an Idoc - Idoc scenario and after receiving the Idoc in the receiver system, I have to call an user-exit, what is the best way to do this? Or is it possible to do this? -naveen.