How to get shape layer's content parameters in AEGP?

Hi all,
I have no idea when I want to export the parameters from the Contents of shape layer.
Now I add Polystar Path1, ZigZag 1, and Repeater1, three contents of shaper layer.
Content seems not equal to effect. I used AEGP_GetNewEffectStreamByIndex can get the effect's parameter of Shape layer. But no any information about Content.
Does anyone know how to get the content's parameter?
Thanks.

Thanks for your reply and sorry about my unclear question.
I use the picture to describe my question. There is a shape layer include "Contents" and "Effects".
I can use AEGP_GetLayerEffectByIndex to get the parameter of effects (Blue point).
However I can't find out the correct method to get the parameter of Contents (Yellow part, include Polystar, Zig Zag and Repeater).
The yellow part is also not the Stream, I can't not use stream suite to get information.
BTW, I have the same problem about Text Animator. (Yellow part of follow picture)
lapula

Similar Messages

  • How to create shape layer in Adobe After Effects Cs2 ?

    How to create shape layer in Adobe After Effects Cs2 ?

    THere is no such thing. Shape layers were introduced in CS3.
    MYlenium

  • How to add shape layer in Adobe After Effects Cs2 ???

    How to add shape layer in Adobe After Effects Cs2 ???

    You upgrade. You're too early for shape layers.

  • How to get one of specfic out parameters in groovy

    hi groups,
    jdev 11.1.1.5.0 - adfbc
    here i learned from Jabr how to get the two out - parameter values which used in procedure.
    How to get two out param which is used in Procedure
    ok fine. that part is well enough.
    by normally,
    if the function/ procedure which is defined in AM. which i want to call in groovy ,means i used the following
    adf.object.applicationModule.FuncFindEmployeeDescription(params)above groovy is for
    if the function or procedure which will return one parameters means ok.
    here my scenario i want call the procedure which is defined in AM. the procedure will return two out params values. i need only first value.
    how can i do this.?
    reference: in this thread you can the procedure with two out params
    How to get two out param which is used in Procedure

    this is to subu123.
    oh ho. :(
    this is to santos
    thanks santosh as you said i tried.
      public HashMap ProcFindProdQueryDesc( String p_bu,
         String p_prod_id,
         Number p_prod_rev
                        CallableStatement st = null;
                        try{
                        String sql = "begin proc_find_prod_query_desc" +
                            "(:p_bu," +
                            ":p_prod_id," +
                            ":p_prod_rev," +
                            ":p_desc1," +
                            ":p_desc2," +
                            ":var_lang)" +
                            ";" +
                            "end;";
                        st=getDBTransaction().createCallableStatement(sql,this.getDBTransaction().DEFAULT);
                        st.setObject("p_bu",p_bu);
                        st.setObject("p_prod_id",p_prod_id);
                        st.setObject("p_prod_rev",p_prod_rev);
                        st.registerOutParameter("p_desc1",Types.VARCHAR);
                        st.registerOutParameter("p_desc2",Types.VARCHAR);
                        st.setInt("var_lang",1);
                        st.execute();
                        System.out.println("p_desc1" +(String)st.getObject("p_desc1"));
                        System.out.println("p_desc2" +(String)st.getObject("p_desc2"));
                           HashMap map = new HashMap();
                            map.put("p_desc1", (String)st.getObject("p_desc1"));
                            map.put("p_desc2", (String)st.getObject("p_desc2"));
                            return map;
                        catch(SQLException e)
                        throw new JboException(e);
                        finally
                        if(st!=null)
                        try{
                        st.close();
                        catch(SQLException e){
                            e.printStackTrace();
                            throw new JboException (e);}
    if(PscdProdId != null)
    adf.object.applicationModule.ProcFindProdQueryDesc(PscdBu,PscdProdId,PscdProdRev).p_desc1;
    [1823] DCBindingContainer.reportException :oracle.jbo.JboException
    [1824] oracle.jbo.JboException: JBO-29000: Unexpected exception caught: groovy.lang.MissingMethodException, msg=No signature of method: com.rits.suplr.model.servicesAM.xImpl.ProcFindProdQueryDesc() is applicable for argument types: (java.lang.String, java.lang.String, java.lang.Long) values: [MEL, BU01, 0]
         at oracle.jbo.ExprEval.internalEvaluateGroovyScript(ExprEval.java:1226)
         at oracle.jbo.ExprEval.doEvaluate(ExprEval.java:1261)
         at oracle.jbo.ExprEval.evaluateForRow(ExprEval.java:1083)
         at oracle.jbo.server.AttributeDefImpl.evaluateTransientExpression(AttributeDefImpl.java:2141)
         at oracle.jbo.server.ViewRowStorage.getAttributeInternal(ViewRowStorage.java:1835)
         at oracle.jbo.server.ViewRowImpl.getAttributeValue(ViewRowImpl.java:1897)
         at oracle.jbo.server.ViewRowImpl.getAttributeInternal(ViewRowImpl.java:840)
         at com.rits.suplr.model.views.ProdScoreCardDetlVORowImpl.getItemDesc(ProdScoreCardDetlVORowImpl.java:519)
         at com.rits.suplr.model.views.ProdScoreCardDetlVORowImpl$AttributesEnum$16.get(ProdScoreCardDetlVORowImpl.java:181)
         at com.rits.suplr.model.views.ProdScoreCardDetlVORowImpl.getAttrInvokeAccessor(ProdScoreCardDetlVORowImpl.java:555)
         at oracle.jbo.server.ViewRowImpl.getAttribute(ViewRowImpl.java:870)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.internalGetAttributeValueFromRow(JUCtrlValueBinding.java:1157)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.getAttributeFromRow(JUCtrlValueBinding.java:751)
         at oracle.jbo.uicli.binding.JUCtrlValueBinding.getAttributeFromRow(JUCtrlValueBinding.java:779)
         at oracle.jbo.uicli.binding.JUCtrlAttrsBinding.updateValuesFromRow(JUCtrlAttrsBinding.java:145)
         at oracle.jbo.uicli.jui.JULabelBinding.updateValuesFromRow(JULabelBinding.java:114)
         at oracle.jbo.uicli.binding.JUIteratorBinding.updateValuesFromRows(JUIteratorBinding.java:338)
         at oracle.adf.model.binding.DCIteratorBinding.setupRSIstate(DCIteratorBinding.java:838)
         at oracle.adf.model.binding.DCIteratorBinding.refreshControl(DCIteratorBinding.java:679)
         at oracle.jbo.uicli.binding.JUIteratorBinding.refreshControl(JUIteratorBinding.java:474)
         at oracle.adf.model.binding.DCIteratorBinding.refresh(DCIteratorBinding.java:4437)
         at oracle.adf.model.binding.DCBindingContainer.refreshExecutables(DCBindingContainer.java:3507)
         at oracle.adf.model.binding.DCBindingContainer.internalRefreshControl(DCBindingContainer.java:3340)
         at oracle.adf.model.binding.DCBindingContainer.refreshControl(DCBindingContainer.java:2906)
         at oracle.jbo.jbotester.panel.BindingPanel.setBindingContext(BindingPanel.java:120)
         at oracle.jbo.jbotester.panel.BindingPanel.<init>(BindingPanel.java:88)
         at oracle.jbo.jbotester.panel.BindingPanel.<init>(BindingPanel.java:71)
         at oracle.jbo.jbotester.form.BindingForm.createMasterPanel(BindingForm.java:63)
         at oracle.jbo.jbotester.form.BindingForm.init(BindingForm.java:98)
         at oracle.jbo.jbotester.form.JTForm.<init>(JTForm.java:72)
         at oracle.jbo.jbotester.form.BindingForm.<init>(BindingForm.java:50)
         at oracle.jbo.jbotester.form.FormType$1.createForm(FormType.java:63)
         at oracle.jbo.jbotester.form.FormType.createForm(FormType.java:199)
         at oracle.jbo.jbotester.form.FormType.createTab(FormType.java:270)
         at oracle.jbo.jbotester.form.FormType.showForm(FormType.java:248)
         at oracle.jbo.jbotester.form.FormType.showForm(FormType.java:207)
         at oracle.jbo.jbotester.form.FormType.showForm(FormType.java:203)
         at oracle.jbo.jbotester.tree.ObjTreeNode.showForm(ObjTreeNode.java:140)
         at oracle.jbo.jbotester.tree.ObjTreeNode.showForm(ObjTreeNode.java:123)
         at oracle.jbo.jbotester.tree.Tree.processTreeMouseClicked(Tree.java:728)
         at oracle.jbo.jbotester.tree.Tree.access$100(Tree.java:96)
         at oracle.jbo.jbotester.tree.Tree$TreeMouseListener.mouseClicked(Tree.java:141)
         at java.awt.AWTEventMulticaster.mouseClicked(AWTEventMulticaster.java:253)
         at java.awt.Component.processMouseEvent(Component.java:6292)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
         at java.awt.Component.processEvent(Component.java:6054)
         at java.awt.Container.processEvent(Container.java:2041)
         at java.awt.Component.dispatchEventImpl(Component.java:4652)
         at java.awt.Container.dispatchEventImpl(Container.java:2099)
         at java.awt.Component.dispatchEvent(Component.java:4482)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4247)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
         at java.awt.Container.dispatchEventImpl(Container.java:2085)
         at java.awt.Window.dispatchEventImpl(Window.java:2478)
         at java.awt.Component.dispatchEvent(Component.java:4482)
         at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:644)
         at java.awt.EventQueue.access$000(EventQueue.java:85)
         at java.awt.EventQueue$1.run(EventQueue.java:603)
         at java.awt.EventQueue$1.run(EventQueue.java:601)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:98)
         at java.awt.EventQueue$2.run(EventQueue.java:617)
         at java.awt.EventQueue$2.run(EventQueue.java:615)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:614)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    Caused by: groovy.lang.MissingMethodException: No signature of method: com.rits.suplr.model.servicesAM.SupplierAMImpl.ProcFindProdQueryDesc() is applicable for argument types: (java.lang.String, java.lang.String, java.lang.Long) values: [MEL, BU01, 0]
         at org.codehaus.groovy.runtime.ScriptBytecodeAdapter.unwrap(ScriptBytecodeAdapter.java:54)
         at org.codehaus.groovy.runtime.callsite.PogoInterceptableSite.call(PogoInterceptableSite.java:48)
         at org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:133)
         at bc4j.com_rits_suplr_model_views_ProdScoreCardDetlVO_ItemDesc_null.gs.run(bc4j.com_rits_suplr_model_views_ProdScoreCardDetlVO_ItemDesc_null.gs.groovy:3)
         at oracle.jbo.ExprEval.internalEvaluateGroovyScript(ExprEval.java:1208)
         ... 73 more
    ## Detail 0 ##i didnot know why it's expecting signature of that method defined in AM .
    it's already there. Anything special with groovy while accessing.

  • How to get the cropped page content

    Consider an A4 size pdf is cropped in Bottom and Right edges.
    If the user wants to open the pdf as A4 size then we are passing the rectangle size A4 to PDPage.DrawEx() method to get the page content.
    When we use like this, we are getting the full page content but our requirement is to get the cropped page content.
    Is there any way to get the cropped portion alone by passing the rectangle size as A4 to PDPage.DrawEx() method.
    But it is working fine for Left and Top edge cropping

    Have a look at this document:
    http://partners.adobe.com/public/developer/en/acrobat/sdk/AcroJSGuide.pdf
    go to the index and search for the term "Crop" or "Cropping" which has a hyperlink for page 70.  There you will find some JavaScript options for cropping the page from all sides which can then be saved using some other methods in the document.  I'm not sure, though, if JavaScript is what you're looking for.

  • I have a 120gb Classic that has no space left on it. i am going to buy a larger gb capacity ipod as soon as i get clearer instruction on how to get the old ipod content to the new ipod. How do you get content from one ipod to the other?

    how do you get content from one ipod to the new one? my content is on an external hard drive not on my pc and i have run out of space on my 120gb classic. can you get old ipod content to new? my itunes has only got short cuts, the real content is on an external drive? can this be done?? please help

    If the content is on an external drive, but your library knows where to find it, then it should all work. Connect your device, make some selections for what to put on it, and sync. If, on the other hand, your current iPod is the only place holding some of your media then see this user tip: Recover your iTunes library from your iPod or iOS device.
    tt2

  • How to get current layer type (text, art, group layer, etc.)r discussion here

    Hi,
    I am traversing over all layers using layerIndex.
    I can get current later name in following way.
    char* layerName = new char[100];
    int32 len = 100;
    PIUGetInfoByIndex(layerIndex,classLayer, keyName, layerName , &len) ;
    I tried  using the keys keyType and keyGroup in the same way but I am not able to directly get type of the layer. Why?
    Also, I found similar discussion, which is check the layer is SectionStart, SectionEnd or SectionContent.
    Get Layer Groups from C++ plugin
    If the layer is a "SectionContent", how to I further check its type (artlayer, textlater, adjustmentlayer, ect) ?

    apologize !
    I post the question in relevant forum. But I would like to ask extra explanation here.
    var ref = new ActionReference();                                                                                                               // create action reference
    ref.putProperty(stringIDToTypeID ("property"), stringIDToTypeID("layerKind"));                                            // add "layerKind" property to the reference
    ref.putEnumerated( charIDToTypeID("Lyr "), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );                   // what putEnumerated actually do ?
    var layerDesc = executeActionGet(ref);                                                                                                      // get the corresponding layer descriptor
    alert (layerDesc.getInteger(stringIDToTypeID("layerKind")));                                                                        / get its layerKind
    1. what putEnumerated actually do ?
    2. I am traversing each layer so that I have the layer object in JavaScript.
        How current layer object is refereed to above code segment ?

  • How to get the full file content in the spool

    Hi,
         I am reading one fine from application server. I am getting all that content into one internal table. Again I am trying to write that one into spool. I am creating one spool by using
         CALL FUNCTION 'GET_PRINT_PARAMETERS'
        EXPORTING
         DESTINATION    = P_PADEST
          DESTINATION    = lv_dest
          LIST_NAME      = lv_name
         LIST_TEXT      = P_LNAME
          LIST_TEXT      = 'Label Print'
          IMMEDIATELY    = 'X'
          RELEASE        = ' '
          NEW_LIST_ID    = 'X'
          EXPIRATION     = 9
          LAYOUT         = 'X_65_80'
          SAP_COVER_PAGE = ' '
          RECEIVER       = SY-UNAME
          DEPARTMENT     = 'SYSTEM'
          NO_DIALOG      = 'X'
        IMPORTING
          OUT_PARAMETERS = IS_PARAMS
          VALID          = V_VALID.
           but in the spool i am not getting full content. In the internal table i am getting full content but in the spool some 5 to 6 lines are truncating at the last. How can i get the full content? For this i need to do any settings?
    Pls suggest reg this.

    may be the rest of the data is in another page. how many pages your spool showing. just check in SP01 . from menu Goto -> Display Requests -> Settings ->
    change the page numbers to view the other pages.

  • How to get shape layers? (whitout select adjustements layers)

    Hi,
    Shape layers and Adjustement Layer "Color fill" shares the same LayerKind. How can I difference them?
    ShapeLayerObject.kind == LayerKind.SOLIDFILL // true
    ColorFillLayerObject.kind == LayerKind.SOLIDFILL // true
    Thanks !

    You can check to see if it has a vector mask.
    alert(isShapeLayer());
    function isShapeLayer(){
    var ref = new ActionReference();
    ref.putEnumerated( charIDToTypeID('Lyr '),charIDToTypeID('Ordn'),charIDToTypeID('Trgt') );
    desc =  executeActionGet(ref);
    if(!desc.hasKey(stringIDToTypeID('adjustment')) ) return false;
    if(desc.getBoolean(stringIDToTypeID('hasVectorMask' )) == true)  return true;
    return false;

  • How to get a layer's background color with AE SDK

    Hello,
    I am trying to get the color of the background for my current layer but I can't seem to find how to do it.
    By background color, I don't mean the application's background color, but the color that shows through if I set the alpha of my pixels to 0.
    For example, suppose the composition background is black, I put a green solid on top of it, then put an image on top of the solid and apply my pug-in to the image.
    If I set the alpha to zero in my plug-in, the solid's green will show up.
    So I want to be able to find out that my background is green.
    I already tried using PF_AppGetBgColor() but that returns the application's background color, which is not green in this example.
    If you want more details about what I want to do, I have plug-in P1 which sets some pixels to 0-alpha. On top of it I apply another plug-in P2 which reveals 0-alpha pixels by blending them with some color.
    What happens now is that the output is the original image's color blended with P2's color (because P1 only modified the pixels' alpha).
    What I want is to have the color showing through the transparent pixels of P1 blended with P2's color.
    To do that, I would like to be able to set the color of the 0-alpha pixels to the background's color in P1.
    Sorry for the long question.
    Thanks for your suggestions.

    hello nicolas.
    if i understood you correctly, what you're trying to get it the image buffer of the composited layers, beneath the layer with your effect.
    if that is correct, then i'm afraid it's next to impossible to do.
    when AE renders a composition it doesn't do it bottom to top. it tries to do the opposite actually.
    why? because if at a certain point the buffer is fully opaque, then it doesn't need to render what's beneath.
    further more, checked out layers change the order rendering, and many other things affect the rendering order of the layers.
    besides that, there's no API for accessing intermediate comp buffers. just the final result.
    the closest you can get to that without turning the world over, is to use AEGP_GetCompBGColor(),
    which would prove useless to you as the image doesn't get composited over that color, unless that's the comp being saved to file.
    so why did i say "next to impossible"?
    you can turn the world around.
    you can write an AEGP of type "artisan". (look at the "arti" sample)
    these plug-ins render comps (instead of the "advanced3D" renderer)
    an artisan does have intermediate comp results, as it is the one doing the rendering.
    so now you can have your artisan save the buffer you need, and deliver it to your effect.
    i must warn you that doing this is very very very difficult.
    another possible solution is to create a duplicate of the comp in which your effect resides,
    erase all layers who's image you don't need, and render that duplicated comp using AEGP_GetReceiptWorld().
    if you use this method, you have to supervise the original comp, and apply changes to the duplicate.
    yes, that too is difficult to do.
    you could make a change in strategy, and apply your effect on an adjustment layer instead.
    the input for the adjustment layer is the composited buffer of underlying layers.
    then you could get the original sources you wish to process using checked out layer params.
    the last solution i can think of is using the sampleImage() expression on a hidden param.
    this will give you pixel data from any layer in the comp, but not the composite of the underlying layers.
    maybe if you tried sampling an adjustment layers post effects... i don't know. you'll have to try.
    this method is very slow, and is also limited to time out, so you can't get a large number of pixels.
    the expression will simply fail.
    i hope it hasn't been all bad news for you.
    maybe of you told more about the plug-in you're developing i could come up with a better plan.

  • How to get current layer type (text, art, group layer, etc.)

    Hi,
    I am traversing over all layers using layerIndex.
    I can get current later name in following way.
    char* layerName = new char[100];
    int32 len = 100;
    PIUGetInfoByIndex(layerIndex,classLayer, keyName, layerName , &len) ;
    I need to get layer type using the someway. There exists a key called keyType.
    But I am not able access layer type that way. Why?
    If there is a better way, I wold like to know that too.

    Photoshop Scripting

  • How to get shape's bounding box

    Hi!
    Like the topic says, I'm wondering if there is a way to get a shape's bounding box? Either through a query or some method in JGeometry. I suppose I could just get the coordinates and loop over them to get the min/max values, but is there some more efficient way?
    Thanks!

    Yup. That worked.
    I looked at the JGeometry documentation, but I would never have guessed that MBR stood for Minimum Bounding Rectangle if you hadn't pointed me in the right direction.
    Thanks again!

  • How to get active layer comp

    Is there a way of getting the active layer comp?
    I have a script that applies a series of layer comps saving different versions of the file in between, however it seems that on a very fast machine it the script tries to move onto saving before the layer comp is fully applied, so I would like to check which layer comp is applied and only let the script continue when the value changes from the last layer comp.

    Here is an example that get the current tool.
    function getCurrentTool()}
       var ref = new ActionReference();
       ref.putEnumerated( charIDToTypeID("capp"), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );
       return = typeIDToStringID(executeActionGet(ref).getEnumerationType(stringIDToTypeID('tool')));
    But for executeActionGet to work you need to create an Action Reference to the class or property you want to get the Action Descriptor for. Here is the scriptlistener log for apply layerComp.
    var idapplyComp = stringIDToTypeID( "applyComp" );
        var desc37 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
            var ref36 = new ActionReference();
            var idcompsClass = stringIDToTypeID( "compsClass" );
            ref36.putName( idcompsClass, "Layer Comp 1" );
        desc37.putReference( idnull, ref36 );
    executeAction( idapplyComp, desc37, DialogModes.NO );
    It has been my experence that when null is used in the reference you can not access that class with Action Manager.

  • How to get to know change content for each change request

    Hi, would I get to know the change content in each change request via SE09 or others before I release the change request?
    For example, the following info was in SE09 tree view for a change via OB52. Would I get to
    know what does "20000001 ZZZZZZZZZZ,20000002 ZZZZZZZZZZ" stand for?
    EE6K900014 200   ADMIN        tttts
        EE6K900015   ADMIN        Customizing Task
            View Maintenance: Data
                V_T001B
                    T001B
                        20000001 ZZZZZZZZZZ
                        20000002 ZZZZZZZZZZ
    Thanks.
    Edited by: yingying weng on May 27, 2009 5:10 AM

    yingying weng 
    To understand what is the transports, you need to understand the structures of the included tables, views, etc.  Or at least be able to look the table information up in SAP.
    For your example, table T001B (Permitted Posting Periods).
    You can go to SE11 to see the fields in the table.
    You can use SE16 to view the contents.
    In this example you would be transporting the following:
    T001B
    20000001 ZZZZZZZZZZ
    or
    200 0 0001 ZZZZZZZZZZ
    Client                           = 200
    Record Type                 = 0
    Posting Period Variant = 0001
    To account                    = ZZZZZZZZZZ
    Hope this helps.
    PJ

  • How to get the list of query parameters

    Say I have an URL like the following:
    http://localhost/test.jsp?EmpID=1&DeptID=2
    and I want to get the list "EmpID=1&DeptID=2" into a String object. How could I do that?
    Thanks.
    Mandy

    Okay. I found out I missed some steps I should do before I could use the jml tags. After I added the ojsputil.jar to my classpath And put the following line to my jsp page:
    <%@ taglib uri="../WEB-INF/jml.tld" prefix="jml" %>
    I still got the following error. Why?
    Exception:
    javax.servlet.jsp.JspException: Invalid 'in' attribute in foreach enumeration
    at oracle.jsp.jml.tagext.JmlForeach.doStartTag(JmlForeach.java)
    at zydeco.login._jspService(_login.java, Compiled Code)
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
    at oracle.jsp.JspServlet.internalService(JspServlet.java, Compiled Code)
    at oracle.jsp.JspServlet.service(JspServlet.java)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java)
    at org.apache.jserv.JServConnection.run(JServConnection.java)
    at java.lang.Thread.run(Thread.java:479)
    Thanks.
    Mandy
    null

Maybe you are looking for

  • Works in 2009, Link errors in 2013 SP1

       I have a system that runs rack mount test instruments.  I have a system DLL that performs different generic  functions for me and also included custom driver functions for the instrumentation.  This DLL is built and the different driver .h/.fp fil

  • Federation merge still not available?

    Is it still not possible to perform a merge operation which merges the content of two SQL Azure federations? Considering that SQL Azure does not support cross-database SELECT/INSERT's, it almost sounds like I would need to retrieve all data from one

  • IDeskjet 1055 & I'm unable to open the icon for it on my desktop.My computer is a Compaq

    My product is a Deskjet 1055 J410e.  My OS is Windows 7.  I did purchase a new computer approximately a year ago & I don't recall having any problems such as the one I'm experiencing now with my previous computer.  That computer had an OS of Windows

  • Native sequence issue

    Hi, I have a News domain object which is mapped to a News table. I have inserted some sample data into the table. The newsid column reaches 81 and hence i created a sequence for this column like CREATE SEQUENCE NEWS_SEQ START WITH 100 INCREMENT BY 50

  • Blurry SVG files

    Hello all Am attempting to bring in a chart which was created in Illustrator into Edge to animate the data series. The chart was saved as a SVG file at the same size as the stage in Edge. However, when I drag the SVG onto the stage, it's extemely blu