Is MapViewer 10.1.3.1 final?

Is the MapViewer 10.1.3.1, which was just made available on
http://www.oracle.com/technology/software/products/mapviewer/index.html
final or not? It is no longer labelled "Release Candidate" on the download page, so I downloaded it and deployed it to my server, but the main page still reads "RC1", and the version label in the bottom still reads "Version: Ver10131_B061023", which I suppose is the same as the RC1 version. Likewise does the supposedly final version of MapBuilder still read "Release Candidate 1" in the "About" box.
Can someone from the MapViewer team please clarify this?

Thanks for the clarification. The RC1 tag on the webpage was due to browser cache, sorry about that. :-) I guess, that you simply forgot to change the version tag in "About" in MapBuilder then.
Update: MapBuilder shows the correct version tag in "About" now. Thanks.

Similar Messages

  • SOS! Please help me about GeoRaster Mapviewer problem!!

    Hi!
    I am very miserable. I want to see GeoRaster Data with MapViewer 10. I have finished all guides but No result. The following details:
    - I load image into Georaster successfully and estable extentspatial, metadata,etc.. as Mapviewer guide for Georaster theme at location 2.3.6.
    - After that, I copy jai_core.jar and jai_codec.jar into ../web/Web-Inf/lib.
    - Then repair MapviewerConfig.xml to respone to my Database.
    - Then at window of Mapviewer, I paste my Map request following:
    xml_request=<?xml version="1.0" standalone="yes" ?>
    <map_request
    title=""
    datasource="ThoaGlobName"
    width="288"
    height="192"
    format="GIF_URL" >
    <themes>
    <theme name="geor_theme" >
    <jdbc_georaster_query
    jdbc_srid="82216"
    datasource="ThoaGlobName"
    georaster_table="ThoaImage"
    georaster_column="Image"
    raster_id="1"
    raster_table="ThoaImageRDT"
    asis="false">
    </jdbc_georaster_query>
    </theme>
    </themes>
    </map_request>
    Then click Submit button.
    I see MapViewer give errors following:
    <?xml version="1.0" encoding="UTF-8" ?>
    <oms_error>Message:[oms] error parsing given xml map request. Fri Sep 29 22:56:18 PDT 2006 Severity: 0 Description: oracle.xml.parser.v2.XMLParseException: Start of root element expected. at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:205) at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:305) at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:267) at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:253) at oracle.lbs.mapserver.oms.parse(oms.java:606) at oracle.lbs.mapserver.oms.getXMLDocument(oms.java:864) at oracle.lbs.mapserver.oms.doPost(oms.java:303) at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765) at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317) at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:270) at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112) at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186) at java.lang.Thread.run(Unknown Source)</oms_error>
    PLEASE HELP ME! I do not know where I wrong. It is time for me to post my final test. I am very worried! I am regard high your help.Thank you so much!

    If you take a look in this category of different forums, you will find one that discusses e.g. GeoRaster.

  • FOIs not appearing in MapViewer with Internet Explorer

    I am using MapViewer 10133p5 and having some trouble placing FOIs in Internet Explorer (that is to say, the code that seems to be working fine in Firefox fails in IE). I have reduced my HTML to what I think are the bare essentials and pasted its contents below.
    In the Firefox browser, any time I click on the map I see an alert telling me the coordinates upon which I clicked, then an FOI (with an image on top of it) is placed on the map. Finally, I see another alert letting me know that the FOI was placed. In IE7, I see the alerts, but I never see the FOI. Lastly, from what I can tell, the WebLogic server that is serving the MapViewer app gets a request whenever I do this in Firefox, but does not see a request come through when I do it in IE.
    IE gives me no indication that anything is wrong, and since the final alert (see below) fires, I must presume that the script execution isn't failing. Any guidance would be greatly appreciated.
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <title>Testing the map</title>
    <script
         language="Javascript"
         src="http://localhost:7001/mapviewer/fsmc/jslib/oraclemaps.js">
    </script>
    <script language=Javascript>
    var mapview;
    var FOICount = 0;
    function showMap()
    var baseURL = "http://localhost:7001/mapviewer";
    var mapCenterLon = -110.0;
    var mapCenterLat = 45.9;
    var mapZoom = 4;
    var mpoint = MVSdoGeometry.createPoint(mapCenterLon,mapCenterLat,8307);
    mapview = new MVMapView(document.getElementById("map"), baseURL);
    mapview.addBaseMapLayer(new MVBaseMap("test_map.sweetgrass_county"));
    mapview.setCenter(mpoint);
    mapview.setZoomLevel(mapZoom);
    mapview.addEventListener("mouse_click", mapview_mouse_click);     
    mapview.display();      
    function mapview_mouse_click()
         var mouseLocation = mapview.getMouseLocation();
         var mouseLocationX = mouseLocation.getPointX();
         var mouseLocationY = mouseLocation.getPointY();
         alert(mouseLocationX + ',' + mouseLocationY);
         pointClicked = MVSdoGeometry.createPoint(mouseLocationX, mouseLocationY, 8307);
         pointClickedFOI = new MVFOI("ID:" + (FOICount++), pointClicked, "MY.STYLE.NAME");
         pointClickedFOI.setWidth(48);
         pointClickedFOI.setHeight(48);
         pointClickedFOI.setHTMLElement('<img src="./pin.png"/>');
         mapview.addFOI(pointClickedFOI);
         alert('Added the FOI at ' + mouseLocationX + ',' + mouseLocationY);
    </script>
    </head>
    <body onload=javascript:showMap();>
         <div id="map"
              style="z-index: 0;position: absolute; display: block; left:0px; top:10px; width:95%; height:95%">
         </div>
    </body>
    </html>

    This is a oracle maps bug. The workaround is to add the image as a separate marker foi.
    pointClicked = MVSdoGeometry.createPoint(mouseLocationX, mouseLocationY, 8307);
    pointClickedFOI = new MVFOI("ID:" + (FOICount++), pointClicked, "MY.STYLE.NAME");
    pointClickedFOI.setWidth(48);
    pointClickedFOI.setHeight(48);
    mapview.addFOI(pointClickedFOI);
    markerFOI = MVFOI.createMarkerFOI("ID:" + (FOICount++), pointClicked, "./pin.png");
    mapview.addFOI(markerFOI );

  • Mapviewer in JDeveloper

    Good day!
    I have successfully deployed the mapviewer in my pc using extended oc4j. My next task is to develop a program using JDeveloper with mapviewer. I followed the step-by-step instruction in this tutorial : http://www.oracle.com/technology/products/jdev/howtos/10g/map/mv_jdev_howto.htm.
    My problem is when I ran my program I got these error messages.
    Project: C:\JDev9051\jdev\mywork\WebMap\ViewController\ViewController.jpr
    C:\JDev9051\jdev\mywork\WebMap\ViewController\public_html\webmap.jsp
    Error(10,37): cannot access class oracle.lbs.mapclient.taglib.MapViewerInitTag; file oracle\lbs\mapclient\taglib\MapViewerInitTag.class not found
    Error(10,190): cannot access class oracle.lbs.mapclient.taglib.MapViewerInitTag; file oracle\lbs\mapclient\taglib\MapViewerInitTag.class not found
    Error(10,102): cannot access class oracle.lbs.mapclient.taglib.MapViewerInitTag; file oracle\lbs\mapclient\taglib\MapViewerInitTag.class not found
    Error(10,28): cannot access class oracle.lbs.mapclient.MapViewer; file oracle\lbs\mapclient\MapViewer.class not found
    Error(10,40): cannot access class oracle.lbs.mapclient.MapViewer; file oracle\lbs\mapclient\MapViewer.class not found
    Error(11,37): cannot access class oracle.lbs.mapclient.taglib.MapViewerSetParamTag; file oracle\lbs\mapclient\taglib\MapViewerSetParamTag.class not found
    Error(11,198): cannot access class oracle.lbs.mapclient.taglib.MapViewerSetParamTag; file oracle\lbs\mapclient\taglib\MapViewerSetParamTag.class not found
    Error(11,106): cannot access class oracle.lbs.mapclient.taglib.MapViewerSetParamTag; file oracle\lbs\mapclient\taglib\MapViewerSetParamTag.class not found
    Error(12,37): cannot access class oracle.lbs.mapclient.taglib.MapViewerRunTag; file oracle\lbs\mapclient\taglib\MapViewerRunTag.class not found
    Error(12,188): cannot access class oracle.lbs.mapclient.taglib.MapViewerRunTag; file oracle\lbs\mapclient\taglib\MapViewerRunTag.class not found
    Error(12,101): cannot access class oracle.lbs.mapclient.taglib.MapViewerRunTag; file oracle\lbs\mapclient\taglib\MapViewerRunTag.class not found
    Error(13,37): cannot access class oracle.lbs.mapclient.taglib.MapViewerGetMapURLTag; file oracle\lbs\mapclient\taglib\MapViewerGetMapURLTag.class not found
    Error(13,200): cannot access class oracle.lbs.mapclient.taglib.MapViewerGetMapURLTag; file oracle\lbs\mapclient\taglib\MapViewerGetMapURLTag.class not found
    Error(13,107): cannot access class oracle.lbs.mapclient.taglib.MapViewerGetMapURLTag; file oracle\lbs\mapclient\taglib\MapViewerGetMapURLTag.class not found
    -- what am I missing? any ideas?
    Thanks.

    Hi,
    It is ok, that you can see it in JSP Tag Libraries window. MapViewer.class is in the jdev_home.
    To succesfully build your project with MapViewer Tag Lib do the following:
    A). Check libraries
    1. Tools -> Manage Libraries -> Libraries Window
    2. In User Libraries section you should see MapViewer library entry (for example, Oracle MapViewer) which points to the mvclient.jar
    3. If there is no MapViewer library, then create it
    B). Check tag lib
    4. Switch to the JSP Tag Libraries window
    5. Double click on mapviewer entry
    6. If tag is not associated with MapViewer library (from section A), then associate it. You should see in the 'Libraries (separated by sime-columns)' MapViewer library name (from section A)
    7. Close Manage Libraries window with OK
    C). Final step - check your project
    8. Click on your project in Applications Navigator
    9. With right click choose Project Properties
    10. Then, go to Libraries section
    11. If there is no MapViewer library name from section A in Selected Libraries section, add it
    D). Finally, rebuild must be succesfull
    Regards,
    Andrejus

  • Legend in MapViewer

    I'm modifying the provided demo-files wich are using the MapViewer-bean. Now I want to add a legend.
    I can't find out how to do this.
    In another demo-file is an example, but is using the tags.
    Is there a way to create a legend without using the tags but with using the JavaBean?

    Although it is possible to include a map legend specification in each and every xml map request,
    currently there is no Java api that lets you do that. The JSP tag demo is simply submitting a manually created XML legend request and extracting the url to the legend image itself.
    If you dont need a legend inside each map generated by mapviewer, you can simply pre-generate the map legend through a standalone XML request using one of the forms in the mapviewer homepage. Then save the generated image and place it somewhere in your final web page.
    lj

  • My first map in mapviewer

    Hello everybody,
    I´m very new to mapviewer and to the oracle environment.
    I would like to ask you how can i solve some problems detected on the log file of map viewer in order to write and run my first js code for oracle maps api.
    I correcely installed Oracle 11g R2 on windows 7 ultimate 64bit using the 64bit version, togheter with weblogic server (the most updated jar version), created a single domain called gis-domain and deployed mapviewer1112 version.
    I also create a new mvdemo/mvdemo@orcl and imported the schema for mvdemo files.
    In fact I can connect to my localhost:7001 and see the tutorials and teh demo.
    The problem arrives when I tried to write some code and test it in the web.
    this is the commun error I got in a windows.
    [MVGlobalVariables.getMapCacheConfig] MAPVIEWER-05511: Error occurred when sending request to MapViewer server. ([Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIXMLHttpRequest.send]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: http://localhost:7001/mapviewer/fsmc/jslib/oraclemaps.js :: anonymous :: line 1514" data: no])
    and the following log:
    31.01.2011 16:38:01 oracle.lbs.mapserver.core.MapperConfig loadMapViewerConfig
    AM FEINSTEN:
    Allowed IPs:
    Excluded IPs:
    31.01.2011 16:38:04 oracle.lbs.mapserver.core.MapperConfig registerNSDataProviders
    AM FEINSTEN: Non-Spatial Data Provider registered: defaultNSDP
    31.01.2011 16:38:04 oracle.sdovis.SDataProviderMgr registerProvider
    INFO: Spatial Provider shapefileSDP has been registered.
    31.01.2011 16:38:04 oracle.lbs.mapserver.core.MapperConfig registerSDataProviders
    AM FEINSTEN: Spatial Data Provider registered: shapefileSDP
    31.01.2011 16:38:04 oracle.lbs.mapserver.core.MapperConfig loadMapViewerConfig
    AM FEINSTEN: Data source mvdemo will get web user name from: J2EE_USER
    31.01.2011 16:38:08 oracle.sdovis.ds.NativeOracleDataSource <init>
    WARNUNG: I/O-Fehler: The Network Adapter could not establish the connection
    java.sql.SQLRecoverableException: I/O-Fehler: The Network Adapter could not establish the connection
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:419)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:538)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:228)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:521)
         at java.sql.DriverManager.getConnection(DriverManager.java:582)
         at java.sql.DriverManager.getConnection(DriverManager.java:185)
         at oracle.sdovis.ds.NativeOracleDataSource.<init>(NativeOracleDataSource.java:152)
         at oracle.sdovis.ds.DSManager.registerOracleJdbcDS(DSManager.java:122)
         at oracle.lbs.mapserver.core.MapperConfig.createMappers(MapperConfig.java:797)
         at oracle.lbs.mapserver.core.MapperConfig.loadMapViewerConfig(MapperConfig.java:1572)
         at oracle.lbs.mapserver.core.MapperConfig.loadConfigFile(MapperConfig.java:609)
         at oracle.lbs.mapserver.core.MapperConfig.<init>(MapperConfig.java:363)
         at oracle.lbs.mapserver.MapServerImpl.<init>(MapServerImpl.java:131)
         at oracle.lbs.mapserver.MapServerImpl.<init>(MapServerImpl.java:115)
         at oracle.lbs.mapserver.oms$ColdStart.run(oms.java:300)
         at java.lang.Thread.run(Thread.java:662)
    Caused by: oracle.net.ns.NetException: The Network Adapter could not establish the connection
         at oracle.net.nt.ConnStrategy.execute(ConnStrategy.java:375)
         at oracle.net.resolver.AddrResolution.resolveAndExecute(AddrResolution.java:422)
         at oracle.net.ns.NSProtocol.establishConnection(NSProtocol.java:686)
         at oracle.net.ns.NSProtocol.connect(NSProtocol.java:246)
         at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1056)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:308)
         ... 16 more
    Caused by: java.net.UnknownHostException: elocation.us.oracle.com
         at java.net.Inet6AddressImpl.lookupAllHostAddr(Native Method)
         at java.net.InetAddress$1.lookupAllHostAddr(InetAddress.java:850)
         at java.net.InetAddress.getAddressFromNameService(InetAddress.java:1201)
         at java.net.InetAddress.getAllByName0(InetAddress.java:1154)
         at java.net.InetAddress.getAllByName(InetAddress.java:1084)
         at java.net.InetAddress.getAllByName(InetAddress.java:1020)
         at oracle.net.nt.TcpNTAdapter.connect(TcpNTAdapter.java:117)
         at oracle.net.nt.ConnOption.connect(ConnOption.java:130)
         at oracle.net.nt.ConnStrategy.execute(ConnStrategy.java:353)
         ... 21 more
    31.01.2011 16:38:08 oracle.sdovis.ds.NativeOracleDataSource <init>
    WARNUNG: connecting to database using jdbc thin driver...
    31.01.2011 16:38:08 oracle.sdovis.ds.NativeOracleDataSource <init>
    SCHWERWIEGEND: I/O-Fehler: The Network Adapter could not establish the connection
    java.sql.SQLRecoverableException: I/O-Fehler: The Network Adapter could not establish the connection
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:419)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:538)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:228)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:521)
         at java.sql.DriverManager.getConnection(DriverManager.java:582)
         at java.sql.DriverManager.getConnection(DriverManager.java:185)
         at oracle.sdovis.ds.NativeOracleDataSource.<init>(NativeOracleDataSource.java:169)
         at oracle.sdovis.ds.DSManager.registerOracleJdbcDS(DSManager.java:122)
         at oracle.lbs.mapserver.core.MapperConfig.createMappers(MapperConfig.java:797)
         at oracle.lbs.mapserver.core.MapperConfig.loadMapViewerConfig(MapperConfig.java:1572)
         at oracle.lbs.mapserver.core.MapperConfig.loadConfigFile(MapperConfig.java:609)
         at oracle.lbs.mapserver.core.MapperConfig.<init>(MapperConfig.java:363)
         at oracle.lbs.mapserver.MapServerImpl.<init>(MapServerImpl.java:131)
         at oracle.lbs.mapserver.MapServerImpl.<init>(MapServerImpl.java:115)
         at oracle.lbs.mapserver.oms$ColdStart.run(oms.java:300)
         at java.lang.Thread.run(Thread.java:662)
    Caused by: oracle.net.ns.NetException: The Network Adapter could not establish the connection
         at oracle.net.nt.ConnStrategy.execute(ConnStrategy.java:375)
         at oracle.net.resolver.AddrResolution.resolveAndExecute(AddrResolution.java:422)
         at oracle.net.ns.NSProtocol.establishConnection(NSProtocol.java:686)
         at oracle.net.ns.NSProtocol.connect(NSProtocol.java:246)
         at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1056)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:308)
         ... 16 more
    Caused by: java.net.UnknownHostException: elocation.us.oracle.com
         at java.net.InetAddress.getAllByName0(InetAddress.java:1158)
         at java.net.InetAddress.getAllByName(InetAddress.java:1084)
         at java.net.InetAddress.getAllByName(InetAddress.java:1020)
         at oracle.net.nt.TcpNTAdapter.connect(TcpNTAdapter.java:117)
         at oracle.net.nt.ConnOption.connect(ConnOption.java:130)
         at oracle.net.nt.ConnStrategy.execute(ConnStrategy.java:353)
         ... 21 more
    31.01.2011 16:38:08 oracle.sdovis.ds.NativeOracleDataSource <init>
    SCHWERWIEGEND: I/O-Fehler: The Network Adapter could not establish the connection
    java.sql.SQLRecoverableException: I/O-Fehler: The Network Adapter could not establish the connection
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:419)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:538)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:228)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:521)
         at java.sql.DriverManager.getConnection(DriverManager.java:582)
         at java.sql.DriverManager.getConnection(DriverManager.java:185)
         at oracle.sdovis.ds.NativeOracleDataSource.<init>(NativeOracleDataSource.java:169)
         at oracle.sdovis.ds.DSManager.registerOracleJdbcDS(DSManager.java:122)
         at oracle.lbs.mapserver.core.MapperConfig.createMappers(MapperConfig.java:797)
         at oracle.lbs.mapserver.core.MapperConfig.loadMapViewerConfig(MapperConfig.java:1572)
         at oracle.lbs.mapserver.core.MapperConfig.loadConfigFile(MapperConfig.java:609)
         at oracle.lbs.mapserver.core.MapperConfig.<init>(MapperConfig.java:363)
         at oracle.lbs.mapserver.MapServerImpl.<init>(MapServerImpl.java:131)
         at oracle.lbs.mapserver.MapServerImpl.<init>(MapServerImpl.java:115)
         at oracle.lbs.mapserver.oms$ColdStart.run(oms.java:300)
         at java.lang.Thread.run(Thread.java:662)
    Caused by: oracle.net.ns.NetException: The Network Adapter could not establish the connection
         at oracle.net.nt.ConnStrategy.execute(ConnStrategy.java:375)
         at oracle.net.resolver.AddrResolution.resolveAndExecute(AddrResolution.java:422)
         at oracle.net.ns.NSProtocol.establishConnection(NSProtocol.java:686)
         at oracle.net.ns.NSProtocol.connect(NSProtocol.java:246)
         at oracle.jdbc.driver.T4CConnection.connect(T4CConnection.java:1056)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:308)
         ... 16 more
    Caused by: java.net.UnknownHostException: elocation.us.oracle.com
         at java.net.InetAddress.getAllByName0(InetAddress.java:1158)
         at java.net.InetAddress.getAllByName(InetAddress.java:1084)
         at java.net.InetAddress.getAllByName(InetAddress.java:1020)
         at oracle.net.nt.TcpNTAdapter.connect(TcpNTAdapter.java:117)
         at oracle.net.nt.ConnOption.connect(ConnOption.java:130)
         at oracle.net.nt.ConnStrategy.execute(ConnStrategy.java:353)
         ... 21 more
    31.01.2011 16:38:08 oracle.lbs.mapserver.core.MapperConfig createMappers
    SCHWERWIEGEND: Error creating NativeOracleDataSource.
    31.01.2011 16:38:08 oracle.lbs.mapserver.core.MapperConfig loadMapViewerConfig
    WARNUNG: MAPVIEWER-00011: Fehler beim Erstellen einer Map-Datenquelle.(mvdemo)
    31.01.2011 16:38:08 oracle.lbs.mapserver.core.MapperConfig loadConfigFile
    INFO: Map Recycling thread started.
    31.01.2011 16:38:08 oracle.lbs.mapserver.oms$ColdStart run
    INFO: *** Oracle MapViewer started. ***
    31.01.2011 16:38:09 oracle.lbs.foi.FOIServer init
    INFO: *** Oracle Feature of Interest (FOI) Server started. ***
    31.01.2011 16:38:09 oracle.lbs.mapcache.MCSServlet$ColdStart run
    INFO: *** Oracle MapTileServer started. ***
    I tried already many adjustements but I cannot understand what the log tell me.
    Can anyone help me please.
    buendia
    *second round*
    Hello buendia again here,
    after having browsed few discussions and read few article finally my last log looks promising....
    much besser.
    In fact yet I made sure that there is a listener opened and I edited the config file as the blogspot mapviewer suggested, but still I got the same error massage on the screen when I try my simple html file:
    [MVGlobalVariables.getMapCacheConfig] MAPVIEWER-05511: Error occurred when sending request to MapViewer server. ([Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIXMLHttpRequest.send]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: http://localhost:7001/mapviewer/fsmc/jslib/oraclemaps.js :: anonymous :: line 1514" data: no])
    and now after having tested my simple USA map and also in JDeveloper the "Geotags" tutorial I got a little bit stacked.
    Can anyone suggest which kind of errors I´m making?
    I´ll attached my log:
    31.01.2011 23:31:22 oracle.lbs.mapserver.core.MapperConfig loadMapViewerConfig
    AM FEINSTEN:
    Allowed IPs:
    Excluded IPs:
    31.01.2011 23:31:23 oracle.lbs.mapserver.core.MapperConfig registerNSDataProviders
    AM FEINSTEN: Non-Spatial Data Provider registered: defaultNSDP
    31.01.2011 23:31:23 oracle.sdovis.SDataProviderMgr registerProvider
    INFO: Spatial Provider shapefileSDP has been registered.
    31.01.2011 23:31:23 oracle.lbs.mapserver.core.MapperConfig registerSDataProviders
    AM FEINSTEN: Spatial Data Provider registered: shapefileSDP
    31.01.2011 23:31:23 oracle.lbs.mapserver.core.MapperConfig loadMapViewerConfig
    AM FEINSTEN: Data source mvdemo will get web user name from: J2EE_USER
    31.01.2011 23:31:27 oracle.sdovis.DBSRSStore loadGeodeticSrids
    AM FEINSTEN: Number of geodetic srids loaded: 924.
    31.01.2011 23:31:27 oracle.sdovis.CacheMgr2 init
    INFO: Spatial Data Cache opened. Region=SDOVIS_DATA.
    31.01.2011 23:31:27 oracle.sdovis.CacheMgr2 init
    INFO:      max_cache_size=32 MB.
    31.01.2011 23:31:27 oracle.sdovis.CacheMgr2 createSubRegion
    INFO: sub region sdovis_subreg_mvdemo_jdbc:oracle:thin:@localhost:1521:orcl created in cache.
    31.01.2011 23:31:27 oracle.lbs.mapserver.core.MapperPool addMapper
    INFO: added a mapper instance to the pool [data src=mvdemo]
    31.01.2011 23:31:27 oracle.lbs.mapserver.core.MapperPool addMapper
    INFO: added a mapper instance to the pool [data src=mvdemo]
    31.01.2011 23:31:27 oracle.lbs.mapserver.core.MapperPool addMapper
    INFO: added a mapper instance to the pool [data src=mvdemo]
    31.01.2011 23:31:27 oracle.lbs.mapserver.core.MapperConfig loadMapCacheServerSettings
    SCHWERWIEGEND: Cannot create default cache root directory: C:\mapviewer\mapviewer.ear\web.war\WEB-INF\conf\mapviewer.ear\web.war\tilecache\
    31.01.2011 23:31:27 oracle.lbs.mapserver.core.MapperConfig loadConfigFile
    INFO: Map Recycling thread started.
    31.01.2011 23:31:27 oracle.lbs.mapserver.oms$ColdStart run
    INFO: *** Oracle MapViewer started. ***
    31.01.2011 23:31:29 oracle.lbs.foi.FOIServer init
    INFO: *** Oracle Feature of Interest (FOI) Server started. ***
    31.01.2011 23:31:29 oracle.sdovis.SRSCache parseAndAdd
    FEINER: Registering srs 32632, isGeodetic=false, unit=METER
    31.01.2011 23:31:29 oracle.lbs.mapcache.config.CacheInstanceConfig loadCacheStorageDef
    WARNUNG: Invalid cache root directory:/scrtach/mvdemomaps\. Cache root directory will be set to default root directory.
    31.01.2011 23:31:29 oracle.sdovis.SRSCache parseAndAdd
    FEINER: Registering srs 8307, isGeodetic=true, unit=DECIMAL DEGREE
    31.01.2011 23:31:29 oracle.sdovis.SRSCache parseAndAdd
    FEINER: Registering srs 3785, isGeodetic=false, unit=METER
    31.01.2011 23:31:29 oracle.sdovis.SRSCache parseAndAdd
    FEINER: Registering srs 54004, isGeodetic=false, unit=METER
    31.01.2011 23:31:29 oracle.lbs.mapcache.cache.MapCache <init>
    INFO: Initialize tile layer MVDEMO.CUSTOMER_MAP
    31.01.2011 23:31:29 oracle.lbs.mapcache.config.CacheInstanceConfig loadCacheStorageDef
    WARNUNG: Invalid cache root directory:/scrtach/mvdemomaps\. Cache root directory will be set to default root directory.
    31.01.2011 23:31:29 oracle.lbs.mapcache.cache.MapCache <init>
    INFO: Initialize tile layer MVDEMO.BOZEN
    31.01.2011 23:31:29 oracle.lbs.mapcache.cache.MapCache <init>
    INFO: Initialize tile layer MVDEMO.DEMO_MAP
    31.01.2011 23:31:30 oracle.lbs.mapcache.MCSServlet$ColdStart run
    INFO: *** Oracle MapTileServer started. ***
    31.01.2011 23:31:49 oracle.lbs.mapcache.MCSServlet doPost
    FEINER: [mcs] recevied request: <request type=" ...
    31.01.2011 23:31:49 oracle.lbs.mapcache.MCSServlet doPost
    FEINER: <request type="unknown request type"/>
    31.01.2011 23:31:49 oracle.lbs.mapcache.MCSServlet doPost
    FEINER: [mcs] recevied request: <request type=" ...
    31.01.2011 23:31:49 oracle.lbs.mapcache.MCSServlet doPost
    FEINER: <request type="unknown request type" data_source="MVDEMO"/>
    01.02.2011 00:13:07 oracle.lbs.mapcache.config.CacheInstanceConfig loadCacheStorageDef
    WARNUNG: Invalid cache root directory:/scrtach/mvdemomaps\. Cache root directory will be set to default root directory.
    01.02.2011 00:13:07 oracle.lbs.mapcache.cache.MapCache <init>
    INFO: Initialize tile layer MVDEMO.BOZEN
    01.02.2011 00:13:07 oracle.lbs.mapcache.cache.MapCache <init>
    INFO: Initialize tile layer MVDEMO.CUSTOMER_MAP
    01.02.2011 00:13:07 oracle.lbs.mapcache.config.CacheInstanceConfig loadCacheStorageDef
    WARNUNG: Invalid cache root directory:/scrtach/mvdemomaps\. Cache root directory will be set to default root directory.
    01.02.2011 00:13:07 oracle.lbs.mapcache.cache.MapCache <init>
    INFO: Initialize tile layer MVDEMO.DEMO_MAP
    01.02.2011 00:13:08 oracle.lbs.mapcache.config.CacheInstanceConfig loadCacheStorageDef
    WARNUNG: Invalid cache root directory:/scrtach/mvdemomaps\. Cache root directory will be set to default root directory.
    01.02.2011 00:13:08 oracle.lbs.mapcache.cache.MapCache <init>
    INFO: Initialize tile layer MVDEMO.BOZEN
    01.02.2011 00:13:08 oracle.lbs.mapcache.cache.MapCache <init>
    INFO: Initialize tile layer MVDEMO.CUSTOMER_MAP
    01.02.2011 00:13:08 oracle.lbs.mapcache.config.CacheInstanceConfig loadCacheStorageDef
    WARNUNG: Invalid cache root directory:/scrtach/mvdemomaps\. Cache root directory will be set to default root directory.
    01.02.2011 00:13:08 oracle.lbs.mapcache.cache.MapCache <init>
    INFO: Initialize tile layer MVDEMO.DEMO_MAP
    01.02.2011 00:14:20 oracle.sdovis.ds.DSUtil createArrayTypes
    INFO: SQL array type created by MapViewer: MV_STRINGLIST
    01.02.2011 00:14:20 oracle.sdovis.ds.DSUtil createArrayTypes
    INFO: SQL array type created by MapViewer: MV_NUMBERLIST
    01.02.2011 00:14:20 oracle.sdovis.ds.DSUtil createArrayTypes
    INFO: SQL array type created by MapViewer: MV_DATELIST
    01.02.2011 00:14:21 oracle.sdovis.DBSRSStore loadGeodeticSrids
    AM FEINSTEN: Number of geodetic srids loaded: 924.
    01.02.2011 00:14:21 oracle.sdovis.CacheMgr2 createSubRegion
    INFO: sub region sdovis_subreg_geotags_jdbc:oracle:thin:@localhost:1521:orcl created in cache.
    01.02.2011 00:14:21 oracle.lbs.mapserver.core.MapperPool addMapper
    INFO: added a mapper instance to the pool [data src=geotags]
    01.02.2011 00:14:21 oracle.lbs.mapserver.core.MapperPool addMapper
    INFO: added a mapper instance to the pool [data src=geotags]
    01.02.2011 00:14:21 oracle.lbs.mapserver.core.MapperPool addMapper
    INFO: added a mapper instance to the pool [data src=geotags]
    01.02.2011 00:14:21 oracle.lbs.mapcache.config.CacheInstanceConfig loadCacheStorageDef
    WARNUNG: Invalid cache root directory:/scrtach/mvdemomaps\. Cache root directory will be set to default root directory.
    01.02.2011 00:14:21 oracle.lbs.mapcache.cache.MapCache <init>
    INFO: Initialize tile layer MVDEMO.BOZEN
    01.02.2011 00:14:21 oracle.lbs.mapcache.cache.MapCache <init>
    INFO: Initialize tile layer MVDEMO.CUSTOMER_MAP
    01.02.2011 00:14:21 oracle.lbs.mapcache.config.CacheInstanceConfig loadCacheStorageDef
    WARNUNG: Invalid cache root directory:/scrtach/mvdemomaps\. Cache root directory will be set to default root directory.
    01.02.2011 00:14:21 oracle.lbs.mapcache.cache.MapCache <init>
    INFO: Initialize tile layer MVDEMO.DEMO_MAP
    01.02.2011 00:14:21 oracle.lbs.mapcache.config.CacheInstanceConfig loadCacheStorageDef
    WARNUNG: Invalid cache root directory:/scrtach/mvdemomaps\. Cache root directory will be set to default root directory.
    01.02.2011 00:14:21 oracle.lbs.mapcache.cache.MapCache <init>
    INFO: Initialize tile layer MVDEMO.BOZEN
    01.02.2011 00:14:21 oracle.lbs.mapcache.cache.MapCache <init>
    INFO: Initialize tile layer MVDEMO.CUSTOMER_MAP
    01.02.2011 00:14:21 oracle.lbs.mapcache.config.CacheInstanceConfig loadCacheStorageDef
    WARNUNG: Invalid cache root directory:/scrtach/mvdemomaps\. Cache root directory will be set to default root directory.
    01.02.2011 00:14:21 oracle.lbs.mapcache.cache.MapCache <init>
    INFO: Initialize tile layer MVDEMO.DEMO_MAP
    01.02.2011 01:16:43 oracle.lbs.foi.FOIServlet destroy
    SCHWERWIEGEND: !!! Oracle FOI server destroyed. !!!
    01.02.2011 01:16:43 oracle.lbs.foi.FOIImageRecycleThread run
    FEIN: FOI image recycle thread interrupted.
    01.02.2011 01:16:43 oracle.lbs.foi.FOIImageRecycleThread run
    FEIN: FOI image recyle thread terminated.
    01.02.2011 01:16:43 oracle.lbs.mapserver.core.MapperConfig destroy
    FEINER: destroying MapperConfig: connection manager, mapper pool and janitor thread.
    01.02.2011 01:16:43 oracle.lbs.foi.FOIImageRecycleThread run
    FEIN: FOI image recycle thread interrupted.
    01.02.2011 01:16:43 oracle.lbs.mapserver.core.MapperPool destroyAll
    WARNUNG: destroying ALL mapmaker instances.
    01.02.2011 01:16:43 oracle.lbs.foi.FOIImageRecycleThread run
    FEIN: FOI image recyle thread terminated.
    01.02.2011 01:16:43 oracle.sdovis.DBMapMaker clear
    INFO: Clearing in-memory geometry and metadata caches.
    01.02.2011 01:16:43 oracle.sdovis.CacheMgr2 invalidate
    INFO: Invalidated subregion sdovis_subreg_mvdemo_jdbc:oracle:thin:@localhost:1521:orcl
    01.02.2011 01:16:43 oracle.sdovis.CacheMgr2 invalidate
    INFO: Invalidated subregion sdovis_subreg_mvdemo_jdbc:oracle:thin:@localhost:1521:orcl
    01.02.2011 01:16:43 oracle.lbs.mapserver.core.MapperPool destroyAll
    FEINER: Oracle connection cache for datasource mvdemo is closed
    01.02.2011 01:16:43 oracle.sdovis.ds.NativeOracleDataSource close
    INFO: Closing connection cache:mvdemo_conncache
    01.02.2011 01:16:43 oracle.sdovis.DBMapMaker clear
    INFO: Clearing in-memory geometry and metadata caches.
    01.02.2011 01:16:43 oracle.sdovis.CacheMgr2 invalidate
    INFO: Invalidated subregion sdovis_subreg_mvdemo_jdbc:oracle:thin:@localhost:1521:orcl
    01.02.2011 01:16:43 oracle.sdovis.CacheMgr2 invalidate
    INFO: Invalidated subregion sdovis_subreg_mvdemo_jdbc:oracle:thin:@localhost:1521:orcl
    01.02.2011 01:16:43 oracle.lbs.mapserver.core.MapperPool destroyAll
    FEINER: Oracle connection cache for datasource mvdemo is closed
    01.02.2011 01:16:43 oracle.sdovis.DBMapMaker clear
    INFO: Clearing in-memory geometry and metadata caches.
    01.02.2011 01:16:43 oracle.sdovis.CacheMgr2 invalidate
    INFO: Invalidated subregion sdovis_subreg_mvdemo_jdbc:oracle:thin:@localhost:1521:orcl
    01.02.2011 01:16:43 oracle.sdovis.CacheMgr2 invalidate
    INFO: Invalidated subregion sdovis_subreg_mvdemo_jdbc:oracle:thin:@localhost:1521:orcl
    01.02.2011 01:16:43 oracle.lbs.mapserver.core.MapperPool destroyAll
    FEINER: Oracle connection cache for datasource mvdemo is closed
    01.02.2011 01:16:43 oracle.sdovis.DBMapMaker clear
    INFO: Clearing in-memory geometry and metadata caches.
    01.02.2011 01:16:43 oracle.sdovis.CacheMgr2 invalidate
    INFO: Invalidated subregion sdovis_subreg_geotags_jdbc:oracle:thin:@localhost:1521:orcl
    01.02.2011 01:16:43 oracle.sdovis.CacheMgr2 invalidate
    INFO: Invalidated subregion sdovis_subreg_geotags_jdbc:oracle:thin:@localhost:1521:orcl
    01.02.2011 01:16:43 oracle.lbs.mapserver.core.MapperPool destroyAll
    FEINER: Oracle connection cache for datasource geotags is closed
    01.02.2011 01:16:43 oracle.sdovis.ds.NativeOracleDataSource close
    INFO: Closing connection cache:geotags_conncache
    01.02.2011 01:16:43 oracle.sdovis.DBMapMaker clear
    INFO: Clearing in-memory geometry and metadata caches.
    01.02.2011 01:16:43 oracle.sdovis.CacheMgr2 invalidate
    INFO: Invalidated subregion sdovis_subreg_geotags_jdbc:oracle:thin:@localhost:1521:orcl
    01.02.2011 01:16:43 oracle.sdovis.CacheMgr2 invalidate
    INFO: Invalidated subregion sdovis_subreg_geotags_jdbc:oracle:thin:@localhost:1521:orcl
    01.02.2011 01:16:43 oracle.lbs.mapserver.core.MapperPool destroyAll
    FEINER: Oracle connection cache for datasource geotags is closed
    01.02.2011 01:16:43 oracle.sdovis.DBMapMaker clear
    INFO: Clearing in-memory geometry and metadata caches.
    01.02.2011 01:16:43 oracle.sdovis.CacheMgr2 invalidate
    INFO: Invalidated subregion sdovis_subreg_geotags_jdbc:oracle:thin:@localhost:1521:orcl
    01.02.2011 01:16:43 oracle.sdovis.CacheMgr2 invalidate
    INFO: Invalidated subregion sdovis_subreg_geotags_jdbc:oracle:thin:@localhost:1521:orcl
    01.02.2011 01:16:43 oracle.lbs.mapserver.core.MapperPool destroyAll
    FEINER: Oracle connection cache for datasource geotags is closed
    01.02.2011 01:16:43 oracle.lbs.mapserver.oms destroyMV
    WARNUNG: Oracle MapViewer shut down.
    01.02.2011 01:16:43 oracle.lbs.mapcache.MCSServlet destroy
    SCHWERWIEGEND: !!! Oracle MapTileServer destroyed. !!!
    01.02.2011 01:16:43 oracle.lbs.webmapserver.WMSServletFilter destroy
    SCHWERWIEGEND: !!! Oracle Web Map Server destroyed. !!!
    Thanks again
    Buendia
    Edited by: user8677521 on Feb 1, 2011 3:46 PM

    Hello,
    actually now I can show mvdemo maps and my own mapbuilder generated maps.
    But i´m not so sure if my script is correct now in fact instead to use
    var baseURL = 'http://'+document.location.host+'/mapviewer/';
    I go with
    var baseURL = 'http://localhost:7001/mapviewer/';
    with it set up all is working fine.
    What do you think about it?
    The only thing at the moment that concern me is the rendering of my generated maps.
    In fact I wanted to use a unique shape file from where i created sub classes to show as a series of FOI. But when I want to see those subset on top of my base tyle mapviewer does not work at all get stacked with the clock running.
    I tried to separate previously my file in 8 chunks (8 sub classes...8 FOI) and all works well.
    Do you know a way to fix this endless waiting time!
    Thanks a lot for your help
    Buendia

  • GetLiveFeatureAttrs() in MapViewer returns data for wrong coordinates

    Hi forum
    I am trying to build a small Java application to fetch and display data from MapViewer. I have a set of predefined themes and want to add a query theme, from which I can fetch further information through live features. From reading the docs, to my best understanding, the procedure to do so is this:
    1. Define a query theme with attributes and make it "clickable", and use the "raw" image format. GEOLOC is the sdo_geometry column, the rest are for the live features.
      String sqlQuery = "SELECT gravstedsnavn, nummer, areal, geoloc FROM gravsteder3 s where s.dblink in (" + retline + ")";
      mv.addJDBCTheme("bssys", "QUERY_DATA",  sqlQuery, "geoloc", "8307", null, null, null, true);
      String[] boundingThemes = { "QUERY_DATA" };
      mv.setClickable(true, "QUERY_DATA");
      mv.setImageFormat(MapViewer.FORMAT_RAW_COMPRESSED);
      mv.setBoundingThemes(boundingThemes, 0.05, true);2. I use a JPanel to render the map image, for which I want a tooltip to show the live feature given the mouse coordinate, when the mouse moves around the JPanel (mapDisplay being the JPanel):
    private void mapDisplay_mouseMoved(MouseEvent e) {
      Insets is = ((JPanel)e.getComponent()).getInsets();
      int x = e.getX() - is.left, y = e.getY() - is.top;
      mapImage = mi.getMapUrl("5", x, y, mapURL);
    }getMapUrl does the following to display the live features in a tooltiptext on the JPanel:
        String[][] test = null;
        try  {
          test = mv.getLiveFeatureAttrs(x,y,0);
        } catch (NullPointerException ex)  {
          System.out.println("No information available");
        if ((test.length == 0) || (test == null)) {
          jp.setToolTipText(null);
        } else {
          String gravstedsnavn = "";
          String gravstedsnr = "";
          String areal = "";
          if (test != null) {
            for (int i = 0; i < test.length; i++) {
              for (int j = 0; j < test.length; j++) {
    if (j == 0) {
    gravstedsnavn = test[i][j];
    if (j == 1) {
    gravstedsnr = test[i][j];
    if (j == 2) {
    areal = test[i][j];
    jp.setToolTipText("<html>Gravstedsnavn: " + gravstedsnavn + "<br>Nummer: " + gravstedsnr + "<br>Areal: " + areal +"</html>");
    This code works - the only problem is, that the attributes returned from the getLiveFeatureAttrs() function returns values from a completely different coordinate from the map than expected. I believe, that its my mouseMoved event, which causes the problem - but I havent figured out the way to pass the right mouse coordinates to getLiveFeatureAttrs().
    Does someone have a working live features example, and can anyone eventually see, what the problem with my code is?
    Thanks in advance.

    Hello Joao
    I have setup a public MapViewer server and modified your code slightly, so it can run against my server. The code should return a single rectangular polygon, and if you try moving your mouse around in the JFrame, the live features are available where they shouldn't be, ie outside the marked rectangle, so something is still not working right... Could you do me the favor to try to compile and run this code? My testsite testbooking.brandsoft.dk should be publicly viewable. Could it have something to do with the value of the SRID?
    package oracle.forms.fbean;
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Image;
    import java.awt.Insets;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseMotionListener;
    import java.awt.event.WindowEvent;
    import javax.swing.JFrame;
    import oracle.lbs.mapclient.MapViewer;
    public class livefeature extends JFrame
      static Image img = null;  //global image buffer
      static Insets is = null;  //insets inside a frame.
      final static int mapWidth = 640;
      final static int mapHeight = 480;
      MapViewer mv = null;
      private class myMouseListener implements MouseMotionListener
        public void mouseDragged(MouseEvent e) {
          public void mouseMoved(MouseEvent e) {
                int x = e.getX() - is.left;
                int y = e.getY() - is.top;
               String[][] test = mv.getLiveFeatureAttrs(x,y,0);
               if ((test.length == 0) || (test == null)) {
                 System.out.println("No livefeatures found");
               } else {
                 String gravstedsnavn = "";
                 String gravstedsnr = "";
                 String areal = "";
                 if (test != null) {
                   for (int i = 0; i < test.length; i++) {
                     for (int j = 0; j < test.length; j++) {
    if (j == 0) {
    gravstedsnavn = test[i][j];
    if (j == 1) {
    gravstedsnr = test[i][j];
    if (j == 2) {
    areal = test[i][j];
    System.out.println("<html>Gravstedsnavn: " + gravstedsnavn + "<br>Nummer: " + gravstedsnr + "<br>Areal: " + areal +"</html>");
    public livefeature()
    setTitle("MapViewer: Live Feature");
    setVisible(true);
    is = getInsets();
    System.out.println("Insets: " + is);
    setSize(mapWidth+is.left+is.right, mapHeight+is.top+is.bottom);
    this.addWindowListener(new java.awt.event.WindowAdapter() {
    public void windowClosing(WindowEvent e) { System.exit(0); }
    this.addMouseMotionListener(new myMouseListener());
    public void paint(Graphics g)
    if(img==null)
    drawGeometries(g);
    //draws the image to the screen
    if(img!=null)
    g.drawImage(img, is.left, is.top,
    img.getWidth(null), img.getHeight(null), null);
    public void drawGeometries(Graphics g)
    mv = new MapViewer("http://testbooking.brandsoft.dk/mapviewer/omserver");
    mv.setDeviceSize(new Dimension(mapWidth,mapHeight));
    mv.setAntiAliasing(true);
    mv.setDataSourceName("bssys");
    String sqlQuery = "SELECT s.gravgaardsnavn, s.gravnr, s.areal, s.geoloc FROM gravsteder3 s where s.dblink in (30200020)";
    mv.addJDBCTheme("bssys", "QUERY_DATA", sqlQuery, "geoloc", "0", "BSSYS:ROED_MARKERING", null, "BSSYS:SORT_TEKST", true);
    String[] boundingThemes = { "QUERY_DATA" };
    mv.addJDBCTheme("bssys", "QUERY_DATA_1", sqlQuery, "geoloc", "0", "BSSYS:ROED_MARKERING", null, "BSSYS:SORT_TEKST", true);
    mv.setClickable(true, "QUERY_DATA_1");
    mv.setImageFormat(MapViewer.FORMAT_RAW_COMPRESSED);
    mv.setBoundingThemes(boundingThemes, 0.05, true);
    try
    mv.run();
    img = mv.getGeneratedMapImage();
    repaint();
    } catch(Exception e)
    System.out.println("Error while rendering theme.");
    e.printStackTrace();
    public static void main(String[] args)
    new livefeature();

  • Understanding MapViewer log - total time loading X features

    Hi All,
    I'm interested in finding out more about how to understand the following lines from the log file.
    What I'm unsure about is what "total time loading features" means. For example Theme_14 has a sql exec time of 1797ms, however the total time loading 3 features is 21233ms.
    I'm assuming the total time includes the sql exec time. However there is about 20 seconds extra. Understanding this time should allow me to make changes to reduce it.
    What is MapViewer doing in that time? / What are the components that make up the "total time loading features"?
    Mon Apr 21 14:57:30 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_1 ] sql exec time: 63ms, total time loading 0 features: 63ms.
    Mon Apr 21 14:57:30 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_2 ] sql exec time: 422ms, total time loading 0 features: 422ms.
    Mon Apr 21 14:57:30 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_3 ] sql exec time: 422ms, total time loading 7 features: 422ms.
    Mon Apr 21 14:57:30 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_4 ] sql exec time: 422ms, total time loading 0 features: 422ms.
    Mon Apr 21 14:57:30 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_5 ] sql exec time: 516ms, total time loading 0 features: 516ms.
    Mon Apr 21 14:57:30 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_6 ] sql exec time: 500ms, total time loading 0 features: 500ms.
    Mon Apr 21 14:57:30 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_7 ] sql exec time: 516ms, total time loading 0 features: 516ms.
    Mon Apr 21 14:57:30 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_8 ] sql exec time: 422ms, total time loading 5 features: 422ms.
    Mon Apr 21 14:57:30 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_9 ] sql exec time: 516ms, total time loading 0 features: 516ms.
    Mon Apr 21 14:57:31 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_10 ] sql exec time: 218ms, total time loading 0 features: 218ms.
    Mon Apr 21 14:57:31 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_11 ] sql exec time: 437ms, total time loading 12 features: 453ms.
    Mon Apr 21 14:57:31 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_12 ] sql exec time: 766ms, total time loading 16 features: 1141ms.
    Mon Apr 21 14:57:32 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_13 ] sql exec time: 906ms, total time loading 1 features: 1735ms.
    Mon Apr 21 14:57:51 EST 2008 DEBUG [oracle.sdovis.theme.pgtp] [ THEME_14 ] sql exec time: 1797ms, total time loading 3 features: 21233ms.
    Mon Apr 21 14:57:51 EST 2008 INFO [oracle.sdovis.DBMapMaker] **** time spent on loading features: 21233ms.
    Your time is appreciated. Any other comments are also welcome.

    Hi,
    the "total time loading features" includes the whole process to prepare the theme data. It includes the SQL execution time plus the data fetching plus some other minor tasks which do not affect much the final total time. So basically look for the SQL exec time and the fetching/loading of data. In your case, the fetching/loading of THEME_14 geometries is taking too long. Also the SQL exec time for just 3 features seems high. For the fetching, check if the geometries are too detailed (too may points), and for the SQL check if you can improve it (the log, in finest mode, also shows the query executed).
    Joao

  • Calling Mapviewer from Jdeveloper

    Hello,
    I am trying to call MapViewer from Jdeveloper. I have already used map builder to access my map, but when I try to call MapViewer I got an error message.
    My Code is as follows:
    MapViewer mv = new MapViewer("http://******:8888");
    mv.setDataSourceName("MVDEMO");
    mv.setBaseMapName("CUSTOMER_MAP");
    mv.setMapTitle(" ");
    mv.setImageFormat(MapViewer.FORMAT_PNG_URL);
    mv.setDeviceSize(
    new Dimension(256, 256)
    mv.setCenterAndScale( 0, 0, 25000000);
    mv.setMapRequestSRID(new Integer(8307));
    mv.run();
    The error message i get is:
    cannot find error code
    Server response is:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html lang="en,us">
    <HEAD>
    <TITLE>Welcome to Oracle Containers for J2EE 10g (10.1.3.1.0)</TITLE>
    <META content="text/html; charset=windows-1252" http-equiv=Content-Type>
    <link rel="stylesheet" href="ohs_images/portals.css">
    </HEAD>
    <body bgcolor="#FFFFFF" link="#663300" vlink="#996633" alink="#FF6600" text="#000000">
    <span style="font-size: 1pt;"><img src="ohs_images/space.gif" alt="Skip tabs" height=1 width=1 align="right" border=0></span>
    <!-- tabs -->
    <a name="tabs"></a>
    <table summary="" width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td rowspan="2" valign="bottom" class="OraLightHeaderSub"><img alt="Oracle Application Server logo" src="ohs_images/9iAShome_banner_2.gif" width="338" height="90"></td>
    <td align="right">
    <table summary="" align=right border=0 cellpadding=0 cellspacing=0>
    <tr>
    <td width=60 align="center" valign="bottom"> </td>
    <td valign=bottom width=60 align="center"> </td>
    </tr>
    <tr align=center valign="top">
    <td width=60 align="center"> </td>
    <td width=60 align="center"> </td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td align="right" valign="bottom">
    <table summary="" border=0 cellpadding=0 cellspacing=0 height=22>
    <tbody>
    <tr>
    <td align=right noWrap width=16><img alt="selected tab:" height=22 src="tab_files/asytlse.gif" width=14></td>
    <td background="tab_files/blue-content.gif" class=OraNav1Selected width="75">Welcome</td>
    <td align=right noWrap width=12><img alt="" src="tab_files/blue-end.gif"></td>
    <!--<td background="tab_files/green-content.gif" noWrap width="97"> </td>-->
              <td align=right noWrap width=12> </td>
    <td align=right noWrap width=12> </td>
                   <td noWrap width=15> </td>
    </tr>
    </tbody>
    </table>
    </td>
    </tr>
    </table>
    <!-- blue banner -->
    <table summary="" border=0 cellpadding=0 cellspacing=0 width="100%">
    <tbody>
    <tr valign="top">
    <td height=24>
    <table summary="" border=0 cellpadding=0 cellspacing=0 width="100%">
    <tbody>
    <tr>
    <td bgcolor="#336699" noWrap valign=bottom align="left" width="50">  </td>
    <td background="tab_files/asysrtb.gif" height=30 noWrap valign="top"><img alt="" border=0 height=30 src="tab_files/asysrt.gif" width=40></td>
    <td background="ohs_images/rhshadow.gif" height=30 noWrap valign="top" width=10 align="left">
    <img alt="" border=0 height=30 src="tab_files/asylrhs.gif" width=8></td>
    </tr>
    <tr>
    <td background="tab_files/asylttb.gif" noWrap
    valign="top" align="left" width="50" height="16">  </td>
    <td noWrap valign="top" width="600" height="16"><img alt="" border=0 height=16 src="tab_files/asysrb.gif" width=40></td>
    <td align=left valign="top" width=10 height="16"><img alt="" height=1 src="ohs_images/space.gif" width=1></td>
    </tr>
    </tbody>
    </table>
    </td>
    </tr>
    </tbody>
    </table>
    <a name="portlets"></a>
    <span style="font-size: 1pt;">
    <img src="ohs_images/space.gif" alt="This page contains the following topics:" border=0>
    <img src="ohs_images/space.gif" alt="Overview" height=1 width=1 border=0>
    <img src="ohs_images/space.gif" alt="Documentation" height=1 width=1 border=0>
    <img src="ohs_images/space.gif" alt="Quick Tour" height=1 width=1 border=0>
    <img src="ohs_images/space.gif" alt="Release Notes" height=1 width=1 border=0>
    <img src="ohs_images/space.gif" alt="Oracle Enterprise Manager" height=1 width=1 border=0>
    <img src="ohs_images/space.gif" alt="New Features" height=1 width=1 border=0>
    </span>
    <!-- main layout table -->
    <div align="left">
    <table summary="" width="100%" border="0" cellspacing="0" cellpadding="4" height="426">
    <tr valign="top">
    <!-- left column -->
    <td>
    <div align="left"><img alt="Welcome to Oracle Containers for J2EE" src="ohs_images/welcome_CJ2EE_1.gif" width="347" height="60"><br>
    <br>
    <br>
    </div>
    <a name="grid"></a>
    <table summary="" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td class="OraHeader" height="25" width="25%">Overview</td>
    <td class="OraGlobalButtonText" height="25" width="75%">
    <div align="right"></div></td>
    <td class="OraGlobalButtonText" colspan="6" width="0%">
    <div align="right"></div>
    </td>
    </tr>
    <tr>
    <td height="1" bgcolor="#CCCC99" colspan="2"><img alt="" src="ohs_images/bisspace.gif" width="1" height="1"></td>
    </tr>
    <tr>
    <td height="142" class="OraInstructionText" width="30%">
    <p align="center"><img alt="" src="ohs_images/art3.gif" width="150" height="200"></p>
    </td>
    <td height="142" class="OraInstructionText" width="70%">
    <p>
    Oracle Containers for J2EE 10g (10.1.3.1.0) is the core
    J2EE runtime component of Oracle Application Server.</p>
    <p>The key values of this release are: </p>
    <ul>
    <li> J2EE 1.4 compatible with additional support for the final EJB 3.0 specification, including JPA 1.0 API</li>
    <li>Extensive Web Services capabilties with support for JAX-RPC,
    WS-I, WS-Security, WS-Reliability</li>
    <li>Industry leading Object-Relational persistence solution with
    Oracle TopLink</li>
    <li>Standards based management and deployment support with Enterprise
    Manager Application Server Control </li>
    <li>Enterprise performance and scalability</li>
    </ul>
    </td>
    </tr>
    </table>
    <a name="doc"></a>
    <table summary="doc" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td class="OraHeader" height="25" width="69%">Documentation</td>
    <td class="OraGlobalButtonText" height="25" width="31%">
    <div align="right"></div></td>
    <td class="OraGlobalButtonText" colspan="6" width="0%">
    <div align="right"></div>
    </td>
    </tr>
    <tr>
    <td height="1" bgcolor="#CCCC99" colspan="2"><img alt="" src="ohs_images/bisspace.gif" width="1" height="1"></td>
    </tr>
    <tr>
    <td height="142" class="OraInstructionText" >
    <p> </p>
    <p>The Configuration and Administration Guide is included within this distribution. <br>It can be be accessed from here (requires Adobe Acrobat reader).</p>
    <p>The full documentation set is available from Oracle Technology Network at http://www.oracle.com/technology/documentation and contains:</p>
    <ul>
    <li>Configuration and Administration guide to help with management of the server</li>
    <li>Deployment guide to help with deployment operations</li>
    <li>Development guides to support the development of J2EE applications
    using JSP, Servlet, and EJB technologies</li>
    <li>Development guides to support the development and deployment of Web Services</li>
    <li>Security and Services guides which describe the standard
    services available such as JNDI and JMS and the comprehensive
    security infrastructure</li>
    </ul>
    </td>
    </tr>
    </table>
    <br>
    <a name="tour"></a>
    </td>
    <!-- column spacer -->
    <td class="OraInstructionText" rowspan="2" width="12">   </td>
    <!-- right column -->
    <td valign="top" width="228" align="left">
    <table summary="" bgcolor="#f7f7e7" border=0 cellpadding=0 cellspacing=0 width=218>
    <tbody>
    <tr>
    <td colspan=3 valign="top"><img alt="" border=0 height=14 src="tab_files/upperbox.gif" width=218></td>
    </tr>
    <tr>
    <td bgcolor="#cccc99"><img alt="" border=0 src="tab_files/asybase.gif" width=1></td>
    <td valign="top"> <a name="new"></a>
    <table summary="" border=0 cellpadding=0 cellspacing=0 width=216>
    <tbody>
    <tr>
    <td valign="middle" colspan="3"><span class=tab3heading>   <img alt="" src="ohs_images/logon_cctitle.gif" width="18" height="18"> <span class="OraHeaderSubSub">
    OC4J Management</span></span><br>
    <table summary="" align=center border=0 cellpadding=0 cellspacing=0
    width="90%">
    <tbody>
    <tr>
    <td bgcolor="#cccc99"><img alt="" height=1 src="tab_files/asybase.gif"></td>
    </tr>
    </tbody>
    </table>
    </td>
    </tr>
    <tr>
    <td class=OraPortletBodyText width="10">
    <p> </p>
    </td>
    <td class=OraPortletBodyText>
    <p>OC4J is managed from a browser using Application Server Control.</p>
    <p>Launch Application Server Control</p>
    </td>
    <td class=OraPortletBodyText width="10">
    <p> </p>
    </td>
    </tr>
    </tbody>
    </table>
    </td>
    <td align=left bgcolor="#cccc99" width=1><img alt="" border=0 src="tab_files/asybase.gif" width=1> </td>
    </tr>
    <tr>
    <td colspan=3 valign="top" height="2"><img alt="" border=0 height=13 src="tab_files/lowerbox.gif" width=218></td>
    </tr>
    </tbody>
    </table>
    <br>
    <table summary="" bgcolor="#f7f7e7" border=0 cellpadding=0 cellspacing=0 width=218>
    <tbody>
    <tr>
    <td colspan=3 valign="top"><img alt="" border=0 height=14 src="tab_files/upperbox.gif" width=218></td>
    </tr>
    <tr>
    <td bgcolor="#cccc99"><img alt="" border=0 src="tab_files/asybase.gif" width=1></td>
    <td valign="top">
    <a name="relnotes"></a>
    <table summary="" border=0 cellpadding=0 cellspacing=0 width=216>
    <tbody>
    <tr>
    <td colspan="3"><span class=tab3heading>   <img alt="" src="ohs_images/tree_document.gif" width="16" height="16"> <span class="OraHeaderSubSub"><b>OTN
    and Release Notes</b><span class="OraPortletBodyText"></span></span></span><br>
    <table summary="" align=center border=0 cellpadding=0 cellspacing=0
    width="90%">
    <tbody>
    <tr>
    <td bgcolor="#cccc99"><img alt="" height=1 src="tab_files/asybase.gif"></td>
    </tr>
    </tbody>
    </table>
    </td>
    </tr>
    <tr>
    <td class=OraPortletBodyText width="10">
    <p> </p>
    </td>
    <td class=OraPortletBodyText><p><span class="OraPortletBodyText">Check the OC4J
    page on OTN for the latest information,
    technical notes and how-to examples.</span></p>
    <p><span class="OraPortletBodyText">Read
    the latest Release Notes on Oracle Technology
    Network for important information about Oracle Containers for J2EE 10g (10.1.3.1.0)</span><br>
    </p></td>
    <td class=OraPortletBodyText width="10">
    <p> </p></td>
    </tr>
    </tbody>
    </table>
    </td>
    <!--width of the bottom - 2 pixel for border - width of the arrow -->
    <td align=left bgcolor="#cccc99" width=1><img alt="" border=0 src="tab_files/asybase.gif" width=1>
    </td>
    </tr>
    <tr>
    <td colspan=3 valign="top" height="2"><img alt="" border=0 height=13 src="tab_files/lowerbox.gif" width=218></td>
    </tr>
    </tbody>
    </table>
    <br>
    <table summary="" bgcolor="#f7f7e7" border=0 cellpadding=0 cellspacing=0 width=218>
    <tbody>
    <tr>
    <td colspan=3 valign="top"><img alt="" border=0 height=14 src="tab_files/upperbox.gif" width=218></td>
    </tr>
    <tr>
    <td bgcolor="#cccc99"><img alt="" border=0 src="tab_files/asybase.gif" width=1></td>
    <td valign="top"> <a name="new"></a>
    <table summary="" border=0 cellpadding=0 cellspacing=0 width=216>
    <tbody>
    <tr>
    <td valign="middle" colspan="3"><span class=tab3heading>   <img alt="" src="ohs_images/relatedapps_cctitle.gif" width="18" height="18"> <span class="OraHeaderSubSub">Quick
    Check</span></span><br>
    <table summary="" align=center border=0 cellpadding=0 cellspacing=0
    width="90%">
    <tbody>
    <tr>
    <td bgcolor="#cccc99"><img alt="" height=1 src="tab_files/asybase.gif"></td>
    </tr>
    </tbody>
    </table>
    </td>
    </tr>
    <tr>
    <td class=OraPortletBodyText width="10">
    <p> </p>
    </td>
    <td class=OraPortletBodyText>
    <p>Click on the links below to perform a quick check
    of your installation:</p>
    <ul>
    <li>JSP Test Page</li>
    <li>Servlet Test Page<br>
    </li>
    </ul> </td>
    <td class=OraPortletBodyText width="10">
    <p> </p>
    </td>
    </tr>
    </tbody>
    </table>
    </td>
    <td align=left bgcolor="#cccc99" width=1><img alt="" border=0 src="tab_files/asybase.gif" width=1> </td>
    </tr>
    <tr>
    <td colspan=3 valign="top" height="2"><img alt="" border=0 height=13 src="tab_files/lowerbox.gif" width=218></td>
    </tr>
    </tbody>
    </table>
    <br>
    <table summary="" bgcolor="#f7f7e7" border=0 cellpadding=0 cellspacing=0 width=218>
    <tbody>
    <tr>
    <td colspan=3 valign="top"><img alt="" border=0 height=14 src="tab_files/upperbox.gif" width=218></td>
    </tr>
    <tr>
    <td bgcolor="#cccc99"><img alt="" border=0 src="tab_files/asybase.gif" width=1></td>
    <td valign="top"> <a name="new"></a>
    <table summary="" border=0 cellpadding=0 cellspacing=0 width=216>
    <tbody>
    <tr>
    <td valign="middle" colspan="3"><span class=tab3heading>   <img alt="" src="ohs_images/relatedapps_cctitle.gif" width="18" height="18"> <span class="OraHeaderSubSub">Community
    Forums</span></span><br>
    <table summary="" align=center border=0 cellpadding=0 cellspacing=0
    width="90%">
    <tbody>
    <tr>
    <td bgcolor="#cccc99"><img alt="" height=1 src="tab_files/asybase.gif"></td>
    </tr>
    </tbody>
    </table>
    </td>
    </tr>
    <tr>
    <td class=OraPortletBodyText width="10">
    <p> </p>
    </td>
    <td class=OraPortletBodyText>
    <p>Collaborate with other users of Oracle Containers
    for J2EE by visiting theOC4J on OTN.<br>
    </p>
    </td>
    <td class=OraPortletBodyText width="10">
    <p> </p>
    </td>
    </tr>
    </tbody>
    </table>
    </td>
    <td align=left bgcolor="#cccc99" width=1><img alt="" border=0 src="tab_files/asybase.gif" width=1> </td>
    </tr>
    <tr>
    <td colspan=3 valign="top" height="2"><img alt="" border=0 height=13 src="tab_files/lowerbox.gif" width=218></td>
    </tr>
    </tbody>
    </table> <br>
    </td>
    </tr>
    </table>
    </div>
    <div align="left"> </div>
    <div align="left">
    <table summary="" width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td width="604"> </td>
    <td rowspan="2" valign="bottom" width="12"><img alt="" src="ohs_images/slieghright.gif" width="12" height="15"></td>
    </tr>
    <tr>
    <td bgcolor="#CCCC99" height="1"><img alt="" src="ohs_images/bisspace.gif" width="1" height="1"></td>
    </tr>
    <tr>
    <td height="5"><img alt="" src="ohs_images/bisspace.gif" width="1" height="1"></td>
    </tr>
    <tr>
    <td align="left" class="OraInstructionText"> </td>
    </tr>
    </table>
    <table summary="" width="100%" border="0" cellspacing="0" cellpadding="10">
    <tr>
    <td>
    <table summary="" width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td align=center colspan=2 class="OraInstructionText"> </td>
    </tr>
    <tr>
    <td class="OraCopyright">Copyright &copy; 2005 Oracle.
    All Rights Reserved.</td>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    </div>
    </BODY></HTML>
    Exception in thread "main" java.lang.Exception: MapViewer cannot process your map request. Check MapViewer log for details.
         at oracle.lbs.mapclient.MapViewer.processImgURL(MapViewer.java:6962)
         at oracle.lbs.mapclient.MapViewer.run(MapViewer.java:6391)
         at project1.JDBCVersion.main(JDBCVersion.java:80)
    Thanks,
    M

    Thanks,
    I think so, Could you please let me know how I can check if the deployment is done correctly?
    Also is MapViewer mv = new MapViewer("http://localhost:8888") a correct declaration?
    Thanks,
    M
    Edited by: 834943 on Feb 18, 2011 9:16 AM

  • [MapViewer 2] Error 500 - XMLException

    Hi all,
    I'm trying to use the Mapviewer with a Oracle 9.01 datbase.
    I installed the client on my local machine, and the database runs on a
    remote machine. I also succesfully deployed the mapviewer.ear file (at
    least, that's what I think). And I'm very sure J2ee works (because
    http://localhost:8888 returns a webpage)
    I also editted the default-web-site.xml and the server.xml pages (it's
    required to deploy the .ear file).
    But when I try to acces the mapviewer testpage
    (http://localhost:8888/mapviewer/servlet/oms), I get a error 500
    (internal server error) that says "java.lang.NoClassDefFoundError:
    oracle/xml/util/XMLException".
    That's no good... So I quess I miss a package. As you might have
    noticed, I'm not very familliar with Oracle, so I've got no idea what
    I might be missing. All I know is the there is no /oracle/xml dir on
    my local machine, and there is no /oracle/xml/util dir on the database
    machine...
    Can anybody help me futher with this? Is there a way to find out which
    packages I might be missing? The users guide tells me I need this
    software:
    -JDK 1.2 (I'm sure i've got it)
    -JSDK 2.0 (got it also)
    -SDOVIS (don't know, I guess it's on the database machine)
    -Oracle XML Parser v2 (got it)
    -Apache Jserv( got it)
    -Oracle Bali and Cabo compontents (no idea if I've got it)
    -Oracle Spatial (I guess this on is on the database machine also)
    -Oracle Client (got it!)
    -Oracle JDBC drivers (got it)
    Or is there another .xml file I nedd to edit, because I work with a
    remote database (I tried datasources.xml, but it didn't help)
    Thanks!

    Do your web server log files have a stack trace of the exception?
    I'd recommend using this pattern when doing JDBC:
        ResultSet res = null;
        PreparedStatement stmt = null;
        Connection connection = null;
        try {
            ...do the sql stuff here...;
        } catch (SQLException e) {
            log the error with stack trace;
        } finally {
            if (res != null)  {
                try {
                    res.close();
                } catch (Exception e) {
                    log the error;
            ...close statement similarly...;
            ...close db connection similarly or return it to the connection pool...;
            // I like to have small static close() functions for the
            // common closing patterns to keep the code more concise:
            // Utility.close(res);
            // Utility.close(stmt);
            // Utility.close(connection);
            // or Utility.returnToPool(connection);
        }The "finally" closes cursors and connections even when something goes wrong, and the "catch" logs what went wrong and where.

  • Mini-Dvi to Video out from Final Cut Pro working

    Thanx Everybody for posting reply for my post regarding running video out to external TV from Final Cut Pro in MacBook.
    It's working fine.

    @ Studio X : The files were originally created with Final Cut Pro, rendered out to QuickTime, then are being played back with Final Cut Pro. The file that has the most noticable studdering is a 60-minute timeline sequence in Final Cut. All files are being stored and played back from the Mac Mini's internal hard drive. Everything was originally shot on DV and formatted for a 4:3 aspect ratio.
    @ Shane Ross : Are there any settings in the MacOS or FCP where I can improve the HDMI video signal? Or do you know of / have any experience with Firewire to HDMI converters? Unfortunately, my new signal path relies on HDMI from the video playback.
    My current setup uses the Firewire output, which is then converted to composite video & analog audio using a pair of ageing DV tape decks. That setup is becoming troublesome due to age.

  • I just updated my RAM and I keep getting a crash report. I have a 21.5 Inch mid 2010 imac. I also am experiencing slow load times and when I try to open Final Cut it says that quartz extreme is not compatible and that I have no VRAM even though I do.

    I just updated my RAM (replaced the two 2 gig cards with two Corsair 8 gig cards) and I keep getting a crash report. I have a 21.5 Inch mid 2010 imac. I also am experiencing slow load times with Photoshop and when I try to open Final Cut it says that quartz extreme is not compatible and that I have no VRAM even though I do.
    Here is the crash report:
    Interval Since Last Panic Report:  5426204 sec
    Panics Since Last Report:          2
    Anonymous UUID:                    2DD57DDB-BB42-5614-395A-CA6225BDAFD9
    Wed Mar 20 11:36:53 2013
    panic(cpu 0 caller 0xffffff801aa43d8e): "a freed zone element has been modified in zone: maps"@/SourceCache/xnu/xnu-2050.18.24/osfmk/kern/zalloc.c:219
    Backtrace (CPU 0), Frame : Return Address
    0xffffff81eb0eb950 : 0xffffff801aa1d626
    0xffffff81eb0eb9c0 : 0xffffff801aa43d8e
    0xffffff81eb0eba00 : 0xffffff801aa435d2
    0xffffff81eb0ebae0 : 0xffffff801aa663f7
    0xffffff81eb0ebb20 : 0xffffff801aa67398
    0xffffff81eb0ebc70 : 0xffffff801aa6887c
    0xffffff81eb0ebd20 : 0xffffff801ad5b8fe
    0xffffff81eb0ebf50 : 0xffffff801ade182a
    0xffffff81eb0ebfb0 : 0xffffff801aaced33
    BSD process name corresponding to current thread: launchd
    Mac OS version:
    Not yet set
    Kernel version:
    Darwin Kernel Version 12.2.0: Sat Aug 25 00:48:52 PDT 2012; root:xnu-2050.18.24~1/RELEASE_X86_64
    Kernel UUID: 69A5853F-375A-3EF4-9247-478FD0247333
    Kernel slide:     0x000000001a800000
    Kernel text base: 0xffffff801aa00000
    System model name: iMac11,2 (Mac-F2238AC8)
    System uptime in nanoseconds: 1070542822
    last loaded kext at 707348380: com.apple.driver.AppleIRController    320.15 (addr 0xffffff7f9c53e000, size 28672)
    loaded kexts:
    at.obdev.nke.LittleSnitch    3908
    com.apple.driver.AppleIRController    320.15
    com.apple.driver.AppleUSBCardReader    3.1.0
    com.apple.driver.AppleFileSystemDriver    3.0.1
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    34
    com.apple.iokit.SCSITaskUserClient    3.5.1
    com.apple.driver.XsanFilter    404
    com.apple.iokit.IOAHCIBlockStorage    2.2.2
    com.apple.driver.AppleUSBHub    5.2.5
    com.apple.driver.AppleFWOHCI    4.9.6
    com.apple.driver.AirPort.Atheros40    600.70.23
    com.apple.driver.AppleUSBEHCI    5.4.0
    com.apple.driver.AppleAHCIPort    2.4.1
    com.apple.iokit.AppleBCM5701Ethernet    3.2.5b3
    com.apple.driver.AppleUSBUHCI    5.2.5
    com.apple.driver.AppleEFINVRAM    1.6.1
    com.apple.driver.AppleACPIButtons    1.6
    com.apple.driver.AppleRTC    1.5
    com.apple.driver.AppleHPET    1.7
    com.apple.driver.AppleSMBIOS    1.9
    com.apple.driver.AppleACPIEC    1.6
    com.apple.driver.AppleAPIC    1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient    196.0.0
    com.apple.nke.applicationfirewall    4.0.39
    com.apple.security.quarantine    2
    com.apple.driver.AppleIntelCPUPowerManagement    196.0.0
    com.apple.iokit.IOUSBHIDDriver    5.2.5
    com.apple.iokit.IOSCSIBlockCommandsDevice    3.5.1
    com.apple.iokit.IOUSBMassStorageClass    3.5.0
    com.apple.driver.AppleUSBMergeNub    5.2.5
    com.apple.driver.AppleUSBComposite    5.2.5
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.5.1
    com.apple.iokit.IOBDStorageFamily    1.7
    com.apple.iokit.IODVDStorageFamily    1.7.1
    com.apple.iokit.IOCDStorageFamily    1.7.1
    com.apple.iokit.IOAHCISerialATAPI    2.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.5.1
    com.apple.iokit.IOUSBUserClient    5.2.5
    com.apple.iokit.IOFireWireFamily    4.5.5
    com.apple.iokit.IO80211Family    500.15
    com.apple.iokit.IOAHCIFamily    2.2.1
    com.apple.iokit.IOEthernetAVBController    1.0.2b1
    com.apple.iokit.IONetworkingFamily    3.0
    com.apple.iokit.IOUSBFamily    5.4.0
    com.apple.driver.AppleEFIRuntime    1.6.1
    com.apple.iokit.IOHIDFamily    1.8.0
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    220
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    7
    com.apple.driver.DiskImages    344
    com.apple.iokit.IOStorageFamily    1.8
    com.apple.driver.AppleKeyStore    28.21
    com.apple.driver.AppleACPIPlatform    1.6
    com.apple.iokit.IOPCIFamily    2.7.2
    com.apple.iokit.IOACPIFamily    1.4
    com.apple.kec.corecrypto    1.0
    Model: iMac11,2, BootROM IM112.0057.B00, 2 processors, Intel Core i3, 3.2 GHz, 16 GB, SMC 1.64f5
    Graphics: ATI Radeon HD 5670, ATI Radeon HD 5670, PCIe, 512 MB
    Memory Module: BANK 0/DIMM1, 8 GB, DDR3, 1333 MHz, 0x029E, 0x434D5341384758334D314131333333433920
    Memory Module: BANK 1/DIMM1, 8 GB, DDR3, 1333 MHz, 0x029E, 0x434D5341384758334D314131333333433920
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 4.0.70.23-P2P
    Bluetooth: Version 4.0.9f33 10885, 2 service, 18 devices, 0 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST31000528AS, 1 TB
    Serial ATA Device: HL-DT-STDVDRW  GA32N
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 4
    USB Device: Built-in iSight, apple_vendor_id, 0x8502, 0xfd110000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 6
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfa120000 / 3

    There have been a few reports on here where Corsair RAM seems to have caused users a lot of grief with crashes.
    The recommendation on here, mostly, is to only buy RAM from macsales.com or crucial.com as they guarantee their modules will work and offer a no quibble lifetime guarantee.
    I'd put the original RAM back in, return the Corsair chips for a refund and re-order from one of those two companies.
    http://eshop.macsales.com/shop/apple/memory/iMac
    http://www.crucial.com/

  • I have recently purchased MacBook Pro with Mac OSX 10.7.3 Lion and I would like to install Final Cut Pro 6 Studio2, and it came up with this error: 'you can't open application FinalCutProStudio.mpkg because PowerPc apps are no longer supported..pls advise

    I have recently purchased MacBook Pro with Mac OSX 10.7.3 Lion and I would like to install Final Cut Pro 6 Studio2, and it came up with this error: 'you can't open application FinalCutProStudio.mpkg because PowerPc apps are no longer supported......Is there a way to run FCP6 on lion withoput this error? Any help would be appreciated.....

    Hi Shane,
    Just one more quesiton re: this topic, I am looking to get rosetta but do not have Leopard or Snow Leopard...
    I read that it is not on Snow Leopard only on Leopard....so do I need to get only Leopard? Can u advise?
    Alternatively I do have Mac OS X Tiger so is it on this and can I install it from here?
    Please excuse my lack of knowledge here, just trying to get my FCP 6 up and running asap....
    Best Rgds.

  • 15" i7 Macbook Pro from early 2011.takes the mac laptop two or three tries to boot successfully. It would turn on, show gray screen, shut down, turn on again, show gray screen, shutdown, and then turn on, show gray screen, before it can finally get

    Hello All,
    I have a 15" i7 Macbook Pro from early 2011. The past few weeks, it has been getting increasingly difficult to get on my computer. It takes the mac laptop two or three tries to boot successfully. It would turn on, show gray screen, shut down, turn on again, show gray screen, shutdown, and then turn on, show gray screen, before it can finally get to the dark gray log-in screen. Even when I finally get logged in to start working, thinking it would be okay now, it shuts down randomly.
    I've ruled out the possibility of a software problem because I've just done a clean re-install of Mac OS X Mavericks on my computer just yesterday.
    I did upgrade the RAM recently, about a month and a half ago, from 4GB to 16GB, I went to the apple store four days after that upgrade to have them do a hardware test, and clean the inside of my laptop, which helped with previous heat issues. When they did the hardware test, the hardware was all registered as fine from their system.
    I've tried resetting the SMC, PRAM, and doing the internet recovery hardware test, but to no avail. I thought I could at least find out what parts needed to be replaced from the hardware test but it seems that when the hardware test is almost finished, the computer just shuts down, So I am unable to see the results.
    My computer is also having battery issues, under battery condition, it says "replace now," parts have been ordered, waiting for arrival. But if the battery health is low, it should still boot up fine, it would just hold a significantly less charge.
    Could this be a hard drive issue?
    Has anyone had similar symptoms and how was it resolved?
    Does anyone know what I can do to alleviate this issue?
    I haven't had time to take it to Apple because I'm currently taking a 21 credit semester academically. I'm an art and design student so my computer is basically the bane of my existence. Help! Any constructive advice is welcomed!
    Thank you so much for your input!
    -Christina C.

    Problem description:
    The Hard Disk is failing.
    EtreCheck version: 2.0.11 (98)
    Report generated November 4, 2014 at 7:59:28 AM EST
    Hardware Information: ℹ️
      MacBook Pro (15-inch, Early 2011) (Verified)
      MacBook Pro - model: MacBookPro8,2
      1 2.2 GHz Intel Core i7 CPU: 4-core
      16 GB RAM Upgradeable
      BANK 0/DIMM0
      8 GB DDR3 1600 MHz ok
      BANK 1/DIMM0
      8 GB DDR3 1600 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 3000 - VRAM: 512 MB
      Color LCD 1440 x 900
      AMD Radeon HD 6750M - VRAM: 1024 MB
    System Software: ℹ️
      OS X 10.9.5 (13F34) - Uptime: 0:3:43
    Disk Information: ℹ️
      TOSHIBA MK7559GSXF disk0 : (750.16 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      HDV4 (disk0s2) /  [Startup]: 749.30 GB (712.10 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      MATSHITADVD-R   UJ-898 
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Library/Application Support/Avast/components/fileshield/unsigned
      [loaded] com.avast.AvastFileShield (2.1.0 - SDK 10.9) Support
      /Library/Application Support/Avast/components/proxy/unsigned
      [loaded] com.avast.PacketForwarder (1.4 - SDK 10.9) Support
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.avast.userinit.plist Support
    Launch Daemons: ℹ️
      [invalid?] com.adobe.SwitchBoard.plist Support
      [loaded] com.avast.init.plist Support
      [loaded] com.avast.uninstall.plist Support
      [loaded] com.avast.update.plist Support
      [invalid?] com.perion.searchprotectd.plist Support
    User Launch Agents: ℹ️
      [invalid?] com.avast.home.userinit.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [invalid?] com.jdibackup.ZipCloud.autostart.plist Support
    User Login Items: ℹ️
      None
    Internet Plug-ins: ℹ️
      AdobePDFViewer: Version: 10.1.1 Support
      QuickTime Plugin: Version: 7.7.3
      JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Check version
      Default Browser: Version: 537 - SDK 10.9
    User Internet Plug-ins: ℹ️
      TroviNPAPIPlugin: Version: 1.0 - SDK 10.9 Support
      Google Earth Web Plug-in: Version: Unknown
    Safari Extensions: ℹ️
      Avast Online Security
      Trovi Search for Safari
    3rd Party Preference Panes: ℹ️
      None
    Time Machine: ℹ️
      Time Machine not configured!
    Top Processes by CPU: ℹ️
          16% mds
          7% WindowServer
          1% loginwindow
          1% fontd
          1% com.avast.daemon
    Top Processes by Memory: ℹ️
      120 MB com.avast.daemon
      86 MB Google Chrome
      52 MB Finder
      52 MB WindowServer
      41 MB Google Chrome Helper
    Virtual Memory Information: ℹ️
      13.45 GB Free RAM
      1.34 GB Active RAM
      944 MB Inactive RAM
      1.43 GB Wired RAM
      1.11 GB Page-ins
      0 B Page-outs

  • How to use Final Cut Pro with multiple user accounts?

    Hi,
    I want to use Final Cut Pro on a clean user account. How do I set it up? How can I access my old FCP library and still work on it from multiple users?
    Also, I want my DropBox account to back-up my media. Any tips?

    I use external drives as backup. But I don't trust them. And in case of fire or what ever...It is of no use...
    But I agree on your comment about DropBox. It would have been the perfect solution though.
    What else is there?
    I have a 2TB HD but these projects are huge and still growing - so I have to move my projects to several external drives. So maybe I should just work directly from external drives and skip the partition of the computers main drive? I am thinking of the disadvantage of reducing the total storage of the disk.

Maybe you are looking for

  • TV-out on Intel

    I have gotten a VGA-TV-out cable thing: http://www.virtualinformation.com/ebay_ - ga-1lg.jpg From what I have gotten my  "Intel Corporation 82945G/GZ Integrated Graphics Controller" Is a 945G that has tv-out. I however, in my limited knowledge have n

  • Can't open .jar file, nothing happens when I click, MAC OS 10.6.8

    Hello, I can't open .jar file, nothing happens when I click on the .jar file. I have MAC OS 10.6.8 The thing it, I have desktop application that I'm building on Netbeans and when I compile and deploy it... it runs from Netbeans folder where I have al

  • How do I convert my iPod Nano from Windows to Mini Mac?

    I got an iPod Nano a few months ago. I have been doing pretty well with it... My husband just bought me a mini Mac and I want to convert it to be used on the mini Mac instead of my laptop. I have my music on a USB hard drive, so I know how to import.

  • Testing JMS content conversion

    Hi Experts, I have a scenario MQ-->PI--ECC. MQ sends a flat file and there is JMS content conversion used in sender JMS channel. On MQ side channels are not yet setup. Now I need to test if JMS content conversion is working properly. I cannot test by

  • How To Hide Retention Policy Tag View From OWA.

    Aslam