Upload images & database fields at the same time

ASP VSBasic dreamweaver 8
I can browse & upload 2 images to the server using
aspupload (browse to
images click upload)
I can populate the MYSQL database using text fields &
recordset (enter data
in fields press save to upload)
I now need to work out the following on one button click
Browse & select first image
Browse and select second image
Pass the image paths to 2 text fields
upload the images
update the database
I end up with 2 images saved eg (C:\temp\image1.jpg &
C:\temp\image1.jpg)
A record in the data base with
Time
Date
"Path to image 1"
"Path to image 2"
The reason for the above is to keep the end user interface as
simple as
possible therefore the risk of them sending the wrong data is
reduced
Cheers
SteveW

I'm not sure uploading several files at once is possible. I have yet to see anything like that.

Similar Messages

  • How to upload multiple .CSV files in the same time.

    Hi Legends,
    Can anyone please help me to resolve my issue?
    This is very urgent and critical.
    Description:
    We have two users.1)edw_user_dump
    2)prd_udm.
    We need to upload the xx.csv file at the same time for these two users in oracle forms.
    we have differentiated .csv file name based on the user names.
    the main problem is in the sql loader command the xx.csv file name is created but the data is not captured in the server (kentucky) .
    Below is my code for the upload.
    -- To delete the Part_Mast.log file from the client
    DECLARE
    pid WEBUTIL_HOST.PROCESS_ID;
    v_result PLS_INTEGER;
    v_username varchar2(30) := GET_APPLICATION_PROPERTY(USERNAME);
    BEGIN
    v_result := WEBUTIL_HOST.Get_return_Code(pid ) ;
    host('cat /dev/null > /tmp/'||v_username||'_'||'EDW_CF_IO_UPLOAD.log');
    host('cat /dev/null > /tmp/'||v_username||'_'||'"CF615 IO Upload.csv"');
    END;
    DECLARE
    l_success boolean:=FALSE;
    l_bare_filename varchar2(100):=NULL;
    v_username varchar2(30) := GET_APPLICATION_PROPERTY(USERNAME);
    BEGIN
    -- Delete the content of the log and bad file
    host('cat /dev/null > /tmp/'||v_username||'_'||'EDW_CF_IO_UPLOAD.log');
    --host('cat /dev/null > /tmp/Part_Mast.bad');
    -- Upload the data file to Application Server
    l_bare_filename := v_username||'_'||substr(:FIC_SOURCE,instr(:FIC_SOURCE,'\',-1)+1);
    l_success := webutil_file_transfer.Client_To_AS_with_progress
    (clientFile => :FIC_SOURCE
    ,serverFile => '/tmp/'||l_bare_filename
    ,progressTitle => 'Upload to Application Server in progress'
    ,progressSubTitle => 'Please wait'
    ,asynchronous => false
    ,callbackTrigger => null
    IF l_success THEN
    NULL;
    ELSE
    null;
    END IF;
    EXCEPTION
    WHEN OTHERS THEN
    RAISE Form_Trigger_Failure;
    END;
    DECLARE
    v_username varchar2(30) := GET_APPLICATION_PROPERTY(USERNAME);
    begin
    host('cat /dev/null > /tmp/'||v_username||'_'||'EDW_CF_IO_UPLOAD.log');
    host('cat /dev/null > /tmp/EDW_CF_IO_UPLOAD.bad');
    end;
    BEGIN
    DECLARE
    v_username varchar2(30) := GET_APPLICATION_PROPERTY(USERNAME);
    v_password varchar2(30) := GET_APPLICATION_PROPERTY(PASSWORD);
    v_connect_string varchar2(30) := GET_APPLICATION_PROPERTY(CONNECT_STRING);
    a_host varchar2(500);
    BEGIN
    a_host :='/tmp/'||v_username||'_'||'"CF615 IO Upload.csv"';
    host('sqlldr '||v_username||'/'||v_password||'@'||v_connect_string||' '|| 'control=/home/edw_bis/ctl/GLB_CF_IO_UPLOAD.CTL'||' '|| 'DATA=a_host'||' '|| 'LOG=/tmp/'||v_username||'_'||'EDW_CF_IO_UPLOAD.log SKIP=1 errors=200000 DIRECT=FALSE');
    dbms_output.put_line(a_host);
    END;
    DECLARE
    v_username varchar2(30) := GET_APPLICATION_PROPERTY(USERNAME);
    begin
    host('cat /dev/null > /tmp/'||v_username||'_'||'"CF615 IO Upload.csv"');
    EXCEPTION
    WHEN OTHERS THEN
    RAISE Form_Trigger_Failure;
    END;
    end;
    DECLARE
    al_id3 ALERT;
    al_button Number;
    BEGIN
    edw_user_dump.SANM_PRC_MERGE_CF_IO_UPLOAD(:global.v_plsql_res,:global.v_ins_rec,:global.v_upd_rec);
    IF NVL(:global.v_plsql_res,0) = 0 and (:global.v_ins_rec !=0 OR :global.v_upd_rec != 0 ) then
    al_id3 :=FIND_ALERT('ROWINS');
    SET_ALERT_PROPERTY(al_id3,alert_message_text,' Process Completed Successfully!'||CHR(10)||' Rows Inserted : '||:global.v_ins_rec ||CHR(10)||' Rows Updated : '||:global.v_upd_rec);
    al_button := SHOW_ALERT( al_id3 );
    ELSIF (:global.v_plsql_res IN(-1,0) or :global.v_plsql_res > 0) and (:global.v_ins_rec =0 and :global.v_upd_rec = 0 and :global.v_del_rec =0 ) then
    al_id3 :=FIND_ALERT('ROWINS');
    SET_ALERT_PROPERTY(al_id3,alert_message_text,' Process Failed. Please Download the Log File '||CHR(10)||' Rows Failed : '||:global.v_plsql_res||CHR(10)||' Rows Inserted : '||:global.v_ins_rec ||CHR(10)||' Rows Updated : '||:global.v_upd_rec);
    al_button := SHOW_ALERT( al_id3 );
    ELSE
    al_id3 :=FIND_ALERT('ROWINS');
    SET_ALERT_PROPERTY(al_id3,alert_message_text,'Please Download the Log File '||CHR(10)||' Rows Failed : '||:global.v_plsql_res||CHR(10)||' Rows Inserted : '||:global.v_ins_rec ||CHR(10)||' Rows Updated : '||:global.v_upd_rec );
    al_button := SHOW_ALERT( al_id3 );
    END IF;
    EXCEPTION WHEN OTHERS THEN
    RAISE Form_Trigger_Failure;
    END;
    DECLARE
    v_username varchar2(30) := GET_APPLICATION_PROPERTY(USERNAME);
    begin
    host('cat /dev/null > /tmp/'||v_username||'_'||'"CF615 IO Upload.csv"');
    host('rm -rf /tmp/'||v_username||'_'||'"CF615 IO Upload.csv"');
    end;
    Thanks in advance!
    Thanks,
    Madhusudhanan

    Madhusudhanan,
    A couple of observations. First; always list your exact Forms version (eg; 10.1.2.0.2 not 10g R2). In most cases, the solution is different depending on the Forms version. Second; why must you use Forms to kick off a SQL Loader process? This is a server-side process and should be initiated by a server side process. If you absolutely must use Forms to kick off the process, again we need your Forms version in order to offer any solutions. Based on your code sample, I can asusme you are at least using Forms 9i becuase you are using WebUtil.
    Is your Database and Application Server the same physical computer? If they are not, this would explain why your HOST command isn't working because HOST runs against the Application Server not the Database server.
    Third; have you considered using and External Table (if your RDBMS version supports them) for each of the files you are attempting to upload? In this instance, it would be helpful to know your RDBMS version as well. External Tables can be a little frustrating to set up the first time, but as with any new construct you use - it gets easier the more you use it.
    Fourth; are you getting any errors in your log file(s)? If so, what are the errors? Please list the full error message if you have one.
    Finally, with respects to your statement:
    Posted: Mar 18, 2011 2:30 PM - Madhu This is very urgent and critical.>
    You have to understand that forum contributers are all volunteers - this is not our full-time job. If your issue is truely urgent I suggest you open a Service Request (SR) with Oracle Support! ;-)
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • CRM2007 Factsheet - updating custom fields at the same time

    I need to change our Factsheet in CRM2007. So far, I've managed to get a new view on the Factsheet and have managed to hard-code some data into it from the Get_* method for the field in the CN** class.
    However, my requirement is to grab some data from ECC6 and populate a number of fields in the same view at the same time. I'm ok with grabbing the data but I'm not sure where to do this to populate all my fields. Can anyone offer some advice please ?
    thanks.

    Hi Malcolm,
    You can write a code similar to this in any method of the IMPL Class liek DO_INIT_CONTEXT or DO_PREPARE_OUTPUT
    or EH_ONENTER based on your reqirement. Replace the Context Node Name and Attribute Names with yours.
    DATA:lr_xxx                  TYPE REF TO if_bol_bo_property_access,
                lv_customer_type   TYPE string.
    * Get the First Entity
      lr_xxx ?= me->typed_context->CONTEXT NODE NAME->collection_wrapper->get_first( ).
      IF lr_xxx IS BOUND.
    *     Get the Vlaue in Attribute Customer Type
          lv_customer_type = lr_xxx->get_property_as_string( iv_attr_name = 'CUSTOMER_TYPE' ).
    ENDIF.
    To set the values, do this way...
    lr_xxx->set_property( iv_attr_name = 'Z_CUSTOMER_TYPE'
                                             iv_value     = lv_customer_type+0(2) ).
    Regards,
    Masood Imrani S.

  • Swap Images and URLs at the Same Time

    I would like to not only to swap images when one rolls over a thum image, but at the same time I would like to have a link swapped in the new image.  I am using behaviors to swap multiple images on a page.   So to be clear I have several thums that one can roll over.   When a thum is rolled over with the mouse a large image is swaped  in a different location on the page.   I would like to be able to attach a unique link to a URL to each of these new large images when they are swapped.

    The link below will take you to a life page. In this example, the changing 
    text below the large changing image is in fact an image that is swaped out 
    as one moves the mouse over a thum on the right side of this page. This 
    changing text image will have an "Add to Cart" button. The button could be 
    part of the text or perhaps yet another image that changes as one moves 
    over the thums on the right. Here is where I need the help. As one clicks 
    on this text image that is changing (or changing button) I would like to 
    have a link associated with this image that will add the customors choice 
    of pillows to their cart. Need help with how to associate a unique link to 
    unique URLs with this changing text image.
    Life page: http://katetroyer.com/Pillows.html

  • Warp image and path at the same time

    I have this pepper, cut out from the background with a vector mask. We need the path for cutting out the printed pepper on our plotter.
    From this same pepper we need some variations, like the pictures below (top one is original + path, bottom one is one of many variations).
    I  made a smart object from the pepper with vector mask and distorted it using a custom warp. I can rasterize the layer, but i can't find a way to bring the distorted path to the parent psd.
    How can i distort both the pixels and vector mask at the same time? So i can place different versions in illustrator without needing to redraw the vector mask for each variation.
    Thanks!

    Ok got to the bottom of this. Turns out it won't work if you have an existing Warp transformation applied to a Smart Object, and a vector mask linked to that. But it will work the first time.
    Thinking it through you realise that this is logical, because it would need to produce a kind of "compound Warp", using the existing Transform values applied to the object already, and then applying the new ones. Only one set of Warp values to the mask, and two to the Smart Object. They are not compatible operations.

  • How to access variuus database servers at the same time.

    Hi All,
    Here, i've to access more than one databse servers at the same time.
    i've to fetch some data from AS400, and some from MS-Access and SQL-server. The problem is this should be done at the same time.
    What should i do. Plz. help.
    Thx. in advance.

    what is exactly "at the same time"
    what could prevent you from opening multiple connections?

  • Query database fields are the same character but not in the same order

    Hello Oracle WIZ !
    I have a simple question regarding perhaps a function.
    I have a columns in a database with data the could have been transpose meaning the keyer might have entered. 1234 and someone else could have come in and put 2134.
    the characters are the same but the numbers are in a different order. Is there any function that would allow me to query just based on characters? hence bringing back the 1234 and 2134 rows?
    Hope this makes sense
    Thanks
    all

    Hi,
    You can use CONNECT BY to re-arrange the characters in a string in ascending order, then use that value to compare strings.
    For example, in the following sample data:
    CREATE TABLE     table_x
    AS
    SELECT     1 AS id,     '1234' AS txt     FROM dual     UNION ALL
    SELECT     2,          '4231'          FROM dual     UNION ALL
    SELECT     3,          '433'          FROM dual     UNION ALL
    SELECT     4,          '343'          FROM dual     UNION ALL
    SELECT     5,          '431'          FROM dual     UNION ALL
    SELECT     9,          NULL          FROM dual
    ;ids 1 and 2 both have txt consisting of '1', '2', '3' and '4'.
    ids 4 and 5 both have txt consisting of '3', '3' and '4'.
    There are no other matches.
    This query finds those pairs:
    WITH     cntr     AS
         SELECT     LEVEL     AS n
         FROM     dual
         CONNECT BY     LEVEL <= ( SELECT  MAX (LENGTH (txt))
                           FROM        table_x
    ,     got_ordered_txt     AS
         SELECT     x.id
         ,     x.txt
         ,     MIN (SYS_CONNECT_BY_PATH (SUBSTR (x.txt, c.n, 1), ','))     AS ordered_txt
         FROM     table_x     x
         JOIN     cntr     c     ON     c.n     <= LENGTH (x.txt)
         WHERE     LEVEL     = LENGTH (x.txt)
         CONNECT BY NOCYCLE     x.id     = PRIOR x.id
              AND          c.n     != PRIOR c.n
         GROUP BY     x.id
         ,          x.txt
    SELECT     a.id
    ,     a.txt
    ,     b.txt
    ,     b.id
    FROM     got_ordered_txt     a
    JOIN     got_ordered_txt     b     ON     a.id          < b.id
                        AND     a.ordered_txt     = b.ordered_txt
    ;Output:
    .       ID TXT  TXT          ID                                                
             3 433  343           4                                                
             1 1234 4231          2                                                

  • Photo booth not working correctly/ sound and image wont record at the same time

    Everytime i record a video on my photobooth, the sound doesnt record at all. Either its that, or it does record but it doesnt record accordingly, so the sound is ahead of the video when i play it

    Hi Mark,
    From your example, it looks like you're implementing a JSP application? I'd strongly recommend using interMedia Java Classes for Servlet and JSPs. Using this Java library has many advantages over using the Web Agent. For example, you can write a single, integrated, pure Java application, without the need to manage a separate component, such the Web Agent, to handle the multimedia data. Another advantage over the Web Agent is better support for HTML forms, including textareas, field values greater than 255 characters, and so forth. Its also much easier to provide a better user interface, where text-based and media data can be mixed in one upload form, then validated and processed in a single step.
    The Java class library ship with the Oracle9i 9.0.1 CDs. You can download a copy for use with Oracle8i 8.1.6/8.1.7 from the interMedia software page on OTN. Alongside the software download link, on this same page, you'll also find links to the README and the online Javadoc. In addition, there's also a link to the sample application kit. There's a servlet example and a JSP example, both of which implement a simple photo album application and illustrate how to use interMedia Java Classes for Servlet and JSPs to upload, process (create thumbnails) and retrieve images stored using the interMedia ORDImage type.
    Hope this helps.
    In order to better understand the variety of ways in which our customers are using interMedia, we'd be very interested in knowing a little more about your application, the interMedia functionality that you are using, and how you are developing and deploying your application. If you are able to help us, please send a short email message with some information about your application, together with any comments you may have, to the Oracle interMedia Product Manager, Joe Mauro, at [email protected] Thank you!
    Regards,
    Simon
    null

  • Changing Properties of Existing Form Fields at the Same Time

    Hi,
    I am trying to turn a paper application that has been scanned into a PDF format into a digital document that applicants can fill out on their computer. The application is 71 pages long and I have completed 3/4 of it. I probably have over 1000 text boxes that I need to change the properties on. I am trying to change the text size to auto on all of them, but I would hate to have to go through and do this one at a time. Is there a way to change the properties on all existing text boxes at once?
    I have already changed the default properties for the text boxes so that any new textboxes I create will have the proper settings.
    Thanks,
    Ravyn

    Oh, it worked! Thank you so much! You have probably saved me at least 5 hours of work!
    As innapropriate as this may be, if you were here in person I would hug you lol.
    I have 3 other co-workers who are working on this same type of project, I am going to spread the word. : D

  • How to mask and format an input field at the same time?

    Dear Experts,
    I need to have an input field, which has the following behavior:
    1. The input field accepts only number, i.e. characters other than number are ignored (not displayed on the text field).
    2. The number is automatically formatted to ###,###,### as the user enter the number.
    Example as the user enter 1-2-3-4-5-6-7, the sequence of number displayed in the text field is:
    1
    12
    123
    1,234
    12,345
    123,456
    1,234,567
    I have done the following:
    import java.awt.*;
    import javax.swing.*;
    import java.text.*;
    import javax.swing.text.*;
    class FormattedTFDemo {
         NumberFormat cf;
         JLabel jlab;
         JFormattedTextField jftfSalary;
         JFormattedTextField jftfEmpID;
         JButton jbtnShow;
         public FormattedTFDemo() {
              JFrame jfrm = new JFrame("JFormattedTextField");
              jfrm.getContentPane().setLayout(new FlowLayout());
              jfrm.setSize(240, 270);
              jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              try {
                   MaskFormatter mf = new MaskFormatter("###,###,###");
                   jftfEmpID = new JFormattedTextField(mf);
              } catch (ParseException exc){
                   System.out.println("Invalid Format");
                   return;
              jftfEmpID.setColumns(15);
              cf = new DecimalFormat("###,###,###");
              jftfSalary = new JFormattedTextField(cf);
              jftfSalary.setColumns(15);
              jftfSalary.setValue(new Integer(7000));
              jfrm.getContentPane().add(new JLabel("First field"));
              jfrm.getContentPane().add(jftfEmpID);
              jfrm.getContentPane().add(new JLabel("Second field"));
              jfrm.getContentPane().add(jftfSalary);
              jfrm.setVisible(true);
         public static void main(String[] args) {
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        new FormattedTFDemo();
    }The "First field" adopts no. 1 behavior, i.e. it does not allow any character other than numbers, but the "," are always displayed and the number displayed as I enter 1-2-3-4-5-6-7 are:
    1 , ,
    12 , ,
    123, ,
    123,4 ,
    123,45 ,
    123,456,
    123,456,7
    which is not according to behavior no. 2
    The "Second field" displayed 1,234,567 only after the focus left the text field and not while typing. Moreover, characters other than number can still be displayed and only rejected after the focus left the text field.
    I need a guide of what text field and what filter / format / mask I should use. Am I correct to use JFormattedTextField? Is the only way to accomplish this by using JTextField and create my own PlainDocument for the textfield, where
    I rebuild the displayed output after each character is entered?
    Thanks for any advice,
    Patrick

    So exactly what do you want the user to put in? and what do you want to see?
    I need to have an input field, which has the following behavior:
    1. The input field accepts only number, i.e. characters other than number are ignored (not displayed on the text field).
    2. The number is automatically formatted to ###,###,### as the user enter the number.
    Example as the user enter 1-2-3-4-5-6-7, the sequence of number displayed in the text field is:
    1
    12
    123
    1,234
    12,345
    123,456
    1,234,567The user should type only numbers and when he types other than numbers, the field ignore it.
    What I want to see, as the user, for example, types 1-2-3-4-5-t-6-7 is:
    1
    12
    123
    1,234
    12,345
    <beep / ignore> (because t is invalid)
    123,456
    1,234,567
    Thus, I need a guide of what swing components should I use to accomplish this task. If you can give me the code, that will be perfect.
    Hope you can advise me,
    Patrick

  • Is it possible to upload multiple files at the same time?

    Hi folks,
    It seems pretty trivial to implement a file upload item, but is there some way to allow selection (upload) of multiple files at the same time? Seems like this has probably come up before, but I didn't find much for solutions in my search. Any links or insight would be appreciated.
    Thanks!
    -Adam vonNieda

    Thank you both for your replies.
    @Manish - That does allow for multiple file uploads without refreshing the page, but does not allow for multiple file uploads at the same time.
    @Tony - That might be the way I end up going, although I probably should have been more specific. It would be really nice it there was a way to do a mutli-file select using the control or shift button like you can with a standard file selection dialog (if you want to copy multiple files, for example). Having a separate line for each file browser means there has to be a limit on the number that can be selected at the same time.
    Has anyone implemented a method of selecting multiple files at once, and hitting an upload button once to get them into the database?
    Thanks again Manish and Tony, very helpful.
    -Adam

  • I am trying to create a button in flash that will display 4 separate images at the same time when clicked.  I can't get the images to stay on when I take the mouse of the button.  I need the actions script code to make this happen.

    I am trying to create a button in flash that will allow the user to click on the button and 4 separate images show up at the same time.  I can get the images to appear when I click the button but they will not stay on the screen.  I need to know what code I use to make the images stay once the button is clicked, then I need to know exactly where I place that code.  It does not appear to be possible to add the action code to the buttons layer since each time I add a new layer I just get another "up" "over" "down" and "hit" line.
    Thank you in advance
    AP

    It is not clear how you are trying to realize this from your description.  If you are trying to create this within a button symbol it will not work.  Explain your approach and if there is code involved, show what you have so far.

  • MySQL Database Connection (two databases at the same time)

    I have never had to open more than one MySQL database from within the same website before, but I do now.  The website I have is designed where all the content comes from within the main database.  I am building an Inventory system that I want within it's own database, in the event I would ever need to move the application to another server or something, I don't want this data residing in the main database.
    Currently, I open the database connection from within a file called "common.php" that resides in a directory called "lib" that can be accessed from the root directory.  Below is the proposed code that would be placed within the "common.php" file:
    // Define Database Variables
    $dbserver = "127.0.0.1";
    $dbuser  = array('clevelan_user1', 'clevelan_user2');
    $dbpass  = array('P@ssw0rd', 'P@ssw0rd2');
    $dbname  = array('clevelan_database1', 'clevelan_database2');
    // Start Session
    session_start();
    // Connect to Databases
    connectdb($dbserver, $dbuser[0], $dbpass[0], $dbname[0]);
    connectdb2($dbserver, $dbuser[1], $dbpass[1], $dbname[1]);
    // Database 1 Connection
    function connectdb($dbserver, $dbuser, $dbpass, $dbname) {
    // connects to db
      global $connection;
      $connection = @mysql_connect($dbserver, $dbuser, $dbpass) or die ("could not connect to server");
      $db = @mysql_select_db($dbname, $connection) or die ("could not select databsase");
      return $connection;
    // Database 2 Connection
    function connectdb2($dbserver, $dbuser, $dbpass, $dbname) {
    // connects to db
      global $connection2;
      $connection2 = @mysql_connect($dbserver, $dbuser, $dbpass) or die ("could not connect to server");
      $db2 = @mysql_select_db($dbname, $connection2) or die ("could not select databsase");
      return $connection2;
    //End of Code Within the "common.php"
    From within any page of the website, I want to access both connections by placing an include at the top of each page:
    include_once("lib/common.php");
    Currently, when I run the code above, any page within the website (the home page) provides error messages with regards to database connectivity (the pages are looking for there content from within the second database.  It's as if the second database is the only database seen by the website.
    I need help figuring out how I can have two MySQL databases open at the same time (the second database will only be open for short periods of time and then closed).  But the main database is always open.

    Create one project using one copy of the exact tables.
    create 2 different sessions.xml files each pointing to the same project. Set the login information in the sessions.xml files.
    That should work fine.
    Peter

  • Posting and inserting at the same time

    How do I post the values into a database and at the same time
    get displayed on the next page using the post method. At the moment
    the values just get inserted into the database, but do not get
    displayed on the next page, what is the code behind doing this?
    Thanks

    >Opps, hang on. I'm trying to acheive your second option.
    >Show the form variables on the next page as well as
    inserting into the database.
    First off, I don't do php so I won't be able to help with
    script syntax, but I can give you an overview of the program flow.
    Now I will assume that you have 2 pages; one that contains
    the form and another that has the form processing script. You could
    actually have a single form that self posts, but I'm guessing that
    you are not doing that.
    When you submit the form, the form fields get posted to the
    php page that inserts them into the database. I don't know the php
    syntax to retrieve the posted form elements, but I assume you do
    since you already must be doing this to get your insert working.
    Once the insert routine on the page has completed, you write
    out html to the page that includes the form field values. If you
    want, you can just copy the form from the previous page to use as
    the basis for the display page. Just insert the form contents with
    the php variables holding the posted field values.
    If you're still not clear, it might be helpful to provide a
    url so we can see exactly what you are trying to accomplish.

  • WDS 2012 R2 - Cannot PXE multiple clients at the same time

    Hello All,
    This is my first post on here so I apologize if this is the wrong place.  I work for a school district and we are implementing WDS 2012 R2.  We've been extremely satisfied with the speeds and ease of use through unattend files.  However, for
    the past month I've been looking for a possible answer to a problem that has plagued us from day one of implementation.
    So here's the problem:
    I have a stand alone WDS server which is not a domain controller and is not our DHCP server.  I have IP helpers and broadcast forwarders setup on the network.  As well as option 66 and 67 in DHCP.  So far so good right!
    Well that's partially right.  When we boot one client at a time to the WDS server.  Everything works as intended.  We can TFTP the necessary files from the WDS server.  Everything boots up and we're off and running.
    However, if we boot up two or more clients at the same time.  The WDS server never responds to the traffic.  The clients get their DHCP information.  They start the referral and download from the WDS server, but get no response.  I'm
    really hoping that someone on here would have some insight of something I can try.  I've about exhausted my list of peers and contacts.  They're all stumped as well and were smart enough to stay with 2008 WDS.
    I would prefer to stick with 2012 R2 since it's setup and working for the most part.  With only this one hiccup.
    Thanks in advance for any guidance!

    Hello Daniel,
    I appreciate the reply and apologize for taking so long to get back to this.   Things have been a little hectic over here.
    I have tried everything on this forum and I am still unsuccessful in PXE booting multiple clients at the same time.
    Multicast is enabled on the server, and it works for the clients.  However, as stated in the original post.  I cannot boot multiple machines at the same time.  I can start them from the image selection screen around the same time though.  So,
    that appears to be working fine.

Maybe you are looking for

  • Why does Itunes sync my purchase transfers to the wrong hard drive?

    I'm running windows 7 with a 64gb SSD boot drive and 1tb data drive. My boot drive is almost completely full. I installed itunes on my data drive and set the preferences to sync media to the data drive as well. I plug in my old ipod to tranfer purcha

  • My bill shouldn't be that high!!!!!

    I upgraded to a free phone. when my shipment came in you also included a bloothtooth costing 99.99. I ended up paying 172. and some     change.  now my bill is almost 300.00 because you never deducted the $172. and change, darienne and Joseph are the

  • Hi, How do i transfer information from my powerbook g4 to macbook

    Hi, I have a powerbook g4 and want to transfer info to my new macbook pro. Ive already set up the macbook and now what is the next step for migration?

  • DBTools and SQLNET Client on Oracle 9i Linux for OS/390

    We have been trying to evaluate Oracle 9i using the developers release and my database guy has the following questions. "I've been unable to access [Oracle]using any of my database tools on my workstation. In the past, there has been no incompatibili

  • Passing Parameters in URL problem

    I have a page where I do some processing. I have created a branch on that page back to the main report page for the app. I have the following on the "Edit Branch" page: Point Branch Point: On Submit: After Processing... Sequence: 10 Action Target typ