Can any one help me sending Oracle application server Cloning  document 9.0.4 version

Can any one help me sending Oracle application server  Cloning document 9.0.4 version (Mail id removed by moderator)
Many Thanks in advance
Deepak

Hi Deepak,
In first place application server 9.0.2 is desupported since 30th June 2007.So oracle would always recommend its customer to be on the latest versions.
Please follow the below URL for cloning Appplciation Server 9.0,.4
Cloning Application Server Middle-Tier Instances
Regards,
Prakash.

Similar Messages

  • Can any one help me giving sample application of consuming webservices

    Hello friends,
    I am doing struts application, where we consume webservice for validating the data I want sample application in calling webservice's. can anyone help me

    Thanks Markus for the Confirmation.
    Just need one more confirmation on the below one aswell
    I applied a Patch to my Development Meachine , But Later the User requested saying that He dont want that Perticular Basis Patch Installed, So Can we Uninstall / Revoke / Delete the Installed Basis / HR Patch on the SAP Server ?.
    If we can kindly Let me know how to Proceed in Revoking the Patch.
    Thanks
    Dan

  • Can any one help me with this chat server

    The code below is of a client and server but the problem is that the msg can be sent only from the server and not the client I want that whenever a msg is sent from the server the control for writing the msg should go on to the client n den vise versa n should continue till the connection is terminated..plz help me....!
    CoDES
    for client
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.net.InetAddress;
    import java.net.Socket;
    import java.net.UnknownHostException;
    class client {
    public static void main(String[] args) throws IOException {
    Socket s =null;
    BufferedReader b=null;
    try{
    s=new Socket( InetAddress.getLocalHost(),98);
    b=new BufferedReader(new InputStreamReader(s.getInputStream()));
    catch(UnknownHostException u) {
    System.err.println("i dont know host");
    System.exit(0);
    String inp;
    while((inp=b.readLine())!=null){
    System.out.println(inp);
    b.close();
    s.close();
    FOR SERVER$
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.PrintWriter;
    import java.net.ServerSocket;
    import java.net.Socket;
    import java.nio.channels.ServerSocketChannel;
    public class server {
    public static void main(String[] args) throws IOException {
    ServerSocket s1=null;
    try{
    s1=new ServerSocket(98);
    }catch(IOException u1)
    System.err.println("could not find port 98");
    System.exit(1);
    Socket c=null;
    try{
    c=s1.accept();
    System.out.println("connection from"+c);
    catch(IOException e)
    System.out.println("accept failed");
    System.exit(1);
    PrintWriter out=new PrintWriter(c.getOutputStream(),true);
    BufferedReader in=new BufferedReader(new InputStreamReader(c.getInputStream()));
    String I;
    BufferedReader sin=new BufferedReader(new InputStreamReader(System.in));
    System.out.println("i am ready to type now");
    while((I=sin.readLine())!=null) {
    out.println(I);
    out.close();
    sin.close();
    c.close();
    s1.close();
    }

    What you need is to have two loops running at the same time. One for receiving messages and other for waiting user input. This can be done by using separate threads.
    For example after client has made connection to server, start a new thread that runs loop for receiving messages from the socket and printing them to System.out. Then in the default thread start loop for reading users input. The server could have similar structure.
    So, what I think you are looking for are threads.

  • Safari keeps crashing every time I try to open a link from a different application, i.e. Mail. The trouble report says that some problem occurs with libcooliris.dylib plug-in. Can any one help?

    Safari keeps crashing every time I try to open a link from a different application, i.e. Mail. The trouble report says that some problem occurs with libcooliris.dylib plug-in. Can any one help?
    Thanks!

    Dear Linc,
    Thank you for the advice, John Blanchard1  and Linc Davis
    As suggested in your reference thread I removed "/Library/Printers/hp/PDEs/hpPostScriptPDE.plugin" and the problem has been resolved.
    I am guessing the the plug-in for the hp printers got corrupted and effected every thing, or became unsuitable when I installed an Apple update. I would be most grateful if you can confirm how the problem was coursed so I can understand and learn from this experiance.
    Ash

  • Hi i am unable to send mail from yahoo mail id.can any one help on this?

    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    import java.io.*;
    import java.util.Properties;
    public class MailClient
      public void sendMail(String mailServer, String from, String to,
                                 String subject, String messageBody,
                                 String[] attachments) throws
    MessagingException, AddressException
             // Setup mail server
             Properties props = System.getProperties();
             props.put("mail.smtp.host", mailServer);
             // Get a mail session
             Session session = Session.getDefaultInstance(props, null);
             // Define a new mail message
             Message message = new MimeMessage(session);
             message.setFrom(new InternetAddress(from));
             message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));
             message.setSubject(subject);
             // Create a message part to represent the body text
             BodyPart messageBodyPart = new MimeBodyPart();
             messageBodyPart.setText(messageBody);
             //use a MimeMultipart as we need to handle the file attachments
             Multipart multipart = new MimeMultipart();
             //add the message body to the mime message
             multipart.addBodyPart(messageBodyPart);
             // add any file attachments to the message
             addAtachments(attachments, multipart);
             // Put all message parts in the message
             message.setContent(multipart);
             // Send the message
             Transport.send(message);
         protected void addAtachments(String[] attachments, Multipart multipart)
                         throws MessagingException, AddressException
             for(int i = 0; i<= attachments.length -1; i++)
                 String filename = attachments;
    MimeBodyPart attachmentBodyPart = new MimeBodyPart();
    //use a JAF FileDataSource as it does MIME type detection
    DataSource source = new FileDataSource(filename);
    attachmentBodyPart.setDataHandler(new DataHandler(source));
    //assume that the filename you want to send is the same as the
    //actual file name - could alter this to remove the file path
    attachmentBodyPart.setFileName(filename);
    //add the attachment
    multipart.addBodyPart(attachmentBodyPart);
    public static void main(String[] args)
    try
    MailClient client = new MailClient();
    String server="pop3.yahoo.com";
    String from="[email protected]";
    String to = "[email protected]";
    String subject="Test";
    String message="Testing";
    String[] filenames = {"c:\\gopi.txt"};
    client.sendMail(server,from,to,subject,message,filenames);
    catch(Exception e)
    e.printStackTrace(System.out);     
    while compliling this one its compiled succesfully but i am getting exception at run time like..D:\mail>java MailClient
    Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/activation/re
    gistries/MailcapFile
    at javax.activation.MailcapCommandMap.loadFile(MailcapCommandMap.java:275)
    at javax.activation.MailcapCommandMap.<init>(MailcapCommandMap.java:128)
    at javax.activation.CommandMap.getDefaultCommandMap(CommandMap.java:44)
    at javax.activation.DataHandler.getCommandMap(DataHandler.java:136)
    at javax.activation.DataHandler.getDataContentHandler(DataHandler.java:568)
    at javax.activation.DataHandler.getContent(DataHandler.java:501)
    at javax.mail.internet.MimeBodyPart.updateHeaders(MimeBodyPart.java:1253)
    at javax.mail.internet.MimeMessage.updateHeaders(MimeMessage.java:2012)
    at javax.mail.internet.MimeMessage.saveChanges(MimeMessage.java:1980)
    at javax.mail.Transport.send(Transport.java:97)
    at MailClient.sendMail(MailClient.java:35)
    at MailClient.main(MailClient.java:72)
    can any one help on this....plz
    thanks in advance
    Edited by: Konapalli.Gopi on May 20, 2010 5:42 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Something's wrong with your CLASSPATH.
    If you're not using JDK 6, you need to include activation.jar in your CLASSPATH.
    If you've got any other jar files that define the javax.mail.* or javax.activation.* classes
    in your CLASSPATH (such as javaee.jar or j2ee.jar), remove them.

  • Downloaded yosemite and mail application not responding? will not open can any one help?

    downloaded yosemite and mail application not responding? will not open can any one help?

    Restart the machine in Safe Mode and attempt to open each app. Also please explain exactly how you are attempting to open the apps. For example, "When I click the Safari icon on the Dock it bounces but does not open." To start in Safe Mode hold down the Shift key when you hear the startup tone unitl a progress bar appears.

  • Can any one help me to sign a application ??

    can any one help me to sign rotate me for n73

    But for your own security, please don't publish you IMEI on this or any other public web site.
    If this or any post answers your question, please remember to help others by pressing the 'Accept as solution' button.

  • Can any one help me how to install webcenter sites on windows

    I'm new to WCS ,can any one help me how to install WCS on windows 64 bit. (not Jump starter kit)
    I had downloaded " ofm_sites_generic_11.1.1.6_bp1_disk1_1of1.zip " from ONT forum
    can any one guide me with step by step procedure to intall
    Edited by: 1000252 on Apr 15, 2013 11:59 PM

    Hi
    You can find the installation documentation here:
    http://docs.oracle.com/cd/E29495_01/index.htm
    The way the documentation is structured it is structured based on the Application server you would like to use in your installation.
    You might want to look into the following docs, again depending on your choice of supported application server and database server:
    - Installing on Apache Tomcat Application Server
    - Installing on IBM WebSphere Application Server
    - Installing on Oracle WebLogic Application Server
    - Configuring Supporting Software
    The last document provides information how to configure the DB for your installation.
    Hope this helps.
    Cheers,
    Rodney

  • Can any one help me in fi/sl extraction

    can any one help me in fi/sl extraction.i am not able to get data in cube please send me screen cut of fi/sl extraction.
    Edited by: chaitanya pissay on Apr 11, 2008 7:26 AM

    Hi Chaitanya,
    Check here........
    FI-SL Extraction
    FI /SL extraction
    http://help.sap.com/saphelp_nw70/helpdata/EN/04/e04c40cc538437e10000000a155106/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/FISL/FISL.pdf
    Fi_SL data model
    http://help.sap.com/saphelp_bw32/helpdata/en/af/16533bbb15b762e10000000a114084/frameset.htm
    Regards,
    Vijay.

  • Can any one help me to code a browser

    hi ,
    I am Anil, I am doing an application in java. it needs a browser as IE or Morzilla . i tried to implement the browser using jdic.
    i add jdic.jar files as a external jar file and added it to my project. when i run the program in eclipse it works fine. when i want to create a jar file to my application it shows the follwing error..
    when i click on that jar file , it shows a Java Virtual Machine Launcher dialog box and in that dialog box it shows error Could not Find the main class. Program will exit ..
    this is the error.
    can any one help me to over come the error or any alternative method to implement a browser..

    DarrylBurke wrote:
    Corss poster!
    [http://www.java-forums.org/advanced-java/30298-how-write-job-aggregator-java-j2ee.html]
    dbNot anymore, Fubarable has axed that thread.

  • Can any one help me in giving hr abap objects

    can any one help me in giving hr abap objects for practice, plz send some requriments which really need to worked

    Hi,
    Till the time you can work with these. I'll let you know more.
    <a href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PAPA/PAPA.pdf">http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PAPA/PAPA.pdf</a>
    <a href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PAPD/PAPD.pdf">http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PAPD/PAPD.pdf</a>
    <a href="http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PYINT/PYINT_BASICS.pdf">http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PYINT/PYINT_BASICS.pdf</a>
    I'll send you more in half hours.
    If helpful do reward the points.
    Regards
    Amit

  • I have a early 2008 macbook 13 inch and dont have the pass word can any one help?

    I have an early 08 macbook that is locked by password and do not know Itunes account. can any one help thanks.

    Upgrading to Yosemite
    You can upgrade to Yosemite from Lion or directly from Snow Leopard. Yosemite can be downloaded from the Mac App Store for FREE.
    Upgrading to Yosemite
    To upgrade to Yosemite you must have Snow Leopard 10.6.8 or Lion installed. Download Yosemite from the App Store. Sign in using your Apple ID. Yosemite is free. The file is quite large, over 5 GBs, so allow some time to download. It would be preferable to use Ethernet because it is nearly four times faster than wireless.
        OS X Mavericks/Yosemite - System Requirements
          Macs that can be upgraded to OS X Yosemite
             1. iMac (Mid 2007 or newer) - Model Identifier 7,1 or later
             2. MacBook (Late 2008 Aluminum, or Early 2009 or newer) - Model Identifier 5,1 or later
             3. MacBook Pro (Mid/Late 2007 or newer) - Model Identifier 3,1 or later
             4. MacBook Air (Late 2008 or newer) - Model Identifier 2,1 or later
             5. Mac mini (Early 2009 or newer) - Model Identifier 3,1 or later
             6. Mac Pro (Early 2008 or newer) - Model Identifier 3,1 or later
             7. Xserve (Early 2009) - Model Identifier 3,1 or later
    To find the model identifier open System Profiler in the Utilities folder. It's displayed in the panel on the right.
         Are my applications compatible?
             See App Compatibility Table - RoaringApps.

  • Hi my account was locked for some security reasons and i forget the securicty questions and when i am trying to reset my password through email i am not gettig mail to my id can any one help

    hi my account was locked for some security reasons and i forget the securicty questions and when i am trying to reset my password through email i am not gettig mail to my id can any one help.
    <Edited by Host>

    Have you checked Spam? I have noticed recently in my Gmail that Google sends some mails from Apple to the Spam folder.
    <Edited by Host>

  • Can any one help? "Windows cannot repair this computer automatically."

    I have a laptop satellite L455-S5000.
    And when I try and trun on my computer a black screen comes on that says "windows is loading files..."
    and after it loads a window pops up saying "startup repair is checking your computer for problems..."
    and after that gets done it says "Windows cannot repair this computer automatically" so I click "Send information about this problem (recommended)" and then I click "finish" then it shuts down. when I try turning it back on it does the same thing over. Please can any one help me fix it? Im really clueless about computers and I have know Idea what is wrong with it, or how to even go about fixing it. thanks.

    _Ashley_
    Turn the laptop off, hold down F8, turn the laptop on and let go of F8 when you see the Advanced Boot Options.
    In here, choose Repair Your Computer then press enter, follow the prompts, choose System Restore and restore your laptop to a point before the problems started.
    If the laptop cant get you there, a system recovery starts the laptop from it's factory state but you loose your programs and files doing that. Holding the "0" beside "9" while you turn the laptop on boots the laptop from its recovery partition if you accept data loss.

  • HI,  I downloaded and used illustrator last night, but today it crashes on opening? can any one help?

    I downloaded and used illustrator last night, but today it crashes on opening? can any one help?
    The only reason I download from Creative Cloudd is because my previous software copy is no longer supported,  feeling very frustrated!

    Tabitha,
    Many still use unsupported ealier versions, and there is no real need to upgrade unless there is a real need.
    Unless you have done something like installing new fonts or made other changes, it may be releavnt to look at the following list.
    Or you can try this specialized forum (where you may be able find the answer from previous threads),
    http://forums.adobe.com/community/download_install_setup
    or Customer Care (tick I Still Need Help and hope for an agent available for a chat),
    http://helpx.adobe.com/contact.html?product=illustrator&topic=downloading-installing-and-s etting-up
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

Maybe you are looking for

  • Coding - returning the number of characters in a text box.

    I am in the process of creating a cell phone simulation/animation in Edge Animate CC for use in a Captivate course. Basically, when a user clicks on number buttons on the virtual keypad, it displays the numbers in a text box , just like an actual cel

  • Dvd studio pro: DVDs won't work on DVD player and windows computer

    Hi I have burnt some dvds on DVD Studio Pro I checked they were set to SD and PAL and have played them on my MAC and DVD player no problem but now I am hearing back from my client that they tried playing them on their windows computer and laptop and

  • Adapter for i-station

    I have a 2nd gen. nano and an i-station but no docking adapters work including the one that came with the nano. The set with the i-station includes a 1st gen nano adapter. Where can I find what I need?

  • Music from my itunes is not showing up?

    My music isnt showing up from my itunes library thing on imove. This means i am unable to put music in the background of my projects. This is really frustrating me. Somebody please help!

  • Buy button fails

    When converting from trial version to full teh BUY button fails and reports "Aperture already installed".  Must I uninstall and loose the trial library?