Help required from JDeveloper Development Team.

HI there,
I Download the JDeveloper 10.1.2 (1811) from OTN, But the downloaded archive file is unable to open. I did the download once again but I am facing same problem. I want to JDeveloper 10.1.2 for the installation of BI Beans 10.1.2.
Help required from JDeveloper Development Team
Thanks For Your Time,
Regards,
ViSHAL.

Please use an informative Subject line, there is more chance that people will read the post.
All we can suggest is that you try the download again.

Similar Messages

  • Help Required from archieving Delivery data

    Hi all,
    I need to archieve delivery data(LIKP data),I have no idea of how to proceed with ,im not able to get a clear picture with existing threads regarding archieving .
    Kindly Help me out
    Santhiya B

    Hi,
    Tcode : AOBJ ...search for the appropriate object.
    Search for RV_LIKP please make sure of the object.> double click on that>customizing settings--> ask basis person to maintain proper settings viz Content repository,logical path  and required fields.
    Assuming its done. Go to tcode SARA -->Give object name -->write select proper variants.
    execute.. (In test mode if doing first time)...
    For every object there are preprocessing program,write, read,delete and reload programs first and last may not be available for every object.
    More Information read the Information attached to it " Click on symbol "i".
    For custom table check demo example SBOOKA, SBOOKR,SBOOKD report programes.
    Regards
    Mohinder

  • SSL Help required : using JDeveloper

    I am using a single self signed certificate created using keytool on both the client and server end. (i.e. the same keystore as the truststore and keystore as well as the same on the client and the server)
    Tried this sample code to fetch the WSDL of my webservice in JDeveloper. Successfully did this.
    ===========================================================
    import HTTPClient.HTTPConnection;
    import HTTPClient.HTTPResponse;
    import javax.security.cert.X509Certificate;
    import oracle.security.ssl.OracleSSLCredential;
    import java.io.IOException;
    import javax.net.ssl.SSLPeerUnverifiedException;
    import javax.net.ssl.SSLSession;
    public class SSLSocketClientWithClientAuth {
    public static void main(String[] args) {
    if (args.length < 4) {
    System.out.println("Usage: java HTTPSConnectionTest [host] [port] " +
    "[wallet] [password]");
    System.exit(-1);
    String hostname = args[0].toLowerCase();
    int port = Integer.decode(args[1]).intValue();
    String walletPath = args[2];
    String password = args[3];
    HTTPConnection httpsConnection = null;
    OracleSSLCredential credential = null;
    try {
    httpsConnection = new HTTPConnection("https", hostname, port);
    } catch (IOException e) {
    System.out.println("HTTPS Protocol not supported");
    System.exit(-1);
    try {
    credential = new OracleSSLCredential();
    credential.setWallet(walletPath, password);
    } catch (IOException e) {
    System.out.println("Could not open wallet");
    System.exit(-1);
    httpsConnection.setSSLEnabledCipherSuites(new String[]{"SSL_RSA_WITH_RC4_128_SHA","SSL_RSA_WITH_3DES_EDE_CBC_SHA","SSL_RSA_WITH_RC4_128_MD5","SSL_RSA_WITH_DES_CBC_SHA","SSL_DH_anon_WITH_3DES_EDE_CBC_SHA"});
    // httpsConnection.setSSLCredential(credential);
    System.out.println("Set credentials and cipher suite");
    try {
    httpsConnection.connect();
    System.out.println("Connected!!!!!");
    } catch (IOException e) {
    System.out.println("Could not establish connection");
    e.printStackTrace();
    System.exit(-1);
    //javax.servlet.request.
    X509Certificate[] peerCerts = null;
    /* try {
    SSLSession sslSession = httpsConnection.getSSLSession();
    System.out.println("Getting session.........");
    httpsConnection.connect();
    }catch(Exception e){
    e.printStackTrace();
    System.out.println("null Getting session.........");
    System.exit(-1);
    try{
    peerCerts =
    (httpsConnection.getSSLSession()).getPeerCertificateChain();
    } catch (javax.net.ssl.SSLPeerUnverifiedException e) {
    System.err.println("Unable to obtain peer credentials");
    e.printStackTrace();
    System.exit(-1);
    String peerCertDN =
    peerCerts[peerCerts.length - 1].getSubjectDN().getName();
    peerCertDN = peerCertDN.toLowerCase();
    if (peerCertDN.lastIndexOf("cn=" + hostname) == -1) {
    System.out.println("Certificate for " + hostname +
    " is issued to " + peerCertDN);
    System.out.println("Aborting connection");
    System.exit(-1);
    try {
    HTTPResponse rsp = httpsConnection.Get("/spmlws/HttpSoap11?wsdl");
    System.out.println("Server Response: ");
    System.out.println(rsp.getText());
    System.out.println("Server Response: ");
    System.out.println(rsp.getText());
    } catch (Exception e) {
    System.out.println("Exception occured during Get");
    e.printStackTrace();
    System.exit(-1);
    =====================================================
    But on using the client proxy generated for my webservice using JDeveloper and then setting the system properties such as
    System.setProperty("javax.net.ssl.keyStore",keyStore);
    System.setProperty("javax.net.ssl.keyStorePassword", keyStorePassword);
    System.setProperty("javax.net.ssl.trustStore", trustStore);
    System.setProperty("javax.net.ssl.trustStorePassword",trustStorePassword);
    System.setProperty("javax.net.ssl.keyStoreType","JKS");
    System.setProperty("javax.net.ssl.trustStoreType","JKS");
    I get the following exception:
    <MSG_TEXT>IOException in ServerSocketAcceptHandler$AcceptHandlerHorse:run</MSG_TEXT>
    <SUPPL_DETAIL><![CDATA[javax.net.ssl.SSLProtocolException: handshake alert: no_certificate
    at com.sun.net.ssl.internal.ssl.ServerHandshaker.handshakeAlert(ServerHandshaker.java:1031)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.recvAlert(SSLSocketImpl.java:1535)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:863)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1025)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1038)
    at oracle.oc4j.network.ServerSocketAcceptHandler.doSSLHandShaking(ServerSocketAcceptHandler.java:250)
    at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:868)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
    at java.lang.Thread.run(Thread.java:595)
    ]]></SUPPL_DETAIL>
    Please can anybody help me with this!!!!
    Thanks in advance
    Nilesh

    Hi,
    Try the following.
    String_arctest model = new String_arctest();
    ReturnTestString str=new ReturnTestString(model);
    str.setArg1("HalloWelt");
    Request_ReturnTestString req=new Request_ReturnTestString(model);
    req.addReturnTestString(str);
    wdContext.nodeRequest_ReturnTestString().bind(req);
    wdContext.nodeRequest_ReturnTestString()
         .currentRequest_ReturnTestStringElement().modelObject().execute();
    wdContext.nodeResponse().invalidate();
    wdContext.nodeResponse().nodeReturnTestStringResponse().invalidate();
    Regards, Anilkumar

  • Urgent :Dev 6.0 Developement Team Forms error

    Help required form Oracle Devlopemnt Team.
    hi i am using oracle8 OAS 4.0.7, Developer 6.0 production
    with NT 4.0 and service Pack 3
    when i try to run the form through jinitinator or JDK provided
    with the package i get the following error. running with
    jinitator Ihave tried using earlier version of JDK its show the
    same problem.
    Oracle JInitiator version 1.1.7.11
    Using JRE version 1.1.7.11o
    User home directory = E:\WINNT\Profiles\Administrator
    Proxy Configuration: no proxy
    java.io.FileNotFoundException: \forms60\f60all.jar
    at java.io.FileInputStream.<init>(FileInputStream.java:56)
    at sun.net.www.protocol.file.FileURLConnection.connect(Compiled
    Code)
    at
    sun.net.www.protocol.file.FileURLConnection.getInputStream(FileUR
    LConnection.java:162)
    at
    sun.net.www.protocol.http.HttpURLConnection.openConnectionCheckRe
    directs(Compiled Code)
    at
    sun.applet.AppletCache.getInputStream(AppletCache.java:588)
    at
    sun.applet.AppletResourceLoader.loadJar(AppletResourceLoader.java
    171)
    at sun.applet.JinitAppletPanel.loadJarFiles(Compiled Code)
    at sun.plugin.AppletViewer.loadJarFiles(Compiled Code)
    at
    sun.applet.JinitAppletPanel.runLoader(JinitAppletPanel.java:500)
    at sun.applet.JinitAppletPanel.run(Compiled Code)
    at java.lang.Thread.run(Thread.java:466)
    and with JDK through Explorer i get the following errors
    Microsoft (R) VM for Java, 5.0 Release 5.0.0.3165
    ==============================================
    ? help
    c clear
    f run finalizers
    g garbage collect
    m memory usage
    q quit
    t thread list
    ==============================================
    com.ms.security.SecurityExceptionEx[oracle/forms/engine/Main.init
    ]: cannot access file E:\WINNT\Java\.hotjava
    at com/ms/security/permissions/FileIOPermission.check
    at com/ms/security/PolicyEngine.deepCheck
    at com/ms/security/PolicyEngine.checkPermission
    at com/ms/security/StandardSecurityManager.chk
    at com/ms/security/StandardSecurityManager.checkRead
    at java/io/File.exists
    at java/io/File.mkdirs
    at sun/applet/AppletViewer.<clinit>
    at java/lang/ClassLoader.findSystemClass
    at com/ms/vm/loader/URLClassLoader.loadClass
    at java/lang/ClassLoader.loadClassInternal
    at oracle/forms/engine/Main.init
    at com/ms/applet/AppletPanel.securedCall0
    at com/ms/applet/AppletPanel.securedCall
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.run
    at java/lang/Thread.run
    Error getting package information: sun/applet
    com.ms.packagemanager.PackageManagerException: Package not
    ound
    at com/ms/packagemanager/PackageManager.getPackage
    at
    com/ms/security/SecurityClassLoader.getSecurityInfoFromPackage
    at
    com/ms/security/SecurityClassLoader.findPackageManagerClass
    at
    com/ms/security/SecurityClassLoader.findPackageManagerClass
    at com/ms/vm/loader/URLClassLoader.loadClass
    at java/lang/ClassLoader.loadClassInternal
    at oracle/forms/engine/Main.init
    at com/ms/applet/AppletPanel.securedCall0
    at com/ms/applet/AppletPanel.securedCall
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.run
    at java/lang/Thread.run
    java.lang.ClassNotFoundException: sun.applet.AppletViewer
    at com/ms/vm/loader/URLClassLoader.loadClass
    at java/lang/ClassLoader.loadClassInternal
    at oracle/forms/engine/Main.init
    at com/ms/applet/AppletPanel.securedCall0
    at com/ms/applet/AppletPanel.securedCall
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.run
    at java/lang/Thread.run
    what could be the problem pls urgent help is required.
    mobeen
    null

    Mohammed Moizuddin (guest) wrote:
    : Mobeen (guest) wrote:
    : : Help required form Oracle Devlopemnt Team.
    : : hi i am using oracle8 OAS 4.0.7, Developer 6.0 production
    : : with NT 4.0 and service Pack 3
    : : when i try to run the form through jinitinator or JDK
    : provided
    : : with the package i get the following error. running with
    : : jinitator Ihave tried using earlier version of JDK its show
    : the
    : : same problem.
    : : Oracle JInitiator version 1.1.7.11
    : : Using JRE version 1.1.7.11o
    : : User home directory = E:\WINNT\Profiles\Administrator
    : : Proxy Configuration: no proxy
    : : java.io.FileNotFoundException: \forms60\f60all.jar
    : : what could be the problem pls urgent help is required.
    : : mobeen
    : The "Exception" being thrown by Java shows that you have not
    : specified proper path for the JAR Archives. The path must be
    : drive:\oracle_home\forms60\java
    : Hope this will solve your problem.
    : Regards
    : Moiz
    Thank you for the reply where do i have to set this jar Archives
    path. the parameters working fine with earlier and beta version
    of Dev 6.0
    the static file i am using is
    <html>
    <head>
    <meta http-equiv="Content-Type"
    content="text/html; charset=iso-8859-1">
    <meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
    <title>Developer/2000 for the Web</title>
    <!-- FILE: cartridg.html -->
    <!-- Oracle Cartridge HTML File Template (Windows NT) -->
    <!-- Rename, and modify tags and parameter values as needed -->
    </head>
    <body>
    <applet code="oracle.forms.engine.Main"
    codebase="http://ant.132.147.163.1/forms60/" align="baseline"
    width="767" height="494"
    archive="http://ant.132.147.163.1/forms60/f60all.jar"><param
    name="serverApp" value="app"><param name="serverArgs"
    value="module=c:\citi4\master.fmx"><param name="serverPort"
    value="9000">Please use Java Supported Browser</applet> <!--
    applet definition (end) --></p>
    </body>
    </html>
    the /forms60/ points to physical directory e:\oarnt\forms60\java
    which is correct.
    any other ideas
    mobeen
    null

  • Roles and responsiblities of oracle dba in development team

    What should be the roles and responsiblities of oracle dba in development team?
    Does Application dba should have oracle user credentials on db box?

    Hi, Application DBA work as like production DBA, while resolving issue SLA would not apply for them . Apart from this developement team pressure will be there.
    These are points remembered.
    Creating test Db for testing environment,
    Schema Replication of POC
    replication the DB for interface setup .
    User , Space management.
    Roles and Security management
    Space Forecasting -this will be useful when you are estimating for storage
    need to give application set up to Production DBA with proper specification.
    maintaining the schema changes
    Ensure that right script shas to provide the Production DBA team .
    Deployment of the application.
    performance tuning..
    All environment memory /CPU statistisc need to check by regular interval.If any issues need to escalte to INFRASTRUCTURE team
    HTC
    tippu

  • Error message running application from Jdeveloper/embedded OC4J

    Does anyone know what configuration I am missing to be able to run a web application from JDeveloper with the embedded OC4J.
    Here are the error messages that I am getting:
    PM oracle.j2ee.jndi.JndiMessages warningInvalidResourceReference
    WARNING: Resource reference jdbc/testdev not found. Allowing J2EEContext creation to continue anyway.
    Nov 22, 2006 1:46:46 PM oracle.j2ee.jndi.JndiMessages warningNoTypeFoundAtLocation
    WARNING: No javax.sql.DataSource found at null
    I should be able to run the application from Jdeveloper development environment without deploying to Tomcat after each change.
    There must be a jndi configuration that I need the questions is where?
    Is this configuration or lack of configuration documented some where by Oracle?
    Thanks

    Hi, user544716,
    did you solved the problem? I got exactly the same problem. In my case, my application runs well with jdeveloper 10.1.2 but when migrated to jdeveloper 10.1.3.1, the emdedded OC4J won't wrok and generated the same error as yours.
    Thanks.

  • JDeveloper in team application development

    We are looking for an evaluation of JDEveloper as a team
    application development tool.
    We would be starting from scratch, JAva-wise.
    THe intent is to deploy via JWeb in OAS 4.
    The question: Is JDeveloper 2.0 robust enough for a ground-
    up, team application development project?
    null

    Environment variables are the variables that you set at the OS
    level.
    You can set them in a DOS shell (single session) or in the
    Environment Tab of the System properties (on Windows NT). Double
    click the System icon in the Control Panel. You can add a
    variable and a value for it.
    Then there might be specific OAS variables as well. You can set
    these in the Management Interface of OAS.
    Help on using JWeb can be found in the OAS online help and
    samples.
    Hope this helps,
    -Roel.
    Nick Ayre (guest) wrote:
    : JDeveloper Team (guest) wrote:
    : : karen (guest) wrote:
    : : : We are looking for an evaluation of JDEveloper as a
    team
    : : : application development tool.
    : : : We would be starting from scratch, JAva-wise.
    : : : THe intent is to deploy via JWeb in OAS 4.
    : : : The question: Is JDeveloper 2.0 robust enough for a
    : ground-
    : : : up, team application development project?
    : : We indeed have features in JDeveloper for creating JWeb
    : : applications for OAS.
    : : We are currently focussing more on servlets though. OAS will
    : also
    : : have support for servlets in the very near future. So, since
    : : servlets is the industry standard for generating HTML from
    : Java,
    : : you may consider this for new application development. In the
    : : meantime you can use JDeveloper to create your servlets. In
    : the
    : : production release of version 2.0 (April/May) you will be
    able
    : to
    : : run and debug servlets in the JDeveloper IDE. This will use
    : our
    : : internal servlet runner. In the next couple of months you
    : could
    : : use OAS as a runtime environment for servlets. Please look at
    : the
    : : online demo for servlets:
    http://technet.oracle.com/product/tools/appjava/info/walkthru/ser
    : : vlet/s000.html
    : : (please note that the URL is broken up in two lines. You need
    : : both pieces;)
    : : You can also choose to stick with JWeb for a while.
    JDeveloper
    : : lets you build, run and debug JWeb apps. You might design
    your
    : : apps in a way that only the upper layer is JWeb specific,
    : which
    : : makes migration easier in the future.
    : : Your question about the robustness of JDeveloper. Our
    : development
    : : team is now spending 100% of their time making it more
    robust.
    : : The beta that is available is a little buggy, but we have
    : fixed
    : : loads of bugs un the meantime.
    : : Our own development organization works with the combination
    of
    : : JDeveloper and Clearcase with quite a large team. We are
    happy
    : : with this combination. You can use any other version control
    : : system since JDeveloper projects map perfectly to directories
    : of
    : : files on your operating system. We are also working with
    : : Intersolv on an addin for JDeveloper to their PVCS system.
    Our
    : : longer term direction is to integrate with the Oracle
    : Repository
    : : for team development & version/configuration control.
    : : Thanks,
    : : -Roel.
    : I have installed OAS 4.0.7 .
    : I have installed Jdeveloper 2.0 .
    : I have run some of the Jdeveloper tutorials .
    : Now I am trying to follow the Jweb tutorial.
    : How do I find where to set the ENVIRONMENT VARIABLES ?
    : Also is the any material on Jdeveloper and Jweb ?
    null

  • Unable to login to Team Server from JDeveloper

    Greetings!
    I have installed the Team Productivity Center. Both the JDeveloper and TPC are on same box. But I have trouble loging in.
    What Server name and Port# I should provide while connectiong from JDeveloper? Because while installing TPC it didn't ask/show port#.
    The install guild (link pasted below), is not very clear on installation/verification procedure -
    http://download.oracle.com/docs/cd/E15523_01/doc.1111/e14156/toc.htm
    Thanks
    nc

    ha HA! Figured it out finally after countless hours. This page helped: http://multikoop.blogspot.com/2009_12_01_archive.html
    The parts that aren't covered:
    1) The new Oracle Express 11g comes with an application express program I hadn't seen before. Figure out how to create a workspace and it should create an accompanying user/database schema.
    2) You've got to setup a weblogic server separate from the integrated one that automatically runs your web programs you deploy from JDev. This should be in your (Windows) start menu with JDeveloper->Weblogic Server->Tools->Configuration Manager. That's how you get that deployment folder posts keep talking about which you're going to point the Oracle Team Productivity Server to.
    3) You start the weblogic server in THIS domain (default is base_domain). There should be a file called startWebLogic that starts your server.
    4) When you connect to the Team Server in JDev, my team server was localhost. My port was 7001.
    And that's how you burn an entire day when you're a noob and have no one to turn to.
    Enjoy.
    Will

  • What are the requirements to deploy Portlets from Jdeveloper 10.1.3.2

    Hi all,
    I'm new in version Jdeveloper 10.1.3.2
    plz which version of Application Server (infrastructure and middle-tier)
    or web-center are required to deploy portlet from jdeveloper 10.1.3.2
    can you send me links about these requirments
    thanks

    I had already applied all of this before trying to deploy.
    The error seems to be a versioning error in the jsf-impl.jar file as the ApplicationAssociate class is found there. I have changed the JDK and J2EE to 1.4.2 and 1.3 respectively, rebuilt everything, updated all the settings to the right versions for 10.1.2 but it still keeps failing on the deploy.

  • Who can help me to submit this bug to the adobe indesign development team?

    I developed a indesing plug-in, and its function is to increase the two kinds of footnotes style,
    When the user selects this type of footnote style, and insert some footnote to the document
    The user then export the document to pdf。
    there is no  problem in indesign CS3 and indesign CS4.
    but in indesign CS5 and CS5.5,
    export pdf, there will be two kinds of format:
    Adobe PDF(Interaction)
    Adobe PDF(Print)
    If the user chooses to export a pdf(Interaction),there is no problem,
    but if user choose to export to pdf(print),
    All of the footnote is replaced by an ordinary Arabic numerals 1,2,3,4,......
    I think there is a bug in exported the pdf function in cs5 and cs5.5,
    so ,who can help me to submit this bug to the adobe indesign development team? thanks.
    Through the link below to download a trial version of this plugin for indesign cs5
    http://www.cppblog.com/Files/lyj2871/1380_CS5.rar

    who can help me?

  • BB Mac Desktop Manager -- Developer Team Lead -- Help Wanted

    This guy has a hard job.  Start from scratch to meet an arbitrary deadline to get an arbitrary software package out.
    This software is nothing.
    Dear RIM, please give this guy & his developer team the support they need to do the job right.
    Thank you! 

    http://na.blackberry.com/eng/support/software/mac.jsp

  • HT5699 Im from another country and ive lost the answers to my security questions. Help required

    Hi
    Im from another country and ive lost the answers to my security questions. Help required
    Thanks

    You need to contact Apple, either as described in that article or by filling out and submitting this form.
    (90034)

  • Calling Oracle Developer Report from JDeveloper

    I am using Orale JDeveloper 10.1.2. I can't seem to find a way of producing reports. I read that Oracle Reports developer can be integrated with Jdeveloper. How can I do this? I want to be able to generate reports from Jdeveloper.
    Thanks.
    Lucas

    If you want the Reports integration inside JDeveloper - you need to install the Oracle Developer Suite - the JDeveloper version that comes there has the reports integration.
    For more questions on this try the Reports discussion forum:
    http://forums.oracle.com/forums/index.jsp?cat=19

  • Help Please: Looking to contact Software Development Team

    I have been looking over the site, and I am struggling to locate a contact address for the development team.
    The query is this: Without giving too much away, I have in mind what I believe to be a highly innovative software concept / marketing method to integrate with the existing format and content provided by iTunes.
    Therefore, I am looking to arrange a pitch for this idea.
    Probably a long shot on the forums, but I'm guessing there has to be a certain amount of company involvement in the moderation thereof.
    If anyone is able to provide contact details to help facilitate this, it would be greatly appreciated.
    Many Thanks,
    Simon

    This is a user group so we don't have a direct line to Apple, but you may find something useful here:
    http://www.apple.com/itunes/partners/
    or
    http://developer.apple.com/
    Message was edited by: polydorus

  • How to develop and Run .jsp page from Jdeveloper 10g

    Dear All,
    I need to develop one small JSP page using Jdeveloper10g. pls share information How to develop and Run .jsp page from Jdeveloper 10g.
    Thanks in Advance,
    Hanimi.

    Hi Gyan,
    Any Idea how to get DB connection for JSP Pages.
    Our Java guys developed one JSP page for Login page.
    After Log in instead of standard responsibilites page we calling custom jsp page, For getting DB connection they defined one properties file and hard coded DB details on that file and calling, but client is not accepting hard coding.
    Pls give any idea for getting DB connection directly in JSP pages.
    Hanimi.

Maybe you are looking for