Java Development Setup for AIP Online

I'm trying to deploy AIP Online using ANT and Tomcat in my local machine.
Do you have any documents regarding this?

hi
You could find some more documentation in the links mentioned below:
Install and configure NWDI:
NWDI Overview and Guidelines
Working with NWDI:
http://help.sap.com/saphelp_nw04s/helpdata/en/03/f6bc3d42f46c33e10000000a11405a/frameset.htm
Portal Administration:
https://www.sdn.sap.com/irj/scn/wiki?path=/display/ep/enterprise%252bportal%252badministration
Hope the documents are useful.
thanks

Similar Messages

  • HT201320 ipod mail setup for t-online

    I am trying to set up my mail account for Deutsche telekom (t-online.de). But when I enter all the data my ipod tells me that the mails cannot be received: user name or password for secureimap.t-online.de is not correct". An I don't know why... Any ideas?

    I reply to this question even it is over one year old since I had the same problems recently. I described how I solved it in German in this article:ios 7 E-Mail-Client mit T-Online. In short the trick is to set an extra password for external email clients (like Outlook or the Apple email client) in the menue of the email center ("E-Mail-Center"), which has its own password - the same as that for the customer center ("Kundencenter").
    Set the SSL-decryption setting to "on". Use the following ports:
    inbox server: secureimap.t-online.de, Port: 993, safety: SSL/TLS,
    outbox server: securesmtp.t-online.de, Port: 587, safety: SSL/TLS.
    These settings should be found automatically during the setup of the email account.
    And I recommend to set the storage time for emails in the email center from 90 days (default) to "never delete".

  • Java development tool for optimalization of the code

    I'm searching for a program, that would detect not used variables, methods, etc. in Java code. Can you help me to find such?

    Why do you want a program to cover up poor program design?
    The best solution to your problem is: don't declare variables you don't use, and don't write methods you don't use.
    Additionally, you shouldn't copy and paste other code. If you must, read other people's code to get a good idea of how it works, then do it for yourself, if not just for the sake of keeping organized and not having any unused stuff.
    As far as speed optimization goes (I know that's not what your question was about, but, for your information), you can compile with the -O option to take care of that. If you are worried about class file size, you can compile with the -g:none option to remove debugging information.
    Jason

  • Error in Oracle 2 Day Plus Java Developer Guide for XE

    After creating the connection successfully I tried to follow the document. Section 2-4 includes some sample code (Example 2-1) to determine the JDBC Driver Version. After a straight copy/paste and compile the following error was printed in the log:
    "C:\Program Files\jDeveloper10g13\jdk\bin\javaw.exe" -ojvm -classpath "C:\Program Files\jDeveloper10g13\jdev\mywork\HRApp\View\classes;C:\Program Files\jDeveloper10g13\j2ee\home\lib\ojsp.jar;C:\Program Files\jDeveloper10g13\j2ee\home\jsp\lib\taglib\ojsputil.jar;C:\Program Files\jDeveloper10g13\j2ee\home\oc4j.jar;C:\Program Files\jDeveloper10g13\j2ee\home\lib\oc4j-internal.jar;C:\Program Files\jDeveloper10g13\j2ee\home\lib\servlet.jar;C:\Program Files\jDeveloper10g13\jdev\lib\ojc.jar;C:\Program Files\jDeveloper10g13\jdbc\lib\ojdbc14dms.jar;C:\Program Files\jDeveloper10g13\jdbc\lib\orai18n.jar;C:\Program Files\jDeveloper10g13\jdbc\lib\ocrs12.jar;C:\Program Files\jDeveloper10g13\diagnostics\lib\ojdl.jar;C:\Program Files\jDeveloper10g13\lib\dms.jar" hr.JDBCVersion
    Exception in thread main
    java.sql.SQLException: Io exception: Invalid connection string format, a valid format is: "host:port:sid"
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:175)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:287)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:328)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:434)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:151)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:571)
         at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:218)
         at hr.JDBCVersion.main(JDBCVersion.java:19)
    Process exited with exit code 1.
    Since I installed Oracle XE with all the standard defaults, I changed the line
    String jdbcUrl = "jdbc:oracle:thin:@localhost:1521/XE";
    to
    String jdbcUrl = "jdbc:oracle:thin:@localhost";
    which now produces the following error log:
    "C:\Program Files\jDeveloper10g13\jdk\bin\javaw.exe" -ojvm -classpath "C:\Program Files\jDeveloper10g13\jdev\mywork\HRApp\View\classes;C:\Program Files\jDeveloper10g13\j2ee\home\lib\ojsp.jar;C:\Program Files\jDeveloper10g13\j2ee\home\jsp\lib\taglib\ojsputil.jar;C:\Program Files\jDeveloper10g13\j2ee\home\oc4j.jar;C:\Program Files\jDeveloper10g13\j2ee\home\lib\oc4j-internal.jar;C:\Program Files\jDeveloper10g13\j2ee\home\lib\servlet.jar;C:\Program Files\jDeveloper10g13\jdev\lib\ojc.jar;C:\Program Files\jDeveloper10g13\jdbc\lib\ojdbc14dms.jar;C:\Program Files\jDeveloper10g13\jdbc\lib\orai18n.jar;C:\Program Files\jDeveloper10g13\jdbc\lib\ocrs12.jar;C:\Program Files\jDeveloper10g13\diagnostics\lib\ojdl.jar;C:\Program Files\jDeveloper10g13\lib\dms.jar" hr.JDBCVersion
    Exception in thread main
    java.sql.SQLException: Io exception: SO Exception was generated
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:175)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:287)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:328)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:434)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:151)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:32)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:571)
         at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:218)
         at hr.JDBCVersion.main(JDBCVersion.java:19)
    Process exited with exit code 1.
    How am I supposed to learn anything if the code examples are flawed? Please help me... this is driving me nuts.

    Can you provide the URL to the problematic instructions?
    The JDBC URL should probably be: jdbc:oracle:thin:@localhost:1521:XE
    And one more thing - your JDeveloper is installed in a directory that has a space in its name (Program Files) - this may cause problems so reinstall it in a new directory without a space in the path.

  • Why opening from java the rpt search for a JNDI when it's setup for a DNS ?

    I downloaded CR for eclipse 2.
    All is 'quite' working froma a java app.
    i've only a problem with an 'jndi name search error'. I'll try to explain.
    In the RPT i use a DSN connection to a sql server into a differente machine. When I open directly the rpt, all is working.
    From java code, i'll open the report, but when i try to export  to pdf iit tell me about an error 'jndi name search error', with the name of the DSN connection i setup.
    Why? Why opening rpt all is working, but opening from code NOT is working ?
    What's the difference from two opening methods? Why an .rpt opened from java cannot just open the connection like when opened from cristal report !?
    *My question is: why opening from java the rpt search for a JNDI when it's setup for a DNS connection ?! *

    The .rpt has been originally created from an ancient version of Cristal report. probably the '8'.
    In an italian software called 'Business', the .rpt is populated for printing of invoices and similar docs.
    My society is trying to 'integrate' our software with the .rpt used from our customer.
    So we want simply open .rpt, add a new logo, set the selection for record and save as pdf.
    We so bought Cristal report 2008 (v.12 ), opened the .rpt, saved (so it 's now in a supported version).
    The sql server is located at 10.1.2.40, and is a Microsoft Sql Server.
    In my development pc I've installed Cr 12. I added a User DSN to point to Sql server at 10.1.2.40, at right DB with username and password. Opening from my development machine the .rpt and 'running' it, it display the data. Ok !
    I downloaded CR4 Eclipse 2.
    I open report using the unmanaged sdk. (to access it through file system, not via RAS), Ok.
    I set selection record. Ok.
    I execute .export with 'PDF' for format option and here I get an exception: the JNDI name 'CPR'  is not found. Where CPR is the DSN name setup into .rpt from Cristal Report 2008.
    So, no, i'm not trying to using the designer from Eclipse, but from the full application. But I must use the rpt at runtime to export some rendered records.
    What must I do to do this?
    CR4E only supports java based connections, so it is looking for the JDBC/JNDI name and won't look at the DSN's.
    How Can i setup at runtime a JDBC / JNDI connection ?
    I already have a 'connection' from my code to the sql server, using sqlserver jdbc driver v. 4 from microsoft. And executing query I see the results. So i have right driver, ip, db name, user name and password
    But is there a way to simply tell at runtime to my .rpt to use THIS connection? Or a similar connection...
    Thanks in advance for help provided to us. (we bought a CR license only for this work...)

  • Good Resource for Finding Java Developer for Startup?

    Not sure if this is the appropriate to place to post but we are looking for an interested Java developer to come onboard our very small (2 man) startup to help us with our networked Java application.
    I have looked around a little online and not found much so does anybody know where is a good place to scout out such persons? Admittedly we are not flush with $ but we do have some and we would be providing equity along with ongoing cash payment. Of course we also understand we won't be getting the best Java guru out there but then we don't really need that either, just someone capable of simple socket programming, swing and basic SQL stuff. Not rocket science, and we would even consider less experienced developers with a keen interest to learn and use this as an opportunity to develop some new real-world skill so their own. We are very laid back.
    Any help appreciated.

    I'd try one of:
    Your local Entrepreneurs meetup
    - there's bound to be one, and people who go along to this sort of thing will either be able to recommend someone or you might even meet the right sort of Java dev there.
    The Joel On Software jobs board
    - because the right sort of people read Joel On Software
    Personal recommendations
    - because that's always best; if you're not asking around like crazy, you should be.

  • Source Code Control for Java development in 6.20

    I am new to Java development. How do you control source code (versioning/transport) for Java development with the base R/3 is 6.20. I believe Java Development Infrastructure (JDI) is only available in 6.40. Is this the correct statement? Anyone that has work on 6.40 with Java can explain?
    Let say we have this setup:
    Applications are in 6.20
    Portal will be EP 6.0
    Do we need Web AS 6.40 to develop Java for Portal with base R/3 of 6.20. Or we can use Developer Studio to create Java accessing R/3 6.20 and display in Portal 6.0. If this is the case, how do you manage transport is you are not using JDI in 6.40.

    Hi Nablan,
    I believe you are development J2EE applications. JDI only runs with WebAS 6.40 which supports J2EE spec. 1.3. The developed J2EE archive will not be able to deploy to WebAS 6.20 which only supports J2EE 1.2 spec. So if you want to deploy the created software build from JDI and deploy it to WebAS 6.20, then the answer is unfortunately no.
    But, if you just want the Portal be able to display your application in an iView inside, then maybe you can just develop and deploy your application to the WebAS 6.40 system. Then create an iView in your EP to point to the app in the 6.40 system. That way your app will not need to deploy to WebAS 6.20.
    Regards,
    Marc

  • SQL certification for a java developer?

    Hello,
    Can somone please let me know which dba or sql certification I should get as a java developer? My heart is at application development but I though having a solid knowledge in sql queries or database management would help me in writting a better softwares.
    Please let me know.
    Thank you.

    matthew_morris wrote:
    ....I have been thinking slightly on our debate .... ( and have these rushed thoughts before heading for bed).
    * I am sure we both agree on the certification study journey and knowledge gained being more important than the end certificate (except perhaps the certificate is needed for job interview or OPN partner points)
    * wrt 1z0-051 .... Taking a test that doesn't provide a certification is even more pointless.
    ... IMHO it may a have little value to some
    [1] ... they can still say exam passed on CV .... maybe that helps get a job.
    [2] it is chance to gain experience of certification exams ... 1z0-047 is a tough introduction to certification exams.
    [3] It is a chance to get a quicker certification exam 'win'
    [3] It is a cheaper exam (as it it online available and not 'high stakes' ... ie does not give a certifcation by itself).
    .... 1z0-051 is about 2/3 the cost of 1z0-047
    But I am willing to accept this is a perhaps a small set of positives; and thier may be no point for many.
    I really don't like the fact that anyone wanting an Oracle (Enterprise Edition) SQL certification (without PL/SQL) has to go for SQL OCE. An earlier certification would be better.
    I generally like the CIW Database Design Specialist: (Exam 1D0-541) content .....
    I would certainly modify my earlier idea of 1z0-047 having as a pre-requisite an earlier SQL exam / certification as a pre-req ....
    And would certainly have 1z0-051 or CIW Database Design Specialist: (Exam 1D0-541) on the pre-req list ...
    ( There are precedents for non-oracle exams/certs being acceptable in lieu of an oracle exam .... eg LPIC-1 for 1z0-402 )
    ( There is however IMHO no precedent for an OCE exam having another exam as a precedent ).
    .... Apologies to original poster .... I may have sidetracked your orginal question with a slight debate.

  • Setup for a java software

    dear all,
    i wanna know how come i can create a setup for my software which is
    developed using java swing and MS-Access.
    I mean i want create an installation file for my software through which
    i will be able to install my software any where i want instead of copying it everywhere.
    thanks in advance

    Hi,
    Try out Install Anywhere at following url.
    http://www.zerog.com
    Its intuitive architecture brings intelligence to the process of installing software onto any client or server platform, and configures those applications for optimal performance. InstallAnywhere automatically handles all of the installation details, minimizes time-to-deployment, and increases productivity
    Kind Regards
    Chetan Chandarana

  • Flex for Java Developer?

    I am working on flex 1.5 from last 7 months.Ealier i hv
    worked on Java (1.5 Yr)
    I hv created an application in flex sucessfully.
    My Qtn is:
    Whether i have to continue with flex or move to another
    technologies like Struts etc.
    Because i have nil knowlwge of FLASH.
    or
    I hv to start learning FLASH MX. Is it necessary for
    Flex/Java Developer.
    I am comfortable with action script if uses for Business
    Application but
    unable to produce better designs using it.
    Please Suggest.
    with Regards
    Vinay

    well vinay if u r thinking about -- Flex Front End to Your
    Struts Applications
    then ,,
    Struts is an open source framework that facilitates the
    development of web applications based on Java servlets and other
    related technologies. Because it provides a solution to many of the
    common problems developers face when building these applications,
    Struts has been widely adopted in a large variety of development
    efforts, from small projects to large-scale enterprise
    applications.
    Although Struts greatly facilitates the task of developers,
    it doesn't do much to improve the end-user experience: the
    end-result is still an application delivered in HTML and using the
    traditional HTTP request/response mechanism.
    Developers—and organizations in general—are
    increasingly looking for solutions to provide their applications
    with a more engaging user experience that overcomes the limitations
    of HTML.
    Macromedia Flex is a presentation server that addresses this
    requirement and allows developers to build a new generation of Rich
    Internet Applications (RIAs) that combine the usability of desktop
    applications with the reach of traditional web applications.

  • Development tools for Project/Server Project Online in O365

    Hello,
    My company is seeking to unify it's IT PMO using Project Server or Project Online. I notivced that the Project Server certs have been deprecated and the pages ar eno longer available. Does that mean Project Online is the replacement/continuiation of that
    product?
    If so, what are some development tools you would advise for me to have to be able to develop/modiify and administrate Project Online in O365?
    Thanks,
    T

    Hi,
    Indeed Project Server and Project Online are 2 different products. You have to notice that Microsoft regularly releases new version of Project Server (2003, 2007, 2010, 2013). Some old version feature might be deprecated indeed. Moreover Project Online is
    a new version on the Microsoft solution that doesn't require to have on-premise infra.
    Note also that Project Onlie is meant to be used quite out-of-the-box whereas Project Server on premise allows you doing custom development.
    Below a link for Project Online:
    http://office.microsoft.com/en-ca/project/microsoft-project-online-online-project-management-software-FX103802026.aspx
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • Can mac book pro useful for java developer

    hi iam a java developer and interested to buy mac book pro.
    My question is can i do java projects and programming on mac book pro 13?

    mviplav,
    yes, you could. Versions of the JDK for OS X can be downloaded from Oracle.

  • Can't purchase Java Developer for windows CD

    Hi,
    Somehow when purchasing a Java Developer for Windows CD it always gives a web page with an error. Is there a way to avoid this error, or is there a phone number I can call to make that purchase?
    Thanks, Boris.
    P.S. The error page has this content:
    Error Occurred While Processing Request
    Error Diagnostic Information
    unknown exception condition
    PCodeDocumentNodeImp::prepareForExecution
    Date/Time: 11/10/03 10:47:12
    Browser: Mozilla/5.0 (Windows; U; Win98; en-US; rv:0.9.4.1) Gecko/20020314 Netscape6/6.2.2
    Remote Address: 68.134.170.160
    HTTP Referer: http://www.oracle.com/webapps/techtracks/legal.jsp?tid=540&owner=1&opt1_rb=NewUser
    Template: E:\Inetpub\wwwroot\oracle-otngold\register.cfm
    Please inform the site administrator that this error has occurred (be sure to include the contents of this page in your message to the administrator).
    [Edited by: otngroup on Nov 10, 2003 10:25 AM]

    Basically you have a 99.9 percent Window's install so any Windows software issues are Microsoft problems.
    The only thing I can think of is the Microsoft servers were down briefly for maintenance or problems or maybe had a heavy load. If you were using the Auto update try going to the web site directly as they should be on another server.
    You might also try the Microsoft Window XP forums and see what you can find. Maybe search for: "Security Update stalls"?
    From what I've read just turning virus protection off doesn't work sometimes, you may have to UN-install it to get it to work.
    "Permissions" pertains to MAC SOFTWARE only. 3rd party software or Windows files are NOT affected at all by running permissions. Besides, it will only work on a HD with a Mac operating system anyway. You can't even select the Window partition in permissions to try it anyway.
    Good luck....

  • Oracle database 11g certification for Java developer

    Hello,
    I'm Java developer, OCPJP 6 ( Oracle Certified Professional, Java Programmer +6+ ) and
    I decided to pass exams: 1Z0-051 and 1Z0-052 to get OCA ( Oracle Database +11g+ Administrator Certified Associate ) certificate,
    but I need some advice, maybe i should seek other certificate, that would be more valuable for Java developer, than OCA.
    Thanks for advice.

    The answer of whether a particular certification is valuable depends on you, not the tests themselves. The Oracle Certified Master for example is an extremely prestigious certification, and I have considered seeking it at some point in the future to improve my professional credentials. However, the same certification would have absolutely no value to my wife, because she's a homemaker with no interest or intent of ever working with Oracle.
    Using an example a little closer to yours, only reversed --- I work as a DBA and PL/SQL developer. On several occasions I have dabbled with Java, and took a couple of classes when I worked for Oracle. I could code in Java if I had to, but wouldn't really be good without a lot of practice. However, I've never really had a sufficient need in my work to dig in and really practice enough to use it. I considered going for the Oracle Java certifications as a means of kick-starting that and getting to the point where it was really a viable option in my development. Ultimately I decided not to because I've been working with Oracle for better than fifteen years and there has never been an occasion where I really felt a need to know Java. If I were to spend a bunch of time improving my Java skills just for the certification, there's no guarantee I would ever use them after that.
    Coming back to you -- if you already need SQL and DBA skills in your work, then those certifications should be of value to you immediately. If you think that you might work (or want to work) more with SQL and DBA-level skills in the future, then they should be of value to you in the future. If you won't use the skills now or ever, then the exams do nothing but add a line to your resume (which still has value, but you must determine how much).
    Edited by: matthew_morris on Apr 30, 2012 1:56 PM

  • Steps to setup for my  Java Swing Desktop Application on Macintosh

    hi guys,
    I need help from all of u to create the setup for my Desktop application (developed in swings) on Macintosh. pls give me the references at least. how to approach the tools.
    its urgent...please....
    thanks in advance.
    -siva

    hi guys,
    I need help from all of u to create the setup for my Desktop application (developed in swings) on Macintosh. pls give me the references at least. how to approach the tools.
    its urgent...please....
    thanks in advance.
    -siva

Maybe you are looking for

  • Oracle 8.1.7 on Linux Red Hat 7.2

    We have two Servers, One is HP6000, the other is Dell 6400. Both are Linux Red Hat 7.2 OS with Oracle 8.1.7 installed. Now I want to make a cluster with them, One is active, One is standby. Which software I need? And how install it on my servers? Bes

  • Media="print" problem in IE

    I have a simple noprint option set in print.css applied to the table around the LH navigation to stop it from printing. Works fine in Firefox and in Opera, but IE will not display the LH navigation on screen, and when I try Print Preview or Print, I

  • The screen keeps saying 'Do not disconnect'

    I've got a problem with my I-pod mini. The screen keeps telling me 'do not disconnect' and the I-pod has disconnected allready. The I-pod doesnt respond to anything. The computer now identifies the I-pod as something unknown. Please help me, I'm quit

  • Classic won't run on 10.4.11

    Hey everyone I'm having a little trouble right now and it is quite frustrating. I am trying to use some old classic programs I have installed on my computer and classic no longer starts! I have my original install cd's and have reinstalled classic mu

  • Airport Utiliy Update fails

    Hi there, Got a new Extreme BS yesterday, when trying to Admin it with the Utility I get an error that the current version of the tool cannot work with this version of the BS. The admin tool is version 4.2.3 but when I download the latest update from