Junitreport 'redirect' is not allowed when the secure processing feature is set to true.

junitreport 'redirect' is not allowed when the secure processing feature is set to true.
Hello,
   I'm running flexunit4.1.0-8 and I have an ant script running the test suite.    I recently upgraded from FB 4 to 4.5 and now I'm getting
failures on junitreports.  Here's the full error: 
[junitreport] : Error! Use of the extension element 'redirect' is not allowed when the secure processing feature is set to true.
[junitreport] Failed to process C:\TDMSE_2_6\tdmse\flex-test\flex_unit_reports\TESTS-TestSuites.xml
BUILD FAILED
C:\TDMSE_2_6\tdmse\build\flexunitbuild.xml:116: Errors while applying transformations: javax.xml.transform.TransformerException: java.lang.RuntimeException: Use of the extension element 'redirect' is not allowed when the secure processing feature is set to true.
Here's the junitreport section:
[code]
<target name="flex-unit-execute-tdmse-test-runner"
                              description="executes the test runner app">
          <flexunit swf="${FLEX_UNIT_TEST_HOME}/TDMSETestRunner.swf"
                              toDir="${FLEX_UNIT_REPORTS_HOME}"
                              haltonfailure="false"
                              localTrusted="true"
                              verbose="true"
                              headless="false"/>
          <junitreport todir="${FLEX_UNIT_REPORTS_HOME}">
                    <fileset dir="${FLEX_UNIT_REPORTS_HOME}">
                              <include name="Test-*.xml"/>
                    </fileset>
                    <report format="frames" todir="${FLEX_UNIT_REPORTS_HOME}/html"/>
          </junitreport>
</target>
[/code]
And here's the full ant build:
[code]
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE project>
<!--
                         TDMS flex unit test suite
$Author:: hermannee                                                            $
$Revision:: 10963                                                              $
$Date:: 2011-11-15 13:38:46 -0500 (Tue, 15 Nov 2011)                           $
$URL:: svn://ehsntpvld03.niehs.nih.gov/dev/tdmse_test_suite/trunk/build/flexun#$
-->
          <!-- **** ADD THIS TO tdmes/build/build.xml *************
          <property name="FLEX_UNIT_HOME" value="${tdmsedir}/../tdmse_test_suite" />
          <target name="run_flex_units">
              <ant antfile="${FLEX_UNIT_HOME}/build/build.xml" />
          </target>
          ********************************************************* -->
<project name="flexunitbuild" basedir="." default="flex-unit-start-test-runner">
          <tstamp>
                    <format property="build.date" pattern="MMMMM dd, yyyy" />
                    <format property="build.time" pattern="HH:mm:ss" />
          </tstamp>
          <property name="tdmsedir" value="${basedir}/.." />
          <property name="builddir" value="${tdmsedir}/../build" />
          <property name="FLEX_HOME" value="${builddir}/tools/flex-4.5.0" />
          <property name="PARSLEY_HOME" value="${builddir}/tools/parsley-2.4.0" />
          <property name="FLEX_UNIT_HOME" value="${tdmsedir}/flex-test" />
          <property name="FLEX_UNIT_LIBS_HOME" value="${builddir}/tools/flexunit-4.1.0-8" />
          <property name="FLEX_UNIT_REPORTS_HOME" value="${FLEX_UNIT_HOME}/flex_unit_reports" />
          <property name="FLEX_UNIT_TEST_HOME" value="${FLEX_UNIT_HOME}/flex_unit_tests" />
          <!-- ==== tasks ============================ -->
          <taskdef resource="flexTasks.tasks" classpath="${FLEX_HOME}/ant/lib/flexTasks.jar"/>
          <taskdef resource="flexUnitTasks.tasks" classpath="${FLEX_UNIT_LIBS_HOME}/flexUnitTasks-4.1.0-8.jar" />
          <!-- dev -->
          <echo>basedir: ${basedir}</echo>
          <echo>tdmsedir: ${tdmsedir}</echo>
          <echo>builddir: ${builddir}</echo>
          <echo>FLEX_HOME: ${FLEX_HOME}</echo>
          <echo>FLEX_UNIT_HOME: ${FLEX_UNIT_HOME}</echo>
          <echo>FLEX_UNIT_LIBS_HOME: ${FLEX_UNIT_LIBS_HOME}</echo>
          <echo>FLEX_UNIT_REPORTS_HOME: ${FLEX_UNIT_REPORTS_HOME}</echo>
          <!-- =================================
          target: run-tdmse-test  
          ================================= -->
          <target name="flex-unit-start-test-runner"
                              description="clean, compile and run tdmse flexunit tests"
                              depends="flex-unit-clean-tdmse-tests,
                              flex-unit-tdmse-compile-test-suite,
                              flex-unit-execute-tdmse-test-runner"/>
          <target name="flex-unit-clean-tdmse-tests" description="Cleans the FlexUnit test and reports directories">
                    <delete dir="${FLEX_UNIT_REPORTS_HOME}" failOnError="false"
                                        includeEmptyDirs="true" />
                    <mkdir dir="${FLEX_UNIT_REPORTS_HOME}" />
                    <delete dir="${FLEX_UNIT_TEST_HOME}" failOnError="false"
                                        includeEmptyDirs="true" />
                    <mkdir dir="${FLEX_UNIT_TEST_HOME}" />
          </target>
          <target name="flex-unit-tdmse-compile-test-suite">
                    <mxmlc file="${tdmsedir}/flex-src/TDMSETestRunner.mxml"
                                        output="${FLEX_UNIT_TEST_HOME}/TDMSETestRunner.swf">
                              <load-config filename="${FLEX_HOME}/frameworks/flex-config.xml"/>
                              <!-- ==== include tdmse resource bundles ====== -->
            <locale>en_US</locale>
            <source-path path-element="${tdmsedir}/flex-src/locale/{locale}" />
            <include-resource-bundles>COMMON</include-resource-bundles>
            <include-resource-bundles>OW</include-resource-bundles>
            <include-resource-bundles>PREF</include-resource-bundles>
            <include-resource-bundles>RD</include-resource-bundles>
            <include-resource-bundles>RG</include-resource-bundles>
                              <!-- ==== compile parsley library ============= -->
                              <compiler.library-path dir="${PARSLEY_HOME}" append="true">
                                        <include name="parsley-flex4-2.4.0.swc" />
                                        <include name="spicelib-flex-2.4.0.swc" />
                              </compiler.library-path>
                              <!-- ==== compile all tdmse flex-src ========== -->
                              <source-path path-element="${tdmsedir}/flex-src" />
                              <source-path path-element="${tdmsedir}/flex-test" />
                              <!-- ==== compile all flexunit swc's ========== -->
                              <compiler.library-path dir="${FLEX_UNIT_LIBS_HOME}" append="true">
                                        <include name="*.swc"/>
                              </compiler.library-path>
                              <!-- ==== compile all flexunit swc's ========== -->
                              <compiler.library-path dir="${FLEX_UNIT_LIBS_HOME}/mocklibs" append="true">
                                        <include name="*.swc"/>
                              </compiler.library-path>
                              <compiler.verbose-stacktraces>true</compiler.verbose-stacktraces>
                              <compiler.headless-server>true</compiler.headless-server>
                    </mxmlc>
          </target>
          <target name="flex-unit-execute-tdmse-test-runner"
                                        description="executes the test runner app">
                    <flexunit swf="${FLEX_UNIT_TEST_HOME}/TDMSETestRunner.swf"
                                        toDir="${FLEX_UNIT_REPORTS_HOME}"
                                        haltonfailure="false"
                                        localTrusted="true"
                                        verbose="true"
                                        headless="false"/>
                    <junitreport todir="${FLEX_UNIT_REPORTS_HOME}">
                              <fileset dir="${FLEX_UNIT_REPORTS_HOME}">
                                        <include name="Test-*.xml"/>
                              </fileset>
                              <report format="frames" todir="${FLEX_UNIT_REPORTS_HOME}/html"/>
                    </junitreport>
          </target>
          <!-- ======================================================== -->
</project>
[/code]
I haven't seen much info about this problem anywhere on google except for this forum post:
http://forums.adobe.com/thread/740146
Thanks for any help!

If you include the xalan.jar library to the build.xml execution classpath everything works!!!!!!.
I hope it will be userfull.

Similar Messages

  • How do you stop photoshop from flickering when the graphics processing mode is set to basic? (Using windows 8)

    I am using Photoshop CC (2014) and I can not get the screen to stop flickering even when I set the graphics processing drawing mode to basic ( which is what other people have suggested to do). I am using windows 8.

    Update your video card driver from the GPU maker's website.

  • The update operation is not allowed in the current state of the request

    When users have logged a request through the service manager 2012 portal and they go back in to add user input they sometimes receive a message that says " The update operation is not allowed in the current state of the request." The state of the
    request has not changed it is still Active and has not breached its service level .
    I can't seem to find any information about this error and don't know how to troubleshoot it. Any help and advice would be appreciated.
    Thanks
    Sarah

    ok, so they're adding user comments after creating the service request. looks like this:
    the first thing to check is that the user is added to the default, un-scoped "End User" security role, or the custom end user security role they are added to has a scope that includes all work items. The "user input" field adds a user comment related
    to the SR, so the ability to create user comments is required to use this field.

  • I have recently bought a macbook and am using outlook 2011 as email. i am getting an error message 4.7.0 not allowed when sending emails how do I fix?

    i have a macbook and am using outlook 2011 as email.   receiving okay.   sending okay sometimes.  am now getting error message 4.7.0 not allowed when sending.  what is the cause? how do I fix please?

    I have discovered that the emails have in fact been sent but much later, maybe it's a network problem with the people i am sending it to.  so i checked my sent items and they are there, but at the time the email doesn't go straight into the sent box or drafts so i'm assuming it's disappeared and type it again.  i'll keep going with it, until someone can give me a possible solution or explanation as to what is happening.

  • Function return value == -10. Native error code -2146824584 ADOBD.Recordset: Operation is not allowed when object is closed

    I want to call Stored Procedure that return records and output parameter, from CVI
    I can get output parrameter but when I want to get records stream I recieve following wrror:
    function return value == -10. Native error code -2146824584 ADOBD.Recordset: Operation is not allowed when object is closed

    in Stored procedure I create table variable and and insert into string values
    when I remove usage of table variable the error desappear

  • The value  is not allowed for the field Cross-plant CM

    Hello All
    When i copy material in refernce to existin gone. I am getting this message
    "The value  is not allowed for the field Cross-plant CM"
    I am not putting any thing in this Basic-view Cross-plant CM, but still getting this message.
    Any help will be good...Thanks in advance...

    Hi,
    Please check the check box in front of the field config material is checked?
    If so then this material is configurable material
    A material that can have different variants.
    For example, a car can have different paint, trim, and engines.
    Configurable materials have a super bill of material (BOM) that contains all the components for producing every variant of the material. Similarly, they have a super task list that contains all the operations. When a material is configured, only the components and operations needed for a variant are selected.
    Please check
    BR
    Diwakar

  • The value 1 is not allowed for the field variace key

    Hi experts,
               When i was creating material master i was getting the status message as "the value 1 is not allowed for the field variance key" , but its stopping there its not moving out of that screen and creating the material record. When i see this field in the material master configuration its an optional field. Can you give me suggestions, where it can go wrong.
    Thanks & Regards,
    Ravi.

    Hi
    Can u tell me the field name . I cant get that field ref key. In which view does it come.
    Reg
    Raja

  • SQL*Loader-971: parallel load option not allowed when loading lob columns

    Hi,
    I am trying to load a table, which has a VARRAY column, using DIRECT=TRUE and PARALLEL=TRUE through
    Sql *Loader 10.2.0.4.0
    OS: Sun Solaris 10 SPARC 64-bit,
    Database: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0
    The following error recieved:
    SQL*Loader-971: parallel load option not allowed when loading lob columns
    Please help me to resolve..
    Thanks and regrds
    Anji

    user8836881 wrote:
    Hi,
    I am trying to load a table, which has a VARRAY column, using DIRECT=TRUE and PARALLEL=TRUE through
    Sql *Loader 10.2.0.4.0
    OS: Sun Solaris 10 SPARC 64-bit,
    Database: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0
    The following error recieved:
    SQL*Loader-971: parallel load option not allowed when loading lob columns
    Please help me to resolve..
    Thanks and regrds
    Anjihttp://tinyurl.com/yhxdhnt

  • Deletion without archiving is not allowed in the production client

    Hi Gurus!
    I have a new problem with regards deleting products in the Production system in CRM. I can't seem to delete the product in Production Box using this report(COM_PRODUCT_DELETE_SINGLE). It gives me this error: 'Deletion without archiving is not allowed in the production client' I'm doing this to solve my issue with regards some of the products not having any Sales and Distribution Data. The steps i did below worked in QA box.
    These are the steps i did in the QA box to delete the product:
    1) I've deleted the products that has no sales data using the report COM_PRODUCT_DELETE_SINGLE. I went to COMMPR01 to tag the said products with a status 'To Archive' then saved it before I triggered this report.
    2) I've registered it first in the table COMC_PR_TOOL_REG and filling up the necessary parameters
    3) After Deleting the said products in CRM, I logged into R/3 to access the material (MM02). I just changed the sales text and saved it to trigger the replication in CRM.
    When I checked the product in CRM, it worked. The Sales and Distribution Data is already shown.
    Now I have a new problem with regards this procedure. I can't seem to delete the product in Production Box using this report. It gives me this error: 'Deletion without archiving is not allowed in the production client'
    I have already followed the same procedure as to what I did in the QA box but for some reason it didn't work in the Production Box.
    Could anyone please help me with this. Thanks!
    Thanks & Regards
    Nathan

    I was able to solve the problem.
    In Report COM_PRODUCT_DELETE_SINGLE,there is a special check in order for the productive system detection.
    The logic in this program has a perform check_authority which will automatically produce the error and prevents you from deleting a product in the production system.
    Solution:
    I copied the program COM_PRODUCT_DELETE_SINGLE to new one ZCOM_PRODUCT_DELETE_SINGLE then I placed a comment on the PERFORM check_authority.

  • The client connection is not allowed on the internal edge of the Access Edge Server

    We are trying to setup Lync 2013 Edge Server, we have a setup as described below
    Real IPs for Lync Edge/WebConf/AV
    NAT of real IPs through Firewall Juniper to FE IP
    Topology with NAT (Firewall IP) IP enabled
    Certificates for with SAN for sip.acme.com etc (Both certs are Client Server Auth Templates from Internal MS CA)(Trusted) on Edge
    Route  192.215.0.0 255.255.255.0 gateway (=firewall internal ip address)
    But when external user connects and we are tracing the connection we are getting below error and lync client is 
    not able to connect.
    TL_INFO(TF_CONNECTION) [1]0AD8.0C30::09/07/2014-08:11:13.091.0000000f
    (SIPStack,SIPAdminLog::WriteConnectionEvent:SIPAdminLog.cpp(454))[4150361027] $$begin_recordSeverity: information
    Text: TLS negotiation started
    Local-IP: 192.215.0.xxx:5061 (Edge IP)
    Peer-IP: 192.215.0.xxx:1835 (Firewall IP)
    Connection-ID: 0x1100
    Transport: TLS 
    $$end_record
    TL_ERROR(TF_CONNECTION) [0]0AD8.0638::09/07/2014-08:12:45.279.0000005d (SIPStack,SIPAdminLog::WriteConnectionEvent:SIPAdminLog.cpp(389))[4150360514] $$begin_record
    Severity: error
    Text: The client connection is not allowed on the internal edge of the Access Edge Server
    Peer-IP: 192.xxx.0.xxx:1322 (firewall ip)
    Transport: TLS
    Result-Code: 0xc3e93d6b SIPPROXY_E_CONNECTION_INTERNAL_FROM_CLIENT
    $$end_record

    Hi pshetty,
    Check the following blog to deploy your Edge Server:
    http://jsilverdrake.blogspot.se/2012/04/publishing-lync-with-forefront-tmg-part_25.html
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make
    sure that you completely understand the risk before retrieving any suggestions from the above link.
    You need to create persistent static routes on the internal interface to all internal networks.
    Regards,
    Lisa Zheng
    Lisa Zheng
    TechNet Community Support

  • Error Indexing not allowed when marking indexing for document HR_DOC

    Hello all,
    We are able to solve the first problem. Now we have the following error
    "Error Indexing not allowed when marking indexing for document HR_DOC"
    Has anyone idea on how to solve it?
    Thanks a lot.
    Best regards,

    ....and thanks a lot for your feedback in resolving this issue!

  • Why does SMS tell me "not allowed" when I try to add an existing contact to one of my SMS Groups?

    Why does SMS tell me "not allowed" when I try to add an existing contact? 

    If you are running Tiger, you don't have time machine. 
    You need to get something like SuperDuper! or Carbon Copy Cloner (sorry, I don't have a handy link for CCC but you can Google it to get their site) to make a clone of your drive on the external and then do incremental backups.  The free versions do a lot and you can upgrade to the full-service versions for small change if you need more.  The one time I used SuperDuper! for cloning a volume it worked just fine. 
    (My backup application is the last PPC capable version of Retrospect, which does a credible job, or has over the past ten-twelve years.)

  • Exception : SubjectManager not installed when doing Security.runAs()

    Hi
    I am getting an exception : Subjectmanager not installed while running Security.runAs(new Subject , .....
    The problem occurs onley when there is only wlclient.jar in the classpath .
    Anyone knows the solution
    I don't want to add weblogic.jar in the classpath .

    Sachin Shukla <> writes:
    Initialization of the client jar is a hairy dance. It generally
    happens implicitly when an ORB is created. This sounds like a use-case
    we missed. If you create your initial context first it should probably
    resolve itself.
    andy
    I am getting the exception "SubjectManager not installed" when calling Security.runAs with thin client jar. This is the first statement on entering main(). This error doesnt occur when using weblogic.jar.
    I was doing this because the principal and credentials set on main thread, for JNDI authentication were getting passed to all the child threads. To evade this, I thought of calling the following code in every new thread - Security.runAs(new Subject(), new PriviledgedAction(){
    public Object run(){
    //do stuff
    Thanks in advance
    Sachin

  • How to Uninstall Yosemite?  System does not allow Erase the HD, nor does it allow re-install of original O/S Disc (10.6.7).  I want Mavericks or even Lion Back.   Thanks.

    How to Uninstall Yosemite?  System does not allow Erase the HD, nor does it allow re-install of original O/S Disc (10.6.7).  I want Mavericks or even Lion Back.   Thanks.

    Start with reinstalling Snow Leopard:
    Clean Install of Snow Leopard
    Be sure to make a backup first because the following procedure will erase
    the drive and everything on it.
         1. Boot the computer using the Snow Leopard Installer Disc or the Disc 1 that came
             with your computer.  Insert the disc into the optical drive and restart the computer.
             After the chime press and hold down the  "C" key.  Release the key when you see
             a small spinning gear appear below the dark gray Apple logo.
         2. After the installer loads select your language and click on the Continue
             button. When the menu bar appears select Disk Utility from the Utilities menu.
             After DU loads select the hard drive entry from the left side list (mfgr.'s ID and drive
             size.)  Click on the Partition tab in the DU main window.  Set the number of
             partitions to one (1) from the Partitions drop down menu, click on Options button
             and select GUID, click on OK, then set the format type to MacOS Extended
             (Journaled, if supported), then click on the Apply button.
         3. When the formatting has completed quit DU and return to the installer.  Proceed
             with the OS X installation and follow the directions included with the installer.
         4. When the installation has completed your computer will Restart into the Setup
             Assistant. After you finish Setup Assistant will complete the installation after which
             you will be running a fresh install of OS X.  You can now begin the update process
             by opening Software Update and installing all recommended updates to bring your
             installation current.
    Download and install Mac OS X 10.6.8 Update Combo v1.1 Access the App Store to download Mountain Lion or Yosemite. Mavericks is no longer available since the release of Yosemite. If you purchased Mountain Lion from the App Store, then you can redownload it via your Purchases page in App Store. If not, then you will need to purchase it from Apple;
    Purchase a redemption code at the Online Apple Store: OS X Mountain Lion. Mountain Lion is $19.99 plus tax. Use the code to redeem a download of Mountain Lion from the App Store. The file is quite large, over 4 GBs, so allow some time to download. It would be preferable to use Ethernet because it is nearly four times faster than wireless.

  • Datatip function not shown when the user hovers over the icon int ADG

    When you have a datatip function in a advanced datagrid the datatip  does not show when the user hovers over the icon. Is there a way round this?

    I have almost same situation. But there are some different. I am using RegisterPointerInputTarget to redirect all touch message to my window. and use InjectTouchInput to simulate each flag, which means, WM_POINTERDOWN,WM_POINTERUPDATE,WM_POINTERUP. If user
    touches monitor, I simulate DOWN, if user swipes their finger, I simulate UPDATE, if user lifts finger, I simulate UP.
    Then the interesting point is, system consider user's finger as primary pointer, and my injected touch as secondary pointer. windows desktop and windows explorer skip all my injected touch. I really hate that.
    However IE and chrome will accept my injected touch, they don't caret about primary pointer.
    In order to fix this problem, I call AccNotifyTouchInteraction before calling InjectTouchInput.
    According to the MSDN, AccNotifyTouchInteraction will notify the destination window before InjectTouchInput. But this idea still fails, which is disappointing.

Maybe you are looking for

  • How to connect an HDMI monitor as 2nd display?

    I want to connect an HDMI monitor to my MacBook Pro to use as my second monitor. I need to know what type of cable to use? I use iPhoto and iMovie extensively and it would really help to have a second monitor. Which port on the MacBook would I use?

  • Bw report to show all error message from an infopackage

    Dears Experts, I am looking for a way to analyze within a BW reports (a specific one or already existing in a BI content) all errors messages generated by an infopackage and stored within the status field of a PSA. Does someone have any feedbacks or

  • MSI Pro-E Chipset Cooling (Need Some Major Clarification Here Before I Begin)

    Hey guys, about to bring up a very well known issue here, which brought about many 'heated' debates, no pun intended :P I know there has been many threads on this issue for nearly 2 years now, and well, i did tons of reading on the subject, starting

  • How to capture the Subtype value in Overview view of Address iview

    Hello Experts, Below is wdDomodify function of Overview of Address iview. TO create bizcards create overview function of FcPersInfo is called. Here I want to send fieldinfo1 as the parameter to that fnction  if the subtype is permanent office. can an

  • Sigsegv - using a JSP/BC4J deployed application

    OC4J: developer's preview & JDev9iRC packaged version Info: accessing a .../xyz.jsp doesn't return, generates a SIGSEGV(11). Question urgent!!!! I'VE SEEN A (RECENT) POST ON THIS BOARD SPECIFICALLY DEALING WITH SIGSEGV ERROR. THE ELEPHANTWALKER MENTI