Suitable framework for Mapviewer Application

Hi,
We are planning to develop new utility mapping web application using Oracle spatial and mapviewer. This has lots of functionalities. Most of them are locating functionalities. For this we are planning to use any frameworks like Struts or JSF. Please suggest me which java framework would best suitable for this kind of GIS web application using mapviewer.
Thanks,
Sujnan

Jayant,
Could you share your experience on this issue?
I am trying to show a GIS data in a standard OAF page via extending it.
What I would like to know is:
1. Is it possible for example to show a GIS data in the standard page: /oracle/apps/pa/projectset/webui/ProjectSetDetailsPG 120.2
(GIS data is served from outside of EBS via ESRI server).
2. Is it possible to communicate standard screen with GIS extention in the same screen? If yes could you share your code.
Thanks in advance
Djef

Similar Messages

  • Labview pda- the suitable pda for this application

    Hi , I am trying to develop an application for Pocket PC. The program samples data from 4 channels using the NI CF- 6004, at 50Hz, and insert the data to array called "force". For each sample, the program averages the data from the 4 channels, and then do calculation and present 3 outputs (see the attached VI, made at labview 8 pda module for pocket pc ). The reading, analyzing and presenting of the data must be in real time.  
    I am having difficult in choosing the proper hardware of the pocket PC that will do this task the bets way, meaning:
    1. which company ( HP, or others ) ?
    2. speed of the processor ?
    3. memory
    ect.
    If anyone have any ideas about this subject I will appreciate your thought.
    Thanks,
    Attachments:
    test.vi ‏30 KB

    The only requirements are the following: 1) you have a PDA with a
    CompactFlash Type II slot, 2) it is running PocketPC 2003.  As
    long as the PDA meets these requirements, it will be able to run your application.  Beyond that, it is up to you to
    determine how much performance you want from the processor and memory.
    You may want to take a look at CompactFlash Data Acquisition Frequently Asked Questions for more information.

  • How to create framework for web application through coded UI

    I was creating a sample application:
    Step1: opened internal Explorer and typed http://www.bing.com/
    Step2: typed sachin and click on search
    Step4: clicked on "Sachin Tendulkar - Wikipedia, the free encyclopedia"
    I wrote the code. It was working but, my concern is line number of code. I have to identify object but before that I have to identify parents item and every new page it will change. I also follow this link (Hand-coding
    a Coded UI Test) but, it was showing error in  HtmlProperties
    Here is my code:
    BrowserWindow browserWindow = BrowserWindow.Launch(new System.Uri("http://www.bing.com/"));
     BrowserWindow bw1 = new BrowserWindow(); // (browserWindow);
             bw1.SearchProperties[UITestControl.PropertyNames.Name] = "Bing - Windows Internet Explorer";
             bw1.SearchProperties[UITestControl.PropertyNames.ClassName] = "IEFrame";
             bw1.SearchProperties[UITestControl.PropertyNames.TechnologyName] = "MSAA";
             // bw1.DrawHighlight();
             HtmlDocument document = new HtmlDocument(bw1);
             document.SearchProperties[HtmlDocument.PropertyNames.Id] = null;
             document.SearchProperties[HtmlDocument.PropertyNames.RedirectingPage] = "False";
             document.SearchProperties[HtmlDocument.PropertyNames.FrameDocument] = "False";
             document.FilterProperties[HtmlDocument.PropertyNames.Title] = "Bing";
             document.FilterProperties[HtmlDocument.PropertyNames.AbsolutePath] = "/";
             document.FilterProperties[HtmlDocument.PropertyNames.PageUrl] = "http://www.bing.com/";
             document.WindowTitles.Add("Bing");
     HtmlEdit ed = new HtmlEdit(document);
             //  htmlt ed = new HtmlEdit(document);
             ed.SearchProperties[HtmlEdit.PropertyNames.Id] = "sb_form_q";
             ed.SearchProperties[HtmlEdit.PropertyNames.Name] = "q";
             ed.FilterProperties[HtmlEdit.PropertyNames.Class] = "b_searchbox";
             ed.Text = "sachine";
             HtmlInputButton button = new HtmlInputButton(document);
             button.SearchProperties[HtmlButton.PropertyNames.Id] = "sb_form_go";
             button.SearchProperties[HtmlButton.PropertyNames.Name] = "go";
             button.FilterProperties[HtmlButton.PropertyNames.Type] = "submit";
             // button.DrawHighlight();
             Mouse.Click(button);
             BrowserWindow bw2 = new BrowserWindow(); // (browserWindow);
             bw2.SearchProperties[UITestControl.PropertyNames.Name] = "sachine - Bing";
             bw2.SearchProperties[UITestControl.PropertyNames.ClassName] = "IEFrame";
             // bw1.SearchProperties[UITestControl.PropertyNames.TechnologyName] = "MSAA";
             // bw1.DrawHighlight();
             HtmlDocument document2 = new HtmlDocument(bw2);
             document2.SearchProperties[HtmlDocument.PropertyNames.Id] = null;
             document.SearchProperties[HtmlDocument.PropertyNames.RedirectingPage] = "False";
             // document.SearchProperties[HtmlDocument.PropertyNames.FrameDocument] = "False";
             document2.FilterProperties[HtmlDocument.PropertyNames.Title] = "sachine - Bing";
             document2.FilterProperties[HtmlDocument.PropertyNames.AbsolutePath] = "/search";
             document2.FilterProperties[HtmlDocument.PropertyNames.PageUrl] = "http://www.bing.com/search?q=sachine&qs=n&form=QBLH&pq=sachine&sc=8-7&sp=-1&sk=&cvid=7ea461a67db341c1a6e6d14071f6ca29";
             document2.WindowTitles.Add("sachine - Bing");
             // document2.DrawHighlight();
             HtmlCustom hc = new HtmlCustom(document2);
             hc.SearchProperties[HtmlDocument.PropertyNames.Id] = "b_results";
             hc.SearchProperties[HtmlDocument.PropertyNames.TagInstance] = "1";
             //  hc.DrawHighlight();
             HtmlHyperlink hhl = new HtmlHyperlink(hc);
             hhl.SearchProperties[HtmlDocument.PropertyNames.Id] = null;
             hhl.SearchProperties[HtmlDocument.PropertyNames.InnerText] = "Sachin Tendulkar - Wikipedia, the free encyclopedia";
             hhl.SearchProperties[HtmlDocument.PropertyNames.TagName] = "A";
             hhl.FilterProperties[HtmlHyperlink.PropertyNames.AbsolutePath] = "/wiki/Sachin_Tendulkar";
             // hhl.SearchProperties[HtmlDocument.PropertyNames.TagInstance] = "26";
             // hc.SearchProperties[HtmlDocument.PropertyNames] = "http://en.wikipedia.org/wiki/Sachin_Tendulkar";
             hhl.FilterProperties[HtmlHyperlink.PropertyNames.Href] = "http://en.wikipedia.org/wiki/Sachin_Tendulkar";
             hhl.FilterProperties[HtmlHyperlink.PropertyNames.Class] = null;
             hhl.WindowTitles.Add("sachine - Bing");
    How to minimise no of line in this code. 
    vikash

    Hi Viorel,
    Thank you for your response.
    I can reduce the size using helper variables but, I have written 100 lines of code for simple steps(already mentioned). Can I reduce ?
    eg: I Created  HtmlEdit object to type in text box but, for that, first I have to create their parents (BrowseWindow and HtmlDocument) objects. can I bypass their parents objects or reduce?
    vikash

  • Suggest Suitable PDA for j2me application

    i m developing a hotel management application in j2me.
    i hv to deploy it in PDA.
    i dont have any idea about PDA.
    can any one suggest a PDA which supports cldc application developed using j2me wireless toolkit.
    thanks in advance.

    The only requirements are the following: 1) you have a PDA with a
    CompactFlash Type II slot, 2) it is running PocketPC 2003.  As
    long as the PDA meets these requirements, it will be able to run your application.  Beyond that, it is up to you to
    determine how much performance you want from the processor and memory.
    You may want to take a look at CompactFlash Data Acquisition Frequently Asked Questions for more information.

  • Hibernate/IBatis/JPA for batch applications

    We are planning on developing a batch application. Performace is a very critical part in this. Wanted to get some feed back upon which is the best framework for batch applications.
    This application would not have too many inserts/updates. It will have selects mainly.
    Can somebody suggest which framework is good Hibernate/Ibatis/JPA ?
    Thanks in advance
    Gautam

    Uppalapati wrote:
    duffymo wrote:
    "batch" usually means "transactional" to me. Why would a batch be mainly SELECTs? Makes no sense.
    Most people wouldn't use Java/JDBC for batch. Better to use the tools that are optimized for your relational database in most cases.
    sorry by stating that a little unclear. It is basically a stand-alone application. It reads messages as they comeby and process the messages. The processing of the messages require a lot of validations to be done (which are dependent upon a lot of parameters in the database and these would require selects). and finally based upon a few criteria's we write the data to the database. Are the validations static, read-only reference data? If so, you can read it once and cache it. Unless the SELECTs are truly dynamic and need to be made every time, perhaps you can save yourself some network traffic that way.
    Caching with Hibernate might make a difference, depending on how dynamic the validations are.
    and my reason for stating that it would have lots of selects is for the validation purpose and some inserts for updating the status.
    duffymo wrote:
    JPA and Hibernate will both require that you have an object model to map to your schema. Do you have that? If not, don't use either of those.
    I have an object model to map with and which is the reason why we are considering Hibernate/Jpa.OK, that's better.
    Either one will do, then. The advantage of JPA is that you don't have to commit to Hibernate, since TopLink and JDO will do as well. You can also use Glassfish or any other Java EE app server that supports EJB3 as well.
    How well do you know Hibernate and/or JPA? The other consideration is your level of skill. Choose the one you know best. Assess the risk if you're just learning and this is a critical project.
    Do you know that JDBC itself can't do the job?
    What other reasons do you have for going this way?
    %

  • Licensing Framework for Java

    Hello,
    does anyone know where one can find a freely distributed licensing framework for java applications, or suggest any solution to unblock certain functionalities only for the users provided with a licence? (talking of experimental software that I developed, not minded for commerce at present status) .

    there are some java libraries that are free for non
    commercial use but require to purchase a license for
    commercial applications.yes there is. This is true also of non java software.
    There is also the GPL (GNU public license) which allows you to distribute the code, but only in an open source way.
    My question is : what if some one use this library in
    commercial app without purchasing licence ? how can
    the owner of the librairy control the use of his
    work. and if you use it for commercial purposes what
    will happen ?Then you have a lawsuit. The damaged party may seek compensation and potentially damages from the license violator. The license owner may also seek an injunction

  • Framework for agenda

    hi to all!
    Anyone know a framework for develope application such as an Agenda with Swing?
    thanks!
    tommaso

    AFAIK, there is no known swing framework.
    You can use for example swing :http://java.sun.com/docs/books/tutorial/uiswing/components/index.html
    and Spring framework http://java.sun.com/docs/books/tutorial/uiswing/components/index.html
    hth

  • Hardware Sizing for Oracle Application Server and MapViewer

    Hi all,
    I need to develop an application using Oracle Application Server 10g and MapViewer. The applicaction will, basically, do thematic maps based on a search criteria. The estimative is that we will have 25 users simultaneously using it.
    I´d like to have an idea about the hardware to support it.
    Do you know where I can get this information?
    Any documentation can help.
    Regards,
    Luis Augusto

    Hi Luis,
    It may depend on your database size, but I think at least you need to meet the minimum requirements for the Application Server. You can find additional documentation for the AS at http://www.oracle.com/technology/products/ias/index.html.
    However I would suggest some extra memory, and if possible the better CPU that you can get. MapViewer will render the spatial features on the server side, and depending on your database size and number of features returned from the queries, this extra memory will help.
    Joao

  • For Update framework of AIR Application,I want preserve databases value when i update lates download

    for Update framework of AIR Application, I want preserve databases when i update lates download ,Right now when i ta
    ke latest from server it will remove my database  value and i i want ot preserve my database value.
    Please any one can guide me in this?

    Ya it is in Application directory...
    in windows  :: D:\FlexWorkSpaceSVN\YSIPrototype\bin-debug\data\YSIDB.db
    Thanks
    Sunil

  • Using both Enterprise library and Entity framework as DAL for same application

    We have been using EF for large amount of data  retrieval in our current application. We faced performance related issues with using EF with large data retrieval and manipulation.
    We need to extend the same project with some additional functionality similar to what currently exists in the application and uses EF.
    For the new functionality, we do not want to use EF and want to use enterprise library for Data access.
    My question is if we use both entity framework for parts of the application data access mechanism and enterprise library for other parts of application data access, are there any known issues?
    if there are any best practices to be followed please share .

    We have been using EF for large dataset retrieval in our current application. We faced performance related issues with using EF for large data set's  .
    Dataset? What are you talking about?  If you are using the salad bowl, the dataset with datatables, then here is the reason not to use them.
    http://lauteikkehn.blogspot.com/2012/03/datatable-vs-list.html
    My question is if we use both entity framework for parts of the application data access mechanism and enterprise library for other parts of application data access, are there any known issues?
    What is Entlib going to buy you in performance? It's going to buy you nothing. You'll be better of going to the EF backdoor, use SQL command objects, inline T-SQL, sprocs, datareder and using custom objects or objects off of the virtual model returning a
    single object or objects in a collction., if you are concerned about performance.
    http://blogs.msdn.com/b/alexj/archive/2009/11/07/tip-41-how-to-execute-t-sql-directly-against-the-database.aspx
    You'll probably be better of going to Entity SQL, using a datareader, collection and using custom objects or objects off of the model, if you are concerned about query performance.
    https://msdn.microsoft.com/en-us/library/vstudio/bb738684(v=vs.100).aspx
    https://msdn.microsoft.com/en-us/library/vstudio/bb387145(v=vs.100).aspx
    https://msdn.microsoft.com/en-us/library/vstudio/bb399560(v=vs.100).aspx
    My question is if we use both entity framework for parts of the application data access mechanism and enterprise library for other parts of application data access,
    are there any known issues?
     A nightmare, no consistency and complete Helter Skelter is what I see. Been there and seen it in action with different technologies doing the same thing in a solution.

  • Framework for creating Flash applications in AS3

    Can anyone suggest a good framework for developing Flash AS3 applications? I have worked on two Flash frameworks till date: GAIA and PureMVC.
    While GAIA is more focused on Website development and I find PureMVC a bit complex as I was not able to find anywhere the best approach to use the framework efficiently.

    Very delayed reply on this one, but I thought still worth mentioning a year after the fact.  Over the last couple of years, working in a number of ad agencies, I've progressively built my own Flash CMS framework called Redblox (http://redblox.ca). 
    It's a framework I'm positive you've never seen the likes of before!  Redblox uses XML files as a blueprint to recursively build you're entire website.  Redblox framework concentrates on separating core functionality from behavioural functionality (see website for more info on that). Every component (ie, textfield, image, menu, layout, scrollbar, video player, everything!) is represented as an XML node within a larger XML structure and therefore its parameters, animations, behaviours and functionality can be added/updated/deleted directly within the XML. Consequently, using Redblox' integrated visual XML Editor allows users the ability to make these changes directly at runtime.  Simply CTRL+CLICK on any item/component while viewing the website in editor mode and the Redblox XML Editor tool will display all the information on that component to add/update/delete. Once users have made their changes, users can then save the XML blueprint of the website back to file.  Its really that simple.
    I've only recently made this framework open-source, wanting to take a new direction in its development.  I've used this framework to build microsites for Nike Training Canada (Olympics & World Juniors Hockey), Alexandre Keiths, Rogers, Purina to name a few.
    Just check out the site, you'll love it right away!
    Cheers,
    Jason Thomas

  • No suitable driver for mysql in oracle application  server  portal 10g

    Hi all
    i want to run my portlet with mysql4.1 database from "oracle application server portal 10g".
    i did all configuration in data source and also i kept mysql connector jar file into all oraclehome/jdbc/jlib folder.
    Mysql
    General
    Name :: helloMysql(jndiname)
    Description :: helloMysql
    Data Source Class :: com.mysql.jdbc.jdbc2.optional.MysqlXADataSource
    JDBC URL :: jdbc:mysql://localhost:3306/database?relaxAutoCommit=true
    JDBC Driver :: com.mysql.jdbc.driver
    Datasource Username and Password
    Username------------>(user name)
    password-------------->(password)
    JNDI Locations
    Location== jdbc/helloMysql
    jdbc/blogOracle== jdbc/XA/helloMysql
    EJB Location == jdbc/XA/helloMysql
    Connection Attributes
    Connection Retry Interval (seconds)====1
    Max Connection Attempts===empty
    Cached Connection Inactivity Timeout (seconds)===30
    remaing all are empty
    when i run the portlet, then i am getting "No suitable driver" in my portal page.
    i want check server console or server log for oracle application server portal.
    please help ,where to find server log?
    Any suggestions or help from your side.
    Thanks in advance.
    Raju

    I think you're trying to connect to a database in a diferent host than the Web Server.
    This is possible in applcations, but not in applets, who only can open TCP connections to the same machine who served the page.
    To do that, yo should use a Data Gateway to establish the connections (IDSServer, and so on). I think that installing Oracle's Connection Manager in the same machine than the Web, it would run.
    null

  • SSO for External application not part of the portal framework

    Greetings,
    I am desperate!!!
    I am trying to do the following:
    I have a pl/sql application that presents to the user a set of external applications links.When the user activates a link, I would like to make a call the SSO server so it can do external application login.
    I know I can configure the external applications as described in the SSO admin guide.
    Unfortunately the API to query the SSO server for external application mapping is not public.
    ANY IDEAS ON WHERE I CAN GET THIS INFO??
    Every thing I have read says that external applications can be accessed through Portal. This is not my case. I can use any packages or classes available by the SSO server to portal, but MY APPLICATION IS NOT A PORTAL.

    I have similar kind of requirements for Single sign-on to external web applications.
    But in my applications I have to auto-generate random userid & password for different external web applications.
    These uids & password are exported to external applications, which upon recieving creates user in their applications.
    So, actual user will never have access to these credentials(uid &pwd).
    So, how can I cutomize the Portlets to do the first time SSO when user is created & their credentials to external apps are stored to OID.
    Any idea Barry..
    Bye

  • How can i create datasource on apache server for ADF application?

    Hi All,
    i my use case i have created simple adf application using ADF BC and want to deploy on Apache server 6.x.
    So my question is that  how can i create Data Source i have goggling and find  two different way to do this.
    1. write following line of code on apache server conf/Context.xml file.
    <Resource name="jdbc/TestDB" auth="Container"
                  type="javax.sql.DataSource"
                   driverClassName="oracle.jdbc.OracleDriver"
                  url="jdbc:oracle:thin:@localhost:dst"
                  username="jagrandb" password="jagrantest" maxActive="20" maxIdle="10"
                  maxWait="-1"/>
    but when i have used this way i got following exception.
    org.apache.tomcat.dbcp.dbcp.PoolingDataSource$PoolGuardConnectionWrapper cannot be cast to oracle.jdbc.OracleConnection
    check link-
    https://forums.oracle.com/thread/2564233
    2. write following line of code apache conf/Server.xml file
    <GlobalNamingResources>
        <!-- Editable user database that can also be used by
             UserDatabaseRealm to authenticate users
        -->
        <Resource name="UserDatabase" auth="Container"
                  type="org.apache.catalina.UserDatabase"
                  description="User database that can be updated and saved"
                  factory="org.apache.catalina.users.MemoryUserDatabaseFactory"
                  pathname="conf/tomcat-users.xml" />
    <Resource name="jdbc/TestDB" auth="Container"
                  type="oracle.jdbc.pool.OracleDataSource"
                  description="User database that can be updated and saved"
                  driverClassName="oracle.jdbc.driver.OracleDriver"
                  factory="oracle.jdbc.pool.OracleDataSourceFactory"
                  url="jdbc:oracle:thin:@//172.31.43.207:1521:dst"
                  username="jagrandb" password="jagrantest" maxActive="20" maxIdle="10"
                  maxWait="-1"   />
      </GlobalNamingResources>
    and add this line in context.xml file inside <context> tag
    <ResourceLink global="jdbc/TestDB" name="jdbc/TestDB" type="oracle.jdbc.pool.OracleDataSource"/>
    but when i have run application i have got following error
    log-
    javax.servlet.jsp.JspException: Unable to get connection, DataSource invalid: "java.sql.SQLException: invalid arguments in call"
      at org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.getConnection(QueryTagSupport.java:298)
      at org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.doStartTag(QueryTagSupport.java:181)
      at org.apache.jsp.test_jsp._jspx_meth_sql_005fquery_005f0(test_jsp.java:110)
      at org.apache.jsp.test_jsp._jspService(test_jsp.java:63)
      at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
      at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
      at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
      at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
      at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
      at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
      at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
      at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
      at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
      at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:857)
      at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:565)
      at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1509)
      at java.lang.Thread.run(Thread.java:662)
    Aug 2, 2013 5:17:21 PM org.apache.catalina.core.StandardWrapperValve invoke
    SEVERE: Servlet.service() for servlet jsp threw exception
    javax.servlet.jsp.JspException: Unable to get connection, DataSource invalid: "java.sql.SQLException: invalid arguments in call"
      at org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.getConnection(QueryTagSupport.java:298)
      at org.apache.taglibs.standard.tag.common.sql.QueryTagSupport.doStartTag(QueryTagSupport.java:181)
      at org.apache.jsp.test_jsp._jspx_meth_sql_005fquery_005f0(test_jsp.java:110)
      at org.apache.jsp.test_jsp._jspService(test_jsp.java:63)
      at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
      at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
      at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
      at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
      at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
      at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
      at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
      at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
      at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
      at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:286)
      at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:857)
      at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:565)
      at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1509)
      at java.lang.Thread.run(Thread.java:662)
    so what is the solution how to create datasource on apche server which suitable for adf application?
    when i test data source using  following code used 1. way as i mentioned above  its running fine bt not for second.
    <%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql" %>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
    <sql:query var="rs" dataSource="jdbc/TestDB">
    select empname from pay_emphdr where empcd='JK1306'
    </sql:query>
    <html>
      <head>
        <title>DB Test</title>
      </head>
      <body>
      <h2>Results</h2>
    <c:forEach var="row" items="${rs.rows}">
        Foo ${row.empname}<br/>
    </c:forEach>
      </body>
    </html>
    please help me. it is very urgent.
    thanks in Advance
    Manish

    Hi Lindalnci
    i have already tried  this tutorial and in my post i have defined first way to do using this procedure.
    in that case i have got following exception as i have mentioned above
    org.apache.tomcat.dbcp.dbcp.PoolingDataSource$PoolGuardConnectionWrapper cannot be cast to oracle.jdbc.OracleConnection

  • Default Code Generation for a Custom Class for an Application Module

    hi all
    Oracle® Fusion Middleware
    Fusion Developer’s Guide for Oracle Application Development
    Framework
    11g Release 1 (11.1.1)
    with Jdeveloper TP3 ,
    By default, the application module Java class will look similar to what you see in
    Example below when you've first enabled it. Of interest, it contains:
    ■ Getter methods for each view object instance in the data model
    ■ A main() method allowing you to debug the application module using the
    Business Components Browser
    [package devguide.model;
    import devguide.model.common.StoreServiceAM;
    import oracle.jbo.server.ApplicationModuleImpl;
    import oracle.jbo.server.ViewLinkImpl;
    import oracle.jbo.server.ViewObjectImpl;
    // --- File generated by Oracle ADF Business Components Design Time.
    // --- Custom code may be added to this class.
    // --- Warning: Do not modify method signatures of generated methods.
    public class StoreServiceAMImpl extends ApplicationModuleImpl {
    /** This is the default constructor (do not remove) */
    public SRServiceImpl() { }
    /** Sample main for debugging Business Components code using the tester */
    public static void main(String[] args) {
    launchTester("devguide.model", /* package name */
    "SRServiceLocal" /* Configuration Name */);
    /** Container's getter for YourViewObjectInstance1 */
    public ViewObjectImpl getYourViewObjectInstance1() {
    return (ViewObjectImpl)findViewObject("YourViewObjectInstance1");
    // ... Additional ViewObjectImpl getters for each view object instance
    // ... ViewLink getters for view link instances here
    when i try this i didn't find the default generation for main method
    have i do something before enable custom java file for Application module
    hope to hear from you soon

    hi nonStop
    Since you are using Jdeveloper TP3, this might be a better place to ask your question:
    "JDeveloper and OC4J 11g Technology Preview"
    JDeveloper and OC4J 11g Technology Preview
    success
    Jan Vervecken

Maybe you are looking for

  • How to find a badi and how to find the method/methods for a transaction?

    Hi all, i need to give a text either while creating customer (vd01) or changing customer(vd02)...thsi is via extras->texts.....then I have to double clik the text and go to change editor...and then i have to clik on insert line and then choose text e

  • I'm at the end of my wits. Please help.

    Greetings, My Acrobat 8 will not print in Portrait Mode. It is set to print in this mode as well as all my three printers. However, Preview in Acrobat shows the size of the page 11X17 in portrait mode, and when I click on it it switches to 9X11 Lands

  • sbttest filename , libobk.so could not be loaded.

    trying to take the backup of new DB & getting these messages in logfile RMAN-03009: failure of allocate command on ch05 channel at 12/14/2006 15:51:10 ORA-19554: error allocating device, device type: SBT_TAPE, device name: ORA-27211: Failed to load M

  • Zen Extra harddisk prob

    My Zen Extra will only go into rescue mode when turned on. If I then proceed to try a "Format All" or a "Reload OS" it says I have a harddisk problem. I have tried to "Clean Up" but it doesnt do anything, it just sits there in recovery mode. I have t

  • Imported numbered folders not listed In sequential order

    I just imported 40 folders into my Library. All are numbered (01_folder, 02_folder, etc.). In LIBRARY > Photos, they list in random order, which was not what I wanted and kind of a problem for what I am trying to organize. Is there a way to sort or d