Newbie - how to test with parms.

Last week I posted a multi-part question here.  It was multi-part because it was taking up to an hour to open a question or reply box.  That seems to be fixed so now I'm breaking the question out into its pieces in hopes of getting an answer.  One of the questions was answered by member rtalton (kudos and thanks!) on a good way to find if an element is in an XML object.  Several people have come up with a solution, but his (or hers) was the best one.
On the question of debugging a Flex application it wasn't so clear, at least to me.  I have an application that will either be used via the web like anyother or be invoked from a program that will pass in the information for the fields.  That part works, but I have to put code into the application to set those fields.
Flex has an option to put in parameters if I am reading this right.  You just go:
Project -> Properties -> Run/Debug Settings
Then you create a new launch configuration that would include the stuff you want.  But it doesn't work for me.  The default setting ("C:\Flex Builder 3\FSCalc\FSCalc\bin-debug\FSCalc.html") appears in Debug, Profile and Run.  I tried changing the Debug (seems like the logical one) setting to include a query string after the URL.  I saved it with a new name and when I execute the application I'm prompted for which launch configuration to use.
Here is the modified string:
C:\Flex Builder 3\FSCalc\FSCalc\bin-debug\FSCalc.html?xml=<?xml version="1.0" encoding="UTF-8" ?><FSParm><GrossMonthlyEarnedIncome>2000</GrossMonthlyEarnedIncome><GrossMonthlyOtherInco me>694</GrossMonthlyOtherIncome><HouseholdSize>6</HouseholdSize><QualifyingMember>true</Qu alifyingMember><SimplifiedProcessingUnitInd>true</SimplifiedProcessingUnitInd><DependentCa reCostsAmt>500</DependentCareCostsAmt><NumberOfChildrenUnder2></NumberOfChildrenUnder2><Nu mberOfChildrenOver2>1</NumberOfChildrenOver2><CourtOrderedSupportAmt>300</CourtOrderedSupp ortAmt><MedicalExpenseAmt>250</MedicalExpenseAmt><MonthlyRentOrMortgageAmt>250</MonthlyRen tOrMortgageAmt><MonthlyInsuranceAndTaxAmt>0</MonthlyInsuranceAndTaxAmt><UtilityType>liheap </UtilityType><TotalAssets>2999</TotalAssets></FSParm>
Perhaps I'm using the wrong timing event.  The above is parsed by a routine (setInitApplication()) that is called from the MX application tag creationComplete event.  When this runs, I expected to see those values appear in the form (thus proving the querystring was parsed correctly.  I also tried the MX application tag initialize as it seems to execute earlier in the process (just incase creationComplete has already executed and so the values displayed are the defaults for each of the tags).
Here is the MX tags:
<mx:Application
  xmlns:mx="http://www.adobe.com/2006/mxml"
  xmlns:DHSComp="components.*"
  initialize="setInitAccessible();"
  backgroundColor="#dedacf"
  layout="absolute"
  borderStyle="inset"
  borderThickness="2"
  paddingLeft="10"
  paddingRight="10"
  paddingTop="10"
  paddingBottom="10"
  height="100%"
  verticalScrollPolicy="on">
<!-- creationComplete="setInitAccessible();" -->
            <mx:FormItem id="residenceSizeLabel"
              label="Household Size"
              required="true"
              top="6" right="5"
              horizontalAlign="right"
              toolTip="Number of people in residence - 1 to 99 max - required">
              <mx:NumericStepper id="residenceSizeData"
                maximum="99"
                minimum="1"
                maxChars="2"
                width="90"
                tabEnabled="true" tabIndex="2"/>
            </mx:FormItem>
Here is the ActionScript (first one is in the xmxl file, second is an included script):
  <mx:Script>
      <![CDATA[
          public function setInitAccessible():void {
            getXMLURL();
             accessibleSet();
      ]]>
  </mx:Script>
public function getXMLURL():void {
    var FSURL:FSURLParse = new FSURLParse;
    if (FSURL.setQueryString()) {
        // we had an input stream
        calcOutputVariables();
        var x:String = buildPhoneResults();
        // this is for testing as the form won't be visible when
        // this is executed from the Tier phone application
        residenceSizeData.value = FSP.getResidenceSize();
        earnedIncomeData.value = FSP.getGrossIncomeAmount();
        otherIncomeData.value = FSP.getOtherIncome();
What I expected was to see "6" in the residence size field, but I didn't.

Last week I posted a multi-part question here.  It was multi-part because it was taking up to an hour to open a question or reply box.  That seems to be fixed so now I'm breaking the question out into its pieces in hopes of getting an answer.  One of the questions was answered by member rtalton (kudos and thanks!) on a good way to find if an element is in an XML object.  Several people have come up with a solution, but his (or hers) was the best one.
On the question of debugging a Flex application it wasn't so clear, at least to me.  I have an application that will either be used via the web like anyother or be invoked from a program that will pass in the information for the fields.  That part works, but I have to put code into the application to set those fields.
Flex has an option to put in parameters if I am reading this right.  You just go:
Project -> Properties -> Run/Debug Settings
Then you create a new launch configuration that would include the stuff you want.  But it doesn't work for me.  The default setting ("C:\Flex Builder 3\FSCalc\FSCalc\bin-debug\FSCalc.html") appears in Debug, Profile and Run.  I tried changing the Debug (seems like the logical one) setting to include a query string after the URL.  I saved it with a new name and when I execute the application I'm prompted for which launch configuration to use.
Here is the modified string:
C:\Flex Builder 3\FSCalc\FSCalc\bin-debug\FSCalc.html?xml=<?xml version="1.0" encoding="UTF-8" ?><FSParm><GrossMonthlyEarnedIncome>2000</GrossMonthlyEarnedIncome><GrossMonthlyOtherInco me>694</GrossMonthlyOtherIncome><HouseholdSize>6</HouseholdSize><QualifyingMember>true</Qu alifyingMember><SimplifiedProcessingUnitInd>true</SimplifiedProcessingUnitInd><DependentCa reCostsAmt>500</DependentCareCostsAmt><NumberOfChildrenUnder2></NumberOfChildrenUnder2><Nu mberOfChildrenOver2>1</NumberOfChildrenOver2><CourtOrderedSupportAmt>300</CourtOrderedSupp ortAmt><MedicalExpenseAmt>250</MedicalExpenseAmt><MonthlyRentOrMortgageAmt>250</MonthlyRen tOrMortgageAmt><MonthlyInsuranceAndTaxAmt>0</MonthlyInsuranceAndTaxAmt><UtilityType>liheap </UtilityType><TotalAssets>2999</TotalAssets></FSParm>
Perhaps I'm using the wrong timing event.  The above is parsed by a routine (setInitApplication()) that is called from the MX application tag creationComplete event.  When this runs, I expected to see those values appear in the form (thus proving the querystring was parsed correctly.  I also tried the MX application tag initialize as it seems to execute earlier in the process (just incase creationComplete has already executed and so the values displayed are the defaults for each of the tags).
Here is the MX tags:
<mx:Application
  xmlns:mx="http://www.adobe.com/2006/mxml"
  xmlns:DHSComp="components.*"
  initialize="setInitAccessible();"
  backgroundColor="#dedacf"
  layout="absolute"
  borderStyle="inset"
  borderThickness="2"
  paddingLeft="10"
  paddingRight="10"
  paddingTop="10"
  paddingBottom="10"
  height="100%"
  verticalScrollPolicy="on">
<!-- creationComplete="setInitAccessible();" -->
            <mx:FormItem id="residenceSizeLabel"
              label="Household Size"
              required="true"
              top="6" right="5"
              horizontalAlign="right"
              toolTip="Number of people in residence - 1 to 99 max - required">
              <mx:NumericStepper id="residenceSizeData"
                maximum="99"
                minimum="1"
                maxChars="2"
                width="90"
                tabEnabled="true" tabIndex="2"/>
            </mx:FormItem>
Here is the ActionScript (first one is in the xmxl file, second is an included script):
  <mx:Script>
      <![CDATA[
          public function setInitAccessible():void {
            getXMLURL();
             accessibleSet();
      ]]>
  </mx:Script>
public function getXMLURL():void {
    var FSURL:FSURLParse = new FSURLParse;
    if (FSURL.setQueryString()) {
        // we had an input stream
        calcOutputVariables();
        var x:String = buildPhoneResults();
        // this is for testing as the form won't be visible when
        // this is executed from the Tier phone application
        residenceSizeData.value = FSP.getResidenceSize();
        earnedIncomeData.value = FSP.getGrossIncomeAmount();
        otherIncomeData.value = FSP.getOtherIncome();
What I expected was to see "6" in the residence size field, but I didn't.

Similar Messages

  • How to test with the standard Flash player, rather than debug player

    Folks,
    I am interested in running my flexunit 4 tests against the standard flash player, rather than the debug player that comes with the SDK.  Is this possible?
    BTW, I am working on Windows for now.
    I installed both the flash ActiveX control for IE, and the standard flash plugin for Firefox.  I then associated the SWF file extension with Firefox using the "Open With" dialog.  I had to choose a single program, and the browser appeared to be my only choice, as I could not find any sort of "FlashPlayer10.exe" to associate with.  I ran my ant script that calls <flexunit>, and it kind of works.  It launches Firefox, runs the tests, and the results get piped back, but Firefox is not shut down.  Yep, Firefox stays open after the tests complete.  I seem to recall that the debug flash player would close itself after being opened by <flexunit>.  I tried using IE, and the same result occurs: the browser is not shutdown after the tests complete.  This behavior makes for an unacceptable test setup, as eventually the system memory on the machine will be exhausted as more and more browsers are opened and not closed.
    Questions/options:
    1) Is there a standard flash player "executable" somewhere on my system that I can associate the SWF files with (that would hopefully shut itself down)?
    2) Second choice, is there a way to get the browser to close after <flexunit> completes?
    3) or am I stuck using the debug player?  I am concerned that testing management at my company might not like the fact that we are testing against a debug player, rather than the standard one that users will likely be using. If flexunit 4 CI only supports the debug player, is there something I can say to appease management?
    Thanks for any help...
    Trevor

    @trevorbutler - Here are my 2 cents, but the group may have a different perspectives for your questions.
    Currently, we suggest the use of the CIListener class as a FU4 listener for use when building your test SWF to run via the FU4 Ant task.  This class (http://opensource.adobe.com/svn/opensource/flexunit/branches/4.x/FlexUnit4CIListener/src/o rg/flexunit/listeners/CIListener.as) uses the fscommand() function to send a message to its host environment to exit (i.e. - fscommand("quit")).  This command is only recognized by the Flash projector and stand-alone players, which are thin wrappers around the Flash Player so that it may be executed as its own process in the OS.  Based on the setup you are describing, the behavior you're seeing should be expected since the browser is the host environment for the Flash Player.  When the browser recieves the resulting message of the fscommand("quit") call nothing will happen since the browser doesn't support this command.  If you use the Flash projector or stand-alone players however, they will exit when recieving the results of this command.  The projector/stand-alone players come in two flavors, release and debug.  Release will act very closely to the typical plugin installed in the web browser (e.g. - swallows errors, no debug support, etc) whereas debug will allow you to write log files to the system, show error messages, etc.  Currently the debug stand-alones are available on Windows, Mac, Linux and the release stand-alone is only available on Linux.
    To address your questions:
    1.  If you've installed the Flash Player browser plugin, there is no way that I know of to launch the player as its own process.  I've only had success using the projector/stand-alone player (http://www.adobe.com/support/flashplayer/downloads.html).
    2.  The Flash Player does have the ability to send javascript to the browser to ask it to close the current window, but most modern browser will prompt the user to confirm they'd like to close the window if its the only open window.  Additionally, taking this approach on Mac, the browser process would remain active until an explicit call is made to the host OS to shut down the browser process.  The Ant task could be enhanced to use the browser to launch the Flash Player, but that is not currently on our checklist of features to support.  If it's something you'd be interested in contributing, let me know and I can work with you on this.
    3.  For the time being the FlexUnit4 Ant task only supports the stand-alone Flash Player (and adl soon), which for Windows only comes in the debug flavor. The only thing I've run into with the stand-alone player is that ExternalInterface reports that its enabled, but since the host environment is not the browser, javascript calls made via this class will fail, consequently causing tests to fail.  I haven't tried anything with shared objects or flashvars but my assumption is that they should work correctly, but anything that depends on the browser has the potential not to.
    As far as your testing management goes, I would discuss with them the problem context FlexUnit4 hopes to solve.  The framework is intended to produce unit and integration tests.  Functional testing is not withing the scope of the library.  Although, it's technically feasible to write integration tests which will exercise components similarly to a functional test, tools such as FlexMonkey, Selenium Flex, QTP, etc are much better geared towards this problem domain.  Test recording and playback, using these tools, is typically done using the FP browser plugin and is much easier to use by most QA and testing staff.  At the end of the day, as we're testing our code using FlexUnit at a smaller granularity than that of which the user interacts with in our application.  To reliably test the applicaiton as the user would interact with it requires additional tooling and a different type of testing.
    Like I said, just my take, maybe some of the other guys can help as well.

  • SOAP : Testing with WebServiceStudio

    Hi All,
    My scenario is SOAP to RFC sync.
    I'm new in SOAP scenario. For testing purpose try to use "WebServiceStudio".
    Any one guide me how to test with the same?
    Thanks,
    Arthita

    Hi,
    For web service scenarios, better to use soapUI. Very user-friendly tool and easy to install.
    More information: http://www.soapui.org/
    Kind regards,
    Dimitri

  • I am getting this error message when I open Safari.  How do I make it go away?  "Error Safari 6.0 (v8536.25) has not been tested with the plugin SplashId.bundle (null) (v6.0.4(.  As a precaution, it has not been loaded.  ?

    Error
    When I launch Safari on my MacBook Pro
    Safari 6.0 (v8536.25) has not been tested with the plugin SplashId.bundle (null) (v6.0.4(.  As a precaution, it has not been loaded.  Please contact the plugin developer for further information.
    I am getting this message when I open Safari.  How do I make it go away?
    Thanks, Ed Williams

    To Remove plug-in
    1.) Open the SplashID desktop app
    2.) Navigate from Menu bar "File" -> "Plugin for Safari" -> "Uninstall".
    I could not find it in either Library/Internet Plug-ins nor ~/Library/Internet Plug-ins as others have suggested.
    Cheers!

  • How to stop an error message that pops up every time I open Safari. It reads...Safari 5.1 (v6534.50) has not been tested with the plugin PithHelmet .As a precaution, it has not been loaded. Please contact the plugin developer.

    How do I stop this error message from popping up every time I start up Safari ?
    Error message reads...
    Safari 5.1 (v6534.50) has not been tested with the plugin Pithhelmet 3.0b6 (v 3006)
    As a precaution, it has not been loaded. Please contact the plugin developer.
    I have removed every trace of Pithhelmet, (via spotlight)
    Trashed the preferences for Safari, restarted computer to no avail.
    It just  keeps keepin on.
    Thanks

    In the past I was able to bypass the message by editing the Info.plist file and updating the MaxBundleVersion variable, but not so this time around. As of today the developer seems to indicate there's no immediate fix becuase of how Safari 5.1 handles multiprocess page rendering. Probably best to stay tuned to Mike's website for now.

  • How to Test, Inbound idoc ,with out the Sender System, using a Text File

    Hi Guru's .
    we wanted to test BLAORD03 inbound idoc (Message Type BLAORD).with out the SENDER SYSTEM.
    on the same client.
    we wanted to test this idoc with text file from our local machine.
    Can anyone give us detail steps.like how to create  File layout
    with Segment name,and values for the fields.how to pass this file to the system.
    Thanks in advance.

    Hi Aparna.
    My requirement is to test the idoc with Inbound File.
    Generate a file with the data entered through segments through we19 ,and use the same file for processing through we16.
    when i am trying to do this syst complaing about
    Partner Profile not available, and some times
    port not available. and some  times with
    'No further processing defined'.
    but i maintained part profiles and port perfectly.
    Can you help me in testing with test 'File' port.

  • How to test a class with array which is being declared?

    Dear All
    I am doing a question which involved the day of the week.
    I had written a class which is name WeekDay and here is the code :
    public class WeekDay
    private int index;
    private static String[]dayStrings = {"Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"};
    public WeekDay(int idx)
    index = idx;
    public int getIndex()
    return index;
    public static String nextDay(int index)
    index+=1;
    return dayStrings[index];
    The above compile well with no issue.
    Here is the problem which i need to seek your help, I had created a program to test the above program.
    But I am not sure how to test it.
    Here is what I had written :
    public class TestWD
    public static void main(String[]args)
    System.out.println("Please key in a digit to get the day of the week\n");
    System.out.println("Sun, Mon, Tue.....Sat is represented by 0,1,2,3...6");
    int idx = Integer.parseInt(args[0]);
    WeekDay wd = new WeekDay(dayStrings[]); // I can't seem to declare this line.
    My question how can I test the above program ?? I can't seem to be able to declare a "wd" from WeekDay. The dayStrings wich i had declared in the WeekDay class is a String array. But how can I declare a suitable line in my test program in order for me to test my program?
    What I wanted to do is to get the above line running and than I will proceed on to code it to display the day after a day...for example, if today is Wednesday and when I run the wd.nextDay(index). It will return me Thursday!
    But I am not sure how to declare the above...please enlighten me.
    Thank you.

    Hi
    Thank you for helping but when I compile my program. It seem fine but when I execute it, it prompt me with an error message :
    code}public class TestWD
    public static void main(String[]args)
    System.out.println("Please key in a digit to get the day of the week\n");
    System.out.println("Sun, Mon, Tue.....Sat is represented by 0,1,2,3...6");
    * int idx = Integer.parseInt(args[0]);*
    WeekDay wd = new WeekDay(idx);
    System.out.println(wd.nextDay(idx));
    }{java.lang.ArrayIndexOutOfBoundsException: 0
         at TestWD.main(TestWD.java:8)
    Edited by: SummerCool on Nov 1, 2007 2:53 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to test if Spam protection with Forefront for Exchange 2010 works

    Hi there.
    Installed forefront for exchange 2010 on Exchange Edge server.
    We have tested virus protection with creating EICAR, but the question is, is there a way to check if SPAM Works fine, and how to?
    with best regards
    bostjanc

    Hi bostjanc,
    Since this is an issue on the Forefront side, I suggest ask Forefront Forum for help so that you can get more professional suggestions. For your convenience:
    https://social.technet.microsoft.com/Forums/forefront/en-US/home?forum=FOPE
    However, based on my knowledge, use the EICAR antivirus test file is the only built-in method to check whether the Anti-Spam configured correctly.
    You can try to send some test spams to your Exchange server for testing, even if this is a stupid method : )
    Thanks
    Mavis Huang
    TechNet Community Support

  • How to create a school test with Keynote?

    I would like to create a school test with Keynote.
    I've been able to do everything but one last very important thing: RESULTS!
    I have slides with multiple choices questions that link to other slides, but how to have a resumé of the student answers? Something like a report of every click...
    Thoughts?
    Thanks a lot in advance
    M.

    Open the Sharing pane of System Preferences and enable Internet Sharing over AirPort.
    (59391)

  • How do we can start Load Testing with e-Load

    How do we can start Load Testing with e-Load?
    Please help?
    Gajanan

    Hi,
    if you allready have the software and a license, i would recomend that you try to get a training from Empirix. this is the best way of ensuring that the investment you did with the software gets maximum payback. training offers is something you can get from your empirix sales rep.
    if you DONT have the software and license, the first step is to get in touch with Empirix for an offer (for software and a training as well)
    the training helps you to unserstand how to work with the product and how to unserstand the results
    I hope that this helps you further
    /m

  • IS Test stand support Code written in VC++ ?..IF SO How to integrate with Test Stand

    IS Test stand support Code written in VC++ ?..IF SO How to integrate with Test Stand

    If you have LabWIndows-CVI, you may also look at these threads: (may be useful for TestStand)
    http://exchange.ni.com/servlet/ProcessRequest?RHIVEID=101&RPAGEID=135&HOID=5065000000080000003C1F0000&UCATEGORY_0=_318_&UCATEGORY_S=0

  • How to deal with the depth testing of Iterator Patch?

    Recently I use Iterator Path to make my effect. I met some problem. I couldn't deal with the Sprite depth testing. I found it useless to set depth testing of the Sprite Patch. And also I don't know how to deal with the layer of the subpatch in Iterator.

    rp0428 wrote:
    All you can do is remove any reference to it:
    myGame = null;If that was the last reference then it will be eligible for garbage collection and it MAY be collected.And note that there's rarely a good reason to do this. In most cases, simply letting things go out of scope when the method that uses them ends is sufficient. About the only time you need to explicitly set something to null like this is, for example, if you're implementing a collection class and you want to remove an entry.

  • Apple IIGS RGB Monitor How ot Hook up to test with a PC

    Hi,
    I'm hoping I came to thr right place. I have a Apple IIGS RGB monitor I have no way to test it. I no longer have my old IIGS to test this with. I came across this from someone tossing it out. I was hoping to make a RGB to VGA cable but was wondering if anyone has tried this and if tis possible, what did they test with an old pc? Or do you have a better alternative. THe best way it to get a IIGS but that isn't possible at this point. Any and all help would be really apprecaited. I would like to check the monitor and see if it works.
    Thanks in advance,
    Nick

    Many Apple displays of about that timeframe used a DB-15 (two rows of pins) connector. Adapters to VGA (three rows of pins) are readily available from multiple sources that deal in older Mac equipment. The adapters shuffle the five crucial signals (Red, Green+Intensity, Blue, Horizontal-Sync, and Vertical-Sync) so that they line up on the correct pins for VGA. There is only ONE way to connect the five key signals that will produce a picture, and every adapter (that is not defective) will connect those signals correctly.
    You must be careful to get an adapter that has the right male and female connectors. There are two main types, one intended to adapt Mac displays to VGA computers, and the other intended to adapt older Mac computers to VGA displays.
    Mac adapters also provide a code on pins 4, 7, and 10 that tells the older Mac what class of displays is attached, If you plan on using this with a Mac later, you will need the right adapter, or one with tiny switches. The various adapters differ ONLY in the ID bits on pins 4, 7, and 10, not in the basic connection of the Video signals.

  • How to test KM configured with a TREX?

    Hi!
    I have configured a TREX for an EP7.0's KM.
    Could you tell me how to test the TREX ability?
    One example is appreciated.
    Thanks a lot!

    First
    Go to System admin-> monitoring -> Knowledge Management  and check TREX monitor. All should be green
    Then you can create an index in  system admin-> System Config-> KM-> index Administration. Search for that in SDN.
    Then create a search iview . for this also search in SDN as these are very straight forward.
    once index is created then you can mointor that also in
    system admin-> monitoring->KM-> Index monitor.
    Raghu

  • Unit Testing with Microsoft Sharepoint Emulators and Fakes with Visual Studio 2013

    Hi All,
    I have created Test Project and now creating Test cases for Sharepoint. I found a link on MSDN which suggests using Fakes framework but it supports VS2012 and I am using Visual Studio 2013.
    So how can I use it with VS2013 or is there any other way with which I can implement the Test cases with VS2013.
    Please suggest.
    Thanks in advance.
    Himanshu Nigam

    Hi HimanshuNigam,
    According to your descrition, my understanding is that you want to use Fakes framework to create test case for SharePoint project in Visual Studio 2013.
    If you want to test using Fakes Framework, you can use the codeplex extension to achieve it. It supports Visual Studio 2013.
    Here is a detailed article for your reference:
    Better Unit Testing with Microsoft Fakes
    About how to include the Nuget package, you can use the package with the link below:
    NuGet Package Manager for Visual Studio 2013
    Installing NuGet
    If you still have question about this issue, I suggest you can create a post in Visual Studio, more experts will help you and you can get more detailed information from there:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?category=visualstudio%2Cvsarch%2Cvsdbg%2Cvstest%2Cvstfs%2Cvsdata%2Cvsappdev%2Cvisualbasic%2Cvisualcsharp%2Cvisualc
    Best Regards
    Zhengyu Guo
    TechNet Community Support

Maybe you are looking for

  • ALV grid control, Adding the push Button in the Toolbar

    Hello All, I am facing a problem when trying to do calculation based on the button added at the toolbar of interactive ALV list. When I click on the toolbar button Compute, the ALV should calculate the multiplication of the Qty (manually entered by a

  • How many nodes can I run?

    Ok, in the (hopefully temporary) abscence of 4-processor G5 support from Apple, I can node my other half of the G5 Quad to itself, but can I also add my Pb 1.25Ghz as a node at the same time? If so, any ideas how?

  • 5760 guest network not receiving IP address

    I'm testing a pair of 5760s for a near-term production rollout.  I have the dot1x employee wlan working, but am having trouble with the guest web-auth wlan.  We have a foreign controller with connected APs and an anchor controller in the DMZ.  We're

  • Web Object Widget non-functional?

    Hello again! So I'm trying to use the web object widget to pull up a surveygizmo survey (which provides handy web links, HTML embeds, java embeds etc.), but it's not loading up. It works only when in previews within Captivate. Once published, it does

  • How to implement 'no split' on end of page in smartforms

    Hi frnz, in my smartform, there is a  main window on the page. i have implemented a loop in the main window. each row in a loop displays a box in the window. the box has 7 rows. The height of the rows is not fixed & so the height of the box is not fi