Servlet and 64-bit data model

I have a program which have to be executed with 64bit data model in order to execute probably.
(for example ... the program is ABC.java)
java -d64 ABC
If I am going to create an instance of the class ABC and execute its methods within a servlet program, will there be any problem ?
Is there any configuration required for the Tomcat in order to access servlet like this ?

I have a program which have to be executed with 64bit
data model in order to execute probably.
(for example ... the program is ABC.java)
java -d64 ABC
If I am going to create an instance of the class ABC
and execute its methods within a servlet program,
will there be any problem ?i was thinking you meant you'd be calling a servlet from a 64-bit program, and in that case I'd think no prob. but if you're talking the other way around, you've got issues. firstly, you cannot call another app from your servlet unless you're doing RMI or something. i think you should clarify EXACTLY what you want to do and we can evaluate better

Similar Messages

  • How to specify 32-bit data model in JNLP file?

    My customer has both 32-bit and 64-bit JREs installed. Our application loads native libraries that require them to run in a 32-bit process. The customer reports that the libraries are not loading, because when they download the JNLP file, the browser invokes the 64-bit JRE. The JNLP spec provides a lot of control, but it doesn't seem to provide control over the choice between 32-bit and 64-bit data models.
    I did see in the documentation that java-vm-args would accept "-d32", but subsequently someone reported that this caused errors to occur. In bug 6907802, that problem was "fixed" by changing the documentation to reflect that "-d32" was only supported on Solaris.
    So is there no way to specify in the JNLP that this application requires a 32-bit JRE? If not, is there a plan to introduce this functionality in the future?

    mosquitobytes wrote:
    ..So is there no way to specify in the JNLP that this application requires a 32-bit JRE? If not, is there a plan to introduce this functionality in the future?I'd imagine your best chance of a reply is to put a comment on the bug report (http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6907802).

  • J2sdk1.4.2_12 does not support the 64 bit data model

    Hi guys,
    I need support for instalation NW2004R1 for windows x64bit.
    in the step "define parameters" I need set JDK Directory, I setting C:\j2sdk1.4.2_12 and when click in botton next, I receive the message " The JDK installed in directory C:\j2sdk1.4.2_12 does not support the 64 bit data model. Choose a different JDK. "
    I search documents but not found.
    Anybody can help-me ???
    thanks
    Henrique Mattos.

    Hi,
    You can get more information related to your issue from
      service.sap.com
    https://sdlc2e.sun.com/ECom/EComActionServlet;jsessionid=606D9ABC1A37F8F6D7517A9B77ACA38B
    Regards
    Agasthuri Doss

  • Prob in joining Query1 and Query2 in Data Model

    Hi,
    I m facing a prob. in joining Multiple queries
    Under data model I've created 2-3 queries which I've to join internally and in my Query1 only 1 bind variable is there, for which i've created a parameter
    but for Query2 and Query3 I m going to user one column value of Query1 as parameter.
    When i m doing this the Xml formed returns only Query1 value and Query2 and Query3 comes as blank.
    Eg.
    Query1 : select deptno,dname from dept where deptno=:p_deptno <:p_deptno is a parameter created in parameter list>
    Query2 : select empno,ename,mgr from emp where deptno=:deptno <where :deptno, i m expecting to come from Query1>
    but it not happening
    whereas my Xml comes as display below:
    <DATA>
    <Q2>
    <Q2_ROW>
    <DEPTNO>10</DEPTNO>
    <DNAME>ACCOUNTING</DNAME>
    </Q2_ROW>
    </Q2>
    <Q1 />
    </DATA>
    tanks in advance for replying
    Regards/goutam

    Personally, I have had a hard time doing what you are asking for using netui tags. I have had the same case, and asked the person in my team to just return a collection of value objects and then iterate through it without the repeater tag. To use the checkbox, I have had to use a String[].
              Kunal

  • Where to find logical and/or technical data model?

    Hi all,
    I am new to SAP and trying to figure out where I can best find information on the logical/technical datamodel, including entity/table and field definitions. I also am looking forminfo on primary keys, foreign keys, relationships between entities/tables, data model overviews/graphs. What places should I go to get this information?
    So I am NOT looking for a specific table, I would like to get a general overview of the logical/technical data structure.
    Thanks, Paul

    Hi Paul,
    SAP has several thousands of tables (not including structures, views, etc.) So, an overview look on the whole database would be rather problematic. You can search the http://help.sap.com for the functional info. For the technical one, you can go to SE84 and find the requested info there. I suggest you to explore the technical info concentrating on specific issue, otherwise you will sink in the sea of SAP objects.
    Regards,
    Eli

  • Typical report and it's data model!

    Hi,
    i have a data source which has only three fields, namely user name, date, availability of the user ( it is character string of length 1 just displays A if he is availbale and displays N if he is not availbale on a given date).
    now when i want to create cube , it should have at least one key figure, where as in my case no key figures are present in the available three info objects.
    is der any chance for me to design this ?
    Many thanks in advance.
    Thanks,
    Ravi

    Roberto,
    Thanks again!
    yes,i was talking about that KF only.we have data source (made by FM and ES) which is perfectly working for the three fields which all are characteristics as i told u before!
    But since we cannot make any infocube with out KF , i wish to have KF for only making cube!since u suggested to go for any counter which would be acted as appending records for each user in the result set!
    now if i want to load this field in the data source, i need to change the logic of FM, which i am not so comfortable and quite lengthy too.
    My question to u is whether i can go ahead by simply creating KF and  in Transfer rules or update rules include a simple logic of giving numbers for each record rather than changing the code in FM in R/3 ( which i feel is more complex )?
    Thanks,
    Ravi

  • Many pages and complex data model in JHS app

    I am using JHS to create an application containing data that is structured something like:
    - Country
    - Company
    - Department
    - Employee
    - Payments Details
    I have created entity and view objects corresponding to each of these and the appropriate accessors/view links. We need the user to be able to search, work on data and 'drill down' from any level (not always starting with company). In order to make this possible my JHS application has 5 'top level' tabs corresponding to each of the above entities. From each of these top level pages users can drill down to the children.
    This works but we end up with many pages and a large data model with lots of replication and nesting.
    Country - 5 pages
    Company - 4 pages
    Department - 3 pages
    Employee - 2 pages
    Payments - 1 page
    total 15
    You can picture how the data model is structured. Obviously this is a very simple example but I hope it illustrates my concerns. We have so many pages that post-generation changes are going to be difficult to manage. I'm also worried about the size and complexity of the data model. In this case views are almost all entity based so I guess the data is only cached once but supposing they were not?
    Are we using JHS in the best way ? perhaps I'm overcompilcating it ?
    I have started to rewrite the JHS generated application so that it (almost) always reuses the same top level generated pages (with some modifications). When the user wants to navigate to a child I modify the whereClause of the target ViewOjbect appropriately, reexecute it and forward to the corresponding 'top level' page. This approach seems to work well, cuts down the number of pages enormously and simplifies the data model (and has enabled me to put breadCrumbs in).
    In doing this though, am I creating work for myself that JSH could have done if we had used it differently in the fist place?

    This sounds like a valid approach in your situation. We have been playing with the idea of having something like 'Group Links' where you can generate navigation items from one group to the other. Then, you would need to have one, 5 level deep nested group, and 4 other top level groups to provide the search&select on each of the nested groups, but they themselves would not need to have nested groups, but a navigation link to the nested groups in the 5-level deep group.
    Although nice and simple in theory, the details are a bit tricky to work out with all the possible layout- and samePage settings, so we have not implemented this yet. So your approach seems a valid one. If you have any suggestions on a way to generate what you are now doing manually, we'll be interested.
    Kind regards,
    Peter Ebell
    JHeadstart Team

  • Issue while creating Data Model in BI Publisher and logging into xmlpserver

    Hi All,
    We are facing an issue in OBIEE 11.1.1.5.
    If we are logging with Non Admin Id (other than weblogic) and select New Data Model, a blank screen is coming. Where as, if we use Admin Id, we are getting screen as usual for creating data model. There were some blogs mentioning to change Priviledges for  SOAP access, but that approach is also not working.
    Further, we are also not able to open xmlpserver with Non Admin Id.
    Any help or pointers would be great.
    Regards,

    how about pasting the content of your data template here, so that forum members can see what could be the problem.

  • Including table and column comment in the Data Modeler

    Hi all,
    I used Oracle's SQL Developer Data Modeler (Version 3.0.0.665) and created a data model for my project. I e-mailed a PDF format of the data model to our Systems Analyst. She asked if I could re-create the data model and include table and column comments. Is this a possibility and if so how is this done?
    Thank you for your input,
    Seyed

    Hi Kent,
    Using the information you provided and Oracle’s Working with SQL Developer Modeler Reporting I did the following:
    1) Created a Reporting Schema User
    1.1) Using my Oracle 10g Personal Edition, I created a new user and gave him DBA administrative privileges
    2) Exported Relational Design to Reporting Schema
    2.1) Opened the Relational Design
    2.2) Exported it to the Reporting Schema. Note, I never got a message ‘Design has been exported successfully’.
    3) Reviewed the Report Results
    I think exporting the relational design was not successful, and didn’t get any error messages. Had step 2 completed successfully, I would have reviewed the Report Results in SQL Developer. By the way, I know I have marked this topic as closed, but would like to learn your method too.
    Thank you for your help,
    Seyed

  • MDG - Material and Financial Data Models

    Hi,
    Can anyone help me to get standard business content as per latest version for MDG-Material and MDG-Financial Data Models.
    Thanks,
    Narendra

    Please go through the below link it talks about all the latest updates.
    Configuration and Enhancement of SAP Master Data Governance

  • Passing vectors into JSP from Servlet and passing data back to Servlet

    I have been building an MVC application.
    It has a controller which instantiates classes and evokes methods to
    populate vectors. These vectors are then passed into a JSP. This part of the application works fine.
    What I am having trouble with is a new JSP I have designed; this will
    display the data that is actioned by the FORM action. This is actioned
    based on the Search criteria entered by the user. Based on this a further vector is populated and brought back to the JSP as a vector
    and this is rendered via the TABLE tag. Again this works fine.
    Against each of the rows displayed, I have a print checkbox which can be checked by the user. On checking the records they want to print, they should then hint a Print button which should go back to the Servlet and print the data. THIS IS WHERE I HAVE THE PROBLEM. On going
    back to the servlet the checkbox values are not displayed, rather
    the values that initially populate the JSP. How do I get these new values back into the vector and hence accessible from the Servlet.
    Any help with be very much appreciated.
    Chris

    Thanks for this.
    Just to clarify I am not using Struts.
    What I am having difficulties with is the fact that:
    I can't get the checked values back to the Servlet - they keep the values they have in the bean - so as part of instantiating the bean class I set the value of the item to 'off'. The user will then check
    the checkbox which should presumbably set the value to 'on'. This isn't happening because the setter method of the bean is not evoked again
    because I don't come into this JSP again - the Servlet has finished here
    and now needs to print the records. It can't do this because as
    far as it is concerned nothing has changed since it last passed through
    the vector to the JSP.
    Even when I do the following:
    Enumeration paramNames = request.getParameterNames();
    String param = null;
    while (paramNames.hasMoreElements())
    param=(String)paramNames.nextElement();
    System.out.println("parameter " + param + " is " +
    request.getParameter(param));
    what comes back is the valus of 'off' as opposed to 'on'.
    The other thing is that 'request.getParameterNames()' only works
    with the first record in the vector, i.e. it doesn't fetch any other
    records that are rendered in the <TABLE> tag.
    In desperation is there anybody out there who can help me.
    Thanks
    Chris
    I am going to assume you are using a MVC framework
    like Struts or very similar (I am assuming that from
    the language you are using).
    When the servlet passes the vector back to the JSP
    page and you render the HTML that is passed back the
    client your Vector is gone. The Vector is not
    available at the HTML level that is being viewed at
    the browser.
    When the user selects the checkboxes and submits the
    page (by clicking the print button) the controller
    servlet (called ActionServlet in Struts, yours maybe
    called something else) forwards the request to the
    appropriate JavaBean and Servlet to process the
    request. Either the JavaBean has to recreate the
    Vector (not recommended) or the processing Servlet can
    (better). You can do this by recreating the Vector
    from scratch for the HttpRequest parameters or, at the
    time of the initial request, saving Vector to a
    session and then updating with the data you get back
    from the client (again from the HttpRequest
    parameters).
    Either way you have to work with
    HttpRequest.getParameter().

  • Data Modeler - Compare Models and DDL file

    I have been generating DDL files by data dictionary import. In the Compare Models window, the orange triangles with exclamation marks show the tables that are somehow different in database and in my data model.
    That would be very helpful feature, if it didn't notice the kind of information that never goes to database. For example I have used the Notes-field and Table Types and the compare functionality shows that those information are missing in database. In other words, it shows the exclamation marks in every table even if I had changed one table in my model.
    Is there some reason for it to work like this? Or is this going to be fixed in the future?

    Ok, that's good to hear!
    Now I have another thing about DDL that I noticed. I have a sequence in my database that has cache size of 20. I removed the cache size from Data Modeler and made the DDL file with import from data dictionary. The DDL file was empty, so Data Modeler didn't notice that the sequence had changed.

  • How to load data and design data model

    Hi,
    We have data in excel(size is appx. 60 MB) of 24 month, excel has column like Year, Month, Region, Affiliate KPI and their value.
    How can we load excel data into dashboard and design the data model?
    Please find the attached file for reference.
    Any help will be appreciated.
    Thanks,
    Ram Krishna

    File is corrupted, you can import the excel into dashboard using import button.
    Design you need to come up with your navigation first and what you need to display in dashboard. If possible explain that we can help you better on this.

  • How to install Data Modeler

    Hi,
    I downloaded Sqldeveloper data Modeler for Windows 32 bit including JRE. The data modeler has to run on windows 7 64 Bit as well as the sql developer runs
    After unzipping this file I tried to start the datamodeler. When I starter the 32 Bit version I got the error:
    Cannot be startet becaus MSVCR71.dll is not on the computer.
    When I tried to start the 64 Bit version I got the error
    Unable to launch the Java Virtual Machine located at path ..\..\jdk\jre\bin\client\jvm.dll
    What must I do to install the datamodeler?
    Please help me.
    Regards
    Siegwin

    Hi Siegwin,
    The download including JRE only includes a 32 bit JRE.
    This jre includes a copy of file msvcr71.dll (in folder datamodeler\jdk\jre\bin). However it seems that in some circumstances the system does not find this file.
    There have been several message threads about this, both for SQL Developer and for Data Modeler.
    For example, from https://forums.oracle.com/forums/thread.jspa?messageID=10624958 it appears that copying msvcr71.dll to the Windows\System32 folder may solve the problem,
    or starting Data Modeler using the datamodeler.exe file in folder datamodeler/datamodeler/bin may help. (This brings up an additional command prompt window.)
    Message Re: Oracle Data Modeler Installation guide may also be relevant.
    To run Data Modeler in 64 bit mode, you will need to provide your own 64 bit JRE.
    If you edit the file datamodeler64.conf (in folder datamodeler\datamodeler\bin) and remove the line starting with "Set JavaHome", next time you attempt to start 64-bit Data Modeler it should ask you for the location of the java.exe file in your 64 bit JRE.
    There is now a forum specifically for Data Modeler issues: SQL Developer Data Modeler
    David

  • The JDK installed in directory /usr/java14 does not support the 64 bit data

    I'm installing the Java Add-in for the ECC 60 SR1 and suddendly during the instalation of the module for the creation od the db schema I recive the error:
    "The JDK installed in directory /usr/java14 does not support the 64 bit data model"
    I'm using the JSDK 1.4_2 SR3 for AIX, and till now this JSDK was the rigth JSDK for the installation.
    What does it means ? DO I have to download the latest JSDK for AIX ?
    The only thing changed at Os level before of that error on the JSDK is the installation of the latest perating system patch, but I should be very surprised if there is a relation with the error I'm reciving now.
    Regards

    I do have the same problem. For me the java worked with AIX 5.2 but failed with AIX 5.3
    bash-2.05b# which java
    /usr/java14/.private142/bin/java
    bash-2.05b# java -fullversion
    java full version "J2RE 1.4.2 IBM AIX build ca142-20060421 (SR5)"
    bash-2.05b# uname -a
    AIX vcsaix101 2 5 00C888AC4C00
    bash-2.05b# which java
    /usr/java14/.private142/bin/java
    bash-2.05b# java -fullversion
    java full version "J2RE 1.4.2 IBM AIX build ca142-20060421 (SR5)"
    bash-2.05b# uname -a
    AIX vcsaix11 3 5 00C7690E4C00
    Any idea?
    Regards,
    Venkat

Maybe you are looking for

  • Can we get data from business views  in CR 2008/XI?

    Hi All, Can we get data from business views  in CR 2008/XI? If its possible, pls let us know how to get connect with Business View in both of these versions and what is the tool that we have to use to create Business Views. Thank you, Krishna Pingali

  • ORA-12154 when using Database Link

    We're running 11r2 on our servers. I have a primary db and a standby db, using Data Guard. The standby is open for read-only querying. We are not using ASM. The primary (and thus the standby) have a PUBLIC database link to a third db server. When I r

  • Is it possible to export/import only a page of an application?

    Hi, I tried to export one page of an application and this works correctly; then I import the same page in another application without problem, but when I try to install the page I obtain an error. Is this a bug? Can anyone help me? Thanks.

  • How do i install my ipod classic without the cd

    i recently got a new ipod(classis 80 gb) and i had one before(ipod nano)-it broke-and when i plug it in nothing happens i've been trying dif things but i can't seem to get anywhere any help??????????

  • Need Help with a getText method

    Gday all, I need help with a getText method, i need to extract text from a JTextField. Although this text then needs to converted to a double so that i can multiply a number that i have already specified. As you may of guessed that the text i need to