How to use motion xml in as3

the following is the result of exporting motion preset to xml.
<Motion duration="1" xmlns="fl.motion.*" xmlns:geom="flash.geom.*" xmlns:filters="flash.filters.*">
<source>
  <Source frameRate="24" x="449.5" y="138.55" scaleX="1" scaleY="1" rotation="0" elementType="movie clip" instanceName="ball" symbolName="ball">
  <dimensions>
  <geom:Rectangle left="-51.5" top="-51.5" width="103" height="103"/>
  </dimensions>
  <transformationPoint>
  <geom:Point x="0.5" y="0.9956310679611651"/>
  </transformationPoint>
  </Source>
</source>
<Keyframe index="0"/>
</Motion>
can some one show me how the as3 script in flash should be in order to set the motion to my "ball" mc in the fla?

use:
var myXML:XML;
var anim:Animator;
var myLoader:URLLoader = new URLLoader();
myLoader.load(new URLRequest("oman3d.xml"));
myLoader.addEventListener(Event.COMPLETE, processXML);
function processXML(e:Event):void {
myXML = XML(e.target.data);
animr=new Animator(myXML,ball);
anim.play();

Similar Messages

  • HOW TO: Use the XML parser in Oracle 8.1.7

    I am trying to figure out how to use the xml parser provided in oracle 8.1.7. all i want to do is parse a xml report that is defined using a schema, and place the data into the proper tables. i am totally unfamiliar with the xml parser and how it works. i have done some reading on the subject, but seem to be getting some conflicting infromation about which utilites i need and how to invoke them. can someone please tell me what utilities i need, how to invoke them, and what i need to do to get a xml document to parse and insert to a table? I would greatly appreciate any help anybody could offer. thanks.

    You can parse the XML Document with XML Parser and place the data into database using XSU(XML SQL Utility).
    Both of these are included in XDK for Java at:
    http://otn.oracle.com/tech/xml/xdk_java
    The following document could also help:
    Oracle9i XML Developer's Guide--XDK [PDF] at http://otn.oracle.com/tech/xml/doc.html

  • How to use sax xml parser

    hi was wondering if someone could give me an example on how to use sax
    and a document handler and explain a bit

    to use sax parsers you need basically to extends handlerBase wich will force you to have the 3 following methods
    // imports for the sax portion of the manager,
    // the portion that will permit the interpretation of
    import com.sun.xml.parser.Resolver;
    import org.xml.sax.*;
    import org.xml.sax.helpers.ParserFactory;
    public class XMLManager extends HandlerBase
    private String currentElement = null; //current element name for parsing
    * Default constructor
    public XMLManager()
    /*SAX METHODS*/
    * This method is called when the SAX parser encounters an open element
    * tag. Must remember which element tag was just opened (so that the
    * characters(..) method can do something useful with the data that is
    * read by the parser.
    public void startElement(String name,AttributeList atts){
    if( name.equalsIgnoreCase("MY XML TAG NAME") )
    currentElement = "MY XML TAG NAME";
    //then do stuff for that type of tag
    * This method is called when the SAX parser encounters a close element
    * tag. If the message tag is closed it means the message is valid and ready
    * to be treated
    public void endElement(String name){
    currentElement = "";
    * This method is called when the SAX parser encounters #PCDATA or CDATA.
    * It is important to remember which element tag was just opened so that
    * this data can be put in the right object or variable.
    * Also the start index and length integer must be used to retrieve only
    * a portion of the data stored in the char[]
    * This section will only contain treatment for tags wich have content
    * between start and end tags
    public void characters(char ch[],int start,int length){
    //dont read ch[] , use the
    //range provided by the SAX parser.
    String value = new String(ch,start ,length);
    Once you have defined these 3 methods, define a method called for example parseIt(String mss) wich will contain the following code to parse the content of a string mss, a string containing xml data
    try
    //create an InputSource from the XML source received
    StringReader r = new StringReader(mss);
    InputSource is = new InputSource( r );
    //create a SAX parser using SAX interfaces and classes
    String parserClassName = "com.sun.xml.parser.Parser";
    org.xml.sax.Parser parser = org.xml.sax.helpers.ParserFactory.makeParser(parserClassName);
    //create document handler to do something useful
    //with the XML document being parsed by the parser.
    parser.setDocumentHandler(this);
    parser.parse(is);
    catch(Throwable t){System.out.println(t);t.printStackTrace();}
    you can't fail with this ;)

  • How to use "motion" "position" a lot on different layers

    HI,
    I have two clips , one on video 1 and another on video 2.  I used motion / position on video 2 in order to make a portion of that video move around.
    A little later in time I want to make a portion of video 1 to move around. At the time that I want video 1 to move video 2 will be transparent, so I can see video 1, as they are layered right on top of each other.
    When I select video 1 (I made in and out points for the part I want to move) with the CTI on the in point, and then select the program monitor, I see the path of the motion from video 2.  If I change that it changes the earlier motion of video 2, and video 2 becomes "highlighted" (selected) at the same time....video 1 is no longer selected when I click in the program monitor.
    How can I make a new motion in video 1, without affecting the motion in video 2  ??
    Thanks
    Rod

    The ability to Lock Tracks is wonderful and can save one from a lot of accidents. That is one great feature missing from PrElements, and it would so very useful there. Still, one should get something for the price difference between the two - eh?
    Between you and me, I use the coordinates in the Effects Control Panel to Position/Scale my video Clips. If I am doing PiP work, I will create an alignment/size grid in PS and use those to do my Effects Control. HERE are a few simple ones, and when working with a lot of PiP, I will do custom ones. I also use these for work in Titler, and just click Show Video. Just do not forget to either remove them, or turn their visibility OFF, or they WILL be visible in your Exported Video.
    Good luck,
    Hunt

  • How to use motion control in lenovo yoga 3 pro

    I don't know how to use the motion control in my lenovo yoga 3 pro.As I know the Lenovo Motion Control suppots the following apps:
    - Windows Media Player
    - Windows Media Player Classic
    - Windows Live Gallery
    - Picasa
    - Windows Photo Viewer
    - Adobe Reader
    - Microsoft PowerPointBut the only app I can use is only microsoft powerpoint, how can I use motion control in playing video and picture.

    I don't know how to use the motion control in my lenovo yoga 3 pro.As I know the Lenovo Motion Control suppots the following apps:
    - Windows Media Player
    - Windows Media Player Classic
    - Windows Live Gallery
    - Picasa
    - Windows Photo Viewer
    - Adobe Reader
    - Microsoft PowerPointBut the only app I can use is only microsoft powerpoint, how can I use motion control in playing video and picture.

  • How to use tile map with AS3?

    I have a file that contains a bunch of isometric tiles that I need to make a map with, much like a sprite sheet but not for making animations. So using AS3, how can I divide that file into the different tiles, knowing the coordinates of each of them. Or can it be done automatically in Flash itself, so I can access each tile from AS3?
    Furthermore I've been a programmer for a couple of decades but I am new to Flash. I know there are a ton of DisplayObjects like Bitmap, Sprite, Shape, MovieClip, Symbol etc. But which one would be better to use for that file? I need to access it from AS3 as described above, but I don't need it to react to mouse events, stretch or have children, just extract each tile and move it onto the stage with AS3.
    It seems to be down to a choice between Bitmap and Shape, since they're both lightweight, but I couldn't find out what the advantages and disadvantages of them are, as there was no comparison between those two on Google, though between a lot of the other objects. And Symbol seems like an idea too, since when I googled this, I found a lot of pages saying that you should convert a Bitmap to a Symbol, but I never found out why.
    Oh, and since I'm building an isometric map, all the tiles and all other graphics I'll be using, will be Bitmap and not Vector since I'm drawing the graphics in pixelart.

    create one tile symbol (movieclip or sprite so you can use actionscript to reference tile properties - like its x and y) and arrange them (using code or by hand) into your map.
    enable the cacheAsBitmap property of your map (that has some number of tile children).
    assign the mouseEnabled property of the map to false and its mouseChildren property to false.

  • How to "use" a xml file with a script?

    Hey Guys!
    I use the normal Button with the send-option to send the xml file to an url.
    My question is how it's possible to work in a php-script with the xml data out of the formular?
    Thanks for help.
    LG
    Adrian

    Hi,
    I need to read a XML document with StringReade class.
    My aplication receives an absolute path but this
    doesn't work:
    StringReader oStringReader =
    new StringReader(c:\java\libros.xml);
    However it works with:
    StringReader oStringReader =
    new StringReader("<?xml version="1.0" e......");
    ie, with the whole document as a String, but I need
    to do it as the frist way.
    Thankstake a look at this link:
    http://java.sun.com/webservices/jaxp/dist/1.1/docs/tutorial/sax/2a_echo.html

  • How to use/access XML based DVMs in ODI 11.1.1.5.0

    Hi All,
    I want to use XML based DVMs in interface on ODI 11.1.1.5.0.
    I have tried something like this. However while "Load Data" step, i am facing the error "
    -4850 : 3F000 : java.sql.SQLException: invalid schema name: CURRENCYCODE
    java.sql.SQLException: invalid schema name: CURRENCYCODE
    at org.hsqldb.jdbc.Util.sqlException(Unknown Source)
    at org.hsqldb.jdbc.JDBCPreparedStatement.<init>(Unknown Source)
    at org.hsqldb.jdbc.JDBCConnection.prepareStatement(Unknown Source)
    at com.sunopsis.jdbc.driver.xml.SnpsXmlConnection.prepareStatement(SnpsXmlConnection.java:1192)
    at sun.reflect.GeneratedMethodAccessor314.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at oracle.odi.core.datasource.dwgobject.support.OnConnectOnDisconnectDataSourceAdapter$OnDisconnectCommandExecutionHandler.invoke(OnConnectOnDisconnectDataSourceAdapter.java:200)
    at $Proxy138.prepareStatement(Unknown Source)
    at oracle.odi.runtime.agent.execution.sql.SQLCommand.doInitializeStatement(SQLCommand.java:83)
    at oracle.odi.runtime.agent.execution.sql.SQLCommand.getStatement(SQLCommand.java:117)
    at oracle.odi.runtime.agent.execution.sql.SQLCommand.getStatement(SQLCommand.java:111)
    at oracle.odi.runtime.agent.execution.sql.SQLDataProvider.readData(SQLDataProvider.java:76)
    at oracle.odi.runtime.agent.execution.sql.SQLDataProvider.readData(SQLDataProvider.java:1)
    at oracle.odi.runtime.agent.execution.DataMovementTaskExecutionHandler.handleTask(DataMovementTaskExecutionHandler.java:67)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.processTask(SnpSessTaskSql.java:2906)
    at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2609)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:537)
    at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:453)
    at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:1740)
    at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:1595)
    at oracle.odi.runtime.agent.processor.impl.StartScenRequestProcessor$2.doAction(StartScenRequestProcessor.java:580)
    at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:214)
    at oracle.odi.runtime.agent.processor.impl.StartScenRequestProcessor.doProcessStartScenTask(StartScenRequestProcessor.java:513)
    at oracle.odi.runtime.agent.processor.impl.StartScenRequestProcessor$StartScenTask.doExecute(StartScenRequestProcessor.java:1070)
    at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:123)
    at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$2.run(DefaultAgentTaskExecutor.java:82)
    at java.lang.Thread.run(Thread.java:662)
    Caused by: org.hsqldb.HsqlException: invalid schema name: CURRENCYCODE
    at org.hsqldb.error.Error.error(Unknown Source)
    at org.hsqldb.SchemaManager.getSchemaHsqlName(Unknown Source)
    at org.hsqldb.SchemaManager.getSchemaName(Unknown Source)
    at org.hsqldb.Session.getSchemaName(Unknown Source)
    at org.hsqldb.SchemaManager.getTable(Unknown Source)
    at org.hsqldb.ParserDQL.readTableName(Unknown Source)
    at org.hsqldb.ParserDQL.readTableOrSubquery(Unknown Source)
    at org.hsqldb.ParserDQL.XreadTableReference(Unknown Source)
    at org.hsqldb.ParserDQL.XreadFromClause(Unknown Source)
    at org.hsqldb.ParserDQL.XreadTableExpression(Unknown Source)
    at org.hsqldb.ParserDQL.XreadQuerySpecification(Unknown Source)
    at org.hsqldb.ParserDQL.XreadSimpleTable(Unknown Source)
    at org.hsqldb.ParserDQL.XreadQueryPrimary(Unknown Source)
    at org.hsqldb.ParserDQL.XreadQueryTerm(Unknown Source)
    at org.hsqldb.ParserDQL.XreadQueryExpressionBody(Unknown Source)
    at org.hsqldb.ParserDQL.XreadQueryExpression(Unknown Source)
    at org.hsqldb.ParserDQL.compileCursorSpecification(Unknown Source)
    at org.hsqldb.ParserCommand.compilePart(Unknown Source)
    at org.hsqldb.ParserCommand.compileStatement(Unknown Source)
    at org.hsqldb.Session.compileStatement(Unknown Source)
    at org.hsqldb.StatementManager.compile(Unknown Source)
    at org.hsqldb.Session.execute(Unknown Source)
    ... 27 more"
    Steps followed:
    1. Created data server with below values.
         JDBS Driver : com.sunopsis.jdbc.driver.xml.SnpsXmlDriver
         JDBC URL : jdbc:snps:xml?f=/appl/oracle/dev/fmw/11g/product/Oracle_ODI1/oracledi/xml_odi/CURRENCY95CODE.xml&s=CURRENCYCODE&case_sens=true
    2. Created a physical schemas out of it and passed SCHEMA as "CURRENCYCODE". Please note that it dint showup automatically. I had to type the schema name "CURRENCYCODE".
    3. Implemented logic in interface and facing the above error when tried executing interface at "Load Data" step.
    Note : Test Connection is working fine. And i have all the permissions to execute.
    Kindly suggest the right way if i am doing something wrong.

    Hello,
    Your filemaker install should have come with a jdbc driver (.jar file). You'll need to check your filemaker pro documentation to confirm. Once you have the file, place it in the ODI/oracledi/agent/drivers folder where your agent lives (also place it on your client if you want to use the local agent for testing). You can then create a custom Technology in the Topology tab in ODI.
    There are many options in the Technology definition which you will need to figure out based on what filemaker pro can handle and how it processes queries. Once the technology is created, add a Data Server and Physical Schema as you would any other technology. Then, build the model, datastores, interfaces, etc. just like any other tech.
    Hope this gets you started.
    Thank you,
    Michael R.

  • Trying to figure out how to use my xml with a tree component

    Hi All,
    I am trying to use a tree control for the first time and
    having a bit of difficulty. I have a Domino server that will
    generate XML for a specific view of information. The view looks
    just like what a tree control would look like. I wish I could paste
    a screen print . . .
    It looks like this:
    +/- ...01/31/2007
    ..+/- Steven Rieger
    ..........Company
    Name...Project-Number...Task-Name.....Total-Hours...Sat...Sun...Mon...Tue...Wed...Thu...F ri
    The Date and Name are collapsible .
    When I get the generated xml it's got a lot of crazy
    information in there that I don't need. I'm hoping someone can look
    at the xml below and provide some insight into how to parse it to
    achieve the look above.
    Thanks for your help!!!!
    - <viewentry position="1.1" noteid="80000008" children="2"
    descendants="6" siblings="30">
    - <entrydata columnnumber="1" name="$16"
    category="true">
    <datetime>20071026</datetime>
    </entrydata>
    - <entrydata columnnumber="7" name="TSTotHours">
    <number>53.5</number>
    </entrydata>
    - <entrydata columnnumber="8" name="TSHours_1">
    <number>6</number>
    </entrydata>
    - <entrydata columnnumber="9" name="TSHours_2">
    <number>9</number>
    </entrydata>
    - <entrydata columnnumber="10" name="TSHours_3">
    <number>6.5</number>
    </entrydata>
    - <entrydata columnnumber="11" name="TSHours_4">
    <number>8</number>
    </entrydata>
    - <entrydata columnnumber="12" name="TSHours_5">
    <number>8</number>
    </entrydata>
    - <entrydata columnnumber="13" name="TSHours_6">
    <number>8</number>
    </entrydata>
    - <entrydata columnnumber="14" name="TSHours_7">
    <number>8</number>
    </entrydata>
    </viewentry>
    - <viewentry position="1.1.1" noteid="8000000C"
    children="2" descendants="2" siblings="2">
    - <entrydata columnnumber="2" name="$15"
    category="true">
    <text>Steven Rieger</text>
    </entrydata>
    - <entrydata columnnumber="7" name="TSTotHours">
    <number>40</number>
    </entrydata>
    - <entrydata columnnumber="8" name="TSHours_1">
    <number>0</number>
    </entrydata>
    - <entrydata columnnumber="9" name="TSHours_2">
    <number>4</number>
    </entrydata>
    - <entrydata columnnumber="10" name="TSHours_3">
    <number>4</number>
    </entrydata>
    - <entrydata columnnumber="11" name="TSHours_4">
    <number>8</number>
    </entrydata>
    - <entrydata columnnumber="12" name="TSHours_5">
    <number>8</number>
    </entrydata>
    - <entrydata columnnumber="13" name="TSHours_6">
    <number>8</number>
    </entrydata>
    - <entrydata columnnumber="14" name="TSHours_7">
    <number>8</number>
    </entrydata>
    </viewentry>
    - <viewentry position="1.1.1.1"
    unid="8625721300797D8686257383001826AE" noteid="B4E"
    siblings="2">
    - <entrydata columnnumber="3" name="$178">
    <number>0</number>
    </entrydata>
    - <entrydata columnnumber="4" name="TSPCompany">
    <text>101955 - Acme Company, Inc.</text>
    </entrydata>
    - <entrydata columnnumber="5" name="TSPProject">
    <text>P03036 - CAC 07/08</text>
    </entrydata>
    - <entrydata columnnumber="6" name="TSPTask">
    <text>10134 - Import from Access to Notes</text>
    </entrydata>
    - <entrydata columnnumber="7" name="TSTotHours">
    <number>24</number>
    </entrydata>
    - <entrydata columnnumber="8" name="TSHours_1">
    <text />
    </entrydata>
    - <entrydata columnnumber="9" name="TSHours_2">
    <text />
    </entrydata>
    - <entrydata columnnumber="10" name="TSHours_3">
    <text />
    </entrydata>
    - <entrydata columnnumber="11" name="TSHours_4">
    <text />
    </entrydata>
    - <entrydata columnnumber="12" name="TSHours_5">
    <number>8</number>
    </entrydata>
    - <entrydata columnnumber="13" name="TSHours_6">
    <number>8</number>
    </entrydata>
    - <entrydata columnnumber="14" name="TSHours_7">
    <number>8</number>
    </entrydata>
    </viewentry>

    If the depth of the structure is constant, you can do it in a
    single function call. If you need to go down an unknown number of
    nesting levels, your function will need to be recursive.
    XML.children() gives you an XMLList of the child nodes. You
    can for-loop over this XMLList. Inside the for loop, add thexml you
    want to the new XML object.
    Tracy

  • How to use Load XML Data (Home Utilities Data Load/Unload Load)

    How is Load XML Data (Home>Utilities>Data Load/Unload>Load) supposed to work? Where is this documented?
    What table type/structure is required?
    How does this related to XDB functionality?

    It's not really documented that well in the XE redux documents (or even the base Apex Documents)- see http://download-west.oracle.com/docs/cd/B25329_01/doc/appdev.102/b25309/sql_utl.htm#sthref2530
    However, it's reasonably easy to use - you can export a table to XML format, and then reload the table with the data by importing the XML document. It has nothing to do with XDB, it's just a different flat file representation for unloaded data than CSV

  • How to use native XML driver in CR XI 2 (to avoid "Database Logon Failed")?

    Hello,
    I have a simple scenario:
    The Java Part:
    -Our Java application creates a pair of files: one XML and one XSD.
    -Both files are uploaded to an ASP.NET page along with a report (RPT file - based on the same XSD and some generated XML using the native XML driver) for rendering a PDF.
    The ASP.NET(VB) Part:
    -Reads and stores 3 files (XML, XSD and RPT) to temporary files.
    -Loads the report
    -Updates connection attributes ("Local Schema File" and "Local XML File") to point to those temporary files.
    -Exports the report to a PDF which is returned to the Java part.
    What are the correct steps to accomplish this? I keep on getting "Database logon failed." exceptions.
    My code looks like this:
    Dim doc As ReportDocument = New ReportDocument
    doc.Load(rptPath)
    Dim attr As DbConnectionAttributes
    attr = New DbConnectionAttributes()
    attr.Collection.Set("Local Schema File", xsdPath)
    attr.Collection.Set("Local XML File", xmlPath)
    Dim conn As IConnectionInfo
    conn = doc.DataSourceConnections.Item(0)
    conn.Attributes.Collection.LookupNameValuePair("QE_LogonProperties").Value = attr
    conn.Attributes.Collection.LookupNameValuePair("QE_ServerDescription").Value = xmlPath & " " & xsdPath
    conn.Attributes.Collection.LookupNameValuePair("QE_SQLDB").Value = False
    doc.ExportToHttpResponse(ExportFormatType.PortableDocFormat, Response, False, "")
    Thank you for any help,
    David
    (Crystal Reports XI Rel 2. SP4, .NET assembly 11.5.3700)

    Hi,
    When you get a database logon prompt like this it normally means the dataset you're creating at runtime does not match the schema that the report was designed with.
    The simplest thing to do is write out the dataset to XML with Schema after you fill the dataset. Once you've written out the dataset you can go back to the report in Crystal Reports itself and try to point the report to the XML file directly. If you get any errors this confirms that the dataset does not match what the report is expecting.
    Try it, address any differences, and you should be all set.
    Sincerely,
    Amit

  • How to use TestRunnerBase in pure AS3 / no MXML

    Hi,
    is there a way to use the testRunnerBase GUI for a pure AS3 project, without a mxml?
    Thank you

    Hi, the testRunnerBase is a Flex application, so you can't use it in a pure AS3 environment without including all of the Flex dependencies.

  • How to use HTTP / XML API

    Hi,
    I have to communicate with a product . The product has HTTP / XML API . The API has some functions. The examples in the product docs ,
    If you send a HTTP request to URL of the product with function name and some input parameters , It returns XML response , this response corresponds to some DTD.
    Now from java Application I have to send some HTTP requests and do some things according to obtained responses.Some times I have to parse the XML responses returned to show the user some results.
    How can I do this in Java , I have not worked with this kind of requirements.
    Thanks,
    pandu

    I wanted to do both , from the java Application to server.
    1.Send HTTP (post) request
    2.Parse the returned XML response from the server.

  • How to use .as files from AS3 project into Flex project

    I'm new.
    I created a ActionScript 3 project
    I created 2  .as  files, which put up a Sprite which moved around.  It worked fine.
    Now, I want to put that onto my web-site.
    So I created a Flex Builder 3 project.
    I moved those 2 .as files into it.
    I added code to access and display the moving Sprite.
    But, each attempt gave me an empty screen.
    My main confusion is the following:
    I have class  BaseClass in file 1
    and  SubBaseClass extends BaseClass in file 2.
    Within the Flex project  .mxml  file, how do I reference the  SubBaseClass so that the object will appear?
    I tried things like:
    <mx:Application ... completionComplete="init()" >
    <mx:Script>
    <![CDATA[
    public function init():void
      var myclass:SubBaseClass = new SubBaseClass();
      addChild(myclass);
    etc (ending stuff)
    What do I need to do to make this work
    Thanks
    ---- john

    I have done what you have recommended, the ear file is successfully created.
    However when I deploy to the J2EE server, I get the following error.
    Result
    => deployment aborted : file:/C:/DOCUME~1/xxxxx/LOCALS~1/Temp/temp41836xBtrService.ear
    Aborted: development component 'xBtrService'/'abc.com'/'localhost'/'2005.06.22.17.30.10':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Cannot deploy application abc.com/xBtrService.. Reason: Exception during generation of components of application abc.com/xBtrService in container EJBContainer.; nested exception is:      com.sap.engine.services.deploy.exceptions.ServerDeploymentException: Exception during generation of components of application abc.com/xBtrService in container EJBContainer.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment exception : The deployment of at least one item aborted.
    Thanks,
    Manik

  • Recommended resources for learning how to use Motion?

    Specifically for learning the ropes of how to do kinetic typography, are there any recommended books or video tutorials?

    launch iTunes, goto the Podcast section and search for
    MacBreak Studio
    and
    CreativeCow
    for me excellent sources. It's no 'from zero' content, more focussing on one issue/aspect, but teaching 'drive by' many, many basics and specialities. as a non native English speaker, I do appreciate the perfect audio/speaking ...

Maybe you are looking for