As a Seller, how can I hold a payment until customer information is verified?

Hello, I am going to be taking payments from students for software online. I only want to sell to students and need to verify their information before processing their payment. My current order process has me taking payment and the information at the same time. Is there a way in PayPal I can hold the payment processing until I verify the information? If the information is verified i would process the payment, if not I would cancel. Thanks for any help. Chris

Try              
Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
However, after your remove the Apple software components also remove the iCloud Control Panel via Windows Programs and Featurs appin the Window Control Panel. Then reinstall all the Apple software components

Similar Messages

  • How can I hold values in a variable

    I am looking for someone to point me in the right direction - I'm somewhat new to Java, but am a dinosaur from the mainframe, and sometimes get frustrated at the amount of effort I need to go through to do something that would have been simple on the mainframe...
    I have a Swing based GUI application that I am trying to write - it uses Swing components to build a GUI interface and present data to the user. This data comes from a flat file that is XML based. The structure is as follows:
    "Main" class (establishes the GUI, etc.)
    |
    Specific class (establishes a specific page in the GUI; there are many of these)
    |
    XML Reader class - uses parsing functions to read the file; stores data into an array
    The problem is that I make an initial call to the method that parses the XML file and builds the data in the array. I can see this through my debugging tool; it is confirmed in tracing messages I have built into the program.
    I then return to the specific class, and it wants to do specific things to build the GUI pages, based on customer input. So for example, I may want to go and get information on the third record in the XML file - I pass back an index value, and it should return information. Unfortunately, the array is now empty when I return to extract the values.
    How can I hold the values in the array so that I can return and extract (and ultimately update) the values when I need them. There are initially about 25 different arrays - some Integer, Some Strings, and some String buffers. I have seen an indication that I could implmenet Serializable to do this, but it seems that this is a lot of I/O - parsing the data, then serializing it back to disk, and then reading it back every time I want to access it. I have thought about doing it through a data base, but I don't have a DBMS available currently, and this is possibly beyond my level at the moment.
    I appreciate any suggestions that you might have.
    Jerry

    The xml file that I have is something that I
    established my self. It follows the standard xml
    conventions, just straight <tag field="xyz" /> stuff.
    About as fancy as it gets is to have free form text
    t lines where I need to capture the information in a
    String buffer out of the parser. The format of the
    tag is like this:
    <comments>
    multiple lines of text
    follow...
    </comments>In that case, depending on your utilization of the data(if this is not intended to carry data around different systems) you can just serialize it to the file and after retrieve it using XMLEncoder and XMLDecoder from java.bean package.(Have a look on the javadocs for J2SE)
    If your XML is intended to be passed around different systems, you can use JAXB to bind the document to a object model, instead of parsing it yourself.
    I sem to be having issues with passing control
    between classes - As I understand it, values that you
    establish in one class must be passed along to the
    caller - there doesn't seem to be a conceopt like a
    "data section" where data can be stored for access by
    all classes that need access to it. Gosling fobid it!!!!!
    Or is there, and
    I just haven't discovered it yet.No you won't, happily there is no such a thing, once you got the hang of OO principles and design, you will see that this is not only dangerous as it adds too much complexity to the system for those mantainig the code.
    If you want data to be acessed througout the system, uniquely, there are means to do that, like Singleton pattern(GoF, 127) and Common Object Registry pattern(Software Architeture Design Patterns in Java, 423)
    But I think this is not the solution to tyour problem, as far as I understand, you get data from your XML file, that seems to have a structure repeating over the file, and you want to display it to your user.
    The firsting I would advise is to not use arrays as carriers for your data. Instead use objects that represent your data stored in collections, for example, if you have a xml file like this:
    <people>
       <person>
             <name>Jeff</name>
             <age>6</age>
       </person>
       <person>
             <name>Rage</name>
             <age>36</age>
       </person>
       <person>
             <name>Rene</name>
             <age>666</age>
       </person>
    </people>Then, have a class that hold the data for person:
    * @(#)Person.java     v1.0     02/03/2005
    import java.io.Serializable;
    * Class that stands for a person data.
    * @author Notivago     02/03/2005
    * @version 1.0
    public class Person implements Serializable {
         * The class implements java.io.Serializable, as it is
         * required for the class to be a java bean.
         * The proper way to have classes offering its data
         * to the external world is by having get/set methods
         * that handle acess to internal fields.
         * Never make the class fields public.
         * The age of the person this class represents
        private int age;
         * The name of the person this class stands for.
        private String name;
         * Vanilla constructor for the class, as required for classes to be
         * java beans. Initializes the class with age 0 and a empty name.
        public Person() {
            super();
            age = 0;
            name = "";
         * Convenience constructor that allows your bean to be created
         * with age and name set.
         * @param age
         * @param name
        public Person(int age, String name) {
            this.age = age;
            this.name = name;
         * Acessor for the age of the person.
         * @return
         *           The age.
        int getAge() {
            return age;
         * Mutator for the age of the person.
         * @param age
         *           The age to set.
        void setAge(int age) {
            this.age = age;
         * Acessor for the name of the person. 
         * @return
         *           The name of the person.
        String getName() {
            return name;
         * Mutator for the name of the person.
         * @param name
         *           The name of the person.
        void setName(String name) {
            this.name = name;
    }Get the data from the XML document, with JAXB for example, and for each person found, create and populate a bean with the data, store the bean in the colection and pass it to the user interface to be displayed. (Look at the java.util documentation)
    If you are into doing GUI, you will want to have a look in the MVC pattern, Model 2 pattern and the Swing "Separable Model" Architeture, so you learn how to make reusable decoupled GUIs. (search for MVC and Model 2 and look at the "How to use Swing Components" Documentation)
    On using swing, you can get the collection of beans and bind it to lists, tables or any other presentation form you would want. Look at the swing tutorial on how to use data model to boost your GUI.(Look at "how to use swing documentation")
    http://java.sun.com/docs/books/tutorial/uiswing/components/index.html
    But here goes 2 cents of opinion, start by the basic tutorials:
    http://java.sun.com/docs/books/tutorial/
    especially the ones on Object Orientation:
    the way things are done in Mainframe if very different as they are done on a OO language, before learning the language, you will have to learn a new mindset, so after reading the basic tutorials, it would be good you search for some good books that focus on OO thinking, a good one that does that and teaches java at the same time is:
    Head First Java
    It is a good and funny reading.
    Head First Design Patterns
    Also have a lot of good insights on OO and it comes with some patterns as a bonus.
    I understand you see this all as overcomplicated, bu once you get the hang of it, you will see that there this only another way to see things and the stability and reusability attained is worth of the effort.
    May the code be with you.

  • How can i hold a spot in a clip, let the audio continue for a moment and then resume the clip and audio together?

    how can i hold a spot in a clip, let the audio continue for a moment and then resume the clip and audio together?

    you want to use the retiming tool. you can select what you want to hold, then use the "Hold" command (shift-H) to create a single frame of a default duration, which you can then change to whatever length you want by dragging the retiming handle.
    Here's the page in the help manual that describes the hold feature in detail:
    http://help.apple.com/finalcutpro/mac/10.0/#ver4c2173c9

  • How can I hold the public IP on a specific profile on the asa 5510

    Hi Guys
    How can I hold the public IP on my cisco client VPN NAT session so nobody else can use it? I have a cisco asas 5510
    inside is 172.10.20.86
    public 166.245.192.90
    Did I need to call my ISP?
    thanks

    sorry
    I willl like to lock or reserve the public IP  address from a NAT session on the ASA vpn.
    that way a sepcific profile and public IP can be use all the time. I know how on the inside IP but not on the public IP.
    it make sense

  • I phone purchased online  did not boot and it is said to have been locked through i cloud and i an unable to contact the seller how can i activate the phone

    I phone purchased online  did not boot and it is said to have been locked through i cloud and i an unable to contact the seller how can i activate the phone

    Unfortunately, your best bet is to obtain original proof of purchase and escalate your issue for assistance in detaching the Apple ID from that device. If your unable to get the proof of purchase, expensive paperweight . Did you get it through amazon?? Because I just got one through amazon....
    <Edited by Host>

  • How can i delete my payment information in apple id cause they charging me evrytime im updating

    how can i delete my payment information in apple id cause they charging me evrytime im updating

    If you mean the 'charge' when updating your card's details on your account then that is only temporary, your card issuer should remove it after a few days or so. It's applied to check that the card details are correct and valid and that it's registered to exactly the same name and address as on your iTunes account.
    Store holding charge : http://support.apple.com/kb/HT3702
    If you want to remove your card's details then if you are doing it on your iPad try tapping on your id in Settings > iTunes & App Store and select 'View Apple ID' on the popup - that should give you a payments link on your account's page. Or on your computer's iTunes you should be able to edit your payment info by going into the Store > View Account menu option and logging into your account, and on your account's details page there should also be a payment link.
    Changing payment info : http://support.apple.com/kb/HT1918

  • How can i view and apply new custom patterns without going to preset manager? i had this facility but have now lost it

    how can i view and apply new custom patterns without going to preset manager? i had this facility but have now lost it.  i design patterns but am fairly new to photoshop. i used to be able to click on the drop down menu in patterns in the 'fill' box but cannot now do this.  have i inadvertently clicked on something to turn this facility off?  i now have to go to 'preset manager' and manually move my new design to the first box and click 'done' so that i can use it.

    Which version of photoshop are you using?
    After you define a custom pattern it should be added to the bottom of whatever patterns are already loaded.
    For example, if you define a custom pattern and then go to Edit>Fill>Pattern, the newly defined pattern should have been added to the existing loaded patterns.

  • How can I add a new message(custom text message) to the holiday approval em

    How can I add a new message(custom text message) to the holiday approval email-notification sent to the manager?
    TIA

    The answer is 'not very easily', unless the information you want to display is the employee's leave balances. In 12.1.3 Oracle have delivered functionality that allows you to include the leave balances in the approval notifications out-the-box, ie, without customization.
    For any other information you're probably going to have to customize the standard delivered HRSSA workflow. Within this workflow, the Leave of Absence functionality uses the Notify Approver (Embedded) (HR_APPROVER_NTF) notification. The body of this notification is set to the Notify Approver (Embedded) (HR_NTF_EMBEDDED_REGION) attribute. This in turn defaults to:
    JSP:/OA_HTML/OA.jsp?OAFunc=-&HR_EMBEDDED_REGION-&NtfId=-&#NID-
    So essentially you can change the HR_APPROVER_NTF notification. The problem with changing this notification is that it's generic - it's used for all SSHR functions and not just Leave of Absence. That means you have to make other, more substantial, customizations to the workflow to ensure the changes you make only applies to LOA.
    The other option is to personalize the review page (ie, the region referenced in &HR_EMBEDDED_REGION) to include whatever messages you want. But that means they'll appear on the Review page and all LOA approval notifications and that might not be what you want.
    It's usually better to live with what Oracle deliver and find an alternative solution! What's the content of the message you want to include?

  • Hello, How can I edit or delete a custom label in the contacts list on iOS 7.0.3 on iPhone 4S ?

    Hello, How can I edit or delete a custom label in the contacts list on iOS 7.0.3 on iPhone 4S ?
    i need it so muchhh!

    Sort of depend on what you are trying to do precisely. In Edit mode, if you tap on any label, you will be given a list of options, plus an Add Custom Label option near the bottom of the list

  • How can I edit or delete a custom label in the contacts list on iOS 7 on iPhone 4S ?

    How can I edit or delete a custom label in the contacts list on iOS 7 on iPhone 4S ?

    Alfre311 wrote:
    I've been trying to find a way to do this since I updated to IOS 7, and I've just found the solution/explanation, even tho is a bit heavy to carry out.
    IOS 6 creates custom labels and save them giving you the option to delete them.
    IOS 7 creates custom labels but don't save them, so there is no need to have the option to delete them.
    But here comes the problem, if you have some custom labes saved in you Iphone / Ipad with IOS 6 and you update it to IOS 7, the device will keep those labels saved, but you wont be able to delete them.
    I realized this by going to contacts on Icloud. There those labels that I had on my devices weren't there. So simply restoring your device and configuring it as a new one to later sync your Icloud Contacts, will solve the problem.
    I know this post is old, but I might just try this with iOS 8. I have outdated custom labels that annoy me, because I still seem them in the list as options. If I get desperate enough, I may try your solution.

  • How can i configure advance payment to vendors through cash jounal

    how can i configure advance payment to vendors through cash jounal pls its urgent for me kindly help me out

    HI,
    I think u need not configure anyting new for this, you can use the existing Business Tran. Type K and rename it as Vendor Advance for separate identity. You can do the normal FBCJ posting.
    But doing this you will not have separate identity for the Advances paid.
    Thanks
    VK

  • How can we maintain multiple payment terms for a customer

    how can we maintain multiple payment terms for a customer?

    Hi,
    You can leave the Payment terms field in the sales area data tab blank. and you can enter the payment terms at line item level while creating the sales order. By that you will achieve multiple payment terms for the same customer in the same sales order. but the invoice will be split by standard SAP based on the payment terms.
    Also difference between the "Payment Terms" field in Company code tab and the sales Area tab is.
    Company code tab payment terms are used only for the documents that are posted directly in FI module. for example credit and debit memos posted directly in FI and as a leading practice this should always be "payable Immidiately"
    Sales area Tab payment terms are the one which are copied on to the sales order header data which are valid for all the line items unless you specifically mention different payment terms at line item level.
    Regards,
    Shantanu

  • I plugged my iphone 4 up to itunes and it reset my phone to the factory settings and removed all of my emails, texts, appd and contact list.  How can I retore my previous settings and information?

    I plugged my iphone 4 up to itunes and it reset my phone to the factory settings and erasaed all of my emails, texts, apps, and recently added contacts.  How can I restore my previous settings and information?

    iTunes doesn't just restore a phone to factory settings all by itself.  You must have selected the incorrect button.
    In any case, if there was a previous backup of your phone, you can restore your phone from this backup.  Any new data you added to your phone since this backup is gone.
    If you have no backup, then your data is gone.

  • How can i put FPM Buttons in custom FPM Views.

    Hi,
      How can i put FPM Buttons in custom FPM Views.
      Couldn't locate them in web dynpro layout or FPM Views and application in Portal Content.
    Thanks,

    Hi,
    you should describe a little bit more what you want to do (e.g. navigation buttons or buttons in containers like e.g. in ESS Address). FPM usually has a quite high reusability so button components are often reused. In case there is already a button component that has everything you need you can just use the self-service administrator to add this view to the right perspective in your FPM application. In case you talk about those buttons that are in the Overview screens than those buttons are dynamically generated.
    In case you just want to have your own button then create this button and fire an FPM event from it. You need to add this event to the FPM view configuration in the self-service administrator. Alternatively you can create a button component and reuse it later.

  • ITunes randomly stops playing purchases that have previously viewed on the same hardware. It has an error message about HD. How can this issue be resolved?  What information is available besides the "learn more" option that does not deal with the problem?

    iTunes randomly stops playing purchases that have previously viewed on the same hardware. It has an error message about HD. How can this issue be resolved?  What information is available besides the "learn more" option that does not deal with the problem?
    Many people have the same problem. However, there is little or nothing readily available to users. This problem has existed for two or more years. Does anyone have anything to offer about this disturbing problem?

    Thanks for the suggestion kcell. I've tried both versions
    9.0.115 and 9.0.124 and both fail with the policy permission error.
    I also tried with and without your crossdomain.xml file but
    with the same result. It looks like this file is intended for URL
    policy, instead of socket policy. Recently Adobe separated the two.
    When I run with the files installed on my dev PC, it does
    work, which makes sense because the flash player isn't loaded from
    an unknown domain.
    I did get one step closer. If a crossdomain.xml in the server
    root exists and the socketpolicy file is loaded from the app folder
    then the first two warnings disappear. The logs now show:
    OK: Root-level SWF loaded:
    https://192.168.2.5/trunk/myapp.swf
    OK: Policy file accepted: https://192.168.2.5/crossdomain.xml
    OK: Policy file accepted:
    https://192.168.2.5/trunk/socketpolicy.xml
    Warning: Timeout on xmlsocket://192.168.2.5:843 (at 3
    seconds) while waiting for socket policy file. This should not
    cause any problems, but see
    http://www.adobe.com/go/strict_policy_files
    for an explanation.
    Warning: [strict] Ignoring policy file with incorrect syntax:
    xmlsocket://192.168.2.5:993
    Error: Request for resource at xmlsocket://192.168.2.5:993 by
    requestor from https://192.168.2.5/trunk/myapp.swf is denied due to
    lack of policy file permissions.
    Which basically says, everything is okay, but you stay out
    anyway.
    PS: I found the XML schema files here:
    http://www.adobe.com/devnet/flashplayer/articles/fplayer9_security_02.html
    and the socket policy schema:
    http://www.adobe.com/xml/schemas/PolicyFileSocket.xsd.
    UPDATE: When serving up the policy file on port 843 using the
    example perl script then the socket connection seems to be accepted
    and the connect succeeds. After that flex hangs trying to logon to
    the IMAP server.

Maybe you are looking for

  • How to get Numric value from a Char field in the database?

    I have the following values in a column in Database. COMP GRADE CANC CANCELLED Comp Complete INCOMP NC NS 85% 79 88 .... etc.... I have to take the value from this field if it is a Numeric other wise I have to ignore that value. Please let me know ho

  • Adobe Reader 11 stopped working and now will not install

    For some reason my Adobe Reader 11 stopped working today when I tried to use it so I figured I would try to re-install it. Well, re-installing it helped none. The same error keeps re-occuring. Here is a screenshot of the error message I keep getting:

  • CS6 very slow saving large files

    I have recently moved from PS CS5 to CS6 and have noticed what seems to be an increase in the amount of time it takes to save large files. At the moment I am working with a roughly 8GB .psb and to do a save takes about 20 minutes. For this reason I h

  • Attachments opening twice

    Just noticed this today... when I open attachments from Mail now, it opens them twice automatically. Didn't do this before the latest Java Security update.

  • Adobe reader 11 sous windows xp

    lorsque j'installe adobe reader 11 je ne peux ouvrir mes ficiers pdf