Flatten XML bug with unit variables in classes

Hello

I just spent 5 hours trying to understand why some of my data class kept itself set to zero.  It turns out that the part that kept resetting is the part that had a variable of the unit in it, and who fails to load correctly of the VI XML Unflatten.  It works very well if it's just a cluster, it is to be in a class that is the problem.

I attached the zip file with the example of screw

Can I ask someone with LV 2014 try this to see if the bug exists?

Right now we are running 2011, but we anticipate a change of scale of the company until 2015, as soon as he gets out (and so, 2011 drops of extended support).  I would like to know if I can just wait for the upgrade and then it will work, or if I need to redo everything ~ 15 variables in classes with units on them that I had counted on the loading and saving by using built-in XML functions.

For the benefit of future people who have the same problem and find this post, NOR contacted me and told me fact knowledge as a workaround if a digital solution is placed in a cluster in the private class data control, it will flatten and unflatten successfully.  I have confirmed that it works by adding a 3rd member to my example.

Tags: NI Software

Similar Questions

  • Bug with the 'Variable width tool. "

    I tried the new CS6 Illustrator and using the Variable width tool, I found this was not accurate, at least the anchors appear somewhere else where I'm clicking on...

    I uploaded a picture. and a videoto clarify.

    It is a line with no other "width anchors", after pulling the handle, the anchor appears in another place where I just change the width...

    AI bug.jpg

    Yes, but as shown in your video, when all is said and done, you have the exactly width anchor point where you originally placed the cursor.

    I noticed a 'ghost' width anchor point appearing when I tested, but it disappears as soon as I move the cursor.  The anchor of width is created exactly where I initially put it-in this case, at the intersection of the guidelines:

    Ken

  • The syntax Checker bug with long PHP functions.

    I have two differrent pages that give the same type of bugs when opening the page with Dreamweaver CS5. I built a web application with PHP, HTML, CSS, MySQL and Javascirpt. There are many forms throughout the site and many forms are very long. For these specific pages that give a syntax error HTML form is inside a PHP for loop to repeat a desired number of times. I checked that there is not a syntax error, and the page works perfectly without php, html, css or javascript errors. The syntax error goes away if I close the loop PHP earlier in the script, but then I have actually a syntax with PHP and dreamweaver error says my code is perfect?

    <?php

     

              //this page is not accessable via broswer url

              if (!defined("_VALID_PHP"))

                        die('Direct access to this location is not allowed.');

     

              //Set session data from POST

              $_SESSION["intake"]["students"]["drug_of_choice"] = $_POST["drug_of_choice"];

              $_SESSION["intake"]["students"]["first_contact"] = $_POST["first_contact_yr"]."-".$_POST["first_contact_mo"]."-".$_POST["first_contact_da"];

              $_SESSION["intake"]["intakes"]["referral_source"] = $_POST["referral_source"];

              $_SESSION["intake"]["intakes"]["referral_reason"] = $_POST["referral_reason"];

              $_SESSION["intake"]["students"]["gender"] = $_POST["gender"];

              $_SESSION["intake"]["students"]["maiden_name"] = $_POST["maiden_name"];

              $_SESSION["intake"]["students"]["race"] = $_POST["race"];

              $_SESSION["intake"]["students"]["dl_state"] = $_POST["dl_state"];

              $_SESSION["intake"]["students"]["dl_num"] = $_POST["dl_num"];

              $_SESSION["intake"]["students"]["phone_number"] = $_POST["phone_number"];

              $_SESSION["intake"]["students"]["cell_number"] = $_POST["cell_number"];

              $_SESSION["intake"]["students"]["work_number"] = $_POST["work_number"];

              $_SESSION["intake"]["students"]["other_fax_number"] = $_POST["other_fax_number"];

              $_SESSION["intake"]["students"]["email"] = $_POST["email"];

              $_SESSION["intake"]["addresses"]["line_1"] = $_POST["line_1"];

              $_SESSION["intake"]["addresses"]["line_2"] = $_POST["line_2"];

              $_SESSION["intake"]["addresses"]["line_3"] = $_POST["line_3"];

              $_SESSION["intake"]["addresses"]["city"] = $_POST["city"];

              ($_POST["state_province_country"]=="Other") ? $_SESSION["intake"]["addresses"]["state_province_country"] =  $_POST["other_state"]: $_SESSION["intake"]["addresses"]["state_province_country"] = $_POST["state_province_country"];

              $_SESSION["intake"]["addresses"]["post_code"] = $_POST["post_code"];

              $_SESSION["intake"]["addresses"]["country"] = $_POST["country"];

              $_SESSION["intake"]["addresses"]["comments"] = $_POST["comments"];

     

              //how many contacts adding

              $num_contacts = $_POST["num_contacts"];

     

              //Set Page variables from session data

              $CARF_ID = $_SESSION["intake"]["students"]["carf_id"];

              $First_Name = $_SESSION["intake"]["students"]["first_name"];

              $Middle_Name = $_SESSION["intake"]["students"]["middle_name"];

              $Last_Name = $_SESSION["intake"]["students"]["last_name"];

     

    ?>

                        <div id="boxAddStudentDet" class="boxes">

                                  <div class="boxHeader">

                                      <div id="addStudentIcon" class="boxIcons">

                                </div>

                                <div class="boxTitle">

                                          <h2>Add Contacts for <?php echo $CARF_ID.": ".$First_Name." ".$Middle_Name." ".$Last_Name; ?></h2>

                                </div>

                                <div class="boxSliderBtns">

                                </div>

                            </div>

                            <div class="boxContent">

                                      <form id="addStudDet" name="addStudDet" action="addstudent.php?b=03" onsubmit="return validateForm(this,'comments[]','','','','','','','','email');" method="post" >

                                    <table id="StudDetformTable" class="full">

                                              <?php for($i=0;$i<$num_contacts;$i++){ ?>

                                        <tr>

                                                  <td colspan="2"><h3><b>Add New Contact</b></h3></td>

                                        </tr>

                                        <tr>

                                                  <td colspan="2"><h3>Contact's First Name </h3></td>

                                        </tr>

                                        <tr>

                                                  <td class="column1a"><input name="first_name[]" id="kin_f_name" type="text" /></td>

                                        </tr>

                                        <tr>

                                                  <td colspan="2"><h3>Contact's Last Name </h3></td>

                                        </tr>

                                        <tr>

                                                  <td class="column1a"><input name="last_name[]" id="kin_l_name" type="text" /></td>

                                        </tr>

                                        <tr>

                                                  <td class="column1a"><p>

                                                      <input type="checkbox" value="<?php print $i; ?>" name="telephone_release[]" />  Telephone Release<br />

                                                <input type="radio" value="<?php print $i; ?>" name="primary_contact" />  Primary Contact<br />

                                                <input type="checkbox" value="<?php print $i; ?>" name="emergency_contact[]" />  Emergency Contact<br />

                                                <input type="checkbox" value="<?php print $i; ?>" name="financier[]" />  Financier<br />

                                                <input type="checkbox" value="<?php print $i; ?>" name="send_ed_pack[]" />  Send Drug Education Pack

                                            </p></td>

                                        </tr>

                                        <tr>

                                                  <td colspan="2"><h3>Contact's Relationship </h3></td>

                                        </tr>

                                        <tr>

                                                  <td class="column1a">

                                                      <select name="relationship[]" id="kin_relation">

                                                          <option value=""></option>

                                                    <option value="Spouse">Spouse</option>

                                                    <option value="Biological Mother">Mother (Biological)</option>

                                                    <option value="Biological Father">Father (Biological)</option>

                                                    <option value="Daughter">Daughter</option>

                                                    <option value="Son">Son</option>

                                                    <option value="Sister">Full Sister</option>

                                                    <option value="Brother">Full Brother</option>

                                                    <option value="Aunt">Aunt</option>

                                                    <option value="Uncle">Uncle</option>

                                                    <option value="Grandmother">Grandmother</option>

                                                    <option value="Grandfather">Grandfather</option>

                                                    <option value="Step Mother">Step Mother</option>

                                                    <option value="Step Father">Step Father</option>

                                                    <option value="Half Sister">Half Sister</option>

                                                    <option value="Half Brother">Half Brother</option>

                                                    <option value="Step Sister">Step Sister</option>

                                                    <option value="Step Brother">Step Brother</option>

                                                    <option value="Mother in law">Mother-In-Law</option>

                                                    <option value="Father in law">Father-In-Law</option>

                                                    <option value="Sister in law">Sister-In-Law</option>

                                                    <option value="Brother in law">Brother-In-Law</option>

                                                    <option value="Daughter in law">Daughter-In-Law</option>

                                                    <option value="Son in law">Son-In-Law</option>

                                                    <option value="Ex-spouse">Ex-spouse</option>

                                                    <option value="Co-worker">Co-worker</option>

                                                    <option value="Friend">Friend</option>

                                                    <option value="Other Relative">Other Relative (Specify in Comments)</option>

                                                    <option value="Other">Other (Specify in Comments)</option>

                                                      </select>

                                            </td>

                                        </tr>

                                        <tr>

                                                  <td colspan="2"><h3>Contact's Phone Number</h3></td>

                                        </tr>

                                        <tr>

                                                  <td class="column1a"><input name="k_phnum_<?php print $i; ?>" id="k_phnum_<?php print $i; ?>" type="radio" value="yes" onClick="notAnsweredQues('k_phNumber_<?php print $i; ?>', this, true);" /><input type="text" name="phone_number[]" id="k_phNumber_<?php print $i; ?>" onkeydown="setVal('k_phnum_<?php print $i; ?>')" onkeypress="return onlyChar(event,true,false,false,false,'','');" />  <input name="k_phnum_<?php print $i; ?>" type="radio" onClick="notAvailableQues('k_phNumber_<?php print $i; ?>', this);" />No Number</td>

                                            <td class="alignright"><input name="k_phnum_<?php print $i; ?>" type="radio" onClick="notAnsweredQues('k_phNumber_<?php print $i; ?>', this);" />Question Not Answered</td>

                                        </tr>

                                        <tr>

                                                  <td colspan="2"><h3>Contact's Cell Phone Number</h3></td>

                                        </tr>

                                        <tr>

                                                  <td class="column1a"><input name="k_cell_phnum_<?php print $i; ?>" id="k_cell_phnum_<?php print $i; ?>" type="radio" onClick="notAnsweredQues('k_cellNumber_<?php print $i; ?>', this, true);" /><input type="text" name="cell_number[]" id="k_cellNumber_<?php print $i; ?>" onkeydown="setVal('k_cell_phnum_<?php print $i; ?>')" onkeypress="return onlyChar(event,true,false,false,false,'','');" />  <input name="k_cell_phnum_<?php print $i; ?>" type="radio" onClick="notAvailableQues('k_cellNumber_<?php print $i; ?>', this);" />No Number</td>

                                            <td class="alignright"><input name="k_cell_phnum_<?php print $i; ?>" type="radio" onClick="notAnsweredQues('k_cellNumber_<?php print $i; ?>', this);" />Question Not Answered</td>

                                        </tr>

                                        <tr>

                                                  <td colspan="2"><h3>Contact's Other Phone Number</h3></td>

                                        </tr>

                                        <tr>

                                                  <td class="column1a"><input name="k_other_phnum_<?php print $i; ?>" id="k_other_phnum_<?php print $i; ?>" type="radio" onClick="notAnsweredQues('k_otherNumber_<?php print $i; ?>', this, true);" /><input type="text" name="other_number[]" id="k_otherNumber_<?php print $i; ?>" onkeydown="setVal('k_other_phnum_<?php print $i; ?>')" onkeypress="return onlyChar(event,true,false,false,false,'','');" />  <input name="k_other_phnum" type="radio" onClick="notAvailableQues('k_otherNumber_<?php print $i; ?>', this);" />No Number</td>

                                            <td class="alignright"><input name="k_other_phnum_<?php print $i; ?>" type="radio" onClick="notAnsweredQues('k_otherNumber_<?php print $i; ?>', this);" />Question Not Answered</td>

                                        </tr>

                                        <tr>

                                                  <td colspan="2"><h3>Contact's Email Address</h3></td>

                                        </tr>

                                        <tr>

                                                  <td class="column1a"><input name="k_emailSel_<?php print $i; ?>" id="k_emailSel_<?php print $i; ?>" type="radio" onClick="notAnsweredQues('k_email_<?php print $i; ?>', this, true);" /><input name="email[]" id="k_email_<?php print $i; ?>" type="text" onkeydown="setVal('k_emailSel_<?php print $i; ?>')" onblur="validateEmail(this)" />  <input name="k_emailSel_<?php print $i; ?>" type="radio" onClick="notAvailableQues('k_email_<?php print $i; ?>', this);" />No Email</td>

                                            <td class="alignright"><input name="k_emailSel_<?php print $i; ?>" type="radio" onClick="notAnsweredQues('k_email_<?php print $i; ?>', this);" />Question Not Answered</td>

                                        </tr>

                                        <tr>

                                                  <td><h3>What is the student's address?</h3></td>

                                        </tr>

                                        <tr>

                                                  <td class="indentation"><input type="text" name="line_1[]" id="Line_1_<?php print $i; ?>" value="Line 1" style="width:450px;" onfocus="if(this.value==this.defaultValue)this.value='';" onblur="if(this.value=='')this.value=this.defaultValue;" /></td>

                                        </tr>

                                        <tr>

                                                  <td class="indentation"><input type="text" name="line_2[]" id="Line_2_<?php print $i; ?>" value="Line 2" style="width:450px;" onfocus="if(this.value==this.defaultValue)this.value='';" onblur="if(this.value=='')this.value=this.defaultValue;" /></td>

                                        </tr>

                                        <tr>

                                                  <td class="indentation"><input type="text" name="line_3[]" id="Line_3_<?php print $i; ?>" value="Line 3" style="width:450px;" onfocus="if(this.value==this.defaultValue)this.value='';" onblur="if(this.value=='')this.value=this.defaultValue;" /></td>

                                        </tr>

                                        <tr>

                                                  <td class="indentation">

                                                <input type="text" name="city[]" id="City_<?php print $i; ?>" value="City" onfocus="if(this.value==this.defaultValue)this.value='';" onblur="if(this.value=='')this.value=this.defaultValue;" /> 

                                                <select name="state_province_country[]" id="State_<?php print $i; ?>" onchange="

                                                if(this.value==''){

                                                          document.getElementById('otherState_<?php print $i; ?>').style.display = 'none';

                                                    document.getElementById('otherState_<?php print $i; ?>').value='Other State';

                                                    setInput('Country_<?php print $i; ?>','','select',false);

                                                } else if(this.value=='Other'){

                                                          document.getElementById('otherState_<?php print $i; ?>').style.display = 'inline-block';

                                                    document.getElementById('otherState_<?php print $i; ?>').value='';

                                                    setInput('Country_<?php print $i; ?>','','select',false);

                                                }else{

                                                          document.getElementById('otherState_<?php print $i; ?>').style.display = 'none';

                                                    document.getElementById('otherState_<?php print $i; ?>').value='Other State';

                                                    setInput('Country_<?php print $i; ?>','U.S.A.','select',true);

                                                }" >

                                                    <option value="">Select State</option>

                                                    <option value="AL">Alabama</option>

                                                    <option value="AK">Alaska</option>

                                                    <option value="AZ">Arizona</option>

                                                    <option value="AR">Arkansas</option>

                                                    <option value="CA">California</option>

                                                    <option value="CO">Colorado</option>

                                                    <option value="CT">Connecticut</option>

                                                    <option value="DE">Delaware</option>

                                                    <option value="FL">Florida</option>

                                                    <option value="GA">Georgia</option>

                                                    <option value="HI">Hawaii</option>

                                                    <option value="ID">Idaho</option>

                                                    <option value="IL">Illinois</option>

                                                    <option value="IN">Indiana</option>

                                                    <option value="IA">Iowa</option>

                                                    <option value="KS">Kansas</option>

                                                    <option value="KY">Kentucky</option>

                                                    <option value="LA">Louisiana</option>

                                                    <option value="ME">Maine</option>

                                                    <option value="MD">Maryland</option>

                                                    <option value="MA">Massachusetts</option>

                                                    <option value="MI">Michigan</option>

                                                    <option value="MN">Minnesota</option>

                                                    <option value="MS">Mississippi</option>

                                                    <option value="MO">Missouri</option>

                                                    <option value="MT">Montana</option>

                                                    <option value="NE">Nebraska</option>

                                                    <option value="NV">Nevada</option>

                                                    <option value="NH">New Hampshire</option>

                                                    <option value="NJ">New Jersey</option>

                                                    <option value="NM">New Mexico</option>

                                                    <option value="NY">New York</option>

                                                    <option value="NC">North Carolina</option>

                                                    <option value="ND">North Dakota</option>

                                                    <option value="OH">Ohio</option>

                                                    <option value="OK">Oklahoma</option>

                                                    <option value="OR">Oregon</option>

                                                    <option value="PA">Pennsylvania</option>

                                                    <option value="RI">Rhode Island</option>

                                                    <option value="SC">South Carolina</option>

                                                    <option value="SD">South Dakota</option>

                                                    <option value="TN">Tennessee</option>

                                                    <option value="TX">Texas</option>

                                                    <option value="UT">Utah</option>

                                                    <option value="VT">Vermont</option>

                                                    <option value="VA">Virginia</option>

                                                    <option value="WA">Washington</option>

                                                    <option value="WV">West Virginia</option>

                                                    <option value="WI">Wisconsin</option>

                                                    <option value="WY">Wyoming</option>

                                                    <option value="Other">Other Specify:</option>

                                                </select>

                                                <input type="text" name="other_state[]" id="otherState_<?php print $i; ?>" value="Other State" style="display:none;" />

                                                <input type="text" name="post_code[]" id="Zip_PostalCode_<?php print $i; ?>" value="ZIP" onfocus="if(this.value==this.defaultValue)this.value='';" onblur="if(this.value=='')this.value=this.defaultValue;" />

                                            </td>

                                        </tr>

                                        <tr>

                                                  <td><h3>Country</h3></td>

                                        </tr>

                                        <tr>

                                                  <td>

                                                <select name="country[]" id="Country_<?php print $i; ?>">

                                                    <option value="">Select Country</option>

                                                    <option value="U.S.A.">United States of America</option>

                                                    <option value="Afganistan">Afghanistan</option>

                                                    <option value="Albania">Albania</option>

                                                    <option value="Algeria">Algeria</option>

                                                    <option value="American Samoa">American Samoa</option>

                                                    <option value="Andorra">Andorra</option>

                                                    <option value="Angola">Angola</option>

                                                    <option value="Anguilla">Anguilla</option>

                                                    <option value="Antigua &amp; Barbuda">Antigua &amp; Barbuda</option>

                                                    <option value="Argentina">Argentina</option>

                                                    <option value="Armenia">Armenia</option>

                                                    <option value="Aruba">Aruba</option>

                                                    <option value="Australia">Australia</option>

                                                    <option value="Austria">Austria</option>

                                                    <option value="Azerbaijan">Azerbaijan</option>

                                                    <option value="Bahamas">Bahamas</option>

                                                    <option value="Bahrain">Bahrain</option>

                                                    <option value="Bangladesh">Bangladesh</option>

                                                    <option value="Barbados">Barbados</option>

                                                    <option value="Belarus">Belarus</option>

                                                    <option value="Belgium">Belgium</option>

                                                    <option value="Belize">Belize</option>

                                                    <option value="Benin">Benin</option>

                                                    <option value="Bermuda">Bermuda</option>

                                                    <option value="Bhutan">Bhutan</option>

                                                    <option value="Bolivia">Bolivia</option>

                                                    <option value="Bonaire">Bonaire</option>

                                                    <option value="Bosnia &amp; Herzegovina">Bosnia &amp; Herzegovina</option>

                                                    <option value="Botswana">Botswana</option>

                                                    <option value="Brazil">Brazil</option>

                                                    <option value="British Indian Ocean Ter">British Indian Ocean Ter</option>

                                                    <option value="Brunei">Brunei</option>

                                                    <option value="Bulgaria">Bulgaria</option>

                                                    <option value="Burkina Faso">Burkina Faso</option>

                                                    <option value="Burundi">Burundi</option>

                                                    <option value="Cambodia">Cambodia</option>

                                                    <option value="Cameroon">Cameroon</option>

                                                    <option value="Canada">Canada</option>

                                                    <option value="Canary Islands">Canary Islands</option>

                                                    <option value="Cape Verde">Cape Verde</option>

                                                    <option value="Cayman Islands">Cayman Islands</option>

                                                    <option value="Central African Republic">Central African Republic</option>

                                                    <option value="Chad">Chad</option>

                                                    <option value="Channel Islands">Channel Islands</option>

                                                    <option value="Chile">Chile</option>

                                                    <option value="China">China</option>

                                                    <option value="Christmas Island">Christmas Island</option>

                                                    <option value="Cocos Island">Cocos Island</option>

                                                    <option value="Colombia">Colombia</option>

                                                    <option value="Comoros">Comoros</option>

                                                    <option value="Congo">Congo</option>

                                                    <option value="Cook Islands">Cook Islands</option>

                                                    <option value="Costa Rica">Costa Rica</option>

                                                    <option value="Cote DIvoire">Cote D'Ivoire</option>

                                                    <option value="Croatia">Croatia</option>

                                                    <option value="Cuba">Cuba</option>

                                                    <option value="Curaco">Curacao</option>

                                                    <option value="Cyprus">Cyprus</option>

                                                    <option value="Czech Republic">Czech Republic</option>

                                                    <option value="Denmark">Denmark</option>

                                                    <option value="Djibouti">Djibouti</option>

                                                    <option value="Dominica">Dominica</option>

                                                    <option value="Dominican Republic">Dominican Republic</option>

                                                    <option value="East Timor">East Timor</option>

                                                    <option value="Ecuador">Ecuador</option>

                                                    <option value="Egypt">Egypt</option>

                                                    <option value="El Salvador">El Salvador</option>

                                                    <option value="Equatorial Guinea">Equatorial Guinea</option>

                                                    <option value="Eritrea">Eritrea</option>

                                                    <option value="Estonia">Estonia</option>

                                                    <option value="Ethiopia">Ethiopia</option>

                                                    <option value="Falkland Islands">Falkland Islands</option>

                                                    <option value="Faroe Islands">Faroe Islands</option>

                                                    <option value="Fiji">Fiji</option>

                                                    <option value="Finland">Finland</option>

                                                    <option value="France">France</option>

                                                    <option value="French Guiana">French Guiana</option>

                                                    <option value="French Polynesia">French Polynesia</option>

                                                    <option value="French Southern Ter">French Southern Ter</option>

                                                    <option value="Gabon">Gabon</option>

                                                    <option value="Gambia">Gambia</option>

                                                    <option value="Georgia">Georgia</option>

                                                    <option value="Germany">Germany</option>

                                                    <option value="Ghana">Ghana</option>

                                                    <option value="Gibraltar">Gibraltar</option>

                                                    <option value="Great Britain">Great Britain</option>

                                                    <option value="Greece">Greece</option>

                                                    <option value="Greenland">Greenland</option>

                                                    <option value="Grenada">Grenada</option>

                                                    <option value="Guadeloupe">Guadeloupe</option>

                                                    <option value="Guam">Guam</option>

                                                    <option value="Guatemala">Guatemala</option>

                                                    <option value="Guinea">Guinea</option>

                                                    <option value="Guyana">Guyana</option>

                                                    <option value="Haiti">Haiti</option>

                                                    <option value="Hawaii">Hawaii</option>

                                                    <option value="Honduras">Honduras</option>

                                                    <option value="Hong Kong">Hong Kong</option>

                                                    <option value="Hungary">Hungary</option>

                                                    <option value="Iceland">Iceland</option>

                                                    <option value="India">India</option>

                                                    <option value="Indonesia">Indonesia</option>

                                                    <option value="Iran">Iran</option>

                                                    <option value="Iraq">Iraq</option>

                                                    <option value="Ireland">Ireland</option>

                                                    <option value="Isle of Man">Isle of Man</option>

                                                    <option value="Israel">Israel</option>

                                                    <option value="Italy">Italy</option>

                                                    <option value="Jamaica">Jamaica</option>

                                                    <option value="Japan">Japan</option>

                                                    <option value="Jordan">Jordan</option>

                                                    <option value="Kazakhstan">Kazakhstan</option>

                                                    <option value="Kenya">Kenya</option>

                                                    <option value="Kiribati">Kiribati</option>

                                                    <option value="Korea North">Korea North</option>

                                                    <option value="Korea Sout">Korea South</option>

                                                    <option value="Kuwait">Kuwait</option>

                                                    <option value="Kyrgyzstan">Kyrgyzstan</option>

                                                    <option value="Laos">Laos</option>

                                                    <option value="Latvia">Latvia</option>

                                                    <option value="Lebanon">Lebanon</option>

                                                    <option value="Lesotho">Lesotho</option>

                                                    <option value="Liberia">Liberia</option>

                                                    <option value="Libya">Libya</option>

                                                    <option value="Liechtenstein">Liechtenstein</option>

                                                    <option value="Lithuania">Lithuania</option>

                                                    <option value="Luxembourg">Luxembourg</option>

                                                    <option value="Macau">Macau</option>

                                                    <option value="Macedonia">Macedonia</option>

                                                    <option value="Madagascar">Madagascar</option>

                                                    <option value="Malaysia">Malaysia</option>

                                                    <option value="Malawi">Malawi</option>

                                                    <option value="Maldives">Maldives</option>

                                                    <option value="Mali">Mali</option>

                                                    <option value="Malta">Malta</option>

                                                    <option value="Marshall Islands">Marshall Islands</option>

                                                    <option value="Martinique">Martinique</option>

                                                    <option value="Mauritania">Mauritania</option>

                                                    <option value="Mauritius">Mauritius</option>

                                                    <option value="Mayotte">Mayotte</option>

                                                    <option value="Mexico">Mexico</option>

                                                    <option value="Midway Islands">Midway Islands</option>

                                                    <option value="Moldova">Moldova</option>

                                                    <option value="Monaco">Monaco</option>

                                                    <option value="Mongolia">Mongolia</option>

                                                    <option value="Montserrat">Montserrat</option>

                                                    <option value="Morocco">Morocco</option>

                                                    <option value="Mozambique">Mozambique</option>

                                                    <option value="Myanmar">Myanmar</option>

                                                    <option value="Nambia">Nambia</option>

                                                    <option value="Nauru">Nauru</option>

                                                    <option value="Nepal">Nepal</option>

                                                    <option value="Netherland Antilles">Netherland Antilles</option>

                                                    <option value="Netherlands">Netherlands (Holland, Europe)</option>

                                                    <option value="Nevis">Nevis</option>

                                                    <option value="New Caledonia">New Caledonia</option>

                                                    <option value="New Zealand">New Zealand</option>

                                                    <option value="Nicaragua">Nicaragua</option>

                                                    <option value="Niger">Niger</option>

                                                    <option value="Nigeria">Nigeria</option>

                                                    <option value="Niue">Niue</option>

                                                    <option value="Norfolk Island">Norfolk Island</option>

                                                    <option value="Norway">Norway</option>

                                                    <option value="Oman">Oman</option>

                                                    <option value="Pakistan">Pakistan</option>

                                                    <option value="Palau Island">Palau Island</option>

                                                    <option value="Palestine">Palestine</option>

                                                    <option value="Panama">Panama</option>

                                                    <option value="Papua New Guinea">Papua New Guinea</option>

                                                    <option value="Paraguay">Paraguay</option>

                                                    <option value="Peru">Peru</option>

                                                    <option value="Phillipines">Philippines</option>

                                                    <option value="Pitcairn Island">Pitcairn Island</option>

                                                    <option value="Poland">Poland</option>

                                                    <option value="Portugal">Portugal</option>

                                                    <option value="Puerto Rico">Puerto Rico</option>

                                                    <option value="Qatar">Qatar</option>

                                                    <option value="Republic of Montenegro">Republic of Montenegro</option>

                                                    <option value="Republic of Serbia">Republic of Serbia</option>

                                                    <option value="Reunion">Reunion</option>

                                                    <option value="Romania">Romania</option>

                                                    <option value="Russia">Russia</option>

                                                    <option value="Rwanda">Rwanda</option>

                                                    <option value="St Barthelemy">St Barthelemy</option>

                                                    <option value="St Eustatius">St Eustatius</option>

                                                    <option value="St Helena">St Helena</option>

                                                    <option value="St Kitts-Nevis">St Kitts-Nevis</option>

                                                    <option value="St Lucia">St Lucia</option>

                                                    <option value="St Maarten">St Maarten</option>

                                                    <option value="St Pierre &amp; Miquelon">St Pierre &amp; Miquelon</option>

                                                    <option value="St Vincent &amp; Grenadines">St Vincent &amp; Grenadines</option>

                                                    <option value="Saipan">Saipan</option>

                                                    <option value="Samoa">Samoa</option>

                                                    <option value="Samoa American">Samoa American</option>

                                                    <option value="San Marino">San Marino</option>

                                                    <option value="Sao Tome & Principe">Sao Tome &amp; Principe</option>

                                                    <option value="Saudi Arabia">Saudi Arabia</option>

                                                    <option value="Senegal">Senegal</option>

                                                    <option value="Seychelles">Seychelles</option>

                                                    <option value="Sierra Leone">Sierra Leone</option>

                                                    <option value="Singapore">Singapore</option>

                                                    <option value="Slovakia">Slovakia</option>

                                                    <option value="Slovenia">Slovenia</option>

                                                    <option value="Solomon Islands">Solomon Islands</option>

                                                    <option value="Somalia">Somalia</option>

                                                    <option value="South Africa">South Africa</option>

                                                    <option value="Spain">Spain</option>

                                                    <option value="Sri Lanka">Sri Lanka</option>

                                                    <option value="Sudan">Sudan</option>

                                                    <option value="Suriname">Suriname</option>

                                                    <option value="Swaziland">Swaziland</option>

                                                    <option value="Sweden">Sweden</option>

                                                    <option value="Switzerland">Switzerland</option>

                                                    <option value="Syria">Syria</option>

                                                    <option value="Tahiti">Tahiti</option>

                                                    <option value="Taiwan">Taiwan</option>

                                                    <option value="Tajikistan">Tajikistan</option>

                                                    <option value="Tanzania">Tanzania</option>

                                                    <option value="Thailand">Thailand</option>

                                                    <option value="Togo">Togo</option>

                                                    <option value="Tokelau">Tokelau</option>

                                                    <option value="Tonga">Tonga</option>

                                                    <option value="Trinidad &amp; Tobago">Trinidad &amp; Tobago</option>

                                                    <option value="Tunisia">Tunisia</option>

                                                    <option value="Turkey">Turkey</option>

                                                    <option value="Turkmenistan">Turkmenistan</option>

                                                    <option value="Turks &amp; Caicos Is">Turks &amp; Caicos Is</option>

                                                    <option value="Tuvalu">Tuvalu</option>

                                                    <option value="Uganda">Uganda</option>

                                                    <option value="Ukraine">Ukraine</option>

                                                    <option value="United Arab Erimates">United Arab Emirates</option>

                                                    <option value="United Kingdom">United Kingdom</option>

                                                    <option value="United States of America">United States of America</option>

                                                    <option value="Uraguay">Uruguay</option>

                                                    <option value="Uzbekistan">Uzbekistan</option>

                                                    <option value="Vanuatu">Vanuatu</option>

                                                    <option value="Vatican City State">Vatican City State</option>

                                                    <option value="Venezuela">Venezuela</option>

                                                    <option value="Vietnam">Vietnam</option>

                                                    <option value="Virgin Islands (Brit)">Virgin Islands (Brit)</option>

                                                    <option value="Virgin Islands (USA)">Virgin Islands (USA)</option>

                                                    <option value="Wake Island">Wake Island</option>

                                                    <option value="Wallis &amp; Futana Is">Wallis &amp; Futana Is</option>

                                                    <option value="Yemen">Yemen</option>

                                                    <option value="Zaire">Zaire</option>

                                                    <option value="Zambia">Zambia</option>

                                                    <option value="Zimbabwe">Zimbabwe</option>

                                                </select>

                                            </td>

                                        </tr>

                                        <tr>

                                                  <td><h3>Next of Kin's Comments</h3></td>

                                        </tr>

                                        <tr>

                                                  <td class="column1a" colspan="2">

                                                      <textarea name="comments[]" id="k_comments_<?php print $i; ?>" onkeyup="adjustHeight(this)" style="width:100%" ></textarea>

                                            </td>

                                        </tr>

                                        <tr>

                                                  <td colspan="2"><hr /></td>

                                        </tr>

                                        <?php } ?>

                                    </table>

                                    <input class="floatRight" name="submit" type="submit" value="NEXT" />

                                </form>

                                <div class="clearRight"></div>

                            </div>

                        </div>

    This page is necessary within the full html/php page. Dreamweaver says there is an error on line 236 which is

    <select name="country[]" id="Country_<?php print $i; ?>">

    but I know full and well that there is no error in this line of code or the code. There seems to be a bug with the syntax checker in Dreamweaver CS5. I don't know if this error would show most recent Dreamweaver versions, like everything I have is CS5. Thanks for the help of anybodies that can verify this bug or spot an error in my code.

    If I change the "wrong" line of the code of

    <select name="country[]" id="Country_<?php print $i;} ?>">

    Then the syntax error will disappear in Dreamweaver, but PHP error: "{Parse error: syntax error, unexpected '}' in /path_to_my_file/my_file.php on line 499" will then appear

    Hi Anthony,.

    We have been able to reproduce the problem at our end using the code you provided and we are investigating the same.

    We recorded an internal bug # 3612970 to follow up on this matter. We will try to prioritize and difficulty to future updates of Dreamweaver CC.

    Please let us know if you need assistance at any time. We will be happy to help you.

    Thank you

    Arindam

  • LinkageError on integratedWLS with prefer-web-inf-classes

    Hello.

    I'm currently playing with a reporting tool (BIRT) for weblogic. There is a sample web application to be deployed on the application server for demo.

    I have no problem by deploying on stand-alone WebLogic on linux (jrockit) server, but I can't run it on my local integratedWLS (hotspot) - there LinkageError.


    Harassment through burial, I discovered that this thing has a problem with WebLogic. The application uses a large number of libraries and some of them are included in WebLogic, but with lower versions, so it is pot collisions.

    To resolve this problem, it has weblogic.xml with:

    <container-descriptor>
      <prefer-web-inf-classes>true</prefer-web-inf-classes>
    </container-descriptor>
    

    As I said, with this file I can deploy the application to autonomous WLS and it works normally but deploy the integratedWLS fails with LinkageError.

    If I remove weblogic.xml, deployment does not fail, but the application throws an exception runtime because of bad jar versions (which is understandable).

    Why I can not run the application on integratedWLS with prefer-web-inf-classes?

    Thank you.

    JDev 11.1.2.3, WLS 10.3.5


    LinkageError:

    [17: 51:50] redeploy the Application...

    < 21.10.2013 17:51:52 GST > < WARNING > < HTTP > < BEA-101162 > < org.eclipse.birt.report.listener.ViewerServletContextListener listener has not defined by user: java.lang.LinkageError: constraint violation of the charger in the initialization of interface baseline: during method resolution 'org.apache.xerces.dom.ElementImpl.getSchemaTypeInfo (Lorg, w3c, dom, TypeInfo)'; the class loader (weblogic/utils/Chargers of parents/ChangeAwareClassLoader class instance) of the current class org/apache/xerces/dom/ElementImpl, and the class loader (< bootloader > instance) for org/w3c/dom/UI element have different objects of the class for the org, w3c, dom, TypeInfo type used in the signature.

    java.lang.LinkageError: constraint violation of the charger in the baseline interface initialization: when troubleshooting method "org.apache.xerces.dom.ElementImpl.getSchemaTypeInfo () Lorg, w3c, dom, TypeInfo"; the class loader (weblogic/utils/Chargers of parents/ChangeAwareClassLoader class instance) of the org/apache/xerces/dom/ElementImpl current class and the class loader (< bootloader > instance) for org/w3c/dom/UI element have different objects of the class for the org, w3c, dom, TypeInfo type used in the signature

    at org.apache.xerces.dom.DeferredDocumentImpl.getNodeObject (unknown Source)

    at org.apache.xerces.dom.DeferredDocumentImpl.synchronizeChildren (unknown Source)

    at org.apache.xerces.dom.CoreDocumentImpl.getDocumentElement (unknown Source)

    at org.eclipse.birt.core.framework.jar.BundleLoader.loadExtensions(BundleLoader.java:151)

    at org.eclipse.birt.core.framework.jar.BundleLoader.load(BundleLoader.java:63)

    Truncated. check the log file full stacktrace

    >

    < 21.10.2013 17:51:52 GST > < error > < hats > < BEA-149265 > < error has occurred in the execution of the request for deployment with the ID ' 1382363510965 'for task 7'. Error: ' weblogic.application.ModuleException: '

    weblogic.application.ModuleException:

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1510)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    Truncated. check the log file full stacktrace

    Caused by: java.lang.LinkageError: constraint violation of the charger in the baseline interface initialization: when troubleshooting method "org.apache.xerces.dom.ElementImpl.getSchemaTypeInfo () Lorg, w3c, dom, TypeInfo"; the class loader (weblogic/utils/Chargers of parents/ChangeAwareClassLoader class instance) of the org/apache/xerces/dom/ElementImpl current class and the class loader (< bootloader > instance) for org/w3c/dom/UI element have different objects of the class for the org, w3c, dom, TypeInfo type used in the signature

    at org.apache.xerces.dom.DeferredDocumentImpl.getNodeObject (unknown Source)

    at org.apache.xerces.dom.DeferredDocumentImpl.synchronizeChildren (unknown Source)

    at org.apache.xerces.dom.CoreDocumentImpl.getDocumentElement (unknown Source)

    at org.eclipse.birt.core.framework.jar.BundleLoader.loadExtensions(BundleLoader.java:151)

    at org.eclipse.birt.core.framework.jar.BundleLoader.load(BundleLoader.java:63)

    Truncated. check the log file full stacktrace

    >

    < 21.10.2013 17:51:52 GST > < error > < hats > < BEA-149202 > < encountered an exception while trying to commit the task 9 for the application "WebViewerWeblogic". >

    < 21.10.2013 17:51:52 GST > < WARNING > < hats > < BEA-149004 > < failures have been detected all introducing deploy the task of application "WebViewerWeblogic" >.

    < 21.10.2013 17:51:52 GST > < WARNING > < hats > < BEA-149078 > < message 149004 track battery

    weblogic.application.ModuleException:

    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1510)

    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:482)

    to weblogic.application.internal.flow.ModuleStateDriver$ 3.next(ModuleStateDriver.java:425)

    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)

    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)

    Truncated. check the log file full stacktrace

    Caused by: java.lang.LinkageError: constraint violation of the charger in the baseline interface initialization: when troubleshooting method "org.apache.xerces.dom.ElementImpl.getSchemaTypeInfo () Lorg, w3c, dom, TypeInfo"; the class loader (weblogic/utils/Chargers of parents/ChangeAwareClassLoader class instance) of the org/apache/xerces/dom/ElementImpl current class and the class loader (< bootloader > instance) for org/w3c/dom/UI element have different objects of the class for the org, w3c, dom, TypeInfo type used in the signature

    at org.apache.xerces.dom.DeferredDocumentImpl.getNodeObject (unknown Source)

    at org.apache.xerces.dom.DeferredDocumentImpl.synchronizeChildren (unknown Source)

    at org.apache.xerces.dom.CoreDocumentImpl.getDocumentElement (unknown Source)

    at org.eclipse.birt.core.framework.jar.BundleLoader.loadExtensions(BundleLoader.java:151)

    at org.eclipse.birt.core.framework.jar.BundleLoader.load(BundleLoader.java:63)

    Truncated. check the log file full stacktrace

    >

    [17: 51:52] undeployment.

    [17: 51:52] - incomplete deployment.

    [17: 51:52] remote deployment failed (oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer)

    # Cannot run application WebViewerWeblogic due to the deployment on IntegratedWebLogicServer error.

    Org.eclipse.birt.report.listener.ViewerServletContextListener listener has not defined by user: java.lang.LinkageError: constraint violation of the charger in the baseline interface initialization: when troubleshooting method org.apache.xerces.dom.ElementImpl.getSchemaTypeInfo () of 'Lorg, w3c, dom, TypeInfo.


    Bug

    Org.eclipse.birt.report.listener.ViewerServletContextListener listener has not defined by user: java.lang.LinkageError: constraint violation of the charger in the baseline interface initialization: when troubleshooting method 'org.apache.xerces.dom.ElementImpl.getSchemaType '.

    Information (Lorg, w3c, dom, TypeInfo)

    https://bugs.Eclipse.org/bugs/show_bug.cgi?id=383926


  • Allow "Flatten XML" and "Unflatten from XML" to work without access to the internet.

    Hi all

    In my program, I use the XML Unflatten and flatten XML screw. On my development computer, everything works fine. As soon as I put it in the production environment, it has stopped working. I reduced to doing in my production environment, there is no internet access and I'll be never able/allowed to have access to the internet there.

    Someone at - it an elegant way to solve this problem? (By "elegant" I do not want to manually change all of the .xml files that I produce to include the path to the local LVXMLSchema.xsd) Is there a file .manifest or .config can we change to point my program compiled to the xsd on the right file? Perhaps another method?

    Thank you!

    Kind regards

    Filip.

    Hi all

    I think I found the solution.

    In the end, it wasn't an Internet. It was the inclusion of the classes in the compiled code or not.

    Attention! It was not enough just uncheck everything in the "Additional Exclusions" section of the building. I actually had instantiate each class possible, which can be converted by the "XML Unflatten" in the .vi. I even tried to put the lvclasses in the always include the article of the source of the build. This no longer works.

    Thanks for all your suggestions guys!

    Kind regards

    Filip.

  • PowerCLI 6.0R2 bug with Import-Module-prefix?

    Yesterday I installed a couple of nine Win2012R2 servers and of course installed PowerCLI 6.0R2.

    In order to avoid multiple commands with the same name, we use the--Prefix setting for the modules. It worked great in R1 but I am facing problems with R2.

    Load the modules with code below:

    $VMwareModules = 'VMware.VimAutomation.Core', 'VMware.VimAutomation.Vds'

    foreach ($Module in $VMwareModules) { }

    if (! (Get-Module | ? {$_. (({Name -eq $Module})) {}

    Try {

    Import-Module -Nom $Module -Prefix "VMW"

    }

    Catch {

    $ErrorMessage = $_ . Exception. Message

    breaking

    }

    }

    }


    When running Get-Module now the modules but show the Basic module shows all ExportedCommands (which he did in R1).

    Basic modules shows too, now that 'script' instead of 'manifesto', as in R1.

    Not sure if this has anything to do with this.


    If we compare the number of orders 'Raphael' in R1 and R2, missing 300 orders for the Basic module in R2.


    Is this a bug? Is there a solution?


    R2:

    PS C:\ > get-module

    Version of Moduleinfo name ExportedCommands

    ---------- -------    ----                                ----------------

    Script Initialize-VMware_VimAutomation_Vds 0.0

    Manifest 3.1.0.0 Microsoft.PowerShell.Management {Add-Computer, Add-Content, Checkpoint-Computer, Clear-Con...}

    Manifest 3.1.0.0 Microsoft.PowerShell.Utility {Add-Member, add-Type, Clear-Variable, Compare-Object...}

    VMware.VimAutomation.Core script 6.0.0.0

    Clear VMware.VimAutomation.Sdk 6.0.0.0

    6.0.0.0 binary VMware.VimAutomation.Vds {add-VDSwitchPhysicalNetworkAdapter, add-VDSwitchVMHost, E...

    PS C:\ > get-vitoolkitversion

    PowerCLI Version

    ----------------

    VMware vSphere PowerCLI 6.0 Release 2 build 3056836

    ---------------

    Component versions

    ---------------

    VMWare AutoDeploy PowerCLI component 6.0 build 2358282

    VMWare ImageBuilder PowerCLI component 6.0 build 2358282

    VMware vSphere PowerCLI component 6.0 build 3052101

    VDS's VMware PowerCLI component 6.0 build 3052101


    PS C:\ > (get-command * vmw *) .count

    33


    R1:

    PS C:\ > get-module

    Version of Moduleinfo name ExportedCommands

    ---------- -------    ----                                ----------------

    Script Initialize-VMware_VimAutomation_Vds 0.0

    Manifest 3.1.0.0 Microsoft.PowerShell.Management {Add-Computer, Add-Content, Checkpoint-Computer, Clear-Con...}

    Manifest 3.1.0.0 Microsoft.PowerShell.Utility {Add-Member, add-Type, Clear-Variable, Compare-Object...}

    VMware.VimAutomation.Core manifesto 6.0.0.0 {Add-PassthroughDevice, add VirtualSwitchPhysicalNetworkAd... }

    Clear VMware.VimAutomation.Sdk 6.0.0.0

    6.0.0.0 binary VMware.VimAutomation.Vds {add-VDSwitchPhysicalNetworkAdapter, add-VDSwitchVMHost, E...

    PS C:\ > get-vitoolkitversion

    PowerCLI Version

    ----------------

    VMware vSphere PowerCLI 6.0 Release 1 build 2548067

    ---------------

    Component versions

    ---------------

    VMWare AutoDeploy PowerCLI component 6.0 build 2358282

    VMWare ImageBuilder PowerCLI component 6.0 build 2358282

    License of VMware PowerCLI component 6.0 build 2315846

    VMware vSphere PowerCLI component 6.0 build 2548068

    VDS's VMware PowerCLI component 6.0 build 2548068

    PS C:\ > (get-command * vmw *) .count

    12 p

    Hello

    First of all, I must say that you are right. This is a regression introduced in 6.0 R2 caused by updates in the manifesto of the module which target to attack another bug. Let me give you more explanation in detail on the specifics of the module VMware.VimAutomation.Core.

    Binary VMware.VimAutomation.Core is always snap-in in 6.0 R1, 6.0R2 and 6.0 R3. Which is related to internal constraints that will be overcome in the next version and the binary file is converted to module as it should.

    As binary VMware.VimAutomation.Core is pluggable PowerCLI makes it look like a module declaring a manifest module which load the snap and load so its commands to load this module 'false '. The VMWare.VimAutomation.Core module so manifest module powershell that refer to a script that loads the binary VMWare.VimAutomation.Core snap. Script files, the manifesto and that loads the snap are in the module folder: '\Modules\VMware.VimAutomation.Core '.

    Now the problem you face is that, in 6.0R1, the script that loads the snap was referenced in NestedModules module manifest, which means that all orders imported as nested module are imported into the scope of the module session. This makes the component controls snap to consider as a command module and that's why your use case has worked with 6.0R1. The problem with this is that if someone calling Remove-Module command for this module it deletes the orders of the current session, and if Import-Module is called again in the same session, that it will fail with an error "The VMware.VimAutomation.Core is already added," so no commands are loaded once the module is removed from the current session. Because of this bug, we decided not to reference the script component snap load in NestedModules but in ModulesToProcess of the module manifest. When it is referenced in the ModulesToProcess that makes the script commands to be loaded in the scope of global session which means that these commands are removed from the session when Remove-Module is called and if Import-Module is called once again he will not fail because the module manifest try again to load the sanp-in. When the controls are respectively in the context that they are not affected by the specification of modules and that is why they cannot be imported with the desired prefix you want.

    To be honest we didn't know this side effect when we discussed the initial bug with Remove-Module. All these problems will be solved in the next PowerCLI release when binary VMware.VimAutomation.Core will become the module. Until then, I suggest you workaround with fixation of the VMWare.VimAutomation.Core manifest file. To do this you have need open and change of \Modules\VMware.VimAutomation.Core\VMware.VimAutomation.Core.psd1

    the following way:

    1. set ModuleToProcess on a string is empty

    2. put NestedModules to @('VMware.VimAutomation.Core.ps1')

    This will make the module to behave in the same way as 6.0R1

    Kind regards

    Dimitar Milov

  • problem with bind variables in the SQL query view object

    Hi all

    I use JDev 11.1.2.4.0.

    I have a problem with bind variables in the SQL query view object.

    This is my original SQL

    SELECT sum(t.TIME) , t.legertype_id
    FROM LEDGER t
    WHERE t.nctuser_id = '20022' 
          AND to_char(t.insertdate,'YYYYMMDD') in ('20130930','20130929')
    group by t.legertype_id
    

    In my view .xml object query tab, I am writing this

    SELECT sum(t.TIME) , t.legertype_id
    FROM LEDGER t
    WHERE   t.nctuser_id = '20022'
        AND to_char(t.insertdate,'YYYYMMDD') in :dddd
    group by t.legertype_id
    

    Davis here is a variable of Type liaison: String, updatable and necessary.

    I try to deal with Davis as ('20130930 ', ' 20130929') hoping the view object, run as my original SQL.

    But failed. The view object retrieves 0 line after that I run.

    Why?

    Thank you! ('2original SQL0130930', '20130929') ('20130930 ', ' 20130929')

    A variable binding cannot be used as this is why you must use years table. Check decompilation binary ADF: using oracle.jbo.domain.Array with ViewCriteria to see a solution.

    Timo

  • Major bug with storage Var MX 7.0.2 Client?

    I think I found what looks to be a pretty big bug for client variable storage in CFMX. Strangely, the bug actually exists in CFMX 6.1 and CFMX 7.0.2 (the two versions, I test against), but only cultures upward in 7.0.2. In addition, you will notice that I say it's a matter of client variable (it is), but the bug seems to be with JSESSIONID, I thought only relate to session variables. My statement of the problem is that the variable customer 'disappear' after having been defined. In a Word, I log onto my site, which fixed a couple of variables customer, and then when I browse another page on the site, client variables are no longer in existence (it seems as if I've never connected before). I'm running CFMX 7.0.2 Enterpise (deployment of WAR) on Red Hat Enterprise Linux 4.0 (update 3) using the internal JRun web server and using J2EE session variables.

    After a bit of detective work, I noticed by looking at the HTTP headers on my first visit to the site (with no existing cookie set) which JSESSIONID is defined * double * when I first hit my site. However, a JSESSIONID is being stored in cglobal table while the other JSESSIONID is stored in the actual cookie, which causes subsequent research of incompatibility. Therefore, it seems that if I have never connected before.

    Here are the relevant header information when you first visit the site:

    HTTP/1.x 200 OK
    Set-Cookie: CFID = 102; expires = Thu, August 14, 2036 13:20:27 GMT; path = /.
    Set-Cookie: CFTOKEN=66021081eab5f673-3609FCE3-CF52-FC2B-25E974A728406FC5;expires=Thu,14-Aug-2036 13:20:27 GMT; path = /.
    Set-Cookie: JSESSIONID = 583033e973025152237c; path = /.
    Set-Cookie: JSESSIONID = 58306b4060d425456d5c; path = /.
    Date: Tuesday, August 22, 2006 13:20:27 GMT
    Content-Language: en-US
    Content-Type: text/html; Charset = UTF-8
    Connection: close
    Server: JRun Web server

    See how there are two directives Set-Cookie JSESSIONID? The interesting part is that CFMX 6.1 (on Solaris, at least) is exactly the same, as long as the Set-Cookie guidelines double go. However, here's where 6.1 MX and MX 7.0.2 differ...

    If you look at what's coming in the real cookie compared to what is stored in the column 'data' in the table cglobal MX 7.0.2 you will see (based on the header above information):

    urltoken = CFID #= 102 & CFTOKEN #= d 66021081eab5f673-3609FCE3-CF52-FC2B-25E974A728406FC5 & jsessioni #= 583033e973025152237c #lastvisit = {ts' 2006-08-22 09:20:27 ""} #timecreated = {ts ' 2006-08-2209:20:26'}#hitcount=2#cftoken=66021081eab5f673-3609FCE3-CF52-FC2B-25E974A72840 6 FC 5 #cfid = # 102}

    The key bit is the JSESSIONID value, that has the value 583033e973025152237c. However, the cookie JSESSIONID value is 58306b4060d425456d5c.

    The same comparison with CMFX 6.1, the HTTP header info:

    HTTP/1.x 200 OK
    Set-Cookie: CFID = 3499; expires = Thu, August 14, 2036 13:31:50 GMT; path = /.
    Set-Cookie: CFTOKEN=525ea9a5badb14f2-36146ADA-DCAC-CE63-1706ADD070C8F8E1;expires=Thu,14-Aug-2036 13:31:50 GMT; path = /.
    Set-Cookie: JSESSIONID = 86308f1257484a747d6c; path = /.
    Set-Cookie: JSESSIONID = 8630627b049162583e68; path = /.
    Date: Tuesday, August 22, 2006 13:31:50 GMT
    Content-Type: text/html; Charset = UTF-8
    Connection: close
    Server: JRun Web server

    And this is the value of cglobal.data column:

    urltoken = CFID # 3499 = & CFTOKEN #= 525ea9a5badb14f2-36146ADA-DCAC-CE63-1706ADD070C8F8E1 & jsession id #= 8630627b049162583e68 #lastvisit = {ts' 2006-08-22 09:32:03 '} #timecreated = {ts ' F8E1 2006-08-2209:31:50'}#hitcount=9#cftoken=525ea9a5badb14f2-36146ADA-DCAC-CE63-1706ADD070C8 #cfid = # 3499}

    And the cookie JSESSIONID value is 8630627b049162583e68.

    Note the key change in behavior between 6.1 MX and MX 7.0.2? 6.1, even if the two Set-Cookie instructions were updated, the logic of client variable storage at least systematically used second JSESSIONID value. In 7.0.2 it appears that the first JSESSIONID value is stored in the table cglobal while the second JSESSIONID value is stored in the table cglobal.

    This is where the plot gets complicated still further... Even if my client variables are not returned on the following clicks through my site (he tells me I'm not connected), values for CFID/CFTOKEN/JSESSIONID are * not * re - put on each page. In fact, if I query the cglobal table directly out of my CFID/CFTOKEN, hitcount and lvisit values are actually updated!

    It is a major obstacle in our migration process. Can someone dig a hole into my configuration/logic and point out something I am doing wrong? The craziest part about this, for me, is the client variables which disappear even if it looks like the culprit is the JSESSIONID value. I even tried to extinguish the J2EE session variables and exactly the same problem occurs.

    Kind regards
    Dave.

    AAAAAAAARRRRRRRGGGGGGGHHHHHHHH! I got it!!!

    I am frustrated with Adobe right now, but I finally got inside the client variable issue. You know how the accession of ColdFusion is believed to be cumulative? Yes, well, not so much. It turns out that the CFMX 7.0.2 release is available with 3.3 DataDirect JDBC drivers. In addition, it seems that something in the client variable code between MX 6.1 and 7.0.2 regressed so that updates of the client variable under the hood has broken with all pilot pre - 3.5. Once I updated to pilots of 3.5, everything worked, including the spy feature and the variable updates the customer.

    Adobe, this must be resolved as soon as POSSIBLE. It's a huge show-stopper for site using client variables. I don't know if it is limited to Oracle because I have other RDBMS platforms to test against, but is a big problem. The difficulty here is update installation programs that are downloadable from your site with 3.5 drivers * and * update 7.0.2 Release notes note that the game 3.5 driver isn't in any downloaded bits before every time that you update the installation programs.

    Jochem, thank you very much for your persistence in helping me through this issue.

    Kind regards
    Dave.

  • AM Customer Interface + method with a variable number of parameters

    Hello

    I use JDev11 & ADF. I have an App Module exteding, an application custom module (ApplicationModuleImpl) class. I created a few methods and expose them in the Client Interface. I read that I can only use the return types and methods of simple or serialized attributes in the Client Interface of AM. I need to create a method with the variable number and type of parameters, something like "Createwithparams", something like:
        public void Method(String[] FieldNames, Object[] FieldValues)
    Is there a way to do it?

    TKS.

    You just did it. It should work as far as I know.
    If you can not make available the method try list instead of normal array.

    Timo

  • Bug with the donation page today

    You have a bug with your fundraising page. I have selected $10 and transferred to Paypal to $3. I tried again and made sure to click twice on a $10. I got the same results. I thought you should know.

    Hi el_nik,
    I filed a bug to prosecute for the page to donate. However can you please confirm that this always happens after that you remove the cookies from the page?

  • In v31.0, I can view is more 'raw' XML files with line breaks and ' &lt; ' and ' / &gt; ' characters. Is there a setting that will give me this option?

    Until a few days ago when I opened a file XML with Firefox, I see the content of the file appears with line breaks and ' < ' and ' / > ' and elements. Like this:

    fixed image in < typeOfResource > < / typeOfResource >

     <genre authority="marcgt">picture</genre>
     <genre authority="nmc">Print, Photographic</genre>
     <originInfo>
       <dateIssued encoding="marc">1884</dateIssued>
       <dateIssued encoding="marc">1884</dateIssued>
       <issuance>monographic</issuance>
     </originInfo>
     <language>
    

    Now, it will display like this:

     still image picture Print, Photographic 1884 1884 monographic eng electronic
    

    No tags or line breaks. I need to see the entire XML file. How can I configure FireFox to display this for me? One of my colleagues uses v31.0 and XML views with tags and the line breaks for him.

    For example, I was looking at files sitemap.xml (search Google for inurl:sitemap.xml). For those who have not declared a style sheet, you should always see the classic "source highlight: presentation

    Example: http://www.website.com/sitemap.xml

    Are the files that don't appear as similar planned by not declaring a style sheet?

    As a temporary workaround, you can view the source to see the original. Either:

    • CTRL + u
    • Right click > view Page Source
  • Bug with high speaker on the Satellite C650-144 with Window 7

    I have a bug with my high speaker, so I download driver leatest and nothing has changed.
    But when I use the jack slot it works and when I put it and when I go to the speaker icon in the windows taskbar there is 'activity' because the level moves, but there is no probe on my high speakers.

    For windows everythings works fine, so I don't know what I have to do...
    I went on the Internet on the forum, but there is no solution for my problem!

    Please help me!

    My computer references are: Satellite C650-144 and PSC08E-01100DFR
    Please excuse me for my English...

    Thank you very much!
    Friendly
    aldebordeaux

    Hello

    Simply said; You can listen to the sound using headphones, but can not hear the sound on the speakers. Right?

    Have you noticed this early? Have you installed a few 3rd party applications may affect the functionality of speaker? Maybe some Windows updates can affect this?

    Please check the settings in the control panel-> sound-> the Read tab

    As a last resort, I recommend for recovering the device I want to say, it looks a bit because of speaker, but I strongly recommend to test the laptop with the factory settings.

  • Which is the * which replaces the zip codes with "United States".

    So I use the calendar for my daily schedule of the customer. Recently, I made the mistake of upgrading to OS (always a mistake with apple these days) and now have a MAJOR problem with the location field.

    Some * at apple decided to replace the postal code SUPREMELY USEFUL with 'United States', when I get an address and ap auto fills in the rest. I tried replacing it and not selecting in the dropdown list options that appears when I start typing in a speech, but it is on its own.

    Must say replacing a very specific data item for something so broad that the United States is one of the stupidest things, Apple has done recently (apple doing stupid things is unfortunately too often PJ {Post job}).

    I drove to the wrong address several times that big cities like THE have often more than a street with the same name. Get a zip code has been a great way to avoid this problem, but some Morón has decided to get rid of post code data and the access point has no option of preference to add in the zip code.

    Be sick enough Apple make these kind of nonsense that would never happened before (Ex: decide to move progress bars to 100% immediately independent to the extent of the progress are actually completed).

    Anyone know a work around? The only advice I receive from apple is to return to an older operating system (great work apple.) Train me to not trust and avoid your new operating system.  Great idea, is NOT).

    Post edited by: codr

    I know that we just spend an hour on the phone with apple care and they told us the same thing. We need these postal codes to be there so that we our sellers in the right place. missing or being late for the appointment is very professional. We need apple to fix this ASAP.

  • Flatten XML does not record the names of the ListBox element to the XML file.

    On my front, I have a ListBox indicator that has strings that the user can select. Also, the user can edit items in the drop-down list to add new items. After that the user selects one and pushes my "Save" button, I use the flatten XML function to save the selection in an XML file. But Flatten XML saves only the value (the index of the selected items to the XML file and not the names of items in ListBox.) This is enough information to reconstruct from the string of data that the user has selected.

    A ListBox where a user is to select from a list of strings, flatten function XML should not also store the strings that have been selected?


  • Using ChnCalculate with a variable

    The channel of LIN/LIN_Error has 3000 values inside. I want to add a correction value to each of the 3000 values inside.

    If I use a constant, it works well. For example:

    Call ChnCalculate ("Ch(""LIN/LIN_Error"") = (2 + Ch (" "LIN/LIN_Error" "" "))") adds 2 to each value.

    However if I try with a variable it does not work.

    Dim Corr

    GlobalDim "Corr".

    Corr = 2
    Call ChnCalculate ("Ch(""LIN/LIN_Error"") = (Corr + Ch (" "LIN/LIN_Error" "" "))")

    Hi Frank,.

    The problem is your first line.  By running 'Dim Corr' in the VBScript code, you force this variable name to refer to the variable in VBScript and not the variable global tiara - light color in the SCRIPT Panel does not reflect what is confusing.  If you remove the statement Dim Corr, and then the VBScript code will correctly reference the global variable.  Another way to put it is that your VBScript never affects the global variable to Corr 2.  The command correctly done ChnCalculate() refers to the global variable of Corr, but it is always set to 0.

    However, for this task, I'd recommend the ChnLinScale() function, which is simpler, will run faster, accepts regular VBScript variables and ignore so all this imbroglio.

    Dim Corr
    Corr = 20
    Call ChnLinScale ("LIN/LIN_Error", "LIN/LIN_Error", 1, Corr)

    Brad Turpin

    Tiara Product Support Engineer

    National Instruments

Maybe you are looking for