How to tell if ObjectProxy contains ArrayCollection or single object?

When I get data back from a web service, the list contains an
ArrayCollection. Within each ArrayCollection, the item may be
either a single object, or an ArrayCollection of theser objects. It
appears FLEX supplies what it thinks is the correct type of
ObjectProxy object based on the number of children under the parent
node.
If the ObjectProxy refers to an ArrayCollection, I want to
iterate over it, but if it refres to a single object, I want to
pull off some of it's properties.
How can I tell at run time if an ObjectProxy refers to an
ArrayCollection, or a single object? Thanks very much in
advance!

Found an answer here:
http://www.theruntime.com/blogs/be-sharp/archive/2008/02/26/web-services-and-arraycollecti ons-in-adobe-flex-2-how-to-successfully-read-any-number-of-xml-nodes.aspx
which provides an answer if there are NO child nodes, if
there is exactly one child node, or if there are multiple child
nodes...

Similar Messages

  • How do i reference a container from inside an object.

    if an object is in a container, how does the object
    fetch a value stored in the container. do you
    have to pass a reference to the container when you
    create the object. In Visual Foxpro it is easy, you
    this go
    value = THIS.PARENT.GetValue().
    what is the best way to do this in java?
    thanks for any help
    owen brandon

    I'm not sure what you're getting after -- maybe you could explain your actual setup.
    Taking a SWAG:
    If you have a textfield within a panel, you just reference the textfield directly. The container is just for visual organization.
    If you have a textfield in a different frame, you need to make the textfield public (i.e. no access modifier) or you need to make the textfield private and provide accessor (and maybe a mutator) method for it (i.e. create your own getValue(Object component) method to grab the data.

  • How can I change the color of a single object?

    I have a bright orange barrel in a video of mine and I want to change it to a cooler color without changing the rest of the scene? How can I do this?

    Hi
    In FCP, under the help menu, choose Final Cut Pro Help.
    When it opens, search for " Using the Limit Effect Controls of the Color Corrector Filter to Change a Specific Color".
    MtD

  • How do a reference a container from one of its objects?

    If i have on object in a container, how do i reference the
    container from inside the object. For instance, if i have
    a textbox and i want it to change color depending on
    a value in the container, how do i get to the container.
    thanks for any help
    owen brandon

    If you are asking about AWT or Swing, the Component class has a getParent() method that returns a Container.

  • [Forum FAQ] How to tell if the DAC port is automatically changed or not

    Introduction
    Per Books Online:
    http://msdn.microsoft.com/en-us/library/ms189595.aspx
    SQL Server listens for the DAC on TCP port 1434 if available or a TCP port dynamically assigned upon Database Engine startup.
    Also, we can go to the following registry to specify the DAC port number manually:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQLServer\SuperSocketNetLib\AdminConnection\Tcp
    The error log contains the port number the DAC is listening on. Besides looking at the error log, how to find which port is used by DAC connection and how to tell if the DAC port is manually set by us or assigned automatically by SQL Server?
    Solution
    The following query can be used to check if there is an existing DAC connection and it also give us the port number used by dedicated admin connection.
    SELECT name,local_tcp_port FROM sys.dm_exec_connections ec
    join sys.endpoints e
    on (ec.endpoint_id=e.endpoint_id)
    WHERE e.name='Dedicated Admin Connection'
    Here is the scenario to test if the DAC port is automatically changed or not.
    There are two instances are running on one server. I specified the same DAC port number 5555 for the two SQL Server instances by modifying the registry
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL11.MSSQLSERVER\MSSQLServer\SuperSocketNetLib\AdminConnection\Tcp
    Opened the DAC connection to instance 1. Executed the above query, it returns the result:
    name                                                  
    local_tcp_port
    Dedicated Admin Connection               5555
    Then, opened a DAC connection to instance 2. It throw out the following error message:
    Sqlcmd: Error: Microsoft SQL Server Native Client 11.0 : Client unable to establish connection because an error was encountered during handshakes before login.
    Common causes include client attempting to connect to an unsupported version of SQL Server, server too busy to accept new connections or a resource limitation (memory or maximum allowed connections) on the server..
    Sqlcmd: Error: Microsoft SQL Server Native Client 11.0 : TCP Provider: An established connection was aborted by the software in your host machine..
    Sqlcmd: Error: Microsoft SQL Server Native Client 11.0 : Client unable to establish connection.
    Sqlcmd: Error: Microsoft SQL Server Native Client 11.0 : Client unable to establish connection due to prelogin failure.
    The above error message was thrown out because the DAC port number 5555 was not available for instance 2 which was occupying by instance 1. After restarting the SQL Server engine service of instance 2, if checking in the registry, you would see a new DAC port
    number has been assigned to the second instance.
    Then, the DAC connection to instance 2 succeed this time and executed the above query, it returned the same port number which is same as the one in the registry key and the port number was assigned automatically.
    DAC port will not change even SQL Server service is restarted only if the TCP port is available.
    More Information
    http://msdn.microsoft.com/en-us/library/ms189595.aspx
    Applies to
    SQL Server 2012
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    I tested your script after
    establishing a DAC connection from SSMS 2014. It worked as described. Thank you.
    SELECT name,local_tcp_port FROM sys.dm_exec_connections ec
    join sys.endpoints e
    on (ec.endpoint_id=e.endpoint_id)
    WHERE e.name='Dedicated Admin Connection'
    name local_tcp_port
    Dedicated Admin Connection 1434
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Design & Programming
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • ObjectProxy to ArrayCollection

    Hi to all.
    I am Vladimir from Serbia.
    I try to learn flex over the video tutorials and google. I am a new in flex and programing.
    Have a problem, and I need yours help.
    How to insert data from objectProxy to ArrayCollection.
    Here is my mxml code:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:views="views.*"
         creationComplete="initApp()" backgroundColor="#000000" >
         <mx:Style>
              .picturePanel, .thumb {
                   border-style: solid;
                   border-thickness:1px;
                   background-color:#0F0F0F;
                   border-color:#6F6F6F;
                   corner-radius:10;
              .thumb {
                   padding-bottom:10;
                   padding-top:10;
              .buttons {
                   fillColors:#0F0F0F, #6F6F6F;
                   fill-alphas: 1, 8;
                   color: #ffffff;
                   textRollOverColor:#FFFFFF;
                      textSelectedColor:#FFFFFF;
         </mx:Style>
         <mx:Script>
              <![CDATA[
                   import mx.controls.Alert;
                   import mx.utils.ObjectProxy;
                   import mx.rpc.events.ResultEvent;
                   import volueObjects.photo;
                   import mx.collections.ArrayCollection;
                   import mx.utils.ArrayUtil;
                   [Bindable]
                   public var photoData:ArrayCollection = new ArrayCollection();
                   [Bindable]
                   private var photoRaw:ArrayCollection;
                   // Result Handler - Fires when all data are coledted from xml
                   private function photosInHandler(event:ResultEvent):void
                        // Inserting data in the photoRaw array collection
                        if (event.result.photos == null)
                             photoRaw = new ArrayCollection();
                        else if (event.result.photos.image is ArrayCollection)
                             photoRaw = event.result.photos.image;
                        else if (event.result.photos.image is ObjectProxy)
                             photoRaw = new ArrayCollection(ArrayUtil.toArray(event.result.photos.image));    
                        //Alert.show(photoRaw.length.toString());
                        // For loop
                        for ( var i:int=0; i<photoRaw.length; i++)
                             // Creating valueObject
                             var tempPhoto:photo = new photo();
                             //Creating object and inserting data from array collection
                             var photoFromArray:Object = photoRaw.getItemAt(i);
                             // Inserting data in  tempPhoto value object
                             tempPhoto.filename = photoFromArray.filename;
                             tempPhoto.photographer = photoFromArray.photographer;
                             tempPhoto.category = photoFromArray.category;
                             tempPhoto.desc = photoFromArray.desc;
                             //Adding data in photoData Array
                             photoData.addItem(tempPhoto);
                   // starting Http Service. Send data
                   private function initApp():void
                        photosIn.send();
              ]]>
         </mx:Script>
         <mx:HTTPService id="photosIn" method="get" showBusyCursor="true"
              url="selectData.php" result="photosInHandler(event)"  />
              <mx:LinkBar dataProvider="{Content}" fontSize="20" color="#FFFFFF" rollOverColor="#B5D2FA" x="350" y="10"/>
                   <mx:ViewStack id="Content" resizeToContent="true" x="101" y="118">
                        <views:home id="home" label="Home"/>
                        <views:gallery id="gallery" label="Gallery" photoData="{photoData}" />
         </mx:ViewStack>
    </mx:Application>
    Here is php code:
    <?php
    echo "<?xml version=\"1.0\" \n?>";
    $conn = mysql_connect("localhost", "root","");
    if (!mysql_select_db("mygallerydb")) {
        echo "Unable to select mygallerydb: " . mysql_error();
        exit;
    $sql = "SELECT * FROM photos";
    $result = mysql_query($sql);
    $filename = $_GET["filename"];
    $photographer = $_GET["photographer"];
    $category = $_GET["category"];
    $desc = $_GET["desc"];
    /* print out your own XML */
    echo "<photos>\n";
    while( $row = mysql_fetch_object( $result ) )
       echo "<image><filename>".$row->filename."</filename><photographer>".$row->photographer."</photographer>
                        <category>".$row->category."</category><desc>".$row->desc."</desc></image>";
    echo "</photos>";
    ?>
    I getting one row with values:
    tempPhoto    volueObjects.photo (@19add2b1)   
        category    "".$row->category.""   
        desc    "".$row->desc.""   
        filename    "".$row->filename.""   
        photographer    "".$row->photographer.""  
    Can someone help me?
    thanks in advance

    I found problem.
    when i start the project i did not set application server type.
    Thanks anyway.

  • How to create a word container

    Hello All,
    Can any one tell me How to create a word container.
    Thanks and regards,
    Lisa

    Hi,
    check this program :
    SAPRDEMOWORD97INTEGRATION
    Regards
    Appana

  • How to tell how much toner in hPlaserjet CP1525nw

    how to tell how much toner in hP laserjet CP1525nw

    Hello lwwpbw, and welcome to the HP Forums, I hope you enjoy your experience!
    I saw from your post that you are looking to find the levels of toner within your printer. I'd love to help with that today!
    I have a document I would suggest using, containing the steps to check your toner levels: HP LaserJet Printers - Checking Toner Levels.
    This document may also be helpful to you: HP LaserJet Pro CP1525n and CP1525nw Color Printers - Managing Print Cartridges.
    Good luck and please let me know the results of your troubleshooting steps. Thank you for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • How to tell what template is applied to a Framemaker file?

    I'm new to Framemaker...so please excuse if this is a silly question.
    We are trying to figure out how to tell what template has been applied to a Framemaker file. We are using the structured view in Framemaker 7.2.
    Perhaps I am thinking too much like a Microsoft Word user -- in which case I can look at what template has been applied to a document.
    Does Framemaker work the same way -- or are templates associated with Framemaker files in some other way?
    Thank you --
    J-Ha

    J-Ha,
    FrameMaker works differently. Strictly speaking, there is no way to tell which template was used last. A FrameMaker template is just a FrameMaker document which you call "template". Using File > Import > Formats you can import all or selected formats from one document to another. The main benefit: Each document is completely self-contained and does not require any other document.
    Many solutions I know of include a user variable named something like "template-version" into their template document or put the version information on one of the reference pages. When importing user variables or reference pages, this can tell you version imported last.
    - Michael

  • Azure Storage - How to tell what vhd is attached to what?

    On our storage account in our vhd container we have vhd blobs. The issue is that it looks like some where renamed from what I manually named to them to some incomprehensible name. I'm not sure when this took place but sometime in the last month. So I now
    have no idea what base OS vhd goes where.
    How can tell which vhd is attached to which VM?
    How do I rename these VHD's without taking down the server?
    How can I find out which ones are not being used? It looks like 2 vhd's (30GB) haven't been modified for a month but how do I actually know they are not being attached to anything and being used? (Note: we only have vhd's no other blobs.)
    How do I get Azure to stop renaming the blobs to some meaningless name?
    Thanks,
    Chris

    How can tell which vhd is attached to which VM?
    Since a VHD is essentially a page blob and is stored as a disk (OS disk or Data disk), you can list all disks and the result will include the URL of the blob. If you're using
    Windows Azure PowerShell Cmdlets, you can find this information by executing Get-AzureDisk cmdlet. Also see this link for more details:
    http://msdn.microsoft.com/en-us/library/windowsazure/jj157176.aspx
    How do I rename these VHD's without taking down the server?
    I don't think you can do that. Again because these VHDs are page blobs and blob storage do not support "Rename" operation natively, you would need to copy the VHD first and once the copy is complete, you can delete the original one.
    How can I find out which ones are not being used? It looks like 2 vhd's (30GB) haven't been modified for a month but how do I actually know they are not being attached to anything and being used? (Note: we only have vhd's no other blobs.)
    When a VHD is attached to a VM, Windows Azure puts a lock (lease) on the blob holding the VHD. Easiest way for you to check is by listing the blobs in that container and find out which blob has active lease on it. Other way obviously is to get all disks
    and get the URLs and comparing them with all blobs in that container.
    How do I get Azure to stop renaming the blobs to some meaningless name?
    Not sure what you mean. Could you please explain?
    Hope this helps.

  • How to print text on container using oop on alv list

    Hello Guru's,
             pl guide me how to print text on container using alv list-display which have interactive events  using     oop classes/methods ...
                    I want to print hard coded text on coantainer , on double clicking it will call another screen.
    Pl Help..
    Message was edited by:
            paresh sonavane

    Hi Paresh,
           1.      Go to the Layout and Create One custom container box and give name it.
            2. Custom Container is the one type of tool and its used for Displaying the Reports 
                with the use of ABAP Objects.
            3. Go to se38 and Write The Following Code.
    tables ZTEAM_GD.
    DATA : OBJ TYPE REF TO CL_GUI_CUSTOM_CONTAINER,
           OBJ1 TYPE REF TO CL_GUI_ALV_GRID.
    DATA IT_TEAM LIKE TABLE OF ZPLAYER_BAT_DET       .
    SELECT * FROM ZPLAYER_BAT_DET INTO TABLE IT_TEAM.
    CREATE OBJECT OBJ
      EXPORTING
        CONTAINER_NAME              = 'ALV'.          -
    > Give ur Container Name
    CREATE OBJECT OBJ1
      EXPORTING
        I_PARENT          = OBJ.
    CALL METHOD OBJ1->SET_TABLE_FOR_FIRST_DISPLAY
      EXPORTING
        I_STRUCTURE_NAME              = 'ZPLAYER_BAT_DET'
      CHANGING
        IT_OUTTAB                     = IT_TEAM.
    *CALL METHOD OBJ1->SET_DROP_DOWN_TABLE
    EXPORTING
       I_STRUCTURE_NAME = 'ZTEAM_GD'
    CHANGING
       IT_OUTTAB        = IT_TEAM.
    CALL SCREEN 9000.
    *&      Module  USER_COMMAND_9000  INPUT
          text
    MODULE USER_COMMAND_9000 INPUT.
    CASE SY-UCOMM.
    WHEN 'EXT'.
      LEAVE PROGRAM.
    ENDCASE.
    ENDMODULE.                 " USER_COMMAND_9000  INPU     
    Thanks.
    Reward If Helpful.

  • How to tell embedded jinitator applet is still running when window closed

    Hello, we are trying to accomplish the same thing that is mentioned in this post from Metalink. I've searched for a solution and hope someone here can help. Instead of restating the issue I think David Wilson does a good job of explaining what is needed. Can anyone please suggest a possible solution?
    From: David Wilton 07-Oct-05 01:08
    Subject: How to tell embedded jinitator applet is still running when window closed
    How to tell embedded jinitator applet is still running when window closed
    Hi,
    We run an oracle 10g forms application through 9iAS over an intranet. All users are running windows 2000 professional.
    We run separate frame = true but I would like to switch to separate frame = false
    With separate frame = true if the user clicks the outer windows "X" close button (forms mdi window) the user is prompted to save changes before the application ends.
    BUT
    when using separate frame = false
    If the user clicks the upper window "X" button (no longer form mdi window but regular browser window) the window and application is abruptly closed.
    I'm interested in using a onbeforeunload function to confirm if the user wants to close the window. This would be placed in the basejini.htm file. This could always ask if the user wants to exit or not. If they click OK then the window closes but if they click "Cancel" you are returned to the forms application exactly where you left. something like event.returnvalue="do you really want to exit?";
    However if the user exited using the normal exit form method then the applet is already closed before the onbeforeunoad event fires and there is nothing to go back to and I want the window to close automatically. This is accomplished using close.html file in post forms trigger.
    So what I want and what I think many may also want is the check if the embedded applet is still running and if so prompt the user to return to the application or continue to close. Of course If the applet is no longer running then just close because there is no reason confirm closing anymore.
    Does anyone have a html/JavaScript solution that can be placed in the jinitiator.htm file? or similar?
    Thank you
    David
    [email protected]
    From: Andrew Lenton 07-Oct-05 08:58
    Subject: Re : How to tell embedded jinitator applet is still running when window closed
    I don't know if this is exactly what you are after but you can add the following to the top of your basejini.htm file and it should prompt the user before exiting the IE window.
    <BODY %HTMLbodyAttrs%>
    %HTMLbeforeForm%
    <SCRIPT>
    <!--
    window.onbeforeunload = unloadApplet;
    function unloadApplet(){
    message = "Warning! Please exit the Java Applet prior to
    exiting the browser"
    return message;
    //-->
    </SCRIPT>
    From: Oracle, mohammed pasha 07-Oct-05 09:55
    Subject: Re : How to tell embedded jinitator applet is still running when window closed
    David,
    Well I could not understand your complete requirement.
    Refer to Note.201481.1 How to Close the Browser Window When Closing Forms And How to Simulate SeparateFrame By Javascript
    Note.115905.1 How to Close Browser Window When Closing Webforms Applet
    Kind Regards,
    Anwar
    From: David Wilton 07-Oct-05 14:37
    Subject: Re : How to tell embedded jinitator applet is still running when window closed
    Thank you for your reply and yes you did not understand my question fully.
    Sorry if this is a long reply
    I am able to close the browser window using information in notes 115905.1 and 201481.1, this is not the issue. We implemented this several years ago. It is workable for both separate frame = true or false.
    It is most important to not allow the user to end their forms application by closing the windows browser, they must close using normal form exit commands.
    What I want is to have separate frame = false, the big drawback to this option is the user can exit the application and bypass all forms code by pressing the windows "X" close button. This is why we need the code as just provided by Andrew Lenton above in this thread.
    BUT Andrew's code will always prompt the user before closing the window and I do not want that. I want the user to be prompted only under scenario 2 listed below.
    Here's the 2 case scenario for exiting the application.
    1. If the user closes properly and uses exit form which fires all normal form triggers including post_form with it's call to close.html file.
    All uncommitted changes are saved or rollback and the users session is ended normally both on the database and in the application server.
    All browser windows will close, great all is good. And without Andrew's code the window will close but with Andrew's code the user will be prompted to close or not, if they select Cancel the window will remain but the applet has already ended so why prompt? ...This is what I want to avoid.
    2. In the forms app. if the user clicks the windows "X" close button with uncommitted changes. The browser just closes the changes are rollback without prompting the user to save. The users sessions are now lost and still running in the database and application server until they are timed out.
    If I use Andrew's code then the user will be prompted to continue to close or go back, if they click Cancel to go back then focus returns to the forms application and the user can continue to work. If the user clicks OK then the window closes and unfortunately their sessions are still lost until timed out.
    So what I desire is to add to Andrew's code to check if the embedded applet is still running and prompt the user to close or not accordingly.
    Something like:
    Basejini.htm like
    </HEAD>
    <SCRIPT LANGUAGE="JavaScript">
    function maximizeWindow()
    window.moveTo(0,0);
    window.resizeTo(screen.availWidth,screen.availHeight);
    function confirm(){
    If(document.embeddedapplet.closed())
    Win.opener = self;
    win.close();
    Else if
    event.returnValue = "Closing Forms Application. OK to continue?";
    </SCRIPT>
    <BODY %HTMLbodyAttrs%, onload="maximizeWindow()", onbeforeunload="confirm()">
    %HTMLbeforeForm%
    I hope this explains my requirements.
    David
    From: Oracle, Evelene Raechel 10-Oct-05 06:45
    Subject: Re : How to tell embedded jinitator applet is still running when window closed
    Hi,
    Note.199928.1 How to Alert User on Closing Client's Browser Window in Webforms
    Regards,
    Rachel
    From: David Wilton 11-Oct-05 17:40
    Subject: Re : How to tell embedded jinitator applet is still running when window closed
    I'm sorry this is not helpful at all.
    Note 199928.1 is only an alert which does not stop the closing of the window and still displays as an alert if the user does close properly using exit form ... so why would you want to display the alert then?
    This is exaclty what I do not want and why I want to determine if the applet is still running before displaying any kind of message.
    David
    From: Oracle, Evelene Raechel 17-Oct-05 12:23
    Subject: Re : How to tell embedded jinitator applet is still running when window closed
    Closing thread.
    Thanks,

    Hello,
    I had the same issue last year - wanting to provide a warning on closing the browser, but only if the Forms session is still running. The approach I took is described below, see also the thread where I originally posted this at Closing brower window
    Hi there,I've had a similar requirement - or rather, the two conflicting requirements: to warn when the browser is being closed, but for the app to be able to close the browser without a warning being fired.
    To always provide a warning when someone (the user or the Forms app) tries to go to a different page (e.g. your close.htm), use Javascript like:
    function confirmExit(){
    if(appletRunning==true) {
    msg="Closing this window or navigating to another page will end your SomeGreatApp session.";
    window.event.returnValue=msg;
    And make a call to confirmExit() in the onBeforeUnload event of your main page.
    You'll notice I first check an 'appletRunning' variable before displaying the warning. This Javascript variable is set to true by my app when it starts up, using an embedded Javabean that calls out to Javascript. Once that variable is set to true, then the warning will be displayed if the user tries to shut the browser by clicking on the 'x' button, or to go to a different URL.
    When my app is shutting down, it uses the same Javabean to set appletRunning back to false. It then navigates to a close.htm - which will be done without a warning being displayed.
    See Re: How can a Javabean call Javascript function of the basejpi.html?? for example code on how to call Javascript from a bean embedded in your Forms app.
    Hope these ideas help you out, it's worked for me (so far, anyway!!)
    James

  • How to tell N6.5 DHCP to use a W2k8 for PXE?

    Hello,
    could anyone give me a hint, how to tell my netware DHCP to use a Windows Server 2008 R2 running Acronis with PXE Server?
    Actual Situation:
    Netware 6.5 Sp8 Server with ZENWORKS in Cluster mode
    Netware DHCP Server
    ZEN7 SP1 Imaging
    --> works fine so far, and no problem in other subnets, IP-helper are configured in the switches
    New Situation:
    Netware 6.5 Sp8 Server with ZENWORKS in Cluster mode
    Netware DHCP Server
    Windows Server 2008 R2 running Acronis Snap Deploy with PXE-Server - in future may be a clean Windows Deployment service without Acronis
    --> that would be nice :)
    I found serveral ini-files (dts.ini, pdhcp.ini, tftp.ini) where I configured the new IP-Address of the W2k8 PXE Server.
    Now:
    The Client gets its correct IP-Address from Netware DHCP
    but after that the following messages:
    Auto-select:
    ZENworks Boot
    Boot Server IP: --.--.--.-- (the correct one configured in the ini-files!)
    TFTP.
    PXE-T02:
    PXE-E3C: TFTP Error - Access Violation
    PXE-M0F: Exiting Intel Boot Agent
    Any ideas?
    Thanks a lot.

    Originally Posted by magic31
    You don't have to configure anything specifically in DHCP to work with PXE. Possibly just unconfigure an option that was set for the previos setup; One thing to check (and remove) is option 60 for the PXE Client option, if this is configured with the DHCP subnet options. This option should only be set if both DHCP and PXE services are on the same server (as is probably the case in your situation as I'm guessing both DHCP as also PXE get loaded in the same cluster resource script).
    For subnets serviced outside of the subnet your DHCP server is running in, you will need to configure multiple ip helpers: one that points to the DHCP server and one points to the PXE server so those requests on other subnets get serviced correctly.
    To get things running it's probably easier to try to get this to work on the subnet your DHCP and PXE server are running in (so you are not also having to deal with the ip helper setup just yet). If that works, then expand you configuration to different subnets & ip helpers.
    Hope that helps,
    Willem
    As a ps and for clarification, don't load the PDHCP on any of the NetWare servers... just have the PXE PDHCP service running on the Windows server.
    The PDHCP/PXE service for ZenWorks won't understand/work with the Arconis one and visa versa.
    -Willem

  • How to tell if Im on AT&T?

    Hey guys. I guess I live right on the edge of an area covered/not covered by at&t. I have noticed that my reception bars have changed from black and white to colored and I have even seen a E next to it. So my question is how do I make sense of the different colors or letters so I know if Im on AT&T or some other network?

    how to tell if Im actually using at&T's own cell towers or a competitors.
    You will never be using a competitor's towers. A competitor would be T-Mobile, Sprint, Verizon, etc. and you'll never connect to their networks. You may in some cases be using an AT&T partner. In this thread, one poster advised:
    "To get an indicator when you are roaming on an AT&T partner network, call 611 and ask them to activate the (free) "Off Network Alpha Tag" on your account. If they ask why, tell them you want to be a good guy and observe the (usually unenforced) data limits while roaming."
    Hope that helps.

  • How to tell if REQ1 is set active high

    Hi I am using the 6533 PCI-DIO-32HS card in a PC with traditional DAQ, looking at an existing design.  I could not find how to tell if REQ1 is set active high or low, guessing it would be set up in the DIO confg vi.

    thanks for the additional information, yes will have to wait for the external hardware.  I did have a general question about the 6533 data and control line outputs using traditional DAC.  I think for this design it is set up as a pattern IO transfer using internal REQ and an internal clock set up as a VI input, (DIO START).  Anyhow I am monitoring the card outputs with a logic analyzer and it looks like an 8 element array (of 8 bit integers) is being used for the data input (to the DIO WRITE VI) with the first 4 elements being written out on DIOA0-A7, DIOB0-B7, DIOC0-C7, and DIOD0-D7 followed by the last 4 elements also written out to DIOA0-A7, DIOB0-B7, DIOC0-C7, and DIOD0-D7.  Anyhow it looks like the clock input to the (DIO Start VI) controls the pulse width of the data.  It looks like REQ1 goes high approximately 78 microseconds before the first 32 bits are written out followed by 5 microseconds of data (with the clock set at 200k), finally followed by the second data group (5 microseconds of data).  It then looks like REQ1 stays high for 2-4 ms after the second group of 32 bits is written out before going low.   Anyhow if you are trying to clock this data into a storage device I would expect to see rising clock edges when both the first and second group of data appear on DIOA0-A7..DIOD0-D7.  I monitored all the other control lines pclk1,2 ack1 and did not see signal levels other than 0, again I do not have the DIO card connected to anything except a logic analyzer.  Would you know if it is typical to use REQ1 as a clock input to a storage device or if this can be done?

Maybe you are looking for

  • Error Message When Syncing Ipod "There is no disk in the drive ... "

    When doing a search on the internet for this error message, i see a few other previous posts on forums.ilounge.com with others having this issue with Itunes, but all I can find is someone talking about deleting the Itunes preferences files on my comp

  • GTS and FI intergration

    Hi, Currently we are implementing SAP GTS 7.2, we need to do SPL check on payment run. When the payment proposal is generated in ECC - get an error as u201CTechnical error when checking in GTSu201D the message class is u201CFIPAY_GTSu201D but in GTS

  • Quotations under Contact Name

    So I have this issue that's been bugging me for a while. Under some of my contact names there are quotations (ie ""). I know where they are coming from, they are from the field "Nick Name." The problem is that I do not have any nick names for any of

  • Lightroom 1.3.1 vs Epson Stylus Photo R2400

    In print job panel, I can select SPR2400PremGlsyBstPhoto.ICC profile. But that is not available in Lightroom's print setttings section under media type. Is Premium Glossy Photo Paper the closest match, or do I have to move the ICC profile so it's als

  • Exporting video with normal settings but video plays buffered

    Hi, I have a preset in APP that i always use for TVC, today i went to use the same preset (with good quality footage) and when i go to play the exported video it plays very buffered and you can barely watch it. I exported a video yesterday using the