Flash builder 4.7 throwing errors for no reason - is there a fix?

Hello,
I am using FB4.7, right now on an AS project. For some reason, FB has started "locking up" on runtime errors. Meaning, if I run a code with an error, then fix the error, FB still reports an issue at that line, even if the line is blank.
In the attached image, you can see that I am getting a 1009 Error on the second reference to a variable that has been declared directly above - obviously a bs error.  I had a chunk of code there before, that did have the error, but I am still getting the Error, can't test, compile, etc.
Very frustrating, no idea what is causing this!!! Thanks for any input!
FB 4.7 Win7

Looks like its dying on the first line of code in that method. Try checking:
The methods parameters - perhaps compiler doesn't like TextFormat defaulting to null
   Or perhaps you're using that default null param and its biting you but misreporting the line number.
   Seems like I might have had problems in the past with params, but I think it was with assigning null to a callback function param.
      Instead I had it default to an empty class method called NullMethod, or some such.
Other ideas, although these usually apply to compile time errors and not runtime:
Import statements - are you missing one?
Access modifiers - is something trying to call this method that doesn't have access?
Check for syntax errors higher in the file.

Similar Messages

  • I have flash builder 4.5 premium and want to know if there is an extension for php

    I have flash builder 4.5 premium and want to know if there is an extension / plugin to add the php functions or do I have to buy the Flash Builder 4.5 premium for php version?
    I was wanting to add the PHP functions to my current Flash Builder premium 4.5
    I would like to know how to add this if it can be done with my version of Flash Builder 4.5 Premium.
    Thanks
    Maurice

    No I have the Flash Builder 4.5 for PHP version and I am happy to pay for what ever help i need. but I am looking for a component to emable me to build a specific project.
    The project I want to build is a schedule. I looked at an IBM scheduler http://visunetdemos.demos.ibm.com/ganttdemos/humanresources/humanresources.html
    This IMB Scheduler does everything i am looking for but is way over kill. My Project is much simpler. So paying $1000 for this would be excessive.

  • Built app with Flash Builder 4.6 and compiled for iOS, now error when loading to appstore

    I built a fairly simple app using Flash Builder 4.6 and have successfully deployed it to the Android Market (after testing on my own Android device).  I have also taken that same app and compiled it for iOS and tested it on my own iPad. 
    I have then done the release build with the "Final Release for App Store Distribution" option in the release build wizard.  I have all the correct provisioning certificates in place and compiled the application to a .ipa file.
    At this point, using a MAC, I have run the Application Loader utility to upload my application to the itunesConnect portal to get it in the appstore.  I've already gone through the steps of entering the metadata, price scheme, and screenshots in the itunes connect portal, and just need to upload it for review.
    When I upload the .ipa file into the application loader, it gives me the following error:
    "iPhone/iPod Touch:  application executable contains unsupported architecture(s): arm"
    Anyone have any idea what this means and how I can fix it?  Any help is greatly appreciated!
    Thanks in advance!

    Solved it.  Just added the following in the <InfoAdditions> tag for iPhone in my app descriptor XML file:
      <key>UIRequiredDeviceCapabilities</key>
    <array>
    <string>wifi</string>
    <string>armv6</string>
    <string>armv7</string>
    </array>

  • Updated to Flash Builder 4.5, getting error about unknown token

    I justed updated my project to Flash Builder 4.5 and now I am getting a problem about compiler.services containing an unknown token. I have this command line argument for the compiler:
    -services "${MY_HOME}/somedirectory/services-config.xml"
    I have defined "MY_HOME" in the Linked Resources section of the project but it's still throwing the error "configuration variable 'compiler.services' value contains unknown token 'MY_HOME'"
    Any suggestions? Thanks

    There's no spark HDividedBox yet. Use the mx one.
    Instead of mx:Tile, use a s:Group with s:layout set to TileLayout:
    <s:Group>
    <s:layout>
    <s:TileLayout />
    </s:layout>
    <!-- other children here -->
    </s:Group>

  • Flash Builder 4.7 Embed Error

    I originally posted something similiar in the "Using Flash Builder" section but decided to post something here thinking it would get more coder eyes.
    This worked in Flash Builder 4.5 using the Flex 4.6 SDK with the AIR 3.5 SDK.
    However in Flash Builder 4.7 using the Flex 4.6 SDK with the AIR 3.5 SDK the following:
    package
              import flash.display.Sprite;
              public class TestProject extends Sprite
                        [Embed(source = "Image.png", mimeType = "image/png", compression="true", quality="80")]
                        private static var _imageClass:Class;
                        public function TestProject()
    Is generating these errors:
    Error 1:
    Internal error in outgoing dependency subsystem, when generating code for: C:\Users\users\Adobe Flash Builder 4.7\TestProject\src\Image.png: java.lang.ArrayIndexOutOfBoundsException: 0
              at com.adobe.flash.compiler.internal.units.EmbedCompilationUnit.analyze( EmbedCompilationUnit.java:224)
              at com.adobe.flash.compiler.internal.units.EmbedCompilationUnit.handleOu tgoingDependenciesRequest(EmbedCompilationUnit.java:193)
              at com.adobe.flash.compiler.internal.units.CompilationUnitBase.processOu tgoingDependenciesRequest(CompilationUnitBase.java:886)
              at com.adobe.flash.compiler.internal.units.CompilationUnitBase.access$50 0(CompilationUnitBase.java:107)
              at com.adobe.flash.compiler.internal.units.CompilationUnitBase$6$1.call( CompilationUnitBase.java:378)
              at com.adobe.flash.compiler.internal.units.CompilationUnitBase$6$1.call( CompilationUnitBase.java:374)
              at com.adobe.flash.compiler.internal.units.requests.RequestMaker$1.call( RequestMaker.java:228)
              at com.adobe.flash.compiler.internal.units.requests.RequestMaker$1.call( RequestMaker.java:222)
              at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
              at java.util.concurrent.FutureTask.run(Unknown Source)
              at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
              at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
              at java.lang.Thread.run(Unknown Source)          Image.png          /TestProject/src          line 0          Flex Problem
    Error 2:
    The definition of base class Bitmap was not found.
    With a warning:
    Definition flash.utils.Bitmap could not be found.
    If you drop the quality param:
    package
         import flash.display.Sprite;
         public class TestProject extends Sprite
             [Embed(source = "Image.png", mimeType = "image/png", compression="true")]
             private static var _imageClass:Class;
             public function TestProject()
    The errors change to:
    Internal error in ABC generator subsystem, when generating code for: C:\Users\user\Adobe Flash Builder 4.7\TestProject\src\TestProject.as: java.lang.NullPointerException
              at com.adobe.flash.compiler.internal.embedding.transcoders.JPEGTranscode r.equals(JPEGTranscoder.java:220)
              at com.adobe.flash.compiler.internal.embedding.EmbedData.equals(EmbedDat a.java:522)
              at java.util.WeakHashMap.eq(Unknown Source)
              at java.util.WeakHashMap.get(Unknown Source)
              at com.adobe.flash.compiler.internal.workspaces.Workspace.getCanonicalEm bedData(Workspace.java:933)
              at com.adobe.flash.compiler.internal.units.EmbedCompilationUnitFactory.g etEmbedData(EmbedCompilationUnitFactory.java:120)
              at com.adobe.flash.compiler.internal.units.EmbedCompilationUnitFactory.g etCompilationUnit(EmbedCompilationUnitFactory.java:62)
              at com.adobe.flash.compiler.internal.tree.as.EmbedNode.resolveCompilatio nUnit(EmbedNode.java:116)
              at com.adobe.flash.compiler.internal.tree.as.EmbedNode.resolveCompilatio nUnit(EmbedNode.java:126)
              at com.adobe.flash.compiler.internal.tree.as.EmbedNode.resolveCompilatio nUnit(EmbedNode.java:43)
              at com.adobe.flash.compiler.internal.units.EmbedCompilationUnitFactory.c ollectEmbedDatas(EmbedCompilationUnitFactory.java:136)
              at com.adobe.flash.compiler.internal.as.codegen.ABCGenerator.generate(AB CGenerator.java:184)
              at com.adobe.flash.compiler.internal.units.ASCompilationUnit.handleABCBy tesRequest(ASCompilationUnit.java:374)
              at com.adobe.flash.compiler.internal.units.CompilationUnitBase.processAB CBytesRequest(CompilationUnitBase.java:870)
              at com.adobe.flash.compiler.internal.units.CompilationUnitBase.access$30 0(CompilationUnitBase.java:107)
              at com.adobe.flash.compiler.internal.units.CompilationUnitBase$4$1.call( CompilationUnitBase.java:309)
              at com.adobe.flash.compiler.internal.units.CompilationUnitBase$4$1.call( CompilationUnitBase.java:305)
              at com.adobe.flash.compiler.internal.units.requests.RequestMaker$1.call( RequestMaker.java:228)
              at com.adobe.flash.compiler.internal.units.requests.RequestMaker$1.call( RequestMaker.java:222)
              at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
              at java.util.concurrent.FutureTask.run(Unknown Source)
              at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
              at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
              at java.lang.Thread.run(Unknown Source)          TestProject.as          /TestProject/src          line 0          Flex Problem
    Internal error in outgoing dependency subsystem, when generating code for: C:\Users\user\Adobe Flash Builder 4.7\TestProject\src\TestProject.as: java.lang.NullPointerException
              at com.adobe.flash.compiler.internal.embedding.transcoders.JPEGTranscode r.equals(JPEGTranscoder.java:220)
              at com.adobe.flash.compiler.internal.embedding.EmbedData.equals(EmbedDat a.java:522)
              at java.util.WeakHashMap.eq(Unknown Source)
              at java.util.WeakHashMap.get(Unknown Source)
              at com.adobe.flash.compiler.internal.workspaces.Workspace.getCanonicalEm bedData(Workspace.java:933)
              at com.adobe.flash.compiler.internal.units.EmbedCompilationUnitFactory.g etEmbedData(EmbedCompilationUnitFactory.java:120)
              at com.adobe.flash.compiler.internal.units.EmbedCompilationUnitFactory.g etCompilationUnit(EmbedCompilationUnitFactory.java:62)
              at com.adobe.flash.compiler.internal.tree.as.EmbedNode.resolveCompilatio nUnit(EmbedNode.java:116)
              at com.adobe.flash.compiler.internal.tree.as.EmbedNode.resolveCompilatio nUnit(EmbedNode.java:126)
              at com.adobe.flash.compiler.internal.tree.as.EmbedNode.resolveCompilatio nUnit(EmbedNode.java:43)
              at com.adobe.flash.compiler.internal.units.CompilationUnitBase.updateEmb edCompilationUnitDependencies(CompilationUnitBase.java:946)
              at com.adobe.flash.compiler.internal.units.ASCompilationUnit.handleOutgo ingDependenciesRequest(ASCompilationUnit.java:458)
              at com.adobe.flash.compiler.internal.units.CompilationUnitBase.processOu tgoingDependenciesRequest(CompilationUnitBase.java:886)
              at com.adobe.flash.compiler.internal.units.CompilationUnitBase.access$50 0(CompilationUnitBase.java:107)
              at com.adobe.flash.compiler.internal.units.CompilationUnitBase$6$1.call( CompilationUnitBase.java:378)
              at com.adobe.flash.compiler.internal.units.CompilationUnitBase$6$1.call( CompilationUnitBase.java:374)
              at com.adobe.flash.compiler.internal.units.requests.RequestMaker$1.call( RequestMaker.java:228)
              at com.adobe.flash.compiler.internal.units.requests.RequestMaker$1.call( RequestMaker.java:222)
              at java.util.concurrent.FutureTask$Sync.innerRun(Unknown Source)
              at java.util.concurrent.FutureTask.run(Unknown Source)
              at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Unknown Source)
              at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
              at java.lang.Thread.run(Unknown Source)          TestProject.as          /TestProject/src          line 0          Flex Problem
    If you try to set compression to false:
    package
         import flash.display.Sprite;
         public class TestProject extends Sprite
             [Embed(source = "Image.png", mimeType = "image/png", compression="false")]
             private static var _imageClass:Class;
             public function TestProject()
    You get the following:
    The attribute compression can't be used with the mime type: image/png
    Change it to jpeg:
    package
         import flash.display.Sprite;
         public class TestProject extends Sprite
             [Embed(source = "Image.png", mimeType = "image/jpeg", compression="false")]
             private static var _imageClass:Class;
             public function TestProject()
    You get the following:
    The attribute compression can't be used with the mime type: image/jpeg
    Is anyone else getting these same results with Flash Builder 4.7 with Flex SDK 4.6 and AIR SDK 3.5? I expect that we still should be able to compress embedded assets within Flash Builder?

    Upgraded Flex 4.6 SDK to use the new AIR 3.6 SDK and the Flash Builder 4.7 to use the new AIR 3.6 SDK with the new compiler and I am still getting this. I had some other people try these steps and they got the exact same error so it doesn't seem to be just me. Is noone here getting this or am I the only one trying to embed a png directly into a Flash Builder project? =/

  • Using papervision in flash builder and getting TypeError: Error #1009: when using object.pitch(5)

    When i use papervision in flash builder and i am doing a test, when i render a sphere using papervision with the following code it renders me the sphere.
    When i add a line sphere.pitch(2);      ||
    sphere.yaw(2);
    sphere.roll(2);
    i get the following error,
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at PvTest/onRenderTick()[D:\Android 3D\PvTest\src\PvTest.as:39]
    Can anyone help me figure out the error
    For additional Info, these are the imports i am doing:
    import org.papervision3d.objects.primitives.Sphere;
    import org.papervision3d.view.BasicView;

    I followed the steps and read some of your comments on the same top topic in another thread. When I put it on the first frame it was okay but the next button on that page had the same problem.  So what I am guessing is that I have to either create a document class or put the actions where the buttons are.  Am I understanding that correctly?  In the other thread in which you helped someone else; there was so comments about document class.  I found a tutorial on it and the way I understand it is that it you can put you actions in an external document.  But you have to include in the event listener the frame in which you want that action to happen.
    Thaks for your help.  And patience.

  • Flash Builder 4.6 Installer Error

    I'm trying to install Flash Builder 4.6, but I'm getting an error immediately when the installer starts. It says "Beta or prerelease versions of Adobe Flash Builder are installed on the machine, and must be uninstalled before this installation can proceed. Please uninstall these products, restart your computer, then run this installer again."
    I do not have any beta version of Flash Builder installed on my machine. I do however have previous releases of FB 3.0, 4.0, and 4.5 installed. I use these to support various projects.
    Here are my machine specifications:
    2011 Macbook Pro w/ OSX Lion updated to 10.7.2
    100GB of free space
    8 GB of ram
    I found the following error messages in the OSX Console app:
    11/30/11 10:47:20.001 AM PDApp: CFURLCreateWithString was passed this invalid URL string: '/System/Library/Frameworks/' (a file system path instead of an URL string). The URL created will not work with most file URL functions. CFURLCreateWithFileSystemPath or CFURLCreateWithFileSystemPathRelativeToBase should be used instead.
    11/30/11 10:47:20.001 AM [0x0-0x3f83f8].com.adobe.PDApp.setup: 2011-11-30 10:47:20.000 PDApp[6202:407] CFURLCreateWithString was passed this invalid URL string: '/System/Library/Frameworks/' (a file system path instead of an URL string). The URL created will not work with most file URL functions. CFURLCreateWithFileSystemPath or CFURLCreateWithFileSystemPathRelativeToBase should be used instead.

    Any solution for this yet? After having to uninstall FB4.5 (& iOS support) to upgrade then the installer not wanting to install iOS support because its 'already installed' ... FB4.6 wont compile iOS ... heres FB & the installer telling me both things at the same time! Note: the store errors when i try to buy an upgrade so im also now on a trial again, plus FB4.6 wont import the default workspace FB4.5 created so im having to import the projects from that workspace manually!
    Thanks Adobe, I guess i should just learn HTML5 as you seem to want ... as i remember i LOVED debugging stuff in every single version of each browser in the 90s!

  • Flash Builder 4.5 SOAP call for images using Base64 Encoding

    I am trying to load some image meta data in a flash builder mobile application by making a SOAP call to .Net service. I am able to test the web service successfully using a .Net console application. However when I make the call from flash builder mobile client I get a null result. What am I doing wrong? I am using SOAP 1.1 ByteArray didn't work for Flash builder. So converted the ByteArray to Base64 format and tried to obtain result that way. Both ways worked from a .Net Client but not working from Flash mobile.
    Here is the code
    <fx:Script>
            <![CDATA[          
                import mx.graphics.ImageSnapshot;
                import mx.graphics.codec.JPEGEncoder;
                import mx.graphics.codec.PNGEncoder;
                import mx.rpc.AsyncToken;
                import mx.utils.Base64Encoder;         
                import services.exifimagemetadata1.ExifImageMetaData1;         
                import spark.components.Image;     
                public var metaData:ExifImageMetaData1 = new ExifImageMetaData1();         
                public var imageBytes:ByteArray = new ByteArray();
                public var gpsData:String;
        private function getBase64EncodedImage():String
                    var myEncoder:Base64Encoder = new Base64Encoder();
                    myEncoder.encodeBytes(getImageBytes());            
                    var image64BitText:String = myEncoder.toString();                          
                    return image64BitText;
        public function GetMetaDataFromExif():void{
                    var imageToken:AsyncToken = metaData.GetExifBase64Data(getBase64EncodedImage());               
                    gpsData = imageToken.result.toString();
                    metaResult.text = gpsData;
        protected function GetImageMetaDataFromExif(event:MouseEvent):void
                    GetMetaDataFromExif();         
            ]]>
        </fx:Script>
    <s:layout>
            <s:VerticalLayout>         
            </s:VerticalLayout>
        </s:layout>
        <s:HGroup>
            <s:Image id="test" width="130" height="140" source="@Embed(source='assets/p1000106.jpg')"/>
        </s:HGroup>
        <s:HGroup>
        <s:Label width="100" height="140" backgroundColor="Blue" click="GetImageMetaDataFromExif(event)">
            <s:text/>
        </s:Label>
        </s:HGroup>
        <s:HGroup>
            <s:Label id="metaResult" width="200" height="140" backgroundColor="yellow"/>           
        </s:HGroup>

    Hello everyone -
    Since I last posted an interesting update happened. I tested my  Flex application again, it is calling a Jetty Server that returns a JSON object, in different BROWSERS.  I disabled HTTPS for now, and the crossdomain.xml policy file is wide open for testing (ie. allowing every request to return data). So the app accessing the data using HTTP only. Browsers  -  IE, Opera, Firefox and Chrome. Each browser contained the SAME application, revision of the Flash Player (10.3.183.10 debugger for firefox, chrome, opera, safari PC; 11.0.1.129 consumer version in IE9,) take a look at the screen shot (safari not shown although the result was the same as IE and chrome)
    Note that Opera and Firefox returned successful values (i.e. successful JSON objects) using the same code generated from the Data Services Wizard. Chrome, IE and, Safari failed with an Internal error. So I am left wondering - WHY? Is it something with the Flash Player? the Browsers?  the Flex SDK? Any thoughts are appreciated. Again, the code is found in the original thread above.

  • Flash builder 4 - web services error

    good day,
         I'm trying out flash builder 4 beta connect to a simple web service I've created (gsoap calc example).  using the connect data/service
    tab, I choose the web service and enter the service name and wsdl location (on localhost).  fb4 retrieves the wsdl and shows all the methods
    available but when I click finish I get a terse unresolved model error message any suggestions thanks in advance.  The web service is runs
    on the local host so I don't think its a cross domain issue

    sigh, sorry for the problems:
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions name="calc"
    targetNamespace="http://doune.llnl.gov/cgi-bin/calcserver"
    xmlns:tns="http://doune.llnl.gov/cgi-bin/calcserver"
    xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:ns="urn:calc"
    xmlns:SOAP="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:MIME="http://schemas.xmlsoap.org/wsdl/mime/"
    xmlns:DIME="http://schemas.xmlsoap.org/ws/2002/04/dime/wsdl/"
    xmlns:WSDL="http://schemas.xmlsoap.org/wsdl/"
    xmlns="http://schemas.xmlsoap.org/wsdl/">
    <types>
    <schema targetNamespace="urn:calc"
      xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
      xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
      xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema"
      xmlns:ns="urn:calc"
      xmlns="http://www.w3.org/2001/XMLSchema"
      elementFormDefault="unqualified"
      attributeFormDefault="unqualified">
      <import namespace="http://schemas.xmlsoap.org/soap/encoding/" schemaLocation="http://schemas.xmlsoap.org/soap/encoding/"/>
    </schema>
    </types>
    <message name="addRequest">
    <part name="a" type="xsd:double"/>
    <part name="b" type="xsd:double"/>
    </message>
    <message name="addResponse">
    <part name="result" type="xsd:double"/>
    </message>
    <message name="subRequest">
    <part name="a" type="xsd:double"/>
    <part name="b" type="xsd:double"/>
    </message>
    <message name="subResponse">
    <part name="result" type="xsd:double"/>
    </message>
    <message name="mulRequest">
    <part name="a" type="xsd:double"/>
    <part name="b" type="xsd:double"/>
    </message>
    <message name="mulResponse">
    <part name="result" type="xsd:double"/>
    </message>
    <message name="divRequest">
    <part name="a" type="xsd:double"/>
    <part name="b" type="xsd:double"/>
    </message>
    <message name="divResponse">
    <part name="result" type="xsd:double"/>
    </message>
    <message name="powRequest">
    <part name="a" type="xsd:double"/>
    <part name="b" type="xsd:double"/>
    </message>
    <message name="powResponse">
    <part name="result" type="xsd:double"/>
    </message>
    <portType name="calcPortType">
    <operation name="add">
      <documentation>Sums two values</documentation>
      <input message="tns:addRequest"/>
      <output message="tns:addResponse"/>
    </operation>
    <operation name="sub">
      <documentation>Subtracts two values</documentation>
      <input message="tns:subRequest"/>
      <output message="tns:subResponse"/>
    </operation>
    <operation name="mul">
      <documentation>Multiplies two values</documentation>
      <input message="tns:mulRequest"/>
      <output message="tns:mulResponse"/>
    </operation>
    <operation name="div">
      <documentation>Divides two values</documentation>
      <input message="tns:divRequest"/>
      <output message="tns:divResponse"/>
    </operation>
    <operation name="pow">
      <documentation>Raises a to b</documentation>
      <input message="tns:powRequest"/>
      <output message="tns:powResponse"/>
    </operation>
    </portType>
    <binding name="calc" type="tns:calcPortType">
    <SOAP:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="add">
      <SOAP:operation style="rpc" soapAction=""/>
      <input>
         <SOAP:body use="encoded" namespace="urn:calc" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
      </input>
      <output>
         <SOAP:body use="encoded" namespace="urn:calc" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
      </output>
    </operation>
    <operation name="sub">
      <SOAP:operation style="rpc" soapAction=""/>
      <input>
         <SOAP:body use="encoded" namespace="urn:calc" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
      </input>
      <output>
         <SOAP:body use="encoded" namespace="urn:calc" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
      </output>
    </operation>
    <operation name="mul">
      <SOAP:operation style="rpc" soapAction=""/>
      <input>
         <SOAP:body use="encoded" namespace="urn:calc" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
      </input>
      <output>
         <SOAP:body use="encoded" namespace="urn:calc" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
      </output>
    </operation>
    <operation name="div">
      <SOAP:operation style="rpc" soapAction=""/>
      <input>
         <SOAP:body use="encoded" namespace="urn:calc" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
      </input>
      <output>
         <SOAP:body use="encoded" namespace="urn:calc" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
      </output>
    </operation>
    <operation name="pow">
      <SOAP:operation style="rpc" soapAction=""/>
      <input>
         <SOAP:body use="encoded" namespace="urn:calc" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
      </input>
      <output>
         <SOAP:body use="encoded" namespace="urn:calc" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
      </output>
    </operation>
    </binding>
    <service name="calc">
    <documentation>Simple calculator service</documentation>
    <port name="calc" binding="tns:calc">
      <SOAP:address location="http://doune.llnl.gov/cgi-bin/calcserver"/>
    </port>
    </service>
    </definitions>

  • Using Flash Builder 4.5 to develop for Air for TV?

    How can I target Adobe Air 2.5 when using Flash Builder 4.5 so I develop for Adobe Air for TV?
    When I change the app.xml file to point to 2.5, I get the following error:
    "Namespace 2.5.0 in the application descriptor file should be equal or higher than the minimum version 2.6.0 required by Flex SDK."

    I was finally able to get my app on a Samsung TV. Here's some more info on this subject. You actually have to overlay the Air 2.6 SDK - not the 2.5 SDK.
    Also make sure when you finally package the TV app to change the application XML to point to 2.5,. During development you can leave it as 2.6.
    @see http://learn.adobe.com/wiki/display/airquestions/AIR+for+TV
    What tools do developers use to create AIR 2.5.1 apps for TVs?
    Developers can use the following tools:
    AIR 2.6 SDK
    Flash Professional CS5 Extension for AIR 2.5 (now an integral feature in Flash Professional CS5.5)
    Flash Builder 4.5
    Note: Developers can use the AIR 2.6 SDK for developing apps for AIR 2.5.1 for TV. In Flash Professional, set the publish settings to Adobe AIR 2.5. In Flash Builder, set the AIR namespace to 2.5 in the app descriptor file:
    <application xmlns="http://ns.adobe.com/air/application/2.5">.
    If you are using Flash Builder 4.5, you must do the following:
    Download the Flex 4.1.0.16076 SDK.
    Download the AIR 2.6 SDK.
    Copy each file from the AIR 2.6 SDK into the corresponding directory within the Flex 4.1 SDK, replacing the Flex original variants.
    To use this SDK within Flash Builder, select your project in the Flash Builder package explorer.
    Choose Project > Properties to open the project's Properties dialog box.
    Select Flex Compiler in the list and then click the "Configure Flex SDKs" link to open the Preferences dialog box.
    Click the Add button, browse to the SDK, and then click OK until you get back to the project's Properties dialog box.
    Click the "Use a specific SDK" option and then pick Flex 4.1 from the drop-down menu.
    You must also replace the default WindowedApplication element with Application in your project's MXML file.

  • Flash Builder 4.5 Plugin Error: Failed to load library.swf

    Hi,
    I am getting an error from Flash Builder that is stopping me building my app. I am running the plugin version under Springsource ToolSuite 2.6.1. It worked fine with the Prerelease version of Flash Builder 4.5.
    I have flexunit-uilistener-4.1.0-8-4.1.0.16076.swc in the directory along with the other FlexUnit swc files (which do not throw errors).
    Any suggestions ?
    Thanks!
    eclipse.buildId=2.6.1.201105041000-RELEASE
    java.version=1.6.0_24
    java.vendor=Apple Inc.
    BootLoader constants: OS=macosx, ARCH=x86, WS=cocoa, NL=en_US
    Framework arguments:  -product com.springsource.sts.ide -product com.springsource.sts.ide -keyring /Users/Dre/.eclipse_keyring -showlocation
    Command-line arguments:  -os macosx -ws cocoa -arch x86 -product com.springsource.sts.ide -data /Users/Dre/workspace-PGS -product com.springsource.sts.ide -keyring /Users/Dre/.eclipse_keyring -showlocation
    Error
    Fri May 27 21:31:07 PDT 2011
    Design view: Failed to load library.swf from /Users/Dre/flexunit-3/flexunit-uilistener-4.1.0-8-4.1.0.16076.swc, reason=DesignAssetLoader.CompleteTimeout

    I did a workaround by adding this compiler argument:
    ${flexlib}/libs/automation/automation_agent.swc
    ...which points to that file in Flex 4.5. I can now build the app.
    Why do I need to do this now when I didn't need to do so before ?

  • Compiling Flash Builder Projects with ant - error

    I'm fairly new to FlashBuilder as well as using ant to build projects.
    I'm working on a project in FlashBuilder 4.5. I'm using a 3rd party SWC that contains an alchemy-compiled C application in the SWC. Building my entire project within FlashBuilder is working fine. However, due to other parts of the project (not imported into FlashBuilder) I need to build with ant on occasion.
    The Class specific to the C app within the SWC is throwing errors when building with ant - it says it can not find the source. I had one recommendation to look into adding/editing something within the build.xml file, but I don't know what that addition/edit would be.
    Any help appreciated.

    Apparently related to switching workspaces... the error log identifies a path to an old workspace I changed out of weeks ago. I created a new workspace and moved the project (just the source, etc, not the settings) into it. been running fine for a while now... though funny how this problem didn't show up until yesterday.

  • Flash Builder 4.7 Unit Tests for Mobile Devices

    I am trying to setup a simple unit test using Flash Builder 4.7. I created a Test Suite and a Test Case class.
    Using the menu, I select Run > Run. I see options to select which Test Case / Methods I'd like to run.
    But the strange thing is, next I have to select a launch configuration. I'd assume it would just launch in some console window and give me test results. I did what I could and have it setup to run on the AIR simulator for a XOOM device. Nothing happens I just see a blank screen with a blank bar at the top.
    I've also tried right clicking the project and choosing execute flexunit tests. My FlexUnit Resulst still says 0/0.
    What is the launch configuration I need to use to execute the test cases and get the results?

    I solved it! After looking at example code on google, I realized that the s:ViewNavigatorApplication was missing two key options:
    firstView="flexunit.flexui.FlexUnitTestRunnerUIMobile"
    firstViewData="{getFirstViewData()}"
    Thankfully I was able to derive this. It makes 0 since to me why this wouldn't be added to the automatically generated mxml file but the functions it utalizes does. This to me seems like a defect. If you'd like people to use automatically generated files, make sure they are functional.
    Thanks

  • Is Flash Builder a good beginner program for creation of android app?

    Hi there,
    I'm planning to create a Android app and I'm searching for the right program to do so. I have absolutly no knowledge about programming, but happen to have Flash Builder as part of the Creative Suite CS6. As I need to learn everything from the complete beginning, I'd like to pick the best program for this purpose, so I don't learn a lot of stuff not be able to achieve the product I'd like. Let me give you a example of what I will try to achieve:
    Program for Android:
    - first page of the program would be a welcome page, it would be nice to be able to put a login and password option here, but that is not neceserry.
    - second page would be a list of 14 options - books - and by clicking on each option I would open a little book (cca 30 pages).
    - this option would be nice: let's say I open the third book and stop reading on page 10 and stop/close the program - the next time I open the program it would open the program on that very 10th page of the third book
    - this option would aslo be nice: some kind of searching modul to search keywords in the book.
    Is this kind of app possible to make in Adobe Flash Builder, or would it be better to learn another program? Thanks a lot for your experiences! Hedvertel

    If you have a licence for Master Collection you should have the info about what it contains.
    A few moments on Google took me here: http://www.ecostsoftware.com/adobe/adobe-creative-suite-cs6-master-collection-mac_p5565?gc lid=CNzN5MbKmLoCFXDJtAodWDoA3w
    The included software is listed. I don't think Muse existed when CS6 was originally released.
    I didn't properly read George's answer, but I don't see Muse as a great app builder.
    I kind of don't understand at all, why you even answer, if the only thing you are saying in this disucssion is that it's too ambitious and that I'm stupid even asking.
    Saying the project is overly-ambitious is a great answer to your question. In post 5 you clearly valued that answer enough as to be giving up on the project.
    I didn't say you were stupid asking these questions, it's more a case of asking questions you should be able to answer yourself without too much trouble.
    I still think that with your current level of understanding, takling this project with no experience of any programming or web technology is overly ambitious. Start small and build on that.
    You don't say why you want to do this particular project - whether it's about learning in general or that project in particular. If it's learning in general there's nothing to stop you - there are a ton of tutorials out there. If it's for this particular project only, I would stop now.
    You need to invest a significant amount of time to learn this stuff.
    Are you on some design course? Why do you have the master collection?

  • Flash Builder 4.5.1 Error when trying to run

    Hi,
    Since I installed 4.5.1 of Flash Builder (OS/X 10.6.7) I get the following error when I try to run anything:
    An internal error occurred during: "Launching New_configuration".
    java.lang.NullPointerException
    I created a new project to make sure it wasn't any bad code causing the issue, but it still has the same error with just a blank project.
    Any thoughts on what might be causing this?
    Thanks!

    Can you please post the contents of workspacedir/.metadata/.log?
    Are you on the same workspace as 4.5? Can you try with a new workspace?
    -Anirudh

Maybe you are looking for

  • Is it possible to accommodate dual language for single country?

    Hi folks, Here is the background information on our requirement. Any help would be appreciated. There are 3 Language parameter fields in SAP. 1. Field PA0002-SPRSL which can be modified in ESS via Personal Profile. This does not force a revisit to th

  • Issues with mp4 in Acrobat X...

    Hi guys, I'm trying to play a .mp4 video that has been imbedded into a pdf. There are other videos embedded as well, and they seem to work fine; it's only the mp4 that doesn't want to work. I've tried updating codecs (the file is H.264 codec), I've t

  • Training & Time Integration

    Hi We work on Indian trg scenario. After creating an event we double click on the event to get a "schedule" pop up. Here, the check box for Holiday or weekly off is ticked even for week days (working days). This is misleading and how to correct this?

  • To retrieve primary file through service

    Hi, I am using GET_SEARCH_RESULT to retrieve search results. I want to display primary file or primary file URL in console. What parameter i have to use in sysout? as i give dDocAuthor to get author. Will GET_SEARCH_RESULT retrieve all search results

  • Macbooks lose wireless network connections when they go to sleep

    I work off a Mac in a busy office. We have a password-protected wireless network. The password is saved on my computer. Our landlord has an unprotected network. When I boot up, my Macbook tells me that it "can't find" any of my "trusted networks" and