What is the Application Server with less errors in the installation phase?

Hi all!
According to your experience, what is the trial version that has less problems to install? Is it for Windows or Linux?
thanks!

Hi
Unfortunately i haven't tried installing any trial version yet and iam not sure about installation errors
they are not campatible with home PCs
Yes i would agree to this i have seen lot of post in SDN there is some problem with vista home edition on Trial versions
I would always recommand to use JDK1.4.2_16 which is more compatable,with 1.4.2_18 and 1.4.2_19 we are currently having massive stack overflow
http://java.sun.com/j2se/1.4.2/SAPsite/download.html
Note 716604 - Access to Sun J2SE and recommended J2SE options
when it get in the Import ABAP phase, it took more than 8 hours waiting for it to be concluded and it didn't! It cannot be normal!
It again depends upon the RAM and the virtual Memory you have and provided
Regards
Uday

Similar Messages

  • FIle Creation in the Application Server With Unicode-8 and Byte-Order Mark

    Hi Guys,
    I've requirement of creating a file in the Application server with the Data.
    The Data Format Should be in UTF-8 and Byte-Order Mark.
    I need to supply this data from SAP to PRMS.
    I'm able to create a file with Unicode, but any of the guys have worked on Umicode with Byte-Order Mark, please let me know.
    Thanks,
    Adi.

    Hi Mathieu,
    If you haven't found an aswer yet, you can check in transaction SE24 CL_ABAP_FILE_UTILITIES method CREATE_UTF8_FILE_WITH_BOM. You can check the code of the method (it's very short) so you can understand how it works. It's also a static method so you can call it directly in your program.
    Ex:
    CALL METHOD cl_abap_file_utilities=>create_utf8_file_with_bom(your_file_name).
    I hope this helps.
    Pax Vobiscum.
    ~ Eric

  • Upload a csv file in application server with the specified codepage(Poland

    Hi,
    i want to upload a csv file in application server with the specified codepage ( for poland ) , please let me know how to use open dataset for that.?
    Anurag

    I would upload the file with transaction CG3Z in binary mode and do the code page translation with a report: read from server an save with different name.

  • JavaMail application hanged with no error throwed at Transport.send

    JavaMail application hanged with no error throwed at Transport.send,even though I set the timeout property
    import java.util.Date;
    import java.util.Properties;
    import javax.mail.Authenticator;
    import javax.mail.Message;
    import javax.mail.PasswordAuthentication;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    import javax.mail.internet.MimeUtility;
    public class tt {
         static Properties props=null;
         static boolean needAuth=true;
         static MailAuthenticator authenticator = null;
         static String host="host";
         static String account="account";
         static String password="pwd";
         static String sender="sender";
          * @param args
          * @throws Exception
         public static void main(String[] args) throws Exception{
               if (props == null) {
                     props = new Properties();
                     props.put("mail.smtp.host", host);
                     props.put("mail.smtp.timeout      ", "1000");
                     props.put("mail.smtp.connectiontimeout      ", "1000");
    //                 props.put("mail.debug", "true");
                     props.put("mail.smtp.auth", String.valueOf(needAuth));
                     authenticator = new MailAuthenticator(account, password);
                 MailData mailData = new MailData();
                 mailData.setSubject("altireport mail configuration");
                 mailData.setContent("mail server has been configured successfully.");
                 mailData.setRecipients(new String[]{"[email protected]"});
                 final Session session = Session.getInstance(props, authenticator);
                 final MimeMessage msg = new MimeMessage(session);
                 InternetAddress from = new InternetAddress(sender);
                 msg.setFrom(from);
                 //        msg.setSender(from);
                final InternetAddress[] addressTo = new InternetAddress[mailData.getRecipients().length];
                 for (int i = 0; i < mailData.getRecipients().length; i++) {
                     addressTo[i] = new InternetAddress(mailData.getRecipients());
         msg.addRecipients(Message.RecipientType.TO, addressTo);
         //msg.setSubject(mailData.getSubject());
         msg.setSubject(MimeUtility.encodeText(mailData.getSubject(), "UTF-8", "B"));
         MimeBodyPart bodyPart1 = new MimeBodyPart();
         bodyPart1.setContent(mailData.getContent(), "text/plain; charset=UTF-8");
         MimeMultipart multipart = new MimeMultipart();
         multipart.addBodyPart(bodyPart1);
         msg.setContent(multipart);
         msg.setSentDate(new Date());
    //     msg.saveChanges();
         for(int i=0;i<10;i++){
              new Thread(new Runnable(){
                             public void run() {
                             try {
                                  System.out.println("send...");                                   
                                  Transport.send(msg);
                                  } catch (Exception e) {
                                       e.printStackTrace(System.out);
                        System.out.println("end!");
              }).start();
    class MailData {
    private String[] recipients = null;
    private String subject = null;
    private String content = null;
    private String attachment = null;
    private String attachmentName = null;
    * @return the attachment
    public String getAttachment() {
    return attachment;
    * @param attachment the attachment to set
    public void setAttachment(String attachment) {
    this.attachment = attachment;
    * @return the content
    public String getContent() {
    return content;
    * @param content the content to set
    public void setContent(String content) {
    this.content = content;
    * @return the recipients
    public String[] getRecipients() {
    return recipients;
    * @param recipients the recipients to set
    public void setRecipients(String[] recipients) {
    this.recipients = recipients;
    * @return the subject
    public String getSubject() {
    return subject;
    * @param subject the subject to set
    public void setSubject(String subject) {
    this.subject = subject;
    * @return the attachmentName
    public String getAttachmentName()
    return attachmentName;
    * @param attachmentName the attachmentName to set
    public void setAttachmentName(String attachmentName)
    this.attachmentName = attachmentName;
    class MailAuthenticator extends Authenticator {
    private PasswordAuthentication authentication;
    public MailAuthenticator(String account, String password) {
    authentication = new PasswordAuthentication(account, password);
    protected PasswordAuthentication getPasswordAuthentication() {
    return authentication;
    I have tried use session to get a SMTPTransport instance to use sendMessage ,but still have the same problem.No exception ,No error.
    This problem doesn't appear always. It appears sometimes.
    I hope get help for someone who has the solution for this problem.
    Thanks in advanced.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Ok, I think I see the problem:
         props.put("mail.smtp.timeout      ", "1000");
         props.put("mail.smtp.connectiontimeout      ", "1000");
    Why do you have spaces at the end of the property names?
    Those spaces are not being ignored, which means you've
    set the wrong properties.

  • J2EE 13 : what kind of application server?

    Hi,
    I m using j2ee 1.3 but i m wondering what kind of application server does it use it? I asume it is the j2ee application server... Is there a plugin for eclipse that works with this AS(application server); I ve installed Lomboz but AS JBoss is supportexd, didnt find anything of AS J2EE or Sun one AS. At work we are using j2ee 1.3 and AS Sun one AS 7(or version 8). I thaught J2EE 1.3 uses the J2EE application server ?
    Greetz

    Do you have an Server Definition File in Lomboz for the Sun One Application Server?

  • After installing Crystal Reports XI on Windows 2003 server with one error..

    After installing Crystal Reports XI on Windows 2003 server with one error... REGSVR sapldap.dll error.  I had to regsvr it manually.  Crystal still didn't run.  Found out that Crystal Reports XI will not run until you change DEP to protect only windows program and services.  Thanks.

    Thank you for sharing your finding. Very much appreciated.
    The DEP is a known issue and it is documented in [this|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes.do] note.
    Crystal Reports XI was not compiled with the nx flag as it released before Windows XP Service Pack 2 or Windows 2003 Service Pack 1.
    As for the sapldap.dll. I'm not sure where this is coming from. I do not see this dll on my install, however it does come with the SAP portal integration kit. So I'm not sure if that is flying around somewhere on that server(?)
    Ludek

  • What are the installation steps for Oracle Fusion HCM

    Hi all
    I will like to ask, what are the installation steps for Oracle Fusion HCM as well as can it work on Windows or only on virtual machine?
    Thanks

    If you're looking to install Fusion HCM, your best bet is to install on linux, eg, Oracle Enterprise Linux. It's up to you whether you put that in a Virtual Machine or not. I don't think Windows is an available platform for Fusion Apps at the moment, although am prepared to be corrected if you find anything to the contrary!
    If you're looking to do an install on your own PC/laptop, you're probably out of luck - you'll be needing around 128GB of RAM. Check out this post:
    http://onlineappsdba.com/index.php/2011/11/02/fusion-applications-128-gb-memory-and-500-gb-disk-space-are-you-ready/
    Atul has also posted some good stuff on installing:
    http://onlineappsdba.com/index.php/2011/06/15/install-oracle-fusion-applications-in-10-steps/

  • My iMac is showing the following 'What is the installer'

    Ater starting up a box is dispalyed saying 'what is the installer' and invites you to chose from a series of applications. Any guidance on what to do?

    You best option is to take it to an Apple Store or AASP for service.
    If you have backup then things should be fine. However you did not fill out your profile so we don't have a clue even what version of OS X is installed or the model iMac you have. Take it in for service!

  • What are the import phases to the apply patches?

    what do you mean  by trusted connection in RFC?what are the import phases to the apply patches?

    ketan_sap,
    have you read the rules of engagement of the SDN forum? I mean, if you have to answer interview questions it is better for the company that might hire you that you really know what you are being asked rather then just replying sth you've read in the forum.
    Again, visit help.sap.com and educate yourself.
    Regards,
      Hannes

  • "Database Upgrade" hangs at 0% during "Completing the Installation" phase

    I 'm now installing the EGRCM8.6.3.4000 environment.
    "Database Upgrade" hangs at 0% during "Completing the Installation" phase.
    I checked the grc.log, and found the following WARN and DEBUG messages.
    2012-07-20 02:40:05,544 WARN [Thread-35] DBConfigManager:1425 Database is not initialized yet.
    2012-07-20 03:31:10,412 DEBUG [el.Default (self-tuning)'] GrcConfig:2530 Could not get value for key 'grc.sso.enabled' due to data base is not ready.
    The connection to DB is OK, and the status of DB instance is open now.
    I can't figure out why the console said "Database is not initialized yet".
    Does anyone have a clue about it?
    Thanks in advance.
    Kai

    Hi yasir,
    Thanks for your response.
    I haven't finished the installation yet.
    "Completing the Installation" I mentioned in previous thread referred to the final installation phase.
    After I entered GRC URL (http://hostname:port/grc), the "Database Upgrade" screen hanged at 0% and cannot proceed.
    From the grc.log, I can read that the connection seemed OK, and the database also worked well through SQLPLUS.
    I am wondering why it happens.
    Thanks & Regards,
    Kai
    Edited by: 917394 on Aug 1, 2012 7:21 PM

  • What is "Could not authenticate with LiveConnect" error probably caused by?

    Dear all,
        I excountered another unexpected error while using the new NNTP Server.
        I selected "Logout and Exit" from the menu. Next time when I launched the NNTP Server and clicked "Start", a "LiveAuthForm" dialogue appeared, asked
    for my Microsoft Account and password. I entered, and it seemed I had signed in. The "LiveAuthForm" dialogue changed like this (Displayed in my language ZH-CN. The following are translated by myself):
    >>Microsoft Account
    >>Do you allow this application to access your information?
    >>NNTPBridge_Test needs your permission to continue the following operations:
    >>Keep you signed in automatically.
    >>Access your information at anytime.
    >>You can change these application permissions from your account settings at any time.
    >>Yes or No?
        When I clicked "Yes" in this dialogue, there would be a "Could not authenticate with LiveConnect!" pop-up appeared suddenly. I could not use the NNTP Server at all.
        Any idea what is this "Could not authenticate with LiveConnect" error probably caused by? Is there any LiveConnect addon or plugin I need to reinstall?   
        Suggestions would be deeply appreciated. Thank you all.
    Alexis Zhang
    http://mvp.support.microsoft.com/profile/jie
    http://blogs.itecn.net/blogs/alexis

    Alexis
    I have a different version of the bridge.  Can you give me the link to where you DL'ed it?
    There are 2 versions.  One for here on Technet & One for Microsoft community.
    Wanikiya and Dyami--Team Zigzag
    Is your version of this the same program but an older version (meaning that they updated it)?
    Ed Price, Power BI & SQL Server Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!
    Dear Ed Price,
        I downloaded the new NNTP Server from
    http://communitybridge.codeplex.com/releases/view/114419. Unfortunately all versions on
    this page (from v52 to v55) have the same error on my laptop.
        The issue still persists. I've never properly used this NNTP Server until now. I am still seeking for solutions. Any suggestion
    would be appreciated.
    Alexis Zhang
    http://mvp.support.microsoft.com/profile/jie
    http://blogs.itecn.net/blogs/alexis

  • What is really application server do ?

    i really want to know what is done by application server. I have a problem once i create a application server it actually do not start. It give a error message like some password error. what i should i do.

    Set the envelope return path and an Errors-To: header to point back at your system but with some kind of user-id munged into the mail user-name. You need, of course, a mail receiving system which accepts any of these addresses.
    If you receive a mail on one of these addresses it'll almost certainly be an error from a mail transfer agent somewhere along the line.

  • Oracle Application server  10.1.2.0.2 Installation error

    Please
    I am installing OAS on a oracle linux 5
    when i get to 86 % of the installation process where it shift to the link page i get an error and to continue i have to ignore several erros
    any idea
    thank you

    I found the solution. I ran the following commands it worked
    Any installation of Oracle Application Server 10g Release 2 (10.1.2.0.2) on OEL 5.x or RHEL 5.x in which Reports is getting installed will fail with reports relinking errors unless you apply the required RPM listed below.You may download the RPM package from the following location:
    [http://oss.oracle.com/projects/compat-oracle/dist/files/Enterprise_Linux/xorg-x11-libs-compat-6.8.2-1.EL.33.0.1.i386.rpm]
    As root, you can install this RPM package by issuing the ollowing command
    # rpm -i xorg-x11-libs-compat-6.8.2-1.EL.33.0.1.i386.rpm
    After the RPM, is installed, you will also need to override the /usr/lib/libXtst.so.6 with the one from /usr/X11R6/lib/libXtst.so.6. As root, issue the commands:
    # mv /usr/lib/libXtst.so.6 /usr/lib/libXtst.so.6.ORG
    # ln –s /usr/X11R6/lib/libXtst.so.6 /usr/lib/libXtst.so.6
    Thanks

  • Application Server File Download Error

    Hi Experts,
      i have tried downloading xml in to application server .. follwing the link in sdn.
    XML file creation in application server
    but while scheduling background job it gets cancelled and shows error message ' Error in Control Framewor ' in the log please help me on this..

    Could you please give little more details,like what are the transactions used,if possible please send a copy of the code of your program which you are scheduling as back groud job.
    Kind regards
    Manoj

  • Creative cloud desctop application, problems with installing, error-code 49 -

    Nachdem sich meine Creative Cloud Desktop App nicht updaten ließ, wollte ich sie nach der Deinstallation wieder installieren.
    Habe nach Angaben des Supports die opm.db Datei gelöscht.
    mit dem Adobe Creative Cleaner Tool, die Installation der Creative Cloud Desktop Anwendung gelöscht, die anderen Programme jedoch belassen. Schließlich arbeite ich damit.
    Meine Anti-Malware-Programme deinstalliert. (später
    Meine Firewall kurzzeitig außer Betrieb gesetzt.
    Nichts hat funktioniert. Ich kann die Creative Cloud nicht mehr installieren. Es kommt bei der Installation nach einer gewissen Zeit die Fehlermeldung:
    Folgender Fehler ist aufgetreten - Fehler im Installationsprogramm beim Zugriff auf eine wichtige Datei oder Verzeichnis. Versichen Sie die Installation zu wiederholen. (Fehlercode 49)
    Ich habe bisher in keinem Forum eine Antwort gefunden.
    Bitte antwortet wer mir helfen kann!!!
    English:
    I've got problems in updating my CC Desktop App. After it doesn't function, i wanted to reinstall the application. But everytime I tried the folloging error message was on the screen.
    The following error occurred - installer error when accessing an important file or directory. Try to repeat the installation. (Error code 49)
    I just tried it with
    deleting the opm.db file
    the adobe CC cleaner tool
    deinstalling my anti-malware-tool
    nothing helped. Has anyone a tip what i can do? Please help me!

    1.
    2.
    3. No Installation was made and so no installation-Logfile could found. The last one was at 21.06.2014
    just a opm.db file was found. I cannot open it . The last words are just...
    REATE TABLE opm_meta ( key varchar(25), value TEXT, constraint pk PRIMARY KEY (key) )
    indexsqlite_autoindex_opm_meta_1opm_meta
    was this a little helpful for you?

Maybe you are looking for

  • How do I get my podcast back on iTunes after being removed?

    My podcast was removed from iTunes. How do I get it restored?

  • How to print a gift return label if only know the return number and order number

    I have a macbook pro, it's a gift, and I want to return it. But at first time, I forgot to print the return label, now I know the order number and return number, when I click "Print return label", it appeared I need to sign in, but I don't have a app

  • Creating script to split wav files

    I'm using AA3 to record my vinyl collection for burning on to CD & I also use mixedinkey to ascertain the key for each track. Quite often the keys can be different at the beginning & end of each track so I want to create a script that will save the 1

  • Network printer won't install

    I am trying to install a printer on the office network, "No driver found" Operation failed wioth error 0x00000214

  • Working with ibooks Author

    Hey guys. I've recently been doing some work with ibooks Author. I'm not sure if this is the subreddit to post my question to, so sorry if its not. My question is: How do you string a video across multiple pages within the document. I'm trying not to