How to make compiler do inline optimization in WTK?

Hello:
I'm a freshman in WTK. I found that my project is running very slow, so I wrote the following test to find the time cost of function call. I found that in this test, it spent 94ms, 1076ms and 2016ms in simulator, for 0, 1, and 2 function calls in each cycle (300,000 times).
By this result, I think function call may be very expensive and may became the bottleneck of performance in my project.
public static runTest(){
        long i = 0;
        long j = 0;
        long begin = System.currentTimeMillis();
        int times = 300000;
        for (i = 0; i < times ; i++){
            j = j + i;
        long end = System.currentTimeMillis();
        System.out.println("The result no call is " + (end - begin) );
        begin  = System.currentTimeMillis();
        for (i = 0; i < times ; i++){
            j += set(i);
        end =System.currentTimeMillis();
        System.out.println("The result 1 call is " + (end - begin) );
        begin  = System.currentTimeMillis();
        for (i = 0; i < times ; i++){
            j += set2(i);
        end = System.currentTimeMillis();
        System.out.println("The result 2 call is " + (end - begin) );
private static long set2(long i) {
     return set(i);
private static long set(long i) {
        return i;
}I work in eclipse ,and make sure i've checked "Inline finally blocks" check box.
I also run the same code in pc, and find the function call may have been optimized to "inline" by compiler (The times changed to 300,000,000, and result is 2016ms, 2281ms, and 2266ms), i also make sure changed the "compiler compliance level" to 1.3
In an ideal situation, the compiler can find "set(i)" is exactly "i" and change all"set(i)" to "i";
I wonder if the compiler can change some function to such "inline" in WTK. I don't know how compiler works in WTK, but as a freshman in WTK, i think there may have some optimization option i don't know. Can someone tell me how to make compile do this stuff?
Thx a lot!

...javac make something inline while WTK not...I doubt this. I think that code that was inlined by javac, will remain inlined when executed by WTK. You can check that in more details at compiler forum if needed. Javac remains the same, inlines are there - I don't think this changes.
What WTK probably can (and maybe even should) change is *hotspot* optimization settings when it emulates execution of MIDlets by real device.
As for your problem, could it be described as follows: MIDlets run slower than you'd expect of a typical desktop Java applications?
If yes then WTK User Guide seem to have an explanation for that: +"...Compared to the desktop-based emulator, a real MIDP device usually has a slower processor, less memory, and a slower network connection, and might have a different type of display. The Sun Java Wireless Toolkit for CLDC enables you to simulate the constrained environment of a real device..."+ (quoted from chapter Adjusting Emulator Performance). To me this reads like WTK forces Java machine to slow down execution of MIDlets in order to make it feel closer to a typical mobile device.

Similar Messages

  • How to make compilation faster?

    Hi,
    I have a test project with one test.Every time,I  click "Execute FlexUnit tests",the progress bar shows "launching flex  unit".It takes almost 1-2 minutes.Why is it so? Can I do something about  this?
    regards

    Hi:
    Unfortunately this doesn't have anything to do with the FlexUnit framework, it is Flash Builder and Eclipse.
    Personally though, I rarely use the Execute FlexUnit Tests.  Here is my workflow and, it if works for you, I find it much faster. I make one top level suite that includes others. This means I can continue adding to it over time, but I am always running the same suite. I launch the FlexUnit tests once for that suite. They will run successfully and report their results in the FlexUnit panel.
    Then, instead of closing that browser, I keep it open in the background. I never again launch the tests from FlashBuilder, instead i just compile it through FlashBuilder, switch to the browser and refresh it. The results will still be sent to FlashBuilder, etc. but I find it to be significantly faster.
    HTH,
    Mike

  • [svn] 1608: This checkin makes public our modifications to Batik, which improve how the MXML compiler reports errors in CSS syntax.

    Revision: 1608
    Author: [email protected]
    Date: 2008-05-07 17:36:02 -0700 (Wed, 07 May 2008)
    Log Message:
    This checkin makes public our modifications to Batik, which improve how the MXML compiler reports errors in CSS syntax.
    Bugs: -
    QA: No
    Doc: No
    Reviewer: Jono
    Modified Paths:
    flex/sdk/trunk/modules/thirdparty/batik/resources/org/apache/batik/css/parser/resources/M essages.properties
    flex/sdk/trunk/modules/thirdparty/batik/sources/org/apache/batik/css/parser/AbstractDesce ndantSelector.java
    flex/sdk/trunk/modules/thirdparty/batik/sources/org/apache/batik/css/parser/AbstractEleme ntSelector.java
    flex/sdk/trunk/modules/thirdparty/batik/sources/org/apache/batik/css/parser/AbstractSibli ngSelector.java
    flex/sdk/trunk/modules/thirdparty/batik/sources/org/apache/batik/css/parser/CSSLexicalUni t.java
    flex/sdk/trunk/modules/thirdparty/batik/sources/org/apache/batik/css/parser/DefaultCondit ionalSelector.java
    flex/sdk/trunk/modules/thirdparty/batik/sources/org/apache/batik/css/parser/DefaultElemen tSelector.java
    flex/sdk/trunk/modules/thirdparty/batik/sources/org/apache/batik/css/parser/ParseExceptio n.java
    flex/sdk/trunk/modules/thirdparty/batik/sources/org/apache/batik/css/parser/Parser.java
    flex/sdk/trunk/modules/thirdparty/batik/sources/org/apache/batik/css/parser/Scanner.java
    Added Paths:
    flex/sdk/trunk/modules/thirdparty/batik/sources/org/apache/batik/css/parser/AbstractSelec tor.java

  • How to make jar file for this compilation method ?

    can any one tell me how to make jar file for this compilation
    D:\java\browser\IEInJava>javac -classpath jdic.jar;. IEInJava.java
    D:\java\browser\IEInJava>java -cp jdic.jar;. IEInJava
    *this is a compile code:-*
    D:\java\browser\IEInJava>javac -classpath jdic.jar;. IEInJava.java
    *and this is a run code:-*
    D:\java\browser\IEInJava>java -cp jdic.jar;. IEInJavanow how make JAR file ?

    Assuming IEInJava only uses classes inside the jdic jar, this is one way. D:\java\browser\IEInJava> jar cf yourjar.jar IEInJava.classThen to run it you would use D:\java\browser\IEInJava> java -cp jdic.jar;yourjar.jar IEInJavaAnother way would use the jar manifest file to specify the Main-Class and Class-Path.

  • How to make date column sortable which has inline case in report

    Hi all,
    I have date column which has inline case to check for expiration and display text 'expired' along with date. This column is set to be sortable. On sorting, it is doing based on char not on date. How can I retain this inline case along with getting correct sort order on clicking column header ?
    Thanks!

    982185 wrote:
    Hi all,Welcome to the forum: please read the FAQ and forum sticky threads (if you haven't done so already), and update your profile with a real handle instead of "982185".
    When you have a problem you'll get a faster, more effective response by including as much relevant information as possible upfront. This should include:
    <li>Full APEX version
    <li>Full DB/version/edition/host OS
    <li>Web server architecture (EPG, OHS or APEX listener/host OS)
    <li>Browser(s) and version(s) used
    <li>Theme
    <li>Template(s)
    <li>Region/item type(s) (making particular distinction as to whether a "report" is a standard report, an interactive report, or in fact an "updateable report" (i.e. a tabular form)
    With APEX we're also fortunate to have a great resource in apex.oracle.com where we can reproduce and share problems. Reproducing things there is the best way to troubleshoot most issues, especially those relating to layout and visual formatting. If you expect a detailed answer then it's appropriate for you to take on a significant part of the effort by getting as far as possible with an example of the problem on apex.oracle.com before asking for assistance with specific issues, which we can then see at first hand.
    I have date column which has inline case to check for expiration and display text 'expired' along with date. This column is set to be sortable. On sorting, it is doing based on char not on date. How can I retain this inline case along with getting correct sort order on clicking column header ?Note comments above regarding the importance of stating whether you are using a standard or interactive report.
    Here's 2 possible techniques, which you can modify to fit how you want "expired" values to be sorted:
    <li>{message:id=10609805}
    <li>{message:id=4175275}
    The second one is the best approach if using a standard report, or an interactive report in APEX 4.2.

  • How to make the Open/Save dialogue download the text file instead of JSP

    I am currently coding on a JSP program, which searches the database and writes the resultset into a file on the server, and then allows the client to download this tab delimited text file onto their local machine. But I met a problem, when the default Open or Save dialogue appears, it shows that it's trying to download the running JSP file from my local host instead of the newly-created text file. Despite this, when I click OK to either Open or Save the file, a warning dialogue will appear saying: The explorer cann't download this file, it's unable to find this internet site or something like that. I get no error message from the server but I was always told that Javax.servlet.ServletException: getWriter() was already called. What does this mean?
    I guess maybe this is caused by the mix use of outputStreams in my program. I don't know if there is a way to directly read the resultset from the database and then send it through outputStream to the client. My solution is: first create a file on the server to hold the resultset, and then output this file to the client. I did all these in one JSP program: Create file on the server, search database, and then read file and output the contents to client. Is this correct? I attached my code, please feel free to correct any of my mistake? Thanks!
    //global.class is a class dealing with database connection
    <%@ page language="java" import="java.sql.*,java.util.*,java.math.*,java.io.*,ises.*,frmselection.*" %>
    <jsp:useBean id="global" scope="session" class="ises.Global" />
    />
    <!--start to process data-->
    <%
    //get query statement from the session
    String sQuery = "";
    if (session.getAttribute("sQuery")!=null && !(session.getAttribute("sQuery").toString()).equals(""))
    sQuery = session.getAttribute("sQuery").toString();
    String path = "c:/temp";
    String fileName = "temp.TXT";
    File file= null;
    FileOutputStream fo = null;
    PrintStream ps = null;
    try {
         file = new File(path,fileName);
         if(file.exists()) {
         file.delete();
         file.createNewFile();
         fo = new FileOutputStream(file);
         ps = new PrintStream(fo);
    }catch(IOException exp){
         System.out.println("IO Exception: " +exp.toString() );
    java.sql.ResultSet recResults     = null;
    java.sql.Statement STrecResults = null;
    STrecResults = global.getConnection().createStatement();
    recResults = STrecResults.executeQuery(sQuery);
    ResultSetMetaData meta = recResults.getMetaData();
    int columns = meta.getColumnCount();
    String [] tempColumnName = new String[columns];
    String [] ColumnName =null;
    int DisColumns = 0;
    int unDisCol = 0;
    String sLine = "";
    if(recResults.next()) {     //if_1
    for(int n=0;n<columns;n++) {
    String temp = meta.getColumnName(n+1);
    if(!temp.equals("PROJECTID")&&!temp.equals("BUILDINGID")&&!temp.equals("HAZMATPROFILEID")) {
    sLine = sLine + "'" + temp + "'" + " ";
    tempColumnName[DisColumns] = temp;
    DisColumns ++;
    ColumnName = new String[DisColumns];
    }else {
    unDisCol ++;
    }//end for
    for(int i=0;i<(columns-unDisCol);i++) {
    ColumnName[i] = tempColumnName;
    ps.println(sLine);
    do{
    sLine = "";
    for(int n=0;n<(columns-unDisCol);n++) {
    String tempColName = recResults.getString(ColumnName[n]);
    if(tempColName==null) {
    sLine = sLine + "" + " ";
    } else {
         sLine = sLine + "'"+tempColName+"'" + " ";
    ps.println(sLine);
    }while(recResults.next());
    }     //end if_1
    recResults.close();
    recResults = null;
    STrecResults.close();
    STrecResults = null;
    %>
    <!--end of processing data-->
    <!--start of download.jsp-->
    <%
    //set the content type to text
    response.setContentType ("plain/text");
    //set the header and also the Name by which user will be prompted to save
    response.setHeader ("Content-Disposition", "attachment;filename=temp.TXT");
    //Open an input stream to the file and post the file contents thru the servlet output stream to the client
    InputStream in = new FileInputStream(file);
    ServletOutputStream outs = response.getOutputStream();
    int bit = 256;
    try {
         while ((bit) >= 0) {
         bit = in.read();
    outs.write(bit);
    } catch (IOException ioe) {
    ioe.printStackTrace(System.out);
    outs.flush();
    outs.close();
    in.close();     
    %>
    <!--end of download -->

    Thanks. I believe something wrong with this statement
    in my program:
    You are correct there is something wrong with this statement. Seeing how you are doing this in a jsp, not really what they're made for but thats another topic, the output stream has already been called. When a jsp gets compiled it creates a few implicit objects, one of them being the outputstream out, and it does this by calling the response.getWriter(). getWriter or getOutputStream can only be called once, other wise you will get the exception you are experiencing. This is for both methods as well, seeing how the jsp compiles and calls getWriter means that you cannot call getOutputStream. Calling one makes the other throw the exception if called as well. As far as the filename problem in the browser goes I'm guessing that it's in IE. I've had some problems before when I had to send files to the browser through a servlet and remember having to set an inline attribute of some sort in the content-dis header inorder to get IE to see the real filename. The best way to solve this is to get the orielly file package and use that. It is very easy to use and understand and does all of this for you already. Plus it's free. Cant beat that.
    ServletOutputStream outs =
    response.getOutputStream();
    because I put a lot of printout statement within my
    code, and the program stops to print out exactly
    before the above statement. And then I get the
    following message, which repeats several times:
    ServletExec: caught exception -
    javax.servlet.ServletException: getWriter() was
    already called.

  • How to make Help view well on both laptops and desktops

    Hi -- I'm trying to learn RoboHelp 7 and just created my first WebHelp project. I want to show it to a friend, but don't have a server I can publish it to, so I copied all the files onto my flash drive and put it on my laptop. It all works fine, which is a relief -- however, the custom colors are way off, and some of the screenshots are now too big, so the user would have to scroll (which can be annoying). I created it on my desktop and have been looking at it on a larger monitor (1680x1050), but the laptop is old (1024x768). The thing is, a lot of people might have to view it on 800x600.
    I couldn't find any information in RH's Help about how I should have set it up so that it views well on different systems. I'm hoping someone could please advise me as to what I should have done, and if there's anything I can do now to fix it, or point me to some information. I used Arial 10 pt for the text, and now it looks 12 pt. Should I have made it 8 pt? Is there a rule for how large an image should be to be viewed on a laptop and a desktop?
    One last thing, it's too large to put on a CD, so is does anyone know how to make this into an executable?
    Thanks in advance for any help you can give!
    Daryl

    Hi Daryl
    I use an eBook compiler to convert WebHelp to an executable file. You might investigate eBook compilers for that bit. However, I'm not sure how that would help you since a compiler will do little more than to take a swarm of WebHelp files and store them in a wrapper to create a single file. Generally you will end up with something that although it exists as a single file, is larger than what is inside.
    Are you SURE it's too big for CD? CD will hold 650 megs (700 if you buy the extended types).
    On the screen size issue WebHelp itself should adapt fine. Probably it's the images you are concerned with. And the general rule of thumb is to capture images at a reasonable size to begin with. Never EVER just insert a big ole image into RoboHelp and grab the sizing handle to make it smaller. It will still consume a larger amount of space and the quality will suffer badly. So the best approach is to copy the image at a reasonable size to begin with. Something that may fit nicely in the Topic Pane area as it is presented in the space provided by the lowest common denominator. In your case I believe you said that many are still at 800x600.
    Your 10 point text will still be 10 points at a smaller resolution. It will just look a bit different.
    Hopefully this helps... Rick
    Click here for Adobe Authorized Captivate and RoboHelp HTML Training
    Click here for the SorcerStone Blog
    Click here for RoboHelp and Captivate eBooks

  • How to Make Hair Appear in Front of and Behind an MC Object?

    Hello again,
      I am making a character with lots of hair. I would like to know how to make the hair appear both in front of and behind the Movie Clip object.
      I'll explain further. I have the "frontHair" connected to the "head" MC. When I pivot the head, a bare spot shows in an outlined shape of the arms/legs/torso. I thought I'd remedy this by making "hairBack" and then layer it behind the object. This opens up a can of troubles.
      I can't seem to get the "hairBack" to appear behind the torso and arms. Also, the "frontHair" is now blocking me from grabbing onto the arms and legs.
      It's crucial that this character has all of the hair, but I can't seem to figure out how to make it happen.
      Please, help!
    Thank you,
       Mike
    p.s. While returning from a beer run, I thought about masking. I'm still trying to work out the logic on this one.

    Thank you for replying. II didn't know which specific layers and objects you were referring to, but I figured out the problem I was having.
      I used only one newly created "hair" object and set it to "Guide" to get it out of the way (in a sense). I then selected all the body parts (movie clips) that I could and selected "Move to Front" for each one. I used the Selection Tool to move the head (with connected hair) out of the way. After doing this I was able to select the "torso"; which was previously hidden behind the Armature Layer. I then put the head back in place and I was set to roll.
      Ah, but then I encountered another error. My animations are set to 24fps, but they are moving at least 10 times slower. This happens within Flash and in the exported swf files.
    The topic deals with "text field variable names" errors and compiler errors dealing with "Symbol 'fps' ".
    This is the address to that topic. http://forums.adobe.com/thread/1009225
    Thank you (again),
      Mike

  • How do I compile a java file in eclipse

    Hi,
    I have just installed eclipse and added a plugin for tomcat.
    I created a new tomcat project and have been trying out several jsp files. Everything nice and dandy.
    Now there is a bean in the tutorial that I am doing. So I use the context menu, new->class.
    A file is created in the src folder. I copied the source code from the tutorial in it.
    Now I have been looking everywhere but can not find a menu option that lets me compile it.
    How does that work. I hope this is the right forum for such basic questions.
    Thank you very much.

    As far as I know, the java code is compiled in Eclipse as soon as you save it. i.e. press CTRL+SHIFT+s
    as far as the build is concerned, in case you have a build file where you specify how to make a jar file, the location the jsr file is to be placed, only then you have to build the project. However again, as far as just simple compile is concerned as soon as you save the files are compiled. And show you the errors if any in the tasks window.

  • How to 'make' an application 64-bit?

    For nspluginwrapper in this case, how do I compile 64-bit? Or does a normal configure, make, make install automatically do this?
    Thanks.

    iBertus wrote:If you are running Arch 64-bit then the build will create 64-bit binaries automatically. Just grab the PKGBUILD for nspluginwrapper from AUR and don't build it manually. You should never build a package manually on Arch Linux unless you have a specific reason.
    Agreed. Just be forewarned Ranguvar: there are a crap load of dependencies.

  • How to make use of the swf made by alchemy?

    Most of the examples are about compiling C/C++ to swc, then make use of it.
    As the alchemy introduction said, we can also compile into swf file. so i tried it. But i cann't get the CLibInit class. How to make it successful?
    The codes is below:
        private function initApp():void
            var  loader:Loader = new Loader();
            var context:LoaderContext = new  LoaderContext();
            context.applicationDomain =   new  ApplicationDomain(ApplicationDomain.currentDomain);
             loader.load(new URLRequest("abc.swf"),context);
             loader.contentLoaderInfo.addEventListener(Event.COMPLETE,onComplete);
         private function onComplete(e:Event):void
            var clibinit:Class =  this.loaderInfo.applicationDomain.getDefinition("module.abc.CLibInit")  as Class;
    The abc.swf is the file i compile in Alchemy. And i can get the CLibInit class by using swc file as below:
        import __AS3__.vec.*;
        import cmodule.abc.*;    
        var abc:Object;
        private static function init() : void
                var clibinit:* = new CLibInit();
                abc = clibinit.init();
                return;
            }// end function

    I have the same problem. Did you get it?

  • How to make a custom form, buttons etc... please...

    I mean, how to make a form (for example, JFrame) with arbitrary form (geometry, for ex, round, oval, star like etc). I think you understand what i mean.
    Of course, i think i can use winApi, but it's only for windows. It doesn't suit for Java in this problem solution.
    That question also about cusomizing form of buttons, fields.. etc..
    i think, everything.
    What can java allows to cusomize and what not.
    Thanx!!

    I am just a learner and so i can just suggest you a strategy to implement Customized forms in JAVA. However i am sure that in practice it will work as far as Windows OS are concerned. Here is it:-
    The basic IDEA is to declare a native function in JAVA that makes JNI calls which will be further processed by Win32API and processed output will result into an elliptic or any polygonal shaped forms.
    To achieve declare some function as follows:
    public native void createEllipticalForm(formName formRefrance);
    create a Win32 Compiled DLL that manages this function as follows:
    (Mindwell, i havent stated what you call as pure-code but just a pseudo-code to the actual implementation)
    public native void createEllipticalForm(formName formRefrance)
    /* Search for the below stated Functions in Win32 API and work on
    them. I see a ray of success if you work with these functions properly.
    Further-more I assume that you are aware with concept of HANDLES */
    createEllipticRegion(); //WINDOWS.H
    showWindow(handleToTheForm); //WINDOWS.H
    Search for "createEllipticRegion() or showWindow()" on the GOOGLE to get the pure win32 API Code for Creating Customized Forms.
    Reply me in case any of you people get a solution based on my idea.
    [by VISH]

  • How to make jar files at runtime in a server application

    I am using Jung API and i need to load the class files in this JAR file for my application at runtime.
    I am using an applet which uses this API which is loaded with the help of a Servlet.
    The code is getting compiled but the JAR files and associated classes are not available at the runtime
    How to make themk avalable.
    I have tried various options like placing jar files in
    WEB-INF/lib
    $Catlina_Home/commons/lib
    But it is not working can anyone help me it is of high urgency to me
    How to make that classes in the JAR file available to my applet at runtime

    SuperJavaHello wrote:
    How to make that classes in the JAR file available to my applet at runtimeAhh! The runtime is an appler! The applet is on the Client, and the Client does not have access to the Server's classpath. You need to un-pack the JAR, then re-pack the classes into the JAR used to pack your Applet, the one that you are using as the code source in the applet tag.

  • How to make slow reports fast?

    Hi all,
    How to make slow reports fast? What could be the various reasons and optimizations/solutions?
    Thanks,
    Charles.
    ++++++++++++++++++++++++++++++

    Its an on going process. Couple of steps you will have to follow: Did you perform any SQL trace ..?
            Did you perform any ABAP trace...?
            How much business data these reports are processing.Is there a possibility you can do some changes.
    SQL Trace ( SAP in built tool) will give you a fair idea about each and every SQL statements in your report. And you can anlyze bad ones. And also propse optimized SQL or
    index if needed.
    ABAP Trace(SAP in bulit tool), you can find out amount of ABAP run time thats being elapsed by each and individual abap module.
    Also the amount of business data is every  important. While designing the report alogorithm this is very important factor.

  • How to make Clsuter aware EJB

              Platform: Weblogic 6.0sp2 in WINNT
              Hai,
              I have made IP loadbalancing ( The DNS Host entry swaps IP in intervals) as per
              the documentation. By Using the clsuter IP i have created a cluster entey in the
              wl 6.0 console and added two servers in the Cluster. Now i don't know how to make
              my EJB Cluster aware?. what parameters should i change in teh XML file and compilation
              option to make it cluster aware.
              Also i would like to know whether Will it be enough if i put teh same copies of
              JSP and servlets in both machine to make that too cluster aware. Will there be
              any probelm in session ?
              Regards,
              srini
              

              Hi Kumar , Lynch , Penfriend,
              Thanx for ur Quick replies .. That helped me a lot.. I am going through the examples.
              I would like to know changes that i have to make on JSP & servlets to make it
              cluster aware. I am using the IP Load balancing ( host name refers to two different
              IP at intervals ).
              Thanx.
              regards,
              srini
              Pen Friend <[email protected]> wrote:
              >Srinivasan,
              >
              >We ship a cluster example in .\samples\examples\cluster\ejb. You could
              >take a look at the deployment descriptors and try running it.
              >
              >
              >
              >Kumar Allamraju wrote:
              >
              >> By default ejb's are compiled with clustering options ON.
              >> So ejbc generates cluster aware stubs anyway. You don't need
              >> to do anything to deploy them in a cluster environment.
              >>
              >> --
              >> Kumar
              >>
              >> Srinivasan wrote:
              >>
              >>> Sir,
              >>>
              >>> (1) What option of the weblogic ejbc is required in my case. is
              >>> -clusterable
              >>> option suffice. Sir, Could you please mention which document are you
              >>> refering
              >>> too. ( I have only the cluster.pdf from BEA )
              >>>
              >>> (2) The Host name is already load balanced by teh WLBS Software.If
              >>> the host is
              >>> load balanced then will placing the same JSP and servlet in both the
              >>> servers in
              >>> cluster suffice.
              >>>
              >>> Thanks for the Help sir.
              >>>
              >>> regards,
              >>> srini
              >>>
              >>> "Lynch" <[email protected]> wrote:
              >>> >Hi,
              >>> >
              >>> >1. You need to use weblogic's ejbc to compile your ejb jar file to
              >>> generate
              >>> > the stub classes.
              >>> >2. Web cluster demands load balancing and fail-over. You need to
              >do
              >>> lots
              >>> > of work yet. Maybe you could start with the docs.
              >>> >
              >>> >Hope this helps,
              >>> >Lynch
              >>> >
              >>> >
              >>> >"Srinivasan" <[email protected]> ¼¶¼g©ó¶l¥ó
              >>> >news:[email protected]...
              >>> >>
              >>> >> Platform: Weblogic 6.0sp2 in WINNT
              >>> >>
              >>> >> Hai,
              >>> >>
              >>> >> I have made IP loadbalancing ( The DNS Host entry swaps IP in
              >>> intervals)
              >>> >as per
              >>> >> the documentation. By Using the clsuter IP i have created a
              >>> cluster
              >>> >entey
              >>> >in the
              >>> >> wl 6.0 console and added two servers in the Cluster. Now i don't
              >>> know
              >>> >how
              >>> >to make
              >>> >> my EJB Cluster aware?. what parameters should i change in teh XML
              >>> file
              >>> >and
              >>> >compilation
              >>> >> option to make it cluster aware.
              >>> >>
              >>> >> Also i would like to know whether Will it be enough if i put teh
              >>> same
              >>> >copies of
              >>> >> JSP and servlets in both machine to make that too cluster aware.
              >>> Will
              >>> >there be
              >>> >> any probelm in session ?
              >>> >>
              >>> >>
              >>> >> Regards,
              >>> >> srini
              >>> >
              >>> >
              >>
              >
              

Maybe you are looking for

  • A part of an image frame is on other page as well, it is misplacing while creating PDF for print

    I am working on a design in which there is an image frame box with outline & shadow. This box is continuing from one page to other page as well. (80% on one page & 20% on the other) When I am previrewing it in InDesign Booklet SE, it's showing perfec

  • Edit Original in Photoshop?

    Have hundreds of .jpg's in Encore 2, in various folders and slide shows. Suddenly need to colour balance a bunch in Photoshop so thought I could select in project window (or better in slide show) and get to Photoshop. Pics come in many cases straight

  • How to change the Purchase Organization filed in the Purchase requistion..

    Hello All, I am creating the requirement of material through MD62. Later I am runiing MRP through MDO3 to create the purchase requistion against that. Now my requirement is that if the source list is not maintainted ( ME01) for that material, I want

  • Why can't I log in to elements 10?....

    Why can't I log in to my elements 10? every time I try it just says adobe services are unavailable, my network connection is perfect, it's been doing this for about 2 weeks now, it doesn't matter what time of day or night I try to log in, it just won

  • How Can I get a Page on my Aldus Pagemaker 3.0

    I want to install Aldus Pagemaker 3.0 on my Apple Powerbook 1400, so I can use some files that I created in the 1990's on Aldus Pagemaker 3.0. I have Pagemaker 4.2 on another computer, but it distorts the diagrams from the 3.0 files. So I purchased P