Hi how can i find i tunes gift cards and certificates in order to create my account?

hi how can i find i tunes gift cards and certificates in order to create my account?

hi,
1.You can write your own realm in 61 which can plugged for your security
calls.
2. once you write your ownrealm.. you can access it through weblogic
api/ur api..
thanks
kiran
"Richard Koudry" <[email protected]> wrote in message
news:3dd0d081$[email protected]..
Dear Colleagues,
I am currently developing a J2EE application using WLS 6.1.
My team and I have to implement a security requirement to suit ourcompany's needs.
>
The security requirements are that, users' password need to be aged (30days maximum) and we need to provided a GUI front-end (JSP) to allow users
to change their password when these expire after 30 days.
>
Our internal contacts in the company, have already taken the lead to findout about whether we will be able to use the WLS 6.1 platform to do this and
the answer we got back, was.
>
Now we need to develop our own security module.
I have 2 questions:
1. How can we turn off the WLS security in order develop our ownapplication-based security module?
>
2. How can we develop a security module that allows us to age users'password and provide them with facilities to change their passwords when
these expire?
>
At the moment, we are using the default BEA WebLogic login.jsp page andthere some configuration in the web.xml for this. I will be grateful if you
could advise me on how to turn this default security off so that we can
write our own security module.

Similar Messages

  • HT2736 how can i get a itunes gift cards and itunes gifts code ?

    how can i get a itunes gift code?

    Whether you can get an iTunes gift card depends upon what country that you are in - they are not available in all countries and they are country-specific, they can only be used in their country of issue and only onto accounts that are based in that country. If they are available in your country then you might be able to get them from Apple, or from electrical stores, supermarkets etc

  • HT1541 I live in Canada and have a Canadian iTunes account. How can I purchase an iTunes gift card for a relative who lives in another country?

    I live in Canada and have a Canadian iTunes account. How can I buy an iTunes gift card for a relative who lives in another country?

    Sorry, but it's quite possible that you can't. If there's an Apple Store in the country to which you want to give the gift, you can call them ask ask if they'll accept a Canadian credit card for a gift card purchase to be shipped to an address in the relative's country. If they won't, then you'd have to find an independent reseller in that country that carries iTunes gift cards who could accept your credit card, and there may be none.
    Regards.

  • HT201209 how will i find out my gift card id?

    how will i find out my gift card id?

    I'm not entirely sure what you are asking, but if you've bought an iTunes gift card then it will be on the card, or if somebody has emailed youa gift then it will be in the email - you can then redeem it as per the page that you posted from.

  • How can I use an iTunes gift card to rent a movie on Apple TV?

    How can I use an iTunes gift card to rent a movie on Apple TV?

    No - you need a credit or debit card
    No - there are no promo codes currently
    LN

  • On my ipod, how can i unredeem an itunes gift card because i had to do these security questions i forgot the answers to. I NEED HELP!!!!!!!!

    on my ipod, how can i unredeem an itunes gift card because i had to do these security questions i forgot the answers to. I NEED HELP!!!!!!!!

    Maybe:
    How to manage unused iTunes Gift Card and Gift Certificate balances
    Have you tried this to try to reset the security questions.
    See Kappy's previous discussion.
    HT5312 How to recover security...: Apple Support Communities
    Contact iTunes by:
    Contact iTunes

  • HT204053 How can I purchase an iTunes gift card using Apple Store gift card

    How can I purchase an iTunes gift card using Apple Store gift card

    You can't, Apple does not allow it.

  • HT2736 how can i purchase an itunes gift card for myself

    how can i purchase an itunes gift card for myself

    Oldbiker, the easiest way is go to a retail store that has them, and buy the denomination(s) that you want.

  • HOW CAN I REDEEM AN ITUNES GIFT CARD IN THE US BOUGHT IN CANADA?

    HOW CAN I REDEEM AN ITUNES GIFT CARD IN THE US BOUGHT IN CANADA?

    You cannot.
    Gift cards are country specific

  • How can I find out user id who has deleted payment order

    Issue : After payment run, the required information has been sent as Idoc to the bank. So, we know the payment order number.   We observed that another payment run also has picked up this vendor invoice and made payment.
    Usually Payment Sent will be marked X until the related information comes in the form of bank statement upload and this amount gets cleared.
    We noticed that bank has made two payments for this amount to this vendor on different dates :- a) when the payment order supposed to be paid as per the payment terms and b) when second paymnet run paid the amount [ this time it got paid directly as there is long due amount ].
    From SAP APP angle, both the payment run worked fine and also the calcaltion of payment terms as well.
    So, we come to conculsion that someone has deleted the payment order from the system. Thats the reason this invoice got picked up by 2nd APP and paid the amount.
    Where we could not find the related entry in REGUH/REGUP tables for this payment order and no document changes.
    Question: How can I find out user id who has deleted payment order. Appreciate any clue / answer for this issue please.
    Thank you
    Sri

    Hello,
    Not sure about deletion logs. =/
    Idea:
    What if an error occured during the first payment? Have you checked sm13 to check if any update termination occured in the payment program?
    Regards,
    Renan

  • How can I find the specific channel name and modify channel name in automatically in VBS?

    How can I find the specific channel name and modify channel name in automatically in VBS? (DIAdem 9.1)
    I would like to change channel name = "speed01" ... "speed10"  to  channel name = "velocity01"..."velocity10.
    martino

    Hello Martino,
    this script will help:
    Option Explicit
    Dim i
    Dim n
    For i=1 To 10
    If i < 10 then
    n = CNo("speed0" & i)
    Else
    n = CNo("speed" & i)
    End If
    If n > 0 Then
    If i < 10 then
    ChnName(n) = "velocitiy0" & i
    Else
    ChnName(n) = "velocitiy" & i
    End If
    End If
    Next
    Matthias
    Matthias Alleweldt
    Project Engineer / Projektingenieur
    Twigeater?  

  • How can if find the most repeated character and number ???

    Hi,
    I have a question. For instance, if we have a text file which contains:
    aaabbbhhhhhhtttttsjs12366
    How can i find the most repeated character and number. I have to add this code to the following program:
    I will aprreciate if you can help.
    Regards,
    Serkan
    import java.io.*;
    public class LineLen {
         public static void main(String args[]) throws Throwable {
              final String filename = "deneme1.txt";
              BufferedReader infile = new BufferedReader(new InputStreamReader(new FileInputStream(filename)));
              String line = infile.readLine();
              int linenum = 0;
              while (line != null) {
                   int len = line.length();
                   linenum++;
                   System.out.print(linenum + "\t");
                   for (int i = 0; i<len; i++)
                   System.out.print("*");
                   System.out.println("");
                   line = infile.readLine();
    }

    For a small alphabet like English, array migt be used:
    //in a for loop
    ++array[s.charAt(i)];For a big alphabet like chinese, HashMap might be barely used:
    map.put(s.charAt(i), increment(map.get(s.charAt(i))));
    // increment is a user defined method, possibly for an Integer object,
    // that returns a new Integer object

  • How can i find differnet output types for a given sales order ?

    hi all,
    answer my question please........?
    how can i find differnet output types for a given sales order ?

    hi
    check in NACO transaction if you have assigned access sequence to your output ytpes and if you have ticked checkbox "Access to output conditions" - otherwise it will not even try to access condition records.
    From help :
    Access to output conditions
    Indicates whether the system determines the output by searching for valid
    condition records.
    Procedure
    If you want the system to search condition records for the appropriate
    output, mark the field.
    Note
    If you leave the field blank and if you are processing sales, shipping,
    or billing documents, the system automatically determines output from
    information stored in the customer master record.
    regards
    ravish
    <b>plz reward points if helpful</b>

  • I forgot to answer account security, so how can I find answers or change questions and new answers

    I forgot to answer account security, so how can I find answers or change questions and new answers
    Can you help me ,please???

    From a Kappy  post
    The Three Best Alternatives for Security Questions and Rescue Mail
       1. Use Apple's Express Lane.
    Go to https://expresslane.apple.com ; click 'See all products and services' at the
    bottom of the page. In the next page click 'More Products and Services, then
    'Apple ID'. In the next page select 'Other Apple ID Topics' then 'Forgotten Apple
    ID security questions' and click 'Continue'. Please be patient waiting for the return
    phone call. It will come in time depending on how heavily the servers are being hit.
    2.  Call Apple Support in your country: Customer Service: Contact Apple support.
    3.  Rescue email address and how to reset Apple ID security questions.
    A substitute for using the security questions is to use 2-step verification:
    Two-step verification FAQ Get answers to frequently asked questions about two-step verification for Apple ID.

  • Can we find the material code against whom no purchase order is created.

    Guru's
    Can we find the material code against whom no purchase order is created.
    I want to collect only those material against whom no PO is created.
    Plz guide how to do so?
    Regards,
    Vibhuti

    Hi,
    Table EKPO id Purchase order detail table,
    write a select query on this table, if that particular material is ther in ekpo it means PO is done for that.
    Take one internal table and select all materials from MARA table , then loop it
    and for each material got the table EKPO.
    select single * from EKPO where matnr = wa-matnr.
    if sy-subrc <> 0.
    append wa to it_table.
    endif.

Maybe you are looking for

  • Is there a way to find out what each file in core does?

    I would like to know if there is a way to know what the packages in [core] does (i.e., even during install)? If I re-install, I only want to install the packages that I need. There are some packages that I understand from experience, such as Wifi for

  • Generally positive impression...

    After some frustration with Firefox, I decided to try Safari for the first time. I'm a PC user because I like to tinker (in fact, am a professional tinkerer), and demand a computer conforms to me rather than the other way around. Consequently, a Mac

  • How to view defination of already defined packages ?

    Hi, how can i view defination of a already defined package? Its spec and its body?

  • Exception Message Issue

    Hi, Can we create a new exception message so that it appears in MD04 screen. If yes, where we can do this configuration in SPRO(please mention the configuration path) and what information is required to configure this new exception message similar to

  • Fault Policies SOA 11g

    Hi All, Presently my Fault Policies file looks like <?xml version='1.0' encoding='UTF-8'?> <faultPolicies> <faultPolicy version="2.0.1" id="RejectedMessages"> <Conditions> <faultName xmlns:rjm="http://schemas.oracle.com/sca/rejectedmessages" name="rj