Migrating application from tomcat to jboss

My application is working on tomcat but when try to deploy the same application war file it gives the following error
no valid JNDI binding. Check the jboss-web/resource-ref.
My web.xml is like this(only giving few lines here)
<resource-ref>
Inventory Source
<res-ref-name>jdbc/InventorySource</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
Jboss-web.xml
<?xml version="1.0" encoding="UTF-8"?>
<jboss-web>
<!-- Uncomment the security-domain to enable security. You will
need to edit the htmladaptor login configuration to setup the
login modules used to authentication users.
<security-domain>java:/jaas/jmx-console</Dsecurity-domain>
-->
<reference-ref>
<res-ref-name>jdbc/InventorySource</res-ref-name>
<jndi-name>java:jdbc/InventorySource</jndi-name>
</reference-ref>
</jboss-web>
postgres-ds.xml
<?xml version="1.0" encoding="UTF-8"?>
<!-- Example of the pointbase 4.8 datasource configuration -->
<!-- $Id: pointbase-ds.xml 23720 2004-09-15 14:37:40Z loubyansky $ -->
<local-tx-datasource>
<jndi-name>jdbc/InventorySource</jndi-name>
<use-java-context>false</use-java-context>
<connection-url>jdbc:postgresql://localhost:5432/demo</connection-url>
<driver-class>org.postgresql.Driver</driver-class>
<user-name>admin</user-name>
admin
<type-mapping>PointBase</type-mapping>
</local-tx-datasource>
Please help me
Thanks
Parimoj

In web.xml making the following entry:
<web-app>
<description>MySQL Test App</description>
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/test</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
</web-app>
Next, add a file jboss-web.xml under WEB-INF/ folder of the web-application. This file should contain entry as:
<jboss-web>
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/test</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<jndi-name>java:/jdbc/test</jndi-name>
<res-auth>Container</res-auth>
</resource-ref>
</jboss-web>
Next, in JBOSS_HOME/server/default/deploy folder make a xx-ds.xml file or else, a similiar file can be found in that same folder with the name hsqldb-ds.xml. Make following entries in that xml file:
<datasources>
<local-tx-datasource>
<jndi-name>/jdbc/test</jndi-name>
<type-mapping>MySQL</type-mapping>
<connection-url>jdbc:mysql://localhost:3306/shopping_cart</connection-url>
<driver-class>com.mysql.jdbc.Driver</driver-class>
<user-name>root</user-name>
<password>root123</password>
<min-pool-size>1</min-pool-size>
<max-pool-size>5</max-pool-size>
</local-tx-datasource>
This should bind the jndi name.
In our client application, we need to look up as:
Context ctx = new InitialContext();
DataSource ds = (DataSource)ctx.lookup("java:/jdbc/test");
Connection conn = ds.getConnection();
This works perfectly.

Similar Messages

  • Migrating application from tomcat 3 to tomcat 5

    Hello everybody,
    Does anyone have information about some kind of manual or tutorial with steps to migrate applications from Tomcat 3 to Tomcat 5??
    Thanks a lot,
    Johnny

    What issues are you having? There have been some important changes between the Servlet and JSP specs between the two but most of these have been additions - nothing that will be too hard to handle.
    Does your application use a database? If so there have been configuration changes between Tomcat 3 and 5 but for that the Tomcat 5 docs are very good at telling you what you need.
    I would start by trying it and see where you get problems. I think it will be easier than you think, depending on how complicated your app is.

  • Need migrate application from glassfish to jboss

    I need to migrate some applications that currently run on glassfish to the application server jboss. if there is someone who knows both environment and who can help me solve some problems ?
    Thank you

    Hi, Its no so easy to migrate from tomcat to webserver 4.1, because the webserver4.1 doesnt admit j2ee modules.
    If you want to use j2EE maybe you have to use webserver 6.x

  • Migrating Application from Weblogic to JBOSS

    Hi all,
    I have an requirement to migrate Application running in Weblogic 8.1 to JBOSS, However my biggest problem is i do not have my JSP files and have only JSP converted Class files which are currently decomplied JAVA files and used in place of JSP. While migating to JBOSS my JSP converted JAVA files are erroring out.
    Can any body please help me out. Thanks in advance for the help.

    can be any body help me out with this issue

  • Web Service Security is not working when migrating application from Tomcat

    Hi,
    We have a application running successfully in tomcat6 It calls a Webservice call through TIBCO BW interface.
    When we deployed the same WAR file in Weblogic 10.3.2, it gives me a error on Prefix[ds] not able to locate namespace URI not found error.
    IN Tomcat, its a existing application uses AxilUtility to get the soap messages after signing document for bothe encyption and decryption.
    Please anybody help me out, is there any other jars needs to be locate in Weblogic to run this application. Its fine with Tomcat and gives error in Weblogic10.3.2
    Please help me out
    Thanks in advance

    Hi Rajkumar,
    Thanks for you reply. Please let me now if you have any ideas..thnks a lot....
    Below is the error message what i am getting through weblogic console.
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppS
    ervletContext.java:2202)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletC
    ontext.java:2108)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.j
    ava:1432)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused by: java.io.IOException: error:weblogic.xml.stream.XMLStreamException: Pr
    efix [ds] used without binding it to a namespace URI
    at weblogic.xml.xmlnode.XMLNode.read(XMLNode.java:744)
    at weblogic.xml.xmlnode.XMLNode.readChildren(XMLNode.java:1054)
    at weblogic.xml.xmlnode.XMLNode.read(XMLNode.java:742)
    at weblogic.xml.xmlnode.XMLNode.readChildren(XMLNode.java:1054)
    at weblogic.xml.xmlnode.XMLNode.read(XMLNode.java:742)
    at weblogic.xml.xmlnode.XMLNode.readChildren(XMLNode.java:1054)
    at weblogic.xml.xmlnode.XMLNode.read(XMLNode.java:742)
    at weblogic.xml.xmlnode.XMLNode.readInternal(XMLNode.java:713)
    at weblogic.xml.xmlnode.XMLNode.readInternal(XMLNode.java:722)
    at weblogic.xml.xmlnode.NodeBuilder.build(NodeBuilder.java:44)
    at weblogic.xml.xmlnode.NodeBuilder.<init>(NodeBuilder.java:24)
    at weblogic.webservice.core.soap.SOAPEnvelopeImpl.<init>(SOAPEnvelopeImp
    l.java:154)
    at weblogic.webservice.core.soap.SOAPPartImpl.getEnvelope(SOAPPartImpl.j
    ava:200)
    ... 78 more
    java.lang.NullPointerException
    at java.io.ByteArrayInputStream.<init>(ByteArrayInputStream.java:89)
    at com.db.alat.wss.WSSClient.postSoapMessage(WSSClient.java:358)
    at com.db.alat.wss.WSSClient.WSSEncDec(WSSClient.java:102)
    at com.db.alat.service.CollateralAccounts.getAccountsSummary(CollateralA
    ccounts.java:55)
    at com.db.alat.CH.CHMapper.getGroup(CHMapper.java:281)
    at com.db.alat.BackingBeans.BorrowerDetailsBean.getClientDataCH(Borrower
    DetailsBean.java:1034)
    at com.db.alat.BackingBeans.BorrowerDetailsBean.<init>(BorrowerDetailsBe
    an.java:766)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct
    orAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC
    onstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at java.lang.Class.newInstance0(Class.java:355)
    at java.lang.Class.newInstance(Class.java:308)
    at com.sun.faces.mgbean.BeanBuilder.newBeanInstance(BeanBuilder.java:186
    at com.sun.faces.mgbean.BeanBuilder.build(BeanBuilder.java:106)
    at com.sun.faces.mgbean.BeanManager.createAndPush(BeanManager.java:368)
    at com.sun.faces.mgbean.BeanManager.create(BeanManager.java:222)
    at com.sun.faces.el.ManagedBeanELResolver.getValue(ManagedBeanELResolver
    .java:86)
    at javax.el.CompositeELResolver.getValue(CompositeELResolver.java:143)
    at com.sun.faces.el.FacesCompositeELResolver.getValue(FacesCompositeELRe
    solver.java:72)
    at com.sun.el.parser.AstIdentifier.getValue(AstIdentifier.java:68)
    at com.sun.el.parser.AstValue.getValue(AstValue.java:107)
    at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:192)
    And i have the loggers which gives the system out statements. You can identify the difference in both logs is the sys out ...Convert Signed Document back to Soap Message.
    IN tomcat i am getting the return object after calling the method
    SOAPMessage signedMsg = (SOAPMessage) AxisUtil.toSOAPMessage(signedDoc);
    But in Weblogic i am getting NULL. You can c in SOAPMessageImpl[SOAPPartImpl[null]]
    Tomocat Logs:
    Message Context..................1.........................org.apache.axis.MessageContext@c393a1
    2011-04-21 05:35:56,906 8672 INFO [com.db.alat.wss.WSSClient] (http-8080-1:) Unsigned Envelop............2.........................<?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Header/><SOAP-ENV:Body><RqDetail xmlns="http://schemas.db.com/esb/emf/pwm/ALAT/Services/CLIENT-getCandidateCollateralAccounts-RR" xmlns:cli="http://schemas.db.com/esb/emf/pwm/ClientElements" xmlns:com="http://schemas.db.com/esb/emf/pwm/CommonAggregates" xmlns:com1="http://schemas.db.com/esb/emf/pwm/CommonElements">
    <cli:ClientID BusinessUnit="CH">7cf8e78f86212a65398d50766de95a762318d3eee1350c1105d4b751825a690b</cli:ClientID>
    <cli:ClientType>B</cli:ClientType>
    <com:Field>
    <com1:Name>INITIALPAGE</com1:Name>
    <com1:Value>YES</com1:Value>
    </com:Field>
    </RqDetail></SOAP-ENV:Body></SOAP-ENV:Envelope>
    2011-04-21 05:35:56,906 8672 INFO [com.db.alat.wss.WSSClient] (http-8080-1:) DOCUMENT is .......:[#document: null]
    2011-04-21 05:35:56,906 8672 INFO [com.db.alat.wss.WSSClient] (http-8080-1:) KEYSTORE is .......:java.security.KeyStore@127fa03
    2011-04-21 05:35:57,078 8844 INFO [com.db.alat.wss.WSSClient] (http-8080-1:) ..................................3.........................
    2011-04-21 05:35:57,094 8860 INFO [com.db.alat.wss.WSSClient] (http-8080-1:) ..................................4.........................
    2011-04-21 05:35:57,297 9063 INFO [com.db.alat.wss.WSSClient] (http-8080-1:) Signed Document is .......:[#document: null]
    2011-04-21 05:35:57,437 9203 INFO [com.db.alat.wss.WSSClient] (http-8080-1:) Convert Signed Document back to Soap Message .......:[email protected]33662
    2011-04-21 05:35:57,469 9235 INFO [com.db.alat.wss.WSSClient] (http-8080-1:) ..................................5.........................
    Weblogic Logs:
    Message Context..................1.........................org.apache.axis.MessageContext@460d4
    2011-04-26 01:15:45,859 2640 INFO [com.db.alat.wss.WSSClient] ([ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)':) Unsigned Envelop............2.........................<?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-ENV:Header/><SOAP-ENV:Body><RqDetail xmlns="http://schemas.db.com/esb/emf/pwm/ALAT/Services/CLIENT-getCandidateCollateralAccounts-RR" xmlns:cli="http://schemas.db.com/esb/emf/pwm/ClientElements" xmlns:com="http://schemas.db.com/esb/emf/pwm/CommonAggregates" xmlns:com1="http://schemas.db.com/esb/emf/pwm/CommonElements">
    <cli:ClientID BusinessUnit="CH">2b285aa27f1899d87de00f04099506ad24aaf1c18b0b6b071a8acd19b1732fb9</cli:ClientID>
    <cli:ClientType>B</cli:ClientType>
    <com:Field>
    <com1:Name>INITIALPAGE</com1:Name>
    <com1:Value>YES</com1:Value>
    </com:Field>
    </RqDetail></SOAP-ENV:Body></SOAP-ENV:Envelope>
    2011-04-26 01:15:45,875 2656 INFO [com.db.alat.wss.WSSClient] ([ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)':) DOCUMENT is .......:[#document: null]
    2011-04-26 01:15:45,875 2656 INFO [com.db.alat.wss.WSSClient] ([ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)':) KEYSTORE is .......:java.security.KeyStore@167d3c4
    2011-04-26 01:15:45,984 2765 INFO [com.db.alat.wss.WSSClient] ([ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)':) ..................................3.........................
    2011-04-26 01:15:46,016 2797 INFO [com.db.alat.wss.WSSClient] ([ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)':) ..................................4.........................
    2011-04-26 01:15:46,234 3015 INFO [com.db.alat.wss.WSSClient] ([ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)':) Signed Document is .......:[#document: null]
    2011-04-26 01:15:46,313 3094 INFO [com.db.alat.wss.WSSClient] ([ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)':) Convert Signed Document back to Soap Message .......:SOAPMessageImpl[SOAPPartImpl[null]]
    2011-04-26 01:15:46,328 3109 INFO [com.db.alat.wss.WSSClient] ([ACTIVE] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)':) ..................................5.........................

  • What are the steps to Migrate a Web Service from Tomcat to JBoss

    Hi,
    I am totally new to JBoss and need some help. I mostly worked on BEA and Oracle. I have a web service deployed on Tomcat that needs to be now migrated to JBoss. What are the steps in moving a web service from Tomcat to JBoss.
    Is there some step by step tutorial on developing and deploying a web service on JBoss along with sample build script.
    Any help is really appreciated.
    Thanks

    R u using axis. If you want to stick with axis and don't want to use JBossWS there is nothing else you need to do. Move all the axis to Jboss. If you plan to reimplement all ur services in JBossWS here it is:
    http://jbws.dyndns.org/mediawiki/index.php?title=Quick_Start
    http://jbws.dyndns.org/mediawiki/index.php?title=User_Guide
    Let me know if you need anything else.

  • Does anyone have experience with migrating applications from iAS6.0 SP2 to SP3? Did it go smoothly or are there problems to be expected?

     

    Hi,
    I haven't. But, there are lots of changes from each service packs,
    henceforth you may have to stick to what the documentation says to avoid
    the errors that shoots up. Again, the errors depends upon how you have
    coded your application. Please let me know if you have encountered any
    errors and the messages for me to help you.
    Regards
    Raj
    Peter Clijsters wrote:
    Does anyone have experience with migrating applications from iAS6.0
    SP2 to SP3? Did it go smoothly or are there problems to be expected?
    Try our New Web Based Forum at http://softwareforum.sun.com
    Includes Access to our Product Knowledge Base!

  • Migrating a spring application  from tomcat 6 to dea weblogic 10

    We deployed a spring application to TOMCAT 6.0. The application works. When the application is deployed in bea weblogic 10. it generates a a page not found.

    Did you get the page not found on the index/welcome page or other pages? Do you see any exception in the server log? Can you give us a little info on your app?
    It would be great if you can attach your app, or simiple reproducer so we can help you.
    thanks
    Michael

  • Mail no longer works after migrating applications from Mountain Lion

    This weekend I bought a Mac Pro 2.1. I upgraded it to Lion then migrated all my files and applications from my iMac (running Mountain Lion). Now the Mail app doesn't work. I can't uninstall it and Software update says everything is up to date. How can I get my Mail app to work again? I guess I've somehow copied the Mail app from the Mountain Lion mac which is why it won't run.

    No unfortunately after the OS  is installed the installer package is removed so you'll need to go through the whole procedure again.
    There is a way to save the installer and make a bootable flash drive you can install off of. You should be able to find the procedure if you search here or on the net.
    regards

  • Link/checklist for migrating applications from Oracle 9i to Oracle 11g?Help

    Hi all,
    We need to perform an impact analysis on migratiing an application from Oracle 9i to Oracle 11g. Does any of you have a detailed checklist to follow, in terms of queries, PL/SQL statements, optimizer etc. etc., when attempting this migration. We require something more specific from the application point of view rather than a DBA point of view.
    Additionally, we have queries written extensively with rule hints. Should there be a special consideration for the same since now we are moving to CBO in 11g
    Even if any one has a link, that would help. Thank you so much!

    Hi Nikhil,
    Thanks Xaheer,You're welcome :)
    I'm going through the link: http://download.oracle.com/docs/cd/E11882_01/server.112/e10819/toc.htm
    But it still mentions stuff from a DBA angle. I need from an application angle.
    Do I need to change my queries taht are current written with RBO? Do I need to change Pl/SQL blocks ?Please refer tech below notes:
    *1)TROUBLESHOOTING: Server Upgrade Results in Slow Query Performance -- 160089.1*
    *2)TESTING SQL PERFORMANCE IMPACT OF AN ORACLE 9i TO ORACLE DATABASE 10g RELEASE 2 UPGRADE WITH SQL PERFORMANCE ANALYZER -- 562899.1*
    Before upgrading your production database, please perform upgrade of test database and do complete testing.
    Hope helps
    Regards,
    X A H E E R

  • Problems after  migrating application from 10.1.2 to 10.1.3

    Hi,
    I am encountering the following error while executing the application after migrating it from Jdeveloper10.1.2 to JDeveloper10.1.3. Could you please help me in this regard..
    NOTIFICATION J2EE JSP0008 Unable to dispatch JSP Page : java.lang.NullPointerException
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:60)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:416)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:478)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:401)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:332)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:629)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:376)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:870)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:451)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:218)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:119)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:230)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$800(ServerSocketAcceptHandler.java:33)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:831)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:298)
         at java.lang.Thread.run(Thread.java:595)
    Message was edited by:
    user491067

    Do you have the problem with all JSP pages, or only a few of them ?
    Does it happen in the Embedded OC4J only ?
    Could you try to deploy your application in the Standalone OC4J and test it from there ?
    I had a similar issue where the Embedded OC4J was unnable to run big JSP pages.
    There was no problem with the Standalone OC4J.
    Hope this helps,
    Didier.

  • Migrating Application from JSP 1.2 to JSP 2.2 and Servets 2.3 to Servlet 3

    Hi,
    I have an application which is built on JDeveloper 10.1.3.4.
    So it uses default JSP and Servlet Runtime i e, JSP 1.2 and Servlets 2.3 versions.
    But i want to migrate my application from those versions to Servlet 3.0 and JSP 2.2.
    So i downloaded JSP 2.2 API jar and Servlet 3.0 jars and added to my Application Library.
    I even removed JSP runtime and Servlet run time.
    Now am unable to compile.
    How should i migrate my application from older versions to newer.
    Thanks,

    a) you learn to use your tools properly
    b) you fix what you did wrong
    c) you feel smug for having done your job

  • Migrating Application from Planning 11.1.2.1 to 11.1.2.2

    Gurus
    I am trying to migrate a Planning application from Hyperion version 11.1.2.1 to version 11.1.2.2. Is there a way that I can use LCM? I have tried exporting the application from version 11.1.2.1 and importing it in 11.1.2.2 but all the forms are being registered as invalid.
    The application also use business rules and LCM gave the following errors:
    Error in migrating artifact, "/Global Artifacts/Business Rules/Global Variables/XXXXX".
    Cannot process artifact (XXXXXX). Unsupported artifact type (Global Variable).
    Since Calc Manager is the only supported tool would this cause the problem with the migration process? If so, how do I migrate the application successfully.
    I saw the upgrade option in the Planning Administration but how is application in the situation.
    Thanks in advance.

    Hi John
    Thank you for this I used the back-end migration and the steps are as follows for those that will need the help:
    1. Create a shell Planning app in 11.1.2.2
    2. Backup the database for the application created above
    3. Synchronize HSS between the source and destination environments (luckily I didn't have to do this)
    4. Take a copy of the database for the source application
    5. Stop the Hyperion Planning service (I stopped all the Hyperion Services to be safe)
    6. Restore the database of the source application on top of the database for the destination application.
    7. Confirm that owner SID for the app is still the same in the destination
    8. Clear the version of the application in the planning database
    9. Start Hyperion services in the destination application.
    10. log into planning and it will ask you to upgrade the application.
    11. Once thats done remember your substitution variables (in Planning), location aliases and the data (exported & imported as text files through EAS).
    Thanks John for the help.

  • How do I migrate applications from old MacBook Pro to a MacBook Air?

    How do I migrate applications such as Word & iWork from my old Macbook Pro running Lion to my new MacbOok Air, running Mountain Lion?
    Thanks for advice. Cheers.

    One way: if you have a backup of your MBP on an external disk which you could connect to your MBA, or you could establish a connection in between the two Macs, you may want to launch the "Migration Assistant" on the MBA. You'll find it in Applications under Utilities. It guides you through the steps and options.
    The other (better) way is re-installing all apps fresh, and best the latest versions and updates to make sure it's all ML compatible. "Purchases" in the App Store are helpful as you simply download and install the latest and greatest again. For MS Word etc you should have the install disks. It's a bit more work but usually worth it.

  • Migrating application from jdk 1.4 to 1.5

    Hi,
    I am planing to migrate my application from JDK 1.4 TO 1.5 . I am also using AJAX4JSF in application.Did anyone encounter any issue after migrating or during the migration to JDK 1.5 ?
    Thanks in advance

    You should be calling wrap() to wrap your keys, not doFinal(), or alternatively initializing your cipher to be ENCRYPT'ing, not WRAP'ing.

Maybe you are looking for

  • Problem with doClick(int i) inside a while loop.

    I'm doing a boring "watch and repeat" game. I have 9 JButtons. I want the computer to randomly click on those buttons and the player have to repeat the numbers in the correct order. My problem is when the computer is showing which buttons to press. M

  • Field Status at Transaction Level

    I want to change the field status for Business Place/ Section Code from Supress to Optional in transaction F-02. How can I change Field status at Transaction Level ?

  • Deployment of DVM

    Hi, After deployment of DMV on ESB Contorl , can we see the logs somewhere on server if it has been deployed successfully? Regards Kumar

  • Errors starting Portal Admin Server after configuring RDBMS Security Store.

    Hi, I'm using WLST to build and configure the portal domain. I've already had our DBA run all the necessary scripts on the Database. We are using WLP 10.3 on RHEL 4 and Oracle 10G RAC. I read on some thread that RDBMS is only compatble with verion 10

  • Titles Move Out of Register – Upon Render

    I have a project I am using some basic trasitions and some titles. The title I am using is feature. I have moved some different titles to the 4 corners of the screen. When I do a fast render, the title stay predictably in place. When I render at diff