Extension of a geometry

the SDO_TUNE.EXTENT_OF function returns the extension(bounding rectangle) of the geometry in a table. My problem is to find the extension of the geometry after a particular query filter.
Fer example:
SELECT ID, GEOM FROM STATES WHERE STATE='ALABAMA';
How can I find the extension of the returned geometry ?
I've tried to create a view filtering only the state 'ALABAMA' then I called SDO_TUNE.EXTENT_OF passing my view as parameter, but this doesn't work:
query:
SELECT SDO_TUNE.EXTENT_OF('MYVIEW','GEOM') FROM DUAL
error:
ERROR at line 1:
ORA-03113: end-of-file on communication channel
Thanks.

Hi Alberto,
In 9i, Oracle will supply a routine to return the MBR of a geometry (non-geodetic).
To make the procedure you are trying to execute work, add an entry into user_sdo_geom_metadata for myview. You've found a bug which will be corrected in a later release.
Thanks,
dan

Similar Messages

  • How to Package Photoshop Extension for cs4/cs5 with manifest.xml

    Hello,
    tl;dr: How can I package my extension for both cs4 and cs5 in a way that respects the extension's window geometry?
    I have a panel that specifies window geometry in it's manifest.xml. When the panel is installed into Photoshop's panels/ folder, the geometry gets ignored, so I'm trying to package the panel as an extension to be installed via the Extension Manager. I have run into different problems for each CS version. I've read quite a few pdfs about the Extension Manager, UCF command line packaging, etc, and have not been able to find a solution that works for both platforms.
    My understaning
    My trial and error research has lead me to understand that the extension's files must eventually end up in the (mac) /Library/Application Support/Adobe/<CSversion>ServiceManager/extensions/ directory. In CS5, if the extension's folder contains a manifest.xml file (ex: /extensions/GuideGuide/CSXS/manifest.xml) that specifies window geometry, Photoshop will respect that window geometry when the panel opens. However, in CS4, this is not enough. From my tests, Photoshop CS4 doesn't seem to do anything with the manifest.xml file. Instead, I had to modify /Library/Application Support/Adobe/CS4ServiceManager/ServiceManifest.xml and add my extension to it's contents. Once I did this, Photoshop CS4 launches my panel and respects it's window geometry.
    The problem with this is that it's a manual installation. I can't ask my users to dig around in their system files to install my panel. In addition, since it's unsigned using this method, it won't work if they're not flagged for debugging. I've started exploring using the Extension Manager, but I have run into problems that I cannot find ansers in the few pdfs about packaging that I've been able to find.
    CS5 Problems
    If I use the UCF command line tool, I can package and sign my file. It installs fine and does what I want. However, using this method, I haven't been able to find a way to specify the author and description that shows up in the Extension Manager.
    CS4 Problems
    The UCF command line tool doesn't appear to make packages that can be installed by CS4, and I haven't been able to find one that is compatable. I've had to result to using the Extension Manager to package my extension based on a .mxi file. The problem I have here is that installing files this way limits me to putting them in the /panels directory, which then causes the panel to ignore the indow geometry. Is there a way with an .mxi file to install in the /Library/Application Support/Adobe/<CSversion>ServiceManager/extensions/ directory and modify the /Library/Application Support/Adobe/CS4ServiceManager/ServiceManifest.xml file?
    There must be, because Kuler and other extensions are installed there.
    Thank you SO much for any help you might provide. I've spent weeks trying to get this to work and have run into nothing but dead ends and wild goose chases.

    Your extension is a CSXS extension. For CSXS extension it's introduced in Extension Manager 2.1. (You can download Extension manager 2.1 from http://www.adobe.com/exchange/em_download/em20_download.html)
    In Extension Manager CS2.1 only MXP package is supported. In Extension Manager CS5 CSXS extension must be packaged by ZXP format. So you have to generate two packages for CS4(mxp) and CS5(zxp)
    For CS5, you can use ucf.jar to generate the zxp package.
    For CS4, you have to create an MXI file and package it by Extension Manager 2.1 to mxp package. Here is a sample CSXS mxi file:
    <macromedia-extension
               name="CSXS_TEST_EXTENSION"
               version="1.0.0"
               type="Command"
               requires-restart="true">
              <author name="Macromedia" />
              <products>
                        <product name="Dreamweaver" version="10" primary="true" />
                        <product name="Fireworks" version="10" primary="true" />
                        <product name="Flash" version="10" primary="true" />
                        <product name="" version="11" familyname="Photoshop" primary="true" />
                        <product name="Illustrator" version="14" primary="true" />
                        <product name="CSXS" version="1" />
              </products>
              <description>
              <![CDATA[
              CSXS extension sample.
              ]]>
              </description>
              <ui-access>
              <![CDATA[
              Extension Name: kuler
              ]]>
              </ui-access>
              <license-agreement>
              <![CDATA[
              ]]>
              </license-agreement>
              <files>
                        <file source="test_extension" destination="" />
              </files>
    </macromedia-extension>

  • Extension is not showing up

    I'm trying to get my extension to show up in Photoshop CS 5.1 on Mac and I haven't been able to do it. I've followed the instructions in Using the Adobe Creative Suite 6 SDK.
    I've set the PlayerDebugMode to 1 in preferences:
    Macintosh HD/Users/me/Library/Preferences/com.adobe.CSXS.2.5.plist
    I copied the extension to:
    /Library/Application Support/Adobe/CS5.5ServiceManager/extensions/
    Can anyone see the the problem? I've included the manifest.xml I'm using: 
    <?xml version="1.0" encoding="UTF-8"?>
    <ExtensionManifest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
                        Version="3.0"
                        ExtensionBundleId="com.mycompany.extensions"
                        ExtensionBundleVersion="1.0.0"
                        ExtensionBundleName="ExtensionTest">
        <ExtensionList>
            <Extension Id="com.mycompany.extensions.extensionTest" Version="1.0" />
        </ExtensionList>
        <ExecutionEnvironment>
            <HostList>
                <Host Name="AICY" Version="8" />
                <Host Name="DRWV" Version="12" />
                <Host Name="FLPR" Version="12" />
                <Host Name="FWKS" Version="12" />
                <Host Name="IDSN" Version="8" />
                <Host Name="ILST" Version="16" />
                <Host Name="PHSP" Version="12" />
                <Host Name="PHXS" Version="12" />
                <Host Name="PPRO" Version="6" />
            </HostList>
            <LocaleList>
                <Locale Code="All" />
            </LocaleList>
            <RequiredRuntimeList>
                <RequiredRuntime Name="CSXS" Version="2.0" />
            </RequiredRuntimeList>
        </ExecutionEnvironment>
        <DispatchInfoList>
            <Extension Id="com.mycompany.extensions.extensionTest">
                <DispatchInfo >
                    <Resources>
                        <SwfPath>./main.swf</SwfPath>
                        <ScriptPath>./jsx/HelloCreativeSuite.jsx</ScriptPath>
                    </Resources>
                    <Lifecycle>
                        <AutoVisible>true</AutoVisible>
                    </Lifecycle>
                    <UI>
                        <Type>Panel</Type>
                        <Menu>Extension Test</Menu>
                        <Geometry>
                            <Size>
                                <Height>200</Height>
                                <Width>200</Width>
                            </Size>
                        </Geometry>
                    </UI>
                </DispatchInfo>
            </Extension>
        </DispatchInfoList>
    </ExtensionManifest>

    Hi,
    you might be better asking here: Creative Suite Extension Builder
    This is the forum for Extension Builder 3, which is for HTML Panels, while you're dealing with CS5 - supporting Flash panels.
    Regards,
    Davide Barranca
    www.davidebarranca.com
    www.cs-extensions.com

  • Instead of trigger on geometry

    Hello
    I am trying to setup an environment to access oracle spatial data in AutoDesk Map 3D 2007 using OSE (Oracle Spatial Extension). For this i created a base schema containing a spatial table and I created another schema containing autodesk metadata tables and created a view of the spatial data in the base schema. The view is granted ALL permissions on the spatial table by base schema
    The reason for creating view is to accomodate virtual columns like ADMPLAYER, ADMPOBJECTTYPE etc. Now i created an instead of trigger so that when user updates any attribute, creates or deletes any data in the view, it automatically modifies the original tables.
    The insert and delete works fine.Even update for attributes works fine, but fails when i update a geometry.
    How can i put a condition in the trigger to check if geometry is updated? so i update it accordingly? I tried SDO_EQUAL function by passing old and new geometry values but it fails stating that i can use this operator only if spatial index exist. In my setup the view and original table are in different schemas.
    How can i check if geometry is updated in the trigger?
    Regards
    sam

    Hello Luc
    Thanks for your suggestion . I checked this for SDO_Geometry and it worked... Please find below the trigger
    CREATE OR REPLACE TRIGGER TEMP_BEF_IUD INSTEAD OF INSERT OR UPDATE OR DELETE ON V_TEMP
    FOR EACH ROW
    BEGIN
    --When inserting a new record in the view..this part of the trigger will get fired
    IF INSERTING THEN
         INSERT INTO test.TEMP(TEMPID, NAMEID,     UNITSURFACE, ) VALUES (:NEW.TEMPID, :NEW.NAMEID, :NEW.UNITSURFACE);
    END IF;
    --When deleting an existing record...this part of the trigger will be fired
    IF DELETING THEN
    DELETE FROM test.TEMP WHERE TEMPID=:OLD.TEMPID;
    END IF;
    --When updating existing data, this part of the trigger will be fired. When updating it checks for each field to
    --determine which field is actually updated and then it fires update statement..accordingly.
    IF UPDATING THEN
    --Checking each field for update
         IF :OLD.TEMPid <> :NEW.TEMPid THEN
         RAISE_APPLICATION_ERROR(-20005,'TEMPID cannot be updated.This IS SYSTEM generated ID....
         EXCEPTION CODE: '||SQLCODE||' EXCEPTION MSG: '||SQLERRM);
         END IF;
         IF :OLD.NAMEID <> :NEW.NAMEID THEN
         UPDATE test.TEMP SET NAMEID = :NEW.NAMEID WHERE TEMPid=:OLD.TEMPid;
         END IF;
         IF UPDATING('UNITSURFACE') THEN
         UPDATE test.emirate SET UNITSURFACE = :NEW.UNITSURFACE WHERE TEMPid=:OLD.TEMPid;
         END IF;
    END IF;
    END TEMP_BEF_IUD;
    /

  • Extension not appearing in Photoshop CS5

    Hi,
    I'm not being able to get my simple extension to show up on the window\extensions menu in photoshop CS5.
    I'm using Flash Builder 4 CS5, with the CS SDK 1.5, without Extension Builder.
    I've tried everything.
    The extension runs ok inside Flash Builder when I try to debug with AIR debugger without photoshop.
    In the main xml file, I only included a simple function, and have managed to get all the importing right (auto-complete works on the document objects)
    I have gone through everything that needed to be done to compile the extension, and it is being loaded ok in the extension manager.
    I am using a certificate I created with ADT, according to the documentation:
    java -jar ucf.jar -package -storetype PKCS12 -keystore newcert.p12 -storepass 39#wnetx3tl com.example.helloworld.zxp -C "tt" .
    (having all files from the output folder copied to a local folder named "tt")
    I did all the builer-plate manifest file definition, by the book.
    I used the Flex 3.4 SDK libraries, as described in the tutorial.
    All can be seen in the attachement.
    Here is my main xml file:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
    historyManagementEnabled="false">
    <mx:Script>
    <![CDATA[
    import com.adobe.csawlib.photoshop.Photoshop;
    import com.adobe.photoshop.*;
    public function run():void
    var app:com.adobe.photoshop.Application = Photoshop.app;
    var doc:Document = app.documents.add();
    doc.selection.selectAll();
    var color:RGBColor = new RGBColor();
    color.red = 0;
    color.green = 0;
    color.blue = 255;
    doc.selection.fill(color);
    ]]>
    </mx:Script>
    <mx:VBox height="100%" width="100%" verticalAlign="middle" horizontalAlign="center">
    <mx:Button label="Say Hello" click="run()"/>
    </mx:VBox>
    </mx:WindowedApplication>
    Here is the manifest file:
    <?xml version="1.0" encoding="UTF-8"?>
    <ExtensionManifest Version="2.0" ExtensionBundleId="com.example.helloworld" ExtensionBundleVersion="1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <ExtensionList>
    <Extension Id="com.example.helloworld.extension1" Version="1.0" />
    </ExtensionList>
    <ExecutionEnvironment>
    <HostList>
    <Host Name="PHSP" Version="12" />
    </HostList>
    <LocaleList>
    <Locale Code="All" />
    </LocaleList>
    <RequiredRuntimeList>
    <RequiredRuntime Name="CSXS" Version="2.0" />
    </RequiredRuntimeList>
    </ExecutionEnvironment>
    <DispatchInfoList>
    <Extension Id="com.example.helloworld.extension1">
    <DispatchInfo >
    <Resources>
    <SwfPath>HelloWorld.swf</SwfPath>
    </Resources>
    <Lifecycle>
    <AutoVisible>true</AutoVisible>
    </Lifecycle>
    <UI>
    <Type>Panel</Type>
    <Menu>Hello World</Menu>
    <Geometry>
    <Size>
    <Height>200</Height>
    <Width>200</Width>
    </Size>
    </Geometry>
    </UI>
    </DispatchInfo>
    </Extension>
    </DispatchInfoList>
    </ExtensionManifest>
    Debug mode didn't work for me for some reason:
    I added the registry debug flag (windows 7 64bit) in both the user-key:
    HKEY_CURRENT_USER\Software\Adobe\CSXSPreferences\PlayerDebugMode     REG_SZ     1
    And the local-machine key:
    HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Adobe\CSXSPreferences\PlayerDebugMode     REG_SZ     1
    I tried puting the output files both in the common files folder:
    C:\Program Files (x86)\Common Files\Adobe\CS5ServiceManager\extensions\
    And the user folder:
    C:\Users\arnon\AppData\Roaming\Adobe\CS5ServiceManager\extensions\
    Tried debugging both using the AIR debugger and the Web one...
    Nothing...
    I tried updating the AIR2.0 SDK, as described by overriding the files, both in the Flash CS subfolder, and the CS SDK subfolder, as described.
    I tried updating both flash CS and Flash Builder 4 CS5 to their latest patch.
    I'm all out of ideas...
    Please HELP!

    10x,
    You saved my ***!
    It actually has to include both the PHSP "AND" the PHXS host names for it to work - this is stupid!
    If I only use PHXS the extension manager is not able to install the extension, saying it cannot find a host that matches the manifest (even though my photoshop IS the extended variation, so in a sense it's more acurate manifest-wise), and if I only use the PHSP, it IS loaded but doesn't appear in the application!
    AND THERE IS NO DOCUMENTATION ON THIS PHENOMENON ANYWHERE!
    THIS IS BEYOND IRRESPONSIBLE!
    Thank you very much david, but please, as you are an adobe employee, get this message to the right people, if you can.
    I know the corporate agenda would probabely be the incentivise people to register to the 1500$ program to get the extension-builder, by keeping the alternative inconvenient, but this issue is beyond inconvenient, it's border-line cruelty!

  • Retreving X, Y, Z from the Geometry column in oracle 10g

    Dear all ,
    I am stick since 2 days at the same point, I am using 10g, PHP my problem now is how to fecth the X, Y , z coordinates from the geometry column to view it on my web page, i don't understand the (SDO_ORDINATES), what is its type & how i can deal with it. my simple code is:
    $conn=oci_connect('User','pass','//localhost/x')
    $sqlCol="SELECT c.GEOMETRY.SDO_ORDINATES from SSS c WHERE c.CODE = '80A' ";
    $resultCol=oci_parse($conn,$sqlCol);
    $excuteResCol=oci_execute($resultCol);
    $resultRecordsCol=oci_fetch_array($resultCol);
    I got an error on the last line as (ORA-00932: inconsistent datatypes: expected CHAR got ARRAY )
    i don't know how to deal with this resultset.
    If anyone could help please replay.
    Thanks for your help

    Hello, I have the same problem,
    I use php for read data from oracle table,
    all works right but when I must read geometry data like
    (type MDSYS.SDO_GEOMETRY)
    I can't display it on web page.
    esemple of spatial query that I use:
    select INTERSECTIONGEOMETRY0
    from tabella_a
    where
    ID = 970;
    If I use sql plus I have this result
    SDO_GEOMETRY(3001, NULL, NULL, SDO_ELEM_INFO_ARRAY(1, 0, 6000, 4, 1, 1), SDO_ORDINATE_ARRAY(1, -0, -
    0, 580094, 4998494, -1))
    I use PHP Version 4.4.0
    modules load are:
    extension=php_sdo.dll
    extension=php_oci8.dll
    But I don't know which other module I need and also which php function to use for read array of array. at the moment I use @OCIFetchInto.
    Someone can help me?
    My English is very bad
    Thanks for all!
    Angelo

  • Error when trying to deploy ADF application in Java Cloud Service - SaaS Extension

    Hello guys,
    I'm trying to deploy a simple ADF application in "Oracle Java Cloud Service - SaaS Extension" and i'm still having the error below
    The job turns to Failed at "Deploy Application" step:
    Did someone already got this error ?
    Thanks at advance
    Sid
    2014-12-10 11:06:20 PST: Starting action "Deploy Application"
    2014-12-10 11:06:20 PST: Deploy Application started
    2014-12-10 11:06:28 PST: weblogic.application.ModuleException: weblogic.application.ModuleException:
      at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1531)
      at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:488)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
      at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
      at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
      at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
      at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:671)
      at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
      at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:212)
      at weblogic.application.internal.SingleModuleDeployment.activate(SingleModuleDeployment.java:44)
      at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
      at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:80)
      at weblogic.deploy.internal.targetserver.operations.AbstractOperation.activate(AbstractOperation.java:573)
      at weblogic.deploy.internal.targetserver.operations.ActivateOperation.activateDeployment(ActivateOperation.java:150)
      at weblogic.deploy.internal.targetserver.operations.ActivateOperation.doCommit(ActivateOperation.java:116)
      at weblogic.deploy.internal.targetserver.operations.AbstractOperation.commit(AbstractOperation.java:327)
      at weblogic.deploy.internal.targetserver.DeploymentManager.handleDeploymentCommit(DeploymentManager.java:844)
      at weblogic.deploy.internal.targetserver.DeploymentManager.activateDeploymentList(DeploymentManager.java:1253)
      at weblogic.deploy.internal.targetserver.DeploymentManager.handleCommit(DeploymentManager.java:440)
      at weblogic.deploy.internal.targetserver.DeploymentServiceDispatcher.commit(DeploymentServiceDispatcher.java:163)
      at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.doCommitCallback(DeploymentReceiverCallbackDeliverer.java:195)
      at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer.access$100(DeploymentReceiverCallbackDeliverer.java:13)
      at weblogic.deploy.service.internal.targetserver.DeploymentReceiverCallbackDeliverer$2.run(DeploymentReceiverCallbackDeliverer.java:68)
      at weblogic.work.SelfTuningWorkManagerImpl$WorkAdapterImpl.run(SelfTuningWorkManagerImpl.java:545)
      at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
      at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    Caused by: java.security.AccessControlException: access denied ("java.net.NetPermission" "specifyStreamHandler")
      at java.security.AccessControlContext.checkPermission(AccessControlContext.java:372)
      at java.security.AccessController.checkPermission(AccessController.java:559)
      at java.lang.SecurityManager.checkPermission(SecurityManager.java:549)
      at java.net.URL.checkSpecifyHandler(URL.java:649)
      at java.net.URL.<init>(URL.java:373)
      at weblogic.application.io.MergedDescriptorFinder.getSource(MergedDescriptorFinder.java:46)
      at weblogic.application.io.DescriptorFinder.getSource(DescriptorFinder.java:44)
      at weblogic.utils.classloaders.MultiClassFinder.getSource(MultiClassFinder.java:67)
      at weblogic.application.utils.CompositeWebAppFinder.getSource(CompositeWebAppFinder.java:71)
      at weblogic.servlet.internal.War$ResourceFinder.getSource(War.java:1213)
      at weblogic.servlet.internal.War$ResourceFinder.getSource(War.java:1203)
      at weblogic.servlet.internal.War.getResourceAsSource(War.java:512)
      at weblogic.servlet.internal.WebAppServletContext.getResourceAsSource(WebAppServletContext.java:3436)
      at weblogic.servlet.internal.WebAppServletContext.getResourceAsSource(WebAppServletContext.java:3427)
      at weblogic.servlet.internal.WebAppServletContext.getResourceAsStream(WebAppServletContext.java:872)
      at com.sun.faces.config.ConfigureListener$WebXmlProcessor.scanForFacesServlet(ConfigureListener.java:805)
      at com.sun.faces.config.ConfigureListener$WebXmlProcessor.<init>(ConfigureListener.java:768)
      at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:178)
      at weblogic.servlet.internal.EventsManager$FireContextListenerAction.run(EventsManager.java:481)
      at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
      at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
      at weblogic.servlet.internal.EventsManager.notifyContextCreatedEvent(EventsManager.java:181)
      at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1871)
      at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3173)
      at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1529)
    2014-12-10 11:06:28 PST: WL action state: failed
    2014-12-10 11:06:28 PST: Action FAILED with WL action state: failed
    2014-12-10 11:06:28 PST: Check the server log of your Java cloud service for more info about the failure.
    2014-12-10 11:06:28 PST: Application deployment failed.
    2014-12-10 11:06:28 PST: "Deploy Application" complete: status FAILED

    The Application does nothing, it's just a simple page (the button does nothing too)  the aim is to deploy a jsf page with ADF forms.
    The deployment log is on the first message.
    I'm using Jdeveloper and i note the Jdev inserts some servlets into the web.xml file ! is it possible that the probleme is related to this ? (below the web.xml file)
    Sid
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
             version="2.5">
      <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
      </servlet>
      <servlet>
        <servlet-name>resources</servlet-name>
        <servlet-class>org.apache.myfaces.trinidad.webapp.ResourceServlet</servlet-class>
      </servlet>
      <servlet>
        <servlet-name>BIGRAPHSERVLET</servlet-name>
        <servlet-class>oracle.adf.view.faces.bi.webapp.GraphServlet</servlet-class>
      </servlet>
      <servlet>
        <servlet-name>BIGAUGESERVLET</servlet-name>
        <servlet-class>oracle.adf.view.faces.bi.webapp.GaugeServlet</servlet-class>
      </servlet>
      <servlet>
        <servlet-name>MapProxyServlet</servlet-name>
        <servlet-class>oracle.adf.view.faces.bi.webapp.MapProxyServlet</servlet-class>
      </servlet>
      <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>/faces/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>resources</servlet-name>
        <url-pattern>/adf/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>resources</servlet-name>
        <url-pattern>/afr/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>BIGRAPHSERVLET</servlet-name>
        <url-pattern>/servlet/GraphServlet/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>BIGAUGESERVLET</servlet-name>
        <url-pattern>/servlet/GaugeServlet/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>MapProxyServlet</servlet-name>
        <url-pattern>/servlet/mapproxy/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>resources</servlet-name>
        <url-pattern>/bi/*</url-pattern>
      </servlet-mapping>
      <filter>
        <filter-name>trinidad</filter-name>
        <filter-class>org.apache.myfaces.trinidad.webapp.TrinidadFilter</filter-class>
      </filter>
      <filter>
        <filter-name>ServletADFFilter</filter-name>
        <filter-class>oracle.adf.share.http.ServletADFFilter</filter-class>
      </filter>
      <filter-mapping>
        <filter-name>trinidad</filter-name>
        <servlet-name>Faces Servlet</servlet-name>
        <dispatcher>FORWARD</dispatcher>
        <dispatcher>REQUEST</dispatcher>
        <dispatcher>ERROR</dispatcher>
      </filter-mapping>
      <filter-mapping>
        <filter-name>ServletADFFilter</filter-name>
        <servlet-name>Faces Servlet</servlet-name>
        <dispatcher>FORWARD</dispatcher>
        <dispatcher>REQUEST</dispatcher>
      </filter-mapping>
      <context-param>
        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
        <param-value>client</param-value>
      </context-param>
      <context-param>
        <param-name>javax.faces.PARTIAL_STATE_SAVING</param-name>
        <param-value>false</param-value>
      </context-param>
      <context-param>
        <description>If this parameter is true, there will be an automatic check of the modification date of your JSPs, and saved state will be discarded when JSP's change. It will also automatically check if your skinning css files have changed without you having to restart the server. This makes development easier, but adds overhead. For this reason this parameter should be set to false when your application is deployed.</description>
        <param-name>org.apache.myfaces.trinidad.CHECK_FILE_MODIFICATION</param-name>
        <param-value>false</param-value>
      </context-param>
      <context-param>
        <description>Whether the 'Generated by...' comment at the bottom of ADF Faces HTML pages should contain version number information.</description>
        <param-name>oracle.adf.view.rich.versionString.HIDDEN</param-name>
        <param-value>true</param-value>
      </context-param>
      <context-param>
        <description>Security precaution to prevent clickjacking: bust frames if the ancestor window domain(protocol, host, and port) and the frame domain are different. Another options for this parameter are always and never.</description>
        <param-name>org.apache.myfaces.trinidad.security.FRAME_BUSTING</param-name>
        <param-value>differentOrigin</param-value>
      </context-param>
      <context-param>
        <param-name>javax.faces.VALIDATE_EMPTY_FIELDS</param-name>
        <param-value>true</param-value>
      </context-param>
      <context-param>
        <param-name>oracle.adf.view.rich.geometry.DEFAULT_DIMENSIONS</param-name>
        <param-value>auto</param-value>
      </context-param>
      <context-param>
        <param-name>oracle.adf.view.rich.SYNCROWS</param-name>
        <param-value>enable</param-value>
      </context-param>
      <context-param>
        <param-name>javax.faces.FACELETS_SKIP_COMMENTS</param-name>
        <param-value>true</param-value>
      </context-param>
      <context-param>
        <param-name>javax.faces.FACELETS_DECORATORS</param-name>
        <param-value>oracle.adfinternal.view.faces.facelets.rich.AdfTagDecorator</param-value>
      </context-param>
      <context-param>
        <param-name>javax.faces.FACELETS_RESOURCE_RESOLVER</param-name>
        <param-value>oracle.adfinternal.view.faces.facelets.rich.AdfFaceletsResourceResolver</param-value>
      </context-param>
      <context-param>
        <param-name>javax.faces.FACELETS_VIEW_MAPPINGS</param-name>
        <param-value>*.jsf;*.xhtml</param-value>
      </context-param>
      <mime-mapping>
        <extension>swf</extension>
        <mime-type>application/x-shockwave-flash</mime-type>
      </mime-mapping>
      <mime-mapping>
        <extension>amf</extension>
        <mime-type>application/x-amf</mime-type>
      </mime-mapping>
      <listener>
        <listener-class>oracle.adf.mbean.share.config.ADFConfigLifeCycleCallBack</listener-class>
      </listener>
      <login-config />
    </web-app>

  • Photoshop extension building not working for cs6, works for the rest

    I am building an extension for photoshop the manifest file is as below:
    <?xml version="1.0" encoding="UTF-8"?>
    <ExtensionManifest Version="4.0" ExtensionBundleId="Kit" ExtensionBundleVersion="2.0.0"
      ExtensionBundleName="Kit" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
      <ExtensionList>
      <Extension Id="Kit.extension1" Version="2.0.0" />
      </ExtensionList>
      <ExecutionEnvironment>
      <HostList>
      <Host Name="PHSP" Version="[13.0,15.9]" />
      <Host Name="PHXS" Version="[13.0,15.9]" />
      </HostList>
      <LocaleList>
      <Locale Code="All" />
      </LocaleList>
      <RequiredRuntimeList>
      <RequiredRuntime Name="CSXS" Version="3.0" />
      </RequiredRuntimeList>
      </ExecutionEnvironment>
      <DispatchInfoList>
      <Extension Id="Kit.extension1">
      <DispatchInfo >
      <Resources>
      <MainPath>./index.html</MainPath>
      <ScriptPath>./Kit.jsx</ScriptPath>
      </Resources>
      <Lifecycle>
      <AutoVisible>true</AutoVisible>
      </Lifecycle>
      <UI>
      <Type>Panel</Type>
      <Menu>Beauty Retouching Kit</Menu>
      <Geometry>
      <Size>
      <Height>580</Height>
      <Width>250</Width>
      </Size>
      <MaxSize>
      <Height>580</Height>
      <Width>250</Width>
      </MaxSize>
      <MinSize>
      <Height>580</Height>
      <Width>250</Width>
      </MinSize>
      </Geometry>
      <Icons>
      <Icon Type="Normal">./pictures/thumb/Icon.png</Icon>
      <Icon Type="RollOver">./pictures/thumb/Icon.png</Icon>
      <Icon Type="DarkNormal">./pictures/thumb/Icon.png</Icon>
      <Icon Type="DarkRollOver">./pictures/thumb/Icon.png</Icon>
      </Icons>
      </UI>
      </DispatchInfo>
      </Extension>
      </DispatchInfoList>
    </ExtensionManifest>
    I tried this code for photoshop CC and CC 2014, it works for both but I couldn't get it to run for cs6 it gives the below error from the extension manager:
    so isn't Version="[13.0,15.9]" correct? why would it not work for cs6? thanks in advance.

    Hi,
    CS6 doesn't support HTML Panels but Flash ones, this should be the why the Adobe Extension Manager fails.
    You might find help here (Flash): Creative Suite Extension Builder and here (HTML): Extension Builder 3
    Davide Barranca
    www.davidebarranca.com
    www.cs-extensions.com

  • InDesign Panels created with Extension Builder 3 get collapsed upon relaunch of InDesign

    InDesign Panels created with Extension Builder 3 get collapsed upon relaunch of InDesign and you have to corner drag them open to see the panel. This bug is very annoying. Does anyone know a work around?

    I found how to fix this.
    There is a hidden XML file called manifest.xml located in you project folder here:
    ../.staged-extension/CSXS/manifest.xml
    In that file there is a section called <Geometry>
    By default there is an entry for size. You can add sections for min and max panel size values.
    <MaxSize>
         <Height>enter max height size here</Height>
         <Width>enter max width size here</Width>
    </MaxSize>
    <MinSize>
         <Height>enter min height size here</Height>
         <Width>enter min width size here</Width>
    </MinSize>
    - Digital Production

  • GeoRaptor – Oracle Spatial extension for Project Raptor

    Hello,
    As GIS professionals using Oracle Spatial we suffer by the lack of support for Spatial management features in professional database management and development tools like Toad. We were very excited when Project Raptor arrived, because it is based on JDeveloper platform and allows Java developers to extend its functionality with custom extensions, so we decided to start open source project GeoRaptor. Our primary goal is to extend functionality of Raptor, so that it provides most needed tools for developers and DBAs that use Oracle Spatial. Right now extension only includes functionality to update metadata and geometry validation but we have many ideas for the future. Some useful links:
    Main page: http://sourceforge.net/projects/georaptor
    Screenshots: http://sourceforge.net/project/screenshots.php?group_id=158162
    Installation via Raptor update center : http://georaptor.sourceforge.net/
    Download : http://sourceforge.net/project/showfiles.php?group_id=158162
    Please, let as know, what you think about a project and what functionality would you like to see in future releases.
    Matic

    Hello,
    I publish new version that include "Spatial view" module (see links below for more details). For now you can see only Polygon type for Spatial objects, but in the feature.....
    Regards,
    Matic

  • Test Extension Panel doesn't open

    I have a test extension panel which is not working properly. The extension appears in the "Extensions" menu, but when the item is clicked, nothing happens.
    Here is the manifest:
    <?xml version="1.0" encoding="UTF-8"?>
    <ExtensionManifest ExtensionBundleId="com.test.test" ExtensionBundleName="test" ExtensionBundleVersion="1.0" Version="4.0">
      <ExtensionList>
        <Extension Id="com.test.test" Version="1.0"/>
      </ExtensionList>
      <ExecutionEnvironment>
        <HostList>
          <Host Name="ILST" Version="[18.0,18.9]"/>
        </HostList>
        <LocaleList>
          <Locale Code="All"/>
        </LocaleList>
        <RequiredRuntimeList>
          <RequiredRuntime Name="CSXS" Version="5.0"/>
        </RequiredRuntimeList>
      </ExecutionEnvironment>
      <DispatchInfoList>
        <Extension Id="com.test.test">
          <DispatchInfo>
            <Resources>
              <MainPath>./index.html</MainPath>
            </Resources>
            <UI>
              <Type>Panel</Type>
              <Menu>Hello world</Menu>
              <Geometry>
                <Size>
                  <Height>400</Height>
                  <Width>400</Width>
                </Size>
              </Geometry>
            </UI>
          </DispatchInfo>
        </Extension>
      </DispatchInfoList>
    </ExtensionManifest>
    Here is the index.html:
    <!doctype html>
    <html>
        <body>
            <button id="btn">Click me</button>
        </body>
    </html>
    Also, I set the debug flag in the com.adobe.CSXS.2.5.plist file to 1 and the log level to 6, but no log is being generated.

    I could observe few discrepancies in your directory structure snap shot and manifest.xml file.
        Your directory structure should look like:
        /Library/Application Support/Adobe/CEP/extensions/com.test.test
        /CSXS
              /manifest.xml
        /index.html
    Here is the manifext.xml file, replace this with your manifest.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <ExtensionManifest Version="5.0" ExtensionBundleId="com.test.test" ExtensionBundleVersion="1.0.0"
      ExtensionBundleName="Test" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <ExtensionList>
      <Extension Id="com.test.test" Version="1.0" />
    </ExtensionList>
    <ExecutionEnvironment>
      <HostList>
                <!-- Illustrator -->
                <Host Name="ILST" Version="[18.0,18.9]" />
      </HostList>
      <LocaleList>
      <Locale Code="All" />
      </LocaleList>
      <RequiredRuntimeList>
      <RequiredRuntime Name="CSXS" Version="5.0" />
      </RequiredRuntimeList>
    </ExecutionEnvironment>
    <DispatchInfoList>
      <Extension Id="com.test.test">
      <DispatchInfo >
      <Resources>
      <MainPath>./index.html</MainPath>
      </Resources>
      <Lifecycle>
      <AutoVisible>true</AutoVisible>
      </Lifecycle>
      <UI>
      <Type>Panel</Type>
      <Menu>Test</Menu>
      <Geometry>
      <Size>
      <Height>400</Height>
      <Width>400</Width>
      </Size>
                        <MinSize>
                                <Height>400</Height>
                                <Width>400</Width>
                            </MinSize>
                            <MaxSize>
                                <Height>400</Height>
                                <Width>400</Width>
                            </MaxSize>
      </Geometry>
      </UI>
      </DispatchInfo>
      </Extension>
    </DispatchInfoList>
    </ExtensionManifest>
    Here is the HTML file I used:
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Test</title>
    </head>
    <body>
       <button id="btn">Click me</button>    
    </body>
    </html>
    Also please make sure your are opening this extension in Illustrator 18.0 or later.
    Its working for me as above!

  • Indesign Host Adapter for Extension Builder 3?

    Hi,
    How can i subscribe to indesign application and document events inside the Extension Builder 3 Extension?
    Thanks

    I found how to fix this.
    There is a hidden XML file called manifest.xml located in you project folder here:
    ../.staged-extension/CSXS/manifest.xml
    In that file there is a section called <Geometry>
    By default there is an entry for size. You can add sections for min and max panel size values.
    <MaxSize>
         <Height>enter max height size here</Height>
         <Width>enter max width size here</Width>
    </MaxSize>
    <MinSize>
         <Height>enter min height size here</Height>
         <Width>enter min width size here</Width>
    </MinSize>
    - Digital Production

  • MySQL Extension Development

    I am interested in developing a small extension for SQL Developer that would allow me to work with its table objects and queries.
    Do any specific MySQL samples/examples exist that can help me get started?
    regards
    Simon

    Brian,
    How do you mean "work with its table objects and queries"? If you add the MySQL jdbc driver (jtds-1.2.jar) to Preferences/Database/Third Party JDBC Drivers, the add connection dialog will allow you to create a MySQL connection & the basic browse/query, etc. stuff should all work already.I mean this in the context of the Subject of the post. Again, I want to develop a simple extension for SQL Developer which would allow me to hook into the connection and process the geometry data type of any table or query. Not just XML and SQL but Java.
    I have had a request from a MySQL/Oracle database user to provide some simple visualisation and processing tools for MySQL Spatial within our GeoRaptor extension. So I am looking for help on how to access the MySQL connection nodes and queries.
    I follow Jeff Smith's blog to the Oracle Wiki. I have found, in the past, the information on the Oracle Wiki and the lack of Javadoc for the SQL Developer jar files to be a huge limiter to someone developing an extension for SQL Developer. The new Wiki material looks equally disappointing. For example, the section on How To Create a Java Defined Extension (last edited by Jeff on Mar 28, 2012) still talks about Oracle SQL Developer 1.5.1, and references Extending SQL Developer 1.2.1. But we are up to SQL Developer 3.1 and things have changed a bit since then. Can this be updated so that it is more pertinent to current versions and so more helpful to external, non-partner, open-source extension developers who don't have access to the Oracle developers as a real Partners (eg Microgen) probably have.
    regards
    Simon

  • Invalid geojson extension?

    I am trying to submit an iOS app to iTunes connect for review. The app uses Apple's map functionality, so I am trying to include the following simple geojson file. iTunes Connect is not giving me any syntax errors, so I assume that the geojson file is valid.
        "type": "FeatureCollection",
        "features": [
                "type": "Feature",
                "properties": {},
                "geometry": {
                    "type": "Polygon",
                    "coordinates": [
                                -167.6953125,
                                -65.6582745198266
                                -167.6953125,
                                80.70399666821143
                                191.95312499999997,
                                80.70399666821143
                                191.95312499999997,
                                -65.6582745198266
                                -167.6953125,
                                -65.6582745198266
    However, every time I try to submit my app for review, I get an error saying that my file must use the .geojson extension. iTunes Connect displays this error in spite of the fact that my file does have a geojson extension. I have a screenshot of the error and the file I am trying to submit below.

    Please go to Creating and validating XML signatures | Adobe Developer Connection and install the validation tool to validate the signature of your extension. Unzip this extension to a empty folder with 7-zip, winzip or Mac built-in unzip, then click "Load signature" button in the tool, browse to META-INF/signatures.xml to load it, then click "Verify signature" button.
    Extension Manager CS6 uses the same method as this tool to validate extension signature. If this tool says the signature is invalid, then EM CS6 will also treat the signature as invalid.

  • Adobe cloud tries to load addon which I have deleted in Extension manager

    when Adobe Cloud starts it tries to load an application (Edge FX lite) that I have deleted in Adobe Extension Manager cc. I get the error message ' unable to install the addon EdgeFX lite  error 603. How do I stop this?
    Also in Adobe Exchange in 'My Stuff'  there are showing addons which I have removed in Adobe extension Manager cc which I would like to be removed from this listing as I will never use them, but if I right click to uninstall I fail to get rid of them.

    Apologies, without making the assumption that you are signed in
    1) Go to https://creative.adobe.com/addons/
    2) In the top right hand corner select sign in and enter your Adobe ID and password
    3) Once logged in, on the center of the screen at the left hand side, select the link 'All your purchases and shared items'
    4) You will then be taken to a page that is the equivalent of your My Stuff panel.
    5) You can then install individual add-ons/extensions.
    Kind regards,
    Lea

Maybe you are looking for