Application Server Best Practice Config.?

Hi All
We currentely have an R3 System with 7 application servers which I want to check are running optimally. I have been looking around for some documentation on the best config settings and windows settings, but I have not been very successful.
Does anyone have any documentation, notes or links that will help?
Thanks in advance
Phil

A system that does not rely on request & response, so that the client can receive information without requesting any.Datagram
The ability for users to send and recieve String messages. (e.g. server announcements).Ditto. Investigate Multicast also.
The ability for users to send and receive objects. (e.g. sending or receiving user information).RMI.
(optional) Security (e.g. encrypted information).SSL.
Possible communication with clients using different technologies (e.g. .NET client) while using a server in Java.SOAP.
I think you should spend a bit more time with Google, or better yet buy a book or three on Java networking. This one is good: [http://www.amazon.com/Fundamental-Networking-Java-Esmond-Pitt/dp/1846280303|http://www.amazon.com/Fundamental-Networking-Java-Esmond-Pitt/dp/1846280303]

Similar Messages

  • SQL server Best Practice Analyzer output in .CSV

    Hi Team, I ran SQL server Best practice analyzer on our SQL 2008 R2 server. I was trying to export scan result in .csv format but it is only giving me option to save it in .xml format. I have been looking for ways to export output in such a way
    that it can be readable and I can send it to our clients but no luck.
    How can I export SQL BPA output in .csv or any other user friendly format?
    Thanks in Advance.

    Hi MSRS27,
    You can run Best Practices Analyzer (BPA) scans either from Server Manager, by using the BPA GUI, or by using cmdlets in Windows PowerShell. We can view or save BPA results from Windows PowerShell session in different format.
    If you want to export BPA results to a comma-separated values (CSV) text file, run the following cmdlet, where Path represents the path and text file name to which you want to save the CSV results.
     CSV results can be imported into Microsoft® Excel, or other programs that display data in spreadsheets or grids.
    Get-BPAResultModel ID| Export-CSVPath
    For more information, see: Run Best Practices Analyzer Scans and Manage Scan Results
    http://technet.microsoft.com/en-us/library/hh831400.aspx
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • JEE5 Application Architecture Best Practice.

    Hi Everybody
    I am going to redesign a moderate size application (not v big but larger then normal).
    Now I have few Question in my mind.
    I am using JSF as front-end, EJB3 Session Bean for Business Logic and last but not the least JPA as domain model.
    1 - With JPA we have a domain classes. Now its better to use entity as manage-bean for JSF or manage bean should be saperate.
    2 - Using DTO (Data Transfer Object) is good practice or not in JEE5.
    3 - Simplicity or Complexity but with EntityManager I feel no need of DAO but I am used to with DAO pattern. So again as best practice I have to make 1 session bean as DAO and call it from all the session bean where I write business logic or forget about DAO session bean and call EntityManager from all session bean everywhere.
    4 - For initializing EJB JNDI is 1 way other way is
    @EJB EJBCLASSNAME ejbclassobject; //this auto initialize and create object.
    Initializing like above is standard or it is an extended support from some app server.

    Hi,
    Follow my opinion:
    1 - With JPA we have a domain classes. Now its better to use entity as manage-bean for JSF or manage bean should be saparated.
    >> I think that Managed-Bean must be separated, because you can need to bind you Visual Components to it too.
    2 - Using DTO (Data Transfer Object) is good practice or not in JEE5.
    >> You can put your Entity as a member of you Managed Bean.
    3 - Simplicity or Complexity but with EntityManager I feel no need of DAO but I am used to with DAO pattern. So again as best practice I have to make 1 session bean as DAO and call it from all the session bean where I write business logic or forget about DAO session bean and call EntityManager from all session bean everywhere.
    >> For CRUD operation I don't create a additional class, but for complex business logic, you can use a separated class (Business Manager)
    Best regards

  • Internet Sales application 2007 - Best Practice

    Hi Gurus
    Has anyone completed a successful CRM 2007 Internet Sales (ISA not ICSS) configuration exercise.
    If anyone has completed the set-up please could you inform me of the documents you referenced in order to achieve this.
    Many Thanks
    Babu.

    SAP has confirmed to me that there is NOT a CRM6/7 ISA Best Practices guide.
    We used the C14_BB_ConfigGuide from our CRM4 Best Practices install and made some assumptions on what had changed.  I do not think this is still available here and am not sure if I am able to send it to anyone.  Someone from SAP or an Admin can tell us.
    I also found here the following docs that have bits and pieces of the puzzle.
    ECO_Authorizations.CRM5.0  - I think I found this on Sateesh's site, but probably a link around here for it. - CRM E-Commerce Authorizations
    Release 5.0
    SAP_ISA60_DevAndExt  - SAP E-Commerce
    6.0 u2013 Landscape, Basics and Concepts.
    Web AS  - Web Application Development
    Title: Working with Java Server Pages and Servlets
    Benny Schaich

  • PHP/MySQL Test/Production Server best practices

    Hello,
         I am currently learning PHP/MySql and have setup a test server to develop on and a production server to go live with. I wanted to know what are the best practices for synchronizing the test server with the production. Should I export the database from the test server and import it to the production server each time I make a change or is there better way to incrementally sync the databases. I am using Dreamweaver to design the web site.
    Thanks,
    Nick

    Thanks, but does this mean that after I go live I should make changes on the production database only and not use the development database, if say I need to add a new table or record(s)?
    Procedure
    1. Take production web site down
    2. Export/Save current database
    3. Make changes to production database
    4. Export/Save new database
    5. Bring production web site up
    Is this correct?

  • Application communication - Best practice

    Hello
    I am eager in understanding the best ways to create communication between applications (Server to client) in Java.
    In the past, I have attempted to make applications using the Socket and ServerSocket class. The concept works of course, but I was wondering if this technique is also being used on enterprise level.
    I would be most interested in:
    - A system that does not rely on request & response, so that the client can receive information without requesting any.
    - The ability for users to send and recieve String messages. (e.g. server announcements).
    - The ability for users to send and receive objects. (e.g. sending or receiving user information).
    - (optional) Security (e.g. encrypted information).
    - (optional) Possible communication with clients using different technologies (e.g. .NET client) while using a server in Java.
    Any information about this is greatly appreciated.
    Vincent

    A system that does not rely on request & response, so that the client can receive information without requesting any.Datagram
    The ability for users to send and recieve String messages. (e.g. server announcements).Ditto. Investigate Multicast also.
    The ability for users to send and receive objects. (e.g. sending or receiving user information).RMI.
    (optional) Security (e.g. encrypted information).SSL.
    Possible communication with clients using different technologies (e.g. .NET client) while using a server in Java.SOAP.
    I think you should spend a bit more time with Google, or better yet buy a book or three on Java networking. This one is good: [http://www.amazon.com/Fundamental-Networking-Java-Esmond-Pitt/dp/1846280303|http://www.amazon.com/Fundamental-Networking-Java-Esmond-Pitt/dp/1846280303]

  • SQL Server Best Practices Architecture UCS and FAS3270

    Hey thereWe are moving from EMC SAN and physical servers to NetApp fas3270 and virtual environment on Cisco UCS B200 M3.Traditionally - Best Practices for SQL Server Datbases are to separate the following files on spearate LUN's and/or VolumesDatabase Data filesTransaction Log filesTempDB Data filesAlso I have seen additional separations for...
    System Data files (Master, Model, MSDB, Distribution, Resource DB etc...)IndexesDepending on the size of the database and I/O requirements you can add multiple files for databases.  The goal is provide optimal performance.  The method of choice is to separate Reads & Writes, (Random and Sequential activities)If you have 30 Disks, is it better to separate them?  Or is better to leave the files in one continous pool?  12 Drives RAID 10 (Data files)10 Drives RAID 10 (Log files)8 Drives RAID 10 (TempDB)Please don't get too caught up on the numbers used in the example, but place focus on whether or not (using FAS3270) it is better practice to spearate or consolidate drives/volumes for SQL Server DatabasesThanks!

    Hi Michael,It's a completely different world with NetApp! As a rule of thumb, you don't need separate spindles for different workloads (like SQL databases & logs) - you just put them into separate flexible volumes, which can share the same aggregate (i.e. a grouping of physical disks).For more detailed info about SQL on NetApp have a look at this doc:http://www.netapp.com/us/system/pdf-reader.aspx?pdfuri=tcm:10-61005-16&m=tr-4003.pdfRegards,Radek

  • Reporting Server best practices ...

    we are migrating a bunch of reports from reporting services native mode to sharepoint 2013.
    Ideally these reports would be accessible (some mutually and some exclusively) between
    n number of companies that are supported by the BI IT Department.
    There's a number of way that this would work - one would be to have multiple apps; one on each company site...
    anyone here would have some literature of best practices and best methods this could be achieved?
    thanks 
    ed 
    eddy.a

    In that case, because each user viewing the reports needs permission to the actual item, you'll need to deploy the reports to each unique site.
    For security purposes, each customer should have a unique Site Collection. A Site Collection is the security boundary within SharePoint.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Web application security best practice?

    Hi guys,
    I am developing web app using JSF + Spring + Hibernate. I got a user backing bean which handling user login and logout session. Hence if user sign-in successfully, I will just set userLogIn=true in the userBean.java. I really don;t know if this is the best practice for handling user login session. Any security probelm here? Please advice, Thanks !
    regards,
    kmthien

    hi
    you can also find a lot of info about security handling and JSF if you search the forum.
    thanks.

  • Number of user sessions in the Application Server for a config entry

    Hi All
    I am using 10g AS, with 9i DB.
    My requirement is that -
    i need to find the total number of users of the application in any moment, and to
    display that information to the users. say, config=abc, super users need to find all
    those who are using the link from the application itself.
    I can see that information from the 10 g Enterprise Manager -> Forms -> User Sessions.
    But is there any means of transfering that information to forms.
    Can this be done by using PJC's ?
    Please post your solutions/suggestions
    Thanks in Advance
    Deepa

    Any help/ideas Please
    Deepa

  • Application resize best practice

    Hello, I have one question when making a chromeless application. In my application I have several different states where each state is different in dimension. For now I have been resizing the application window whenever a state change occurrs but since I have several different states this is starting to get confusing to change the width and height whenever a side tab opens or whenever a login panel slides down. Am I doing this the right way or can I start with a dimension that is the size when the application is at it's maximum and forget about changing the dimension every time? Since it is chromeless, you don't actually see the application background anyway..... I thought that if the application is set to a certain dimension then it will take up that amount of space on the desktop regardless of whether it might only have one button inside.....

    I assume you've already found an answer for this old question.

  • Ironport C160-Best practice config for my 2 listeners?

    I am trialling an Ironport C160.
    I want it to scan inbound and outbound mail. I have configured a public inbound listener for mail from the internet. It is configured to accept all my domains, and forward them to my exchange server. It does LDAP lookups for recpients to ensure they are valid. It uses the Data1 interface on the ip address of the Ironport and also has the hostname ironport.mydomain.com.
    What is the recommended way to configure the private outbound listener? I just want it to do simple av scanning, then pass it on to my ASA.
    Should I configure a new interface o Data2, and use port 25? If so, what would the hostname be?
    Or use the same interface and use port 24 instead?
    What are the pros and cons of each setup?

    Please note that you can add your Exchange server IP address into RELAYLIST or any sender group with RELAYED mail flow policy or mail flow policy with 'Relay' connection behavior. Add IronPort listener iP as smart host on Exchange server. All emails from Exchange server will then be treated as outgoing emails and envelope recipient address will not be checked against LDAP.
    Most of my customers simply use one listener for both incoming and outgoing emails. You can choose to have multiple listeners for incoming (e.g. Different domains want to have their own MX IP addresses, sender groups for whitelist, greylist, blacklist domain/IP ranges) and outgoing emails (e.g. Not adding 'Received' header for outgoing listener for security reason).
    Please note that there is a restriction that you cannot configure IP addresses on same network range on different physical interfaces on IronPort.
    You can also configure multiple IP interfaces or interface groups on IronPort such that you can deliver emails for different domains, normal or urgent, management or marketing or other emails by different IP addresses or IP range.

  • WS application configuration - best practice advice

    Hi there,
    I'm a newbie on web services.
    I'm currently developing a Web Service using JAX-WS 2.1 and deploying on Tomcat 6.
    I'm wondering where to put my application's configuration. If I was developing a standalone java application I would put it in a Java Properties file or perhaps use the Java Preferences API.
    But this is not a standalone java application, it is something that runs in a container, in this case Tomcat.
    I have a fealing that web.xml is the intended place to put this information but I've also read posts discouraging this. I'm also in the dark as to how to access the information in web.xml (Context parameters section) from within my web service.
    Basically I would like to use a solution which is a much standard as possible, i.e. not tied to any specific container.
    Thanks.
    Changed typo: "have" changed to "how"

    What is the model number of the switch?
    Normally a switch that cannot be changed does not have an IP address.  So if your switch has an address (you said it was 192.168.2.12)  I would assume that it can be changed and that it must support either a gui or have some way to set or reset the switch.
    Since Router1 is using the 192.168.1.x  subnet , then the switch would need to have a 192.168.1.x  address (assuming that it even has an IP address), otherwise Router1 will not be able to access the switch.
    I would suggest that initially, you setup your two routers without the switch, and make sure they are working properly, then add the switch.  Normally you should not need to change any settings in your routers when you add the switch.
    To setup your two routers, see my post at this URL:
    http://forums.linksys.com/linksys/board/message?board.id=Wireless_Routers&message.id=108928
    Message Edited by toomanydonuts on 04-07-2009 02:39 AM

  • Apache Web Server best practices

    I was wondering if there are recommendations for using CPS
    with Apache. Obviously the DAV module should be loaded, should ldap
    be loaded as well. Is there significant benefit to having multiple
    accounts on the web server vs. sharing one and limiting access with
    CPS's LDAP?

    Oracle9iAS includes Oracle HTTP Server, which is based on Apache (with quite a few additions and enhancements).
    HTH,
    Ashesh Parekh
    Oracle9iAS Product Management

  • Best Practice Analyzer database mismatch error

    Hi all,
    I am getting the following critical error when I run the BPA on a couple of our BizTalk servers and wondered if anyone had seen the same?
    "The version of BizTalk Server does not Match the Version of BizTalk Management Database Schemas"
    I am using v1.2 of BPA aagainst a BizTalk 2010 install.
    This has only surfaced since we upgraded from BizTalk 2009 R2 BUT not on all of our environments.
    It does not seem to be causing any runtime issues however as all applications seem to be running fine!!
    Looking at the BizTalkDBVersion tables in SQL everything looks the same on servers which present this error and those that do not i.e. There is an entry for version 3.9.469.0 ... which matches the BizTalk Server version reported in the registry
    at "\HKLM\Software\Microsoft\BizTalk Server\3.0\Product Version\"
    The only thing I can see is that as this was an upgrade there is also an entry in the
    BizTalkDBVersion tables for the 2009R2 version (3.8.368.0), so maybe the BPA is selecting this value and comparing against the regisrty version?]
    However, this doesn't explain why I see this issue on 2 upgraded servers but not the 3rd? 
    Any ideas?
    Regards,
    Dave

    Hi Dave,
    There is no version as BizTalk 2009 R2. v3.8.368.0 refers to BizTalk 2009 (not R2).
    The above error occurred because BizTalk Server Best Practices Analyzer has detected that the version of BizTalk Server does not match the version of the BizTalk Database Schemas. This can happen if the BizTalk database was deleted and then restored
    with an incorrect database.
    Check the version of SQL Server upgraded against the version of BizTalk server.
    Reference BPA Help file:
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

Maybe you are looking for

  • Color shifting of a complex object

    I have a bitmap image of a flower that I would like to fade from one base color to another (i.e. red, orange, yellow, white, pink, etc). The image is moderately complex with two or three dozen shades in the image. Is there an easy way to do this? I f

  • Error Handelling File-XI-RFC Scenario.

    Hi Experts, I am making a scenario File to XI to RFC, File - XI - R/3 System If the record is already available at R/3 System, how I can check that the same is available at R/3 and how I can stop saving the same? I will write a code in our RFC Functi

  • No AirDrop in Finder?

    I just finished installing Lion, and i have no AirDrop in Finder. Also nothing in Finder's preferences. I have a Mid 2009 MacBook Air. I saw nothing about this on the internet/Apple's page. Any sugestions?

  • What happens if you install 800 MHZ Dram in a n IMac that originally had 667MHZ installed?

    What happens if you install 800 MHZ Dram in a n IMac that originally had 667MHZ installed?

  • After Effect CS6 crashes after splash screen

    I cannot get After Effects to open. When I try to open the software, I get a splash screen, and then the window opens, but the it stops responding before the interface can appear. I thought the issue may have been my virus protection (norton), so I t