Cannot deploy EJB from JDev 3.2

Dear Sirs,
When you try to create a deployment profile using JDeveloper 3.2 step #2 of the wizard asks for "select a type of deployment". In Jdeveloper 3.1.1.2 the option "deploy Enterprise Java Bean (EJB) to Oracle8i". But in release 3.2 that option is taken away.
Does this mean Jdeveloper does not support the EJB 1.1 spec (i.e. the XML deployment descriptor)? Or must I upgrade the database from 8.1.6 to 8.1.7. Or is this a bug?
regards.

Hello:
Can anyone helps us with this EJB problem in Oracle? :
With JDeveloper 3.1.12 we can deploy with the wizard an EJB component in Oracle (database) 8.1.6 but the client test fails with the following message:
"oracle.jbo.ApplicationModuleCreateException:
JBO-25222: Unable to create application module...."
In an Oracle error log file (in the bdump directory) we find the following information:
"Attempt to call System.getProperties failed
...skipping...
at oracle.jbo.server.remote.ejb.EJBApplicationModuleImpl.ejbCreate
(EJBApplicationModuleImpl.java:183)..."
We think that the problem is related with:
1- memory parameters of Oracle 8i ?
2- Java security permissions in the server ?
Thanks you for your help.
Maria Consuelo Franky - Victor Toro
CincoSOFT Ltda.
Bogota - Colombia
<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by slag:
Oracle (database) 8.1.6 only supports 1.0 spec, 8.1.7 is 1.1 spec compliant, to my knowledge.
[b]slag<HR></BLOCKQUOTE>
null

Similar Messages

  • Oracle Forms 11gR2 - Cannot deploy locally from within Forms

    I cannot deploy locally from within forms.  The server is up and running and I can deploy the form by putting the correct URL in the address line of the browser window.  When I try to deploy from within forms it comes up with some crazy URL that differs everytime.
    This is what the URL should be and this works from the browser:
    http://machinename:7002/forms/frmservlet?form=WRD608ADMIN_11g.fmx&userid=&otherparams=useSDI=yes
    Here is one of the URLs it came up with when I try to run it from within Forms:
    http://localhost:60231/lysVL2VjqT33znjfvLwanktVRxTIc6dEwVeRNXXRmhYU2qjf
    Localhost is always there, but the rest varies.
    In Forms, I have the Preferences, Runtime set to:
    http://machinename:7002/forms/frmservlet
    Where machine name is my PC, it is the same for this address as the URL above that works directly from the browser.
    So what am I missing?
    Thank you in advance.

    Generally speaking, it is discouraged to manually edit any of the configuration files if they are managed by WLS Console or EM.  In this case, default.env is managed by EM.  Therefore, changes to the file should be done through EM.  If however, you want to alter the file manually, the following is likely the best way to accomplish this:
    1.  Stop the WLS Admin Server and Node Manager
    2.  Locate the proper file you wish to edit.  By proper I mean, there are several copies of most config files.  Most of the config files found in the Oracle Home are actually template files and are not used at runtime.  Altering these will not give you the change you want.  The default.env you want would be here (assuming Windows)
    C:\Oracle\Middleware\user_projects\domains\ClassicDomain\config\fmwconfig\servers\WLS_FORMS\applications\formsapp_11.1.2\config
    If you are using a "Development" installation type, the above path will reflect AdminServer instead of WLS_FORMS.  Remember that Development installations are not for multi-user purposes.  Production deployments require the "Deployment" installation type, which can also include the Builders.
    Do NOT make any changes yet.
    3.  Once you find the correct file, create a backup copy.  Then open the file for edit (not the backup).
    4.  Make the desired changes and save.
    5.  Restart Node Manager and Admin Server if you plan to use them.
    For more information about using EM to manage your configuration, refer to the product documentation:
    http://docs.oracle.com/cd/E38115_01/doc.111210/e24477/configure.htm#CHDCCGHI

  • Calling a newly deployed EJB from an EJB gives a NoSuchMethod Exception if the jar of the newly deployed ejb is not in the classpath

    Hi ,
    I have an EJB A which is already deployed when the server starts. A second ejb
    B is deployed at a later time.
    EJB A calls methods in EJB B. I use reflection in EJB A to call methods in EJB
    B.
    I get a NoSuchMethodException when I call the create method in the Home object
    of EJB B. If I add the ejb jar file to the classpath before the server starts
    then it is able to resolve the method.
    The problem is the EJBs which are called from EJB A is not known before the server
    is started. New EJBs can be deployed at runtime and EJB A should be able call
    the methods in newly deployed EJB's.
    I also use the URLClassLoader to load all the classes in the jar file of the newly
    deployed EJB in EJB A and it still gives a NoSuchMethodException because it cannot
    resolve the stub class.
    My error log is shown below.
    This is an urgent issue.
    Thanks
    SampleConnector::testEJBService called
    In Key : P1 Value : Input2
    In Key : P3 Value : Input1
    In Key : P2 Value : SomeConst
    Loaded Class = com.bizwave.samples.rejb.SampleRemote
    Loaded Class = com.bizwave.samples.rejb.SampleRemoteEJB
    Loaded Class = com.bizwave.samples.rejb.SampleRemoteEJB_svq1df_EOImpl
    Loaded Class = com.bizwave.samples.rejb.SampleRemoteEJB_svq1df_HomeImpl
    Loaded Class = com.bizwave.samples.rejb.SampleRemoteEJB_svq1df_Impl
    Loaded Class = com.bizwave.samples.rejb.SampleRemoteHome
    java.lang.NoSuchMethodException
    at java.lang.Class.getMethod0(Native Method)
    at java.lang.Class.getDeclaredMethod(Class.java:1151)
    at com.bizwave.samples.ejb.SampleConnectorEJB.testEJBService(SampleCon
    ctorEJB.java:181)
    at com.bizwave.samples.ejb.SampleConnectorEJB_be5y1v_EOImpl.testEJBSer
    ce(SampleConnectorEJB_be5y1v_EOImpl.java:98)
    at java.lang.reflect.Method.invoke(Native Method)
    at com.bizwave.fc.utils.ClassUtils.invokeEJBMethod(ClassUtils.java:109
    at com.bizwave.infra.fjet.engine.EJBServiceStepMgr.executeService(EJBS
    viceStepMgr.java:91)

    Hi,
    I am attaching a test case. This test case actually demonstrates a security bug.
    Unzip the file and modify the StartWeblogic.cmd in domainA to not refer to the
    SampleRemoteEJB.jar in the classpath. If u run the test client under the client
    dir u will see a NoSuchMethodException.
    The reason is it is not able to load the dynamically generated stub file.
    Initially I had the getMethod and it didn't work. You might have to modify the
    files to suit ur env. The easier way is to run th edomain wizard and create 2
    domains. Run the servers in development mode and place the jars under the applications
    dir
    Thanks
    Rajesh Mirchandani <[email protected]> wrote:
    Do you have any old EJB classes in your classpath? Did you recompile
    your EJBs if you
    upgraded from a old release or a Service pack?
    Bob Lee wrote:
    Hmmmm. That's an interesting problem.
    Why is it giving you a NoSuchMethodException instead of a
    ClassNotFoundException?
    Can you post the code from SampleConctorEJB.java, line 181?
    Try changing your call to getDeclaredMethod() to getMethod().
    getDeclaredMethod() searches only the class you called it on, whereas
    getMethod() traverses to the superclasses and interfaces. You onlyneed
    getDeclaredMethod() when you're accessing a nonpublic method.
    Not sure if this will help, but it's worth a shot.
    Bob
    Vasu wrote:
    Hi ,
    I have an EJB A which is already deployed when the server starts.
    A second ejb
    B is deployed at a later time.
    EJB A calls methods in EJB B. I use reflection in EJB A to call methodsin EJB
    B.
    I get a NoSuchMethodException when I call the create method in theHome object
    of EJB B. If I add the ejb jar file to the classpath before the serverstarts
    then it is able to resolve the method.
    The problem is the EJBs which are called from EJB A is not knownbefore the server
    is started. New EJBs can be deployed at runtime and EJB A shouldbe able call
    the methods in newly deployed EJB's.
    I also use the URLClassLoader to load all the classes in the jarfile of the newly
    deployed EJB in EJB A and it still gives a NoSuchMethodExceptionbecause it cannot
    resolve the stub class.
    My error log is shown below.
    This is an urgent issue.
    Thanks
    SampleConnector::testEJBService called
    In Key : P1 Value : Input2
    In Key : P3 Value : Input1
    In Key : P2 Value : SomeConst
    Loaded Class = com.bizwave.samples.rejb.SampleRemote
    Loaded Class = com.bizwave.samples.rejb.SampleRemoteEJB
    Loaded Class = com.bizwave.samples.rejb.SampleRemoteEJB_svq1df_EOImpl
    Loaded Class = com.bizwave.samples.rejb.SampleRemoteEJB_svq1df_HomeImpl
    Loaded Class = com.bizwave.samples.rejb.SampleRemoteEJB_svq1df_Impl
    Loaded Class = com.bizwave.samples.rejb.SampleRemoteHome
    java.lang.NoSuchMethodException
    at java.lang.Class.getMethod0(Native Method)
    at java.lang.Class.getDeclaredMethod(Class.java:1151)
    at com.bizwave.samples.ejb.SampleConnectorEJB.testEJBService(SampleCon
    ctorEJB.java:181)
    at com.bizwave.samples.ejb.SampleConnectorEJB_be5y1v_EOImpl.testEJBSer
    ce(SampleConnectorEJB_be5y1v_EOImpl.java:98)
    at java.lang.reflect.Method.invoke(Native Method)
    at com.bizwave.fc.utils.ClassUtils.invokeEJBMethod(ClassUtils.java:109
    at com.bizwave.infra.fjet.engine.EJBServiceStepMgr.executeService(EJBS
    viceStepMgr.java:91)
    Rajesh Mirchandani
    Developer Relations Engineer
    BEA Support
    [user_projects.zip]

  • Cannot deploy VM from AppController

    Hi All,
    When I deploy vm from app controller  I got an error like this.
    Message:
    The virtual machine configuration cannot target a host due to placement errors. (StatusCode: 22039–PlacementErrorsPresentInVmConfig)
    In hardware configuration tab, under compatibility, I have selected Hyper-V.
    What should I do?
    Thank's

    Can you create the same VM from VMM directly ?
    Regards, Samir Farhat Infrastructure and Virtualization Consultant || Virtualization, Cloud, Azure ? Follow and Ask here https://buildwindows.wordpress.com

  • Calling OC4J deployed EJB from Oracle 8.1.7 DB

    Hi
    I have deployed a Stateless Session Bean to OC4J (9.0.2). The client works fine. The Servlet and JSP works fine.
    What I need to do now is call this EJB from PL/SQL , ie call from Database PL/SQL package to wrapper to OC4j EJB.
    Trying to get this loaded into Oracle DB we get a class compilation error with the
    com.evermind....rmi... class. I do believe this is the OC4J implementation of RMI lookup. Is there a comparable class to load in the DB?
    Any ideas how to ??
    Tks
    Andre
    Here is a client sample of calls to the EJB
    package SampleWizUpdates;
    import java.util.Hashtable;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import WizUpdates.WizAllocTotals;
    import WizUpdates.WizAllocTotalsHome;
    import resTotals;
    import resSuccess;
    import javax.rmi.*;
    public class WizAllocTotalsClient2
    public static void main(String [] args)
    WizAllocTotalsClient2 wizAllocTotalsClient2 = new WizAllocTotalsClient2();
    try
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY, "com.evermind.server.rmi.RMIInitialContextFactory");
    env.put(Context.SECURITY_PRINCIPAL, "admin");
    env.put(Context.SECURITY_CREDENTIALS, "manager");
    env.put(Context.PROVIDER_URL, "ormi://sdt10645:23791/WizAllocTotals");
    Context ctx = new InitialContext(env);
    WizAllocTotals totalsBean;
    Object homeObject = ctx.lookup("WizAllocTotals");
    WizAllocTotalsHome home =
    (WizAllocTotalsHome)PortableRemoteObject.narrow(homeObject,
    WizAllocTotalsHome.class);
    totalsBean = (WizAllocTotals)PortableRemoteObject.narrow(home.create(),
    WizAllocTotals.class);
    // create new EJB instance
    totalsBean = home.create( );
    // Call any of the Remote methods below to access the EJB
    int operatorId = 1238;
    resTotals newRes = new resTotals();
    resSuccess newResSucc = new resSuccess();
    String newDataBase = "dwz3";
    int eventRefNo = 17445291;
    int actionNumber = 3;
    int allocValue = 125;
    totalsBean.setDataBase( newDataBase );
    newRes = totalsBean.getOperatorTotals( operatorId, eventRefNo );
    System.out.println("Result total 1 is "+newRes.totTransactLimitValue);
    System.out.println("Result total 2 is "+newRes.totDailyLimitValue);
    System.out.println("Result total 3 is "+newRes.totWeeklyLimitValue);
    System.out.println("Result total 4 is "+newRes.totMonthlyLimitValue);
    System.out.println("Result total 5 is "+newRes.remDailyLimitValue);
    System.out.println("Result total 6 is "+newRes.remWeeklyLimitValue);
    System.out.println("Result total 7 is "+newRes.remMonthlyLimitValue);
    System.out.println("Result success code is "+newRes.resCode);
    System.out.println("Result success message is "+newRes.resMessage);
    newRes = totalsBean.setOperatorTotals(operatorId,
    eventRefNo,
    actionNumber,
    allocValue,
    "C",
    "Testing Reason");
    System.out.println("Insert result success code is "+newRes.resCode);
    System.out.println("Insert result success message is "+newRes.resMessage);
    catch(Throwable ex)
    ex.printStackTrace();
    }

    Hi Andre,
    I am using stand-alone OC4J version 9.0.2.0.0 under (SUN) Solaris 7
    with JDK 1.3.1 and Oracle DBMS version 8.1.7.4.
    I have not yet been able to create a java stored procedure in the
    database that directly looks up an EJB deployed to OC4J.
    The only two ways I have found to "talk to" an EJB from a java stored
    procedure is
    1) go through a servlet
    2) go through a "remote" object (using RMI)
    For the first option, deploy an application to OC4J that contains
    your EJBs and a servlet (which acts as the client for the EJBs).
    Then, from your java stored procedure, contact the servlet using
    the classes in the "java.net" package -- including "URL" and "URLConnection".
    For the second option, use the "rmiregistry" to register a remote
    object. This remote object acts as the EJB client. The remote object
    does not need to be part of an application deployed to OC4J. Then
    contact the remote object from your java stored procedure.
    Hope this helps.
    Good Luck,
    Avi.

  • Deploying Webservice from JDev 9.0.3 to 9iAS Release 2

    Hello,
    i have written a webservice with JDeveloper 9.0.3 and on my local OC4J Installation the webservice is working fine.
    I can also connect from JDev to that OC4J-Instance and deploy it. I installed that standalone OC4J also on other machines
    and had also no problems connecting and deploying to them from JDev 9.0.3.
    No I tried to connect to a 9iAS Release 2 (Linux) but everytime I connect I get following errors (see below)
    What am I doing wrong ? Workarounds?
    Many thanx !!
    Greetings from Germany
    Marc Teufel
    Here are the JDEV-Messages:
    C:\JDev903\jdk\jre\bin\javaw.exe -Djava.protocol.handler.pkgs=HTTPClient -jar C:\JDev903\jdev\lib\oc4j_remote_deploy.jar http://LIN1.hama.de:1810/Oc4jDcmServletAPI/ ias_admin XXX listApplications /home/oracle/ias902
    Initializing log
    Servlet interface for OC4J DCM commands
    Command timeout defined at 600 seconds
    Executing DCM command...
    Executing command listApplications /home/oracle/ias902 UNDEFINED UNDEFINED UNDEFINED
    Command = LISTAPPLICATIONS
    Opening connection to Oc4jDcmServlet
    Setting userName to ias_admin
    Sending command to DCM servlet
    HTTP response code = 404, HTTP response msg = Not Found
    #### HTTP response is NOT ok
    Closing connection to Oc4jDcmServlet
    #### DCM command did not complete successfully (404)
    #### Invalid servlet path

    You need to install DCM Servlet on 9iAS (902x) before you can deploy to 9iAS .
    If you have already done that, Make sure the binding name is correct (it is case sensitive).
    Check out the following thread for details
    Re: SQL query to fetch approximately 9000 rows
    raghu
    JDev Team

  • Help, cannot deploy EJBs !

    since upgrating to the new version (20 j) i cannot deploy in the remote OC4J i execute exactly the same procedures without any change. THE log window of deployment display this message
    Exit status of Oracle9iAS admin tool (-deploy): 128
    #### Deployment incomplete. ####
    whithout any other explanation or detail!!!
    please help !

    Hello,
    We have heard other reports of this problem and are in the process of investigating. You may be able to get more information by trying the following:
    1) JDeveloper should have printed out the command used to invoke the OC4J "admin.jar" utility. Find that line in the JDeveloper log window (on the "Deployment" page) and copy it to your clipboard.
    2) Paste the command into the log window. You will need to change "javaw.exe" to "java.exe" in order to have any effect on the command-line. JDeveloper uses javaw internally to avoid bringing up another console window. However, the OC4J utility sometimes prints messages to the console window, so JDeveloper never receives them.
    If you get any additional messages on the command-line, please paste them into a message in this thread, and I will follow-up with you.
    Thanks!

  • Cannot deploy EntityBean from Weblogic 5.1

    Hi everyone,
    I'm relatively new to EJB deployment, but there is an Entity bean that I was able to deploy using Weblogic 4.0 and fail to do the same with Weblogic 5.1, although I'm going through all the necessary steps, like creating xmls (ejb_jar, weblogic-cmp-rdbms-jar, and weblogic-ejb-jar), creating a jar file, and recompiling it using weblogic.ejbc, and that's where it stops. While it works fine with session beans, every time I'm trying to deploy entity bean, it gives me the following message:
    ERROR: Error from ejbc: [9.1.5.1] In EJB EmployerEntityEJB, there is an ejbPostCreate method ejbPostCreate() that has no matching ejbCreate method.
    Yet my ejbCreate and ejbPostCreate methods do match, unless I'm missing something, but at this point I have no idea what exactly. Any kind of help would be great, 'cause I'm almost out of ideas.
    Here's the code I'm working on:
    EmployerEntity.java:
    import java.rmi.*;
    import java.sql.*;
    import javax.ejb.*;
    import java.util.*;
    public interface EmployerEntity extends EJBObject, Remote {
    public boolean postingUpdate(Hashtable posting) throws RemoteException,SQLException;
    public void callingBreakHashtable(Hashtable posting) throws RemoteException;
    EmployerEntityHome.java:
    import java.rmi.*;
    import javax.ejb.*;
    import java.io.*;
    import java.util.*;
    import javax.naming.*;
    public interface EmployerEntityHome extends EJBHome{
    public EmployerEntity create(Hashtable posting) throws RemoteException, EJBException, CreateException;
    public EmployerEntity findByPrimaryKey(EmployerEntityPK job_id) throws FinderException,RemoteException;
    public EmployerEntity findByPosition(int job_id) throws FinderException,RemoteException;
    EmployerEntityPK.java:
    import java.io.Serializable;
    public class EmployerEntityPK {
    public int job_id;
    and finally EmployerEntityBean.java (I left only ejbCreat and ejbPostCreate methods, so that I won't confuse anybody):
    import java.io.*;
    import java.util.*;
    import javax.ejb.*;
    import javax.naming.*;
    import java.rmi.*;
    import java.sql.*;
    //and local classes
    public class EmployerEntityBean extends LocalClassEntityBean {
    Hashtable posting=new Hashtable();
    public EmployerEntityBean() {}
    public EmployerEntityPK ejbCreate(Hashtable posting) throws EJBException, CreateException {
    if (posting_entity_flag)
    this.posting=posting;
    callingBreakHashtable(posting);
    Syslog.debug(this,"EJBCreate Called ");
    return null;
    public void ejbPostCreate(Hashtable posting) throws EJBException {
    Syslog.debug(this,"EJBPostCreate Called ");
    Thanks for your help.
    PS. Also, could it be that the error that I'm getting might be caused by something other than simply mismatching ejbCreate and ejbPostCreate? If so, what are the other possible reasons?
    Thanks

    Hi,
    First of all, you don't need to add EJBException in your method definition as its a runtime exception. Next your ejbPostCreate() is missing the CreateException and thats the reason you have a mismatch.
    Also your remote interface should extend EJBObject ( which is a subclass of java.rmi.Remote). Catch the SQLException and rethrow it as an EJBException with proper message. And finally I take it that LocalClassEntityBean implements EntityBean.
    Best wishes

  • Error deploying ejb with jdev 9.0.3 to 9ias 9.0.3

    Hi:
    I am trying to deploy a simple ejb created with jdev 9.0.3. I have used local dcm connection type for deploying . I have already installed the dcm servlet, but when I try to deploy my ejb i get the following error:
    ---- Deployment started. ---- Nov 12, 2002 5:52:12 PM
    Wrote EJB JAR file to C:\jdev\jdev\mywork\employee\Project1\deploy\employee.jar
    Wrote EAR file to C:\jdev\jdev\mywork\employee\Project1\deploy\employee.ear
    Invoking dcmctl...
    C:\ora9ias\dcm\bin\dcmctl.bat redeployApplication -file C:\jdev\jdev\mywork\employee\Project1\deploy\employee.ear -application employee
    ADMN-300075
    Exit status of dcmctl: 0
    Elapsed time for deployment: 21 seconds
    ---- Deployment finished. ---- Nov 12, 2002 5:52:33 PM
    The oracle 9ias and the jdev have been installed on Windows 2000 server.
    Does anybody know what is it?
    Thanks
    Sergio

    I have discovered a strange thing. I created a new OC4J instance which I called it: Intelap
    When I deploy to the recently created instance Intelap, jdeveloper success. But when I set OC4J_home in the optional instance field, I got the previous error.
    Sergio

  • Deploying EJBs from Client-PC with DeployerTool ?

    Hi,
    I tried to deploy my EJBs with the DeployerTool that is running on a client
    machine in the same LAN as the Weblogic Server (both under WinNT). Now I get
    some errors because there is no ftp-Server running on the "weblogic"-machine.
    Is there a way to use deployment form the DeployerTool without running a
    ftpserver on the weblogic-machine ?
    As a workaround I can use hot-deploy from the Console, the machines share parts
    of there filesystem.
    Excuse me for my not-so-well english,please.
    Thanks,
    Manfred
    Configuration:
    2 machines WinNT with shared filesystem,
    Weblogic Server 5.1 SP3
    Console and DeployerTool running on client-machine.
    | Manfred Schenk | ICQ: (not available)
    | Mail: [email protected] | IRC: Mampf2 (aber nur sehr selten)
    | Fon : +491719509349 | WWW: http://www.ZEROByte.de/

    Dana Jeffries schrieb:
    >
    The EJBDeployer runs its own little FTP server.
    Do you use a proxy server or firewall product?
    There is a proxy server and a firewall between the in-house-net and the
    internet.
    Do you run the EJBDeployer and the Console at the same time?The results are the same, whether I run both at the same time or not.
    >
    Have you ever been able to deploy using the EJBDeployer in this configuration?If I start the EJBDeployer on the same machine as the server, I have no
    problems.
    Here is the complete error message:
    -->snip-->
    weblogic.ejb.common.DeploymentException: Problem creating deployment
    ftp://153.96.12.198W:/beanupgrade/eventsender/eventsender.jar from
    ftp://153.96.12.198W:/beanupgrade/eventsender/eventsender.jar; nested exception
    is:
         weblogic.ejb.common.DeploymentException: could not open URL stream
    java.net.ConnectException: Connection refused: no further information
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:125)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:112)
         at java.net.Socket.<init>(Socket.java:269)
         at java.net.Socket.<init>(Socket.java:98)
         at sun.net.NetworkClient.doConnect(NetworkClient.java:54)
         at sun.net.NetworkClient.openServer(NetworkClient.java:42)
         at sun.net.ftp.FtpClient.openServer(FtpClient.java:271)
         at sun.net.ftp.FtpClient.<init>(FtpClient.java:385)
         at sun.net.www.protocol.ftp.FtpURLConnection.connect(FtpURLConnection.java:82)
         at
    sun.net.www.protocol.ftp.FtpURLConnection.getInputStream(FtpURLConnection.java:101)
         at java.net.URL.openStream(URL.java:818)
         at
    weblogic.ejb.internal.EJBJarDeployment.initializeJarFile(EJBJarDeployment.java,
    Compiled Code)
         at weblogic.ejb.internal.EJBJarDeployment.setup(EJBJarDeployment.java:191)
         at weblogic.ejb.internal.EJBJarDeployment.setup(EJBJarDeployment.java:166)
         at weblogic.ejb.internal.EJBDeploymentImpl.<init>(EJBDeploymentImpl.java:172)
         at weblogic.ejb.internal.EJBJarDeployment.<init>(EJBJarDeployment.java:100)
         at weblogic.ejb.internal.EJBJarDeployment.<init>(EJBJarDeployment.java:94)
         at weblogic.ejb.internal.EJBManagerImpl.deploy(EJBManagerImpl.java:326)
         at weblogic.ejb.common.EJBManager_WLSkel.invoke(EJBManager_WLSkel.java:144)
         at
    weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAdapter.java,
    Compiled Code)
         at
    weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandler.java:69)
         at
    weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:15)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled Code)
    weblogic.ejb.common.DeploymentException: could not open URL stream
    java.net.ConnectException: Connection refused: no further information
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:125)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:112)
         at java.net.Socket.<init>(Socket.java:269)
         at java.net.Socket.<init>(Socket.java:98)
         at sun.net.NetworkClient.doConnect(NetworkClient.java:54)
         at sun.net.NetworkClient.openServer(NetworkClient.java:42)
         at sun.net.ftp.FtpClient.openServer(FtpClient.java:271)
         at sun.net.ftp.FtpClient.<init>(FtpClient.java:385)
         at sun.net.www.protocol.ftp.FtpURLConnection.connect(FtpURLConnection.java:82)
         at
    sun.net.www.protocol.ftp.FtpURLConnection.getInputStream(FtpURLConnection.java:101)
         at java.net.URL.openStream(URL.java:818)
         at
    weblogic.ejb.internal.EJBJarDeployment.initializeJarFile(EJBJarDeployment.java,
    Compiled Code)
         at weblogic.ejb.internal.EJBJarDeployment.setup(EJBJarDeployment.java:191)
         at weblogic.ejb.internal.EJBJarDeployment.setup(EJBJarDeployment.java:166)
         at weblogic.ejb.internal.EJBDeploymentImpl.<init>(EJBDeploymentImpl.java:172)
         at weblogic.ejb.internal.EJBJarDeployment.<init>(EJBJarDeployment.java:100)
         at weblogic.ejb.internal.EJBJarDeployment.<init>(EJBJarDeployment.java:94)
         at weblogic.ejb.internal.EJBManagerImpl.deploy(EJBManagerImpl.java:326)
         at weblogic.ejb.common.EJBManager_WLSkel.invoke(EJBManager_WLSkel.java:144)
         at
    weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAdapter.java,
    Compiled Code)
         at
    weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandler.java:69)
         at
    weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:15)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java, Compiled Code)
    Deployment failed.
    <--snap<--
    (153.96.12.198 is the client machine, 153.96.12.95 is the weblogic server
    w: is a shortcut for a public accessible directory on the server machine.)
    Thanks,
    Manfred
    | Manfred Schenk | ICQ: (not available)
    | Mail: [email protected] | IRC: Mampf2 (aber nur sehr selten)
    | Fon : +491719509349 | WWW: http://www.ZEROByte.de/

  • Cannot deploy par from NWDS

    Hi,
    I am not able to deploy par file into the DEV EP instance. Since the sys # is 00, I am using 50018 as the port number and very sure that the host name is ok. the error message in sap-plugin.log suggests that the upload response is the default login page. I have attached the stacktrace from plugin.log.
    [05.12.05 / 15:45] #DEBUG LEVEL# com.sap.portal.developmentTools.ideSpecific.eclipse.PortalPlugin > Factory initialized !
    [05.12.05 / 16:03] #DEBUG LEVEL# com.sap.portal.developmentTools.ideSpecific.eclipse.PortalPlugin > Startup in progress
    [05.12.05 / 16:03] #DEBUG LEVEL# com.sap.portal.developmentTools.ideSpecific.eclipse.PortalPlugin > Factory initialized !
    [05.12.05 / 16:31] #ERROR LEVEL# com.sap.portal.developmentTools.ideSpecific.eclipse.wizards.sapmakepar.SAPMPWizard$1 > Upload Error message: Upload seems to have failed
    [05.12.05 / 16:31] #ERROR LEVEL# com.sap.portal.developmentTools.ideSpecific.eclipse.wizards.sapmakepar.SAPMPWizard$1 > Upload Response: <html><head><LINK REL=stylesheet HREF="/irj/portalapps/com.sap.portal.design.portaldesigndata/themes/portal/customer/Pioneer/glbl/glbl_ie5.css?6.0.13.0.1">
    <LINK REL=stylesheet HREF="/irj/portalapps/com.sap.portal.design.urdesigndata/themes/portal/customer/Pioneer/ur/ur_bdy_prtl_ie5.css?6.0.13.0.1">
    <LINK REL=stylesheet HREF="/irj/portalapps/com.sap.portal.design.portaldesigndata/themes/portal/customer/Pioneer/prtl_std/prtl_std_ie5.css?6.0.13.0.1">
    <!-- EPCF: BOB Core -->
    <META http-equiv="Content-Script-Type" content="text/javascript">
    <SCRIPT src="/irj/portalapps/com.sap.portal.epcf.loader/script/standard/js13_epcf.js?6.0722"></SCRIPT>
    <SCRIPT>
    <!--
    EPCM.relaxDocumentDomain();
    EPCM.init( );
    EPCM.DSM.init( );
    function SAPWP_receiveSessInfo( sessInfo, frameRef ){
      EPCM.DSM.processSession( sessInfo, frameRef );
    //-->
    </SCRIPT>
    <!-- EPCF: EOB Core -->
    <!-- HTML Business for Java, 60NW_VAL_REL, 145109, Wed Jul 13 10:38:22 PDT 2005 -->
    <!-- HTMLB: begin VARS -->
    <script language="JavaScript">
    ur_system = ;
    </script>
    <!-- HTMLB: end   VARS -->
    <title >SAP Enterprise Portal 6.0</title><meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8"><link  REL=STYLESHEET  HREF="/irj/portalapps/com.sap.portal.design.urdesigndata/themes/portal/customer/Pioneer/ur/ur_ie5.css?6.0.13.0.1"  TYPE="text/css" ><link  REL=STYLESHEET  HREF="/irj/portalapps/com.sap.portal.runtime.logon/css/logon.css"  TYPE="text/css" ><link  REL=STYLESHEET  HREF="/irj/portalapps/com.sap.portal.runtime.logon/css/main2.css"  TYPE="text/css" ></head><body class="prtlBody urFontBaseFam urScrl">
    <!-- EPCF: Component com.sap.portal.runtime.logon.certlogon, hnlfbdolaebaghofikiedbahpmidieno -->
    <!-- EPCF: Component com.sap.portal.runtime.logon.default, hobbmlmpbnllcpciikmkhjahpmidieno -->
    <!-- component context:com.sap.portal.runtime.logon.default-->
    <!-- class: com.sapportals.portal.ume.component.logon.SAPMLogonComponent-->
    <!-- trying to go to page umLogonPage-->
    <!-- before including jsp resource umLogonPage.jsp-->

    Hi,
    you can use this alternative to upload the par file
    System administrator->support->portalruntime->Administration console->click on the browse button to find the par file and click the upload button.
    see this link for more information
    http://help.sap.com/saphelp_nw04/helpdata/en/2d/b8b2426dbec86ae10000000a155106/frameset.htm
    reward useful answerd

  • Deployment problem from Jdev (V 11.1.2.0.0) to stand alone weblogic v10.03

    My environment is Win 2008 server 64. I'm trying to deploy to a stand alone server. I added the adf runtime libraries following:
    http://radalcove.com/blog/?p=34
    Created the app server connection and when trying to deploy to the stand alone server I received the following error. Is this a missing library or another issue? Thanks, J
    [04:52:18 AM] ---- Deployment started. ----
    [04:52:18 AM] Target platform is (Weblogic 10.3).
    [04:52:21 AM] Retrieving existing application information
    [04:52:21 AM] Running dependency analysis...
    [04:52:21 AM] Building...
    [04:52:32 AM] Deploying 2 profiles...
    [04:52:33 AM] Wrote Web Application Module to C:<server path>\<myapp>\ViewController\deploy\<myapp>ViewControllerwebapp1.war
    [04:52:34 AM] Wrote Enterprise Application Module to C:\jdev_backup\mywork\<myapp>\deploy\<myapp>_application1.ear
    [04:52:34 AM] Deploying Application...
    [04:52:37 AM] [Deployer:149034]An exception occurred for task [Deployer:149026]deploy application <myapp>_application1 on AdminServer.: Failed to load webapp: '<myapp>-ViewController-context-root'.
    [04:52:37 AM] [Deployer:149193]Operation 'deploy' on application '<myapp>_application1' has failed on 'AdminServer'
    [04:52:37 AM] Weblogic Server Exception: weblogic.application.ModuleException: Failed to load webapp: '<myapp>-ViewController-context-root'
    [04:52:37 AM] Caused by: weblogic.management.DeploymentException: Error: Unresolved Webapp Library references for "ServletContext@9558442[app:<myapp>_application1 module:<myapp>-ViewController-context-root path:/<myapp>-ViewController-context-root spec-version:2.5]", defined in weblogic.xml [Extension-Name: jsf, Specification-Version: 2, exact-match: false]
    [04:52:37 AM] See server logs or server console for more details.
    [04:52:37 AM] weblogic.application.ModuleException: Failed to load webapp: '<myapp>-ViewController-context-root'
    [04:52:38 AM] Deployment cancelled.
    [04:52:38 AM] ---- Deployment incomplete ----.
    [04:52:38 AM] Remote deployment failed (oracle.jdevimpl.deploy.common.Jsr88RemoteDeployer)

    Jay,
    you can't run jdev 11.1.2 apps on a wls 10.3.4 server. The adf runtime libraries are different and you get exactly the error you see. Spare your time trying to get it running...
    The sherman patch (patch 12611176) is only available via http://support.oracle.com/ (you need avalid support contract). If you have one read my blog about installing the patch http://tompeez.wordpress.com/2011/06/25/upgrading-wls-10-3-5-with-adf-runtime-11-1-2-0-0-sherman-patch/ andhttp://tompeez.wordpress.com/2011/06/29/follow-up-upgrading-wls-10-3-5-with-adf-runtime-11-1-2-0-0-sherman-patch/.
    If you really want to use 11.1.2 apps you have to update your wls server to 10.3.5 first, then apply the patches...
    If you can't update you have to user jdve 11.1.1.4.0 together with wls10.3.4
    Timo

  • Planning Application 11.1.2 Cannot Deploy Application from Workspace

    Hi All,
              Everytime I try to deploy a Planning EPMA app, I've got the following error :
    Error Reported:
    HTTP/1.1 500 Internal Server Error
    Action aborted.
    Log file Says nothing but:
    HTTP/1.1 500 Internal Server Error
           The valdation run as well without any issue, but the deployment returns this error.
           Does anyone could help me on that ?
    My Environment:
    Hyperion: 11.1.2
    OS: Linux Red Hat 5 64bits
    DB : Oracle
    IIS6
    Thanks

    Hi Celvin
    I see this article on KB after reading DattaRay's commend. It suggests that Essbase Studio should be installed for Essbase applications to be deployed.
    Validation of Essbase EPMA Application Results in Error "Status: 500 - Internal Server Error" (Doc ID 1350014.1)

  • HFM 11.1.2 Cannot Deploy Application from Workspace

    Hi,
    I have sucessfully installed Foundation,Workspace, Calc Manager, EPMA, HFM, FDM and Financial Reports on a single Win 2008 SP1 win 32 server. All Products configured on std ports and services are starting allright.
    When I log on to Workspace and create a new HFM application validation is Sucessfull. However when I try to deploy the Application it fails.
    Error Reported:
    HTTP/1.1 500 Internal Server Error
    Action aborted.
    Log file Says nothing but:
    HTTP/1.1 500 Internal Server Error
    My Environment:
    Hyperion: 11.1.2
    OS: Win 2008 SP1 win32
    IIS7 has Allow all ISAPI
    ASP is allowed

    The problem was solved
    I went to IIS and then to the Virtual Directory of HFM and clicked on Browse, instead of showing me a white page with HFM written on it, there was Internal Server Error web page with more details.
    I Redeployed all Sub-Modules of HFM in EPM Configurator except for Database Configuration and then Restarted the machine. Problem Solved.
    Edited by: AIC on Dec 11, 2010 12:42 PM

  • Cannot deploy VM from VMM and AppController

     Hi All,
    I have been installing the VMM and AppController. Initially all went well.
    After I install RU5 there occurs a problem where I can not deploy vm of VMM and AppController with error messages like that :
    host A kuilab01
    on kuilab01 still available memory of 11GB
    host B krslab03
    Thank's
    Best Regards

    Hello,
    Did you try to reboot your host?
    Did you update the agent of each Hyper-V after the UR5?
    Go to the fabric tab to see if the status of each Hyper-V is OK.

Maybe you are looking for

  • AxisFault seen while invoking document style web service

    I am seeing the following stacktrace when I try to invoke a document-style web service. <partnerRole name="MyWebService1_Role"> <ServiceName>{http://idm.oracle.com/}MyWebService1</ServiceName> <PortType>{http://idm.oracle.com/}MyWebService1</PortType

  • Problem syncing iCal from iPhone (3GS) to Macbook, any ideas?

    Hi, I've always synced my iPhone & Mac via a cable and never had a problem until a few months ago when my calender entries on my iPhone stopped syncing to my Macbook. But if I create an event on my Macbook then later sync my iPhone the event appears

  • Change color of future typed text in a pasted document?

    How do I change color of future typed text in a copied document? Thanks. My son is doing online home schooling this year and has Study Sheets that he types in his answers.  Currently, he highlights his typed text then chooses the color.   Is it possi

  • Dazzle Record with Fios

    I'm Recording my TV with my Dazzle DVC 100 and the video comes up and everything but there is no sound.... Do I need splitters? if so can you tell me which one Thanks in advance

  • Bex Connection of a Webi 4.0 Report

    Hi All, Is their any way to get the system name (i.e. DEV/PROD/TEST) of a report which is connected to BEx?? Please help. Thanks, Meenu