Deployment tool startup problem

when I run my deploytool, I get an error message about:
"initialization error looking for help set for help
... Starting deploytool with JavaHelp disabled"
Then my dos window fills up with error messages that I can even read because they are going so fast. Anyone know of a solution to this sort of problem??
Note: I am running JDK1.3, J2SDKEE1.3 on Windows 98 - J2EE server runs fine, Cloudscape runs fine, Deploytool not running.

I am using J2SDKEE1.3.1 with J2SDK1.4 and had the same problem. This is what I did to fix it:
In deploytool.bat change this line:
set JAVA_HELP=%LIBDIR%\jh.jar
to:
set JAVA_HELP=%LIBDIR%\jhall.jar
Hope it works for you.

Similar Messages

  • Problem deploying web service with the deploy tool (J2EE)

    Hello,
    I am trying to deploy a sample Web Service on the Sun Java System Application Server Platform Edition 8.1 2005Q1.
    I run into a deployment problem ("jaxrpc compilation exception") when I have one of the web methods declared (in the endpoint interface) to throw a service-specific exception. The problem disappears when I change the declaration to throw an Exception.
    Here is the exception class:
    public class StockNotFoundException extends Exception {
    private String message;
    public StockNotFoundException(String message) {
    super(message);
    this.message = message;
    public String getMessage() {
    return message;
    the endpoint interface:
    public interface StockServiceIF extends Remote {
    // the service methods
    public boolean sellStocks(String ticker, int quantity)
    throws RemoteException, StockNotFoundException;
    and here are the error messages I am seeing:
    in the deploy tool dialog:
    distribute: C:\Beginning J2EE 1.4\Ch13\StockServiceApp\StockServiceApp.ear
    deployment started : 0%
    Deploying application in domain failed; Fatal Error from EJB Compiler -- jaxrpc compilation exception
    ; requested operation cannot be completed
    !!! Operation Failed !!!
    !!! With The Following Failure Messages !!!
    Deploying application in domain failed; Fatal Error from EJB Compiler -- jaxrpc compilation exception
    ; requested operation cannot be completed
    Fatal Error from EJB Compiler -- jaxrpc compilation exception
    and in the server log:
    [#|2005-02-01T18:30:47.856-0600|INFO|sun-appserver-pe8.1|javax.enterprise.system.tools.deployment|_ThreadID=12;|DPL5109: EJBC - START of EJBC for [StockServiceApp]|#]
    [#|2005-02-01T18:30:47.856-0600|INFO|sun-appserver-pe8.1|javax.enterprise.system.tools.deployment|_ThreadID=12;|Processing beans ...|#]
    [#|2005-02-01T18:30:47.936-0600|INFO|sun-appserver-pe8.1|javax.enterprise.system.stream.out|_ThreadID=12;|
    error: incorrect fault part name for fault "StockNotFoundException" of operation "sellStocks": "StockNotFoundException"|#]
    [#|2005-02-01T18:30:47.966-0600|INFO|sun-appserver-pe8.1|javax.enterprise.system.tools.deployment|_ThreadID=12;|Total Deployment Time: 1001 msec, Total EJB Compiler Module Time: 0 msec, Portion spent EJB Compiling: 0%|#]
    [#|2005-02-01T18:30:47.966-0600|SEVERE|sun-appserver-pe8.1|javax.enterprise.system.tools.deployment|_ThreadID=12;|Exception occured in J2EEC Phase
    com.sun.enterprise.deployment.backend.IASDeploymentException: Fatal Error from EJB Compiler -- jaxrpc compilation exception
         at com.sun.enterprise.webservice.codegen.JaxRpcRICodegen.accept(JaxRpcRICodegen.java:206)
         at com.sun.enterprise.deployment.EjbBundleDescriptor.visit(EjbBundleDescriptor.java:584)
         at com.sun.enterprise.deployment.Application.visit(Application.java:1333)
         at com.sun.enterprise.webservice.codegen.JaxRpcRICodegen.run(JaxRpcRICodegen.java:103)
         at com.sun.ejb.codegen.IASEJBC.doCompile(IASEJBC.java:785)
         at com.sun.ejb.codegen.IASEJBC.ejbc(IASEJBC.java:563)
         at com.sun.enterprise.deployment.backend.EJBCompiler.preDeployApp(EJBCompiler.java:340)
         at com.sun.enterprise.deployment.backend.EJBCompiler.compile(EJBCompiler.java:209)
         at com.sun.enterprise.deployment.backend.AppDeployer.runEJBC(AppDeployer.java:284)
         at com.sun.enterprise.deployment.backend.AppDeployer.deploy(AppDeployer.java:176)
         at com.sun.enterprise.deployment.backend.AppDeployer.doRequestFinish(AppDeployer.java:107)
         at com.sun.enterprise.deployment.phasing.J2EECPhase.runPhase(J2EECPhase.java:146)
         at com.sun.enterprise.deployment.phasing.DeploymentPhase.executePhase(DeploymentPhase.java:71)
         at com.sun.enterprise.deployment.phasing.PEDeploymentService.executePhases(PEDeploymentService.java:633)
         at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentService.java:188)
         at com.sun.enterprise.deployment.phasing.PEDeploymentService.deploy(PEDeploymentService.java:520)
         at com.sun.enterprise.management.deploy.DeployThread.deploy(DeployThread.java:143)
         at com.sun.enterprise.management.deploy.DeployThread.run(DeployThread.java:171)
    |#]
    I would appreciate any pointers to resolving this issue.
    Thanks,
    Satyen

    Can you post the WSDL that was generated by the tool
    for this interface ?I generate the WSDL using "wscompile -define -nd . -classpath ..\build\classes -f:wsi service-config.xml", and here it is:
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions name="StockService" targetNamespace="urn:stockService" xmlns:tns="urn:stockService" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
    <types>
    <schema targetNamespace="urn:stockService" xmlns:tns="urn:stockService" xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://www.w3.org/2001/XMLSchema">
    <complexType name="StockNotFoundException">
    <sequence>
    <element name="message" type="string" nillable="true"/></sequence></complexType>
    <element name="StockNotFoundException" type="tns:StockNotFoundException"/></schema></types>
    <message name="StockServiceIF_sellStocks">
    <part name="String_1" type="xsd:string"/>
    <part name="int_2" type="xsd:int"/></message>
    <message name="StockServiceIF_sellStocksResponse">
    <part name="result" type="xsd:boolean"/></message>
    <message name="StockNotFoundException">
    <part name="StockNotFoundException" element="tns:StockNotFoundException"/></message>
    <portType name="StockServiceIF">
    <operation name="sellStocks" parameterOrder="String_1 int_2">
    <input message="tns:StockServiceIF_sellStocks"/>
    <output message="tns:StockServiceIF_sellStocksResponse"/>
    <fault name="StockNotFoundException" message="tns:StockNotFoundException"/></operation></portType>
    <binding name="StockServiceIFBinding" type="tns:StockServiceIF">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc"/>
    <operation name="sellStocks">
    <soap:operation soapAction=""/>
    <input>
    <soap:body use="literal" namespace="urn:stockService"/></input>
    <output>
    <soap:body use="literal" namespace="urn:stockService"/></output>
    <fault name="StockNotFoundException">
    <soap:fault name="StockNotFoundException" use="literal"/></fault></operation></binding>
    <service name="StockService">
    <port name="StockServiceIFPort" binding="tns:StockServiceIFBinding">
    <soap:address location="REPLACE_WITH_ACTUAL_URL"/></port></service></definitions>
    ---------------------------------------------------------------------------------------------------------

  • Problem in using J2EE server (deploy tool)

    Hi All
    I am in the starting phase of learning J2EE technology. I am facing some problem .
    1. When I start the deployment tool by command "deploytool" , the console appears but it does not have menu "server".
    2. I am not able to specify JNDI names as after selecting the application name, the Inspactor window does not have tabs "JNDI names"
    Please help me out to solve these issues.
    Thanks in advance
    anu

    After you create ?.ear.xml as previously mentioned, you can include it in your enterprise archive as follows:
    cd app\build
    mkdir META-INF
    copy ?.ear.xml META-INF\sun-j2ee-ri.xml
    jar -uf ?.ear META-INF\sun-j2ee-ri.xml
    Then you should be able to deploy your application and run your client successfully.
    You also might want to check out:
    http://groups.msn.com/J2EETools/createdescriptors14.msnw
    for the specific steps on how to create the ?.ear.xml that includes JNDI names.

  • Csa 6.0 problem with software deployment tool

    Hi Guys,
    I am having some problems with csa 6.0 and a software deployment tool called capainstaller, it resides on the client and picks up packages on some server shares and executes them from there, or copies it locally. We have added it to the class that defines mass software deployment like we did in 5.2, which works fine in 5.2, in 6.0 we are getting alot of applications getting put into @untrusted, for some reason. I can't figure out if i am supposed to make general exeptions for shares and local directories where the deployment tool reads its packages from ? In that case which classes should i modify, i am seeing alot of classification from the module called Security - Untrusted Content Classification, and this gives me alot of headaches.

    Well, the Mass Software Deployment class, is where you are supposed to put marimba, in 5.2 this was fine, and worked for most of the installations i have done. in 6.0 the big break came when i found out that you can't use UNC network paths in a file set, it just doesn't work. If you put it is a literal straight in the same field as the altiris and sms are in the built-in rules, that works, maybe your marimba agent is also part locally installed and part gotten from the network like ours is ?

  • An urgent problem of the deploy tool!!

    Hi all,
       I used the deploy tool to create a new EAR.In the Assembler tab, I built the EAR successfully and an EAR file appears in the workplace folder.But when I'm going to deploy this EAR,the EAR file is deleted from local machine and I get a message which reads "Can't find the EAR".What do the deploy tool?How can it delete the EAR file and give the message of finding no EAR?How to explain this?

    Hi Zhang,
             This problem will occur due to some configuration settings with the Studio.Even tough you save all your jar,war & ear file it will get deleted when you deploy since the environment is not properly set.
             Did you try building ear file for another sample dummy application with the studio?Is the problem arises only for the current project or for all esr files.
    If you get problem for all ear files then,please do as below.
            I suggest you to re-install the studio once again.But before doing so clear your registry entries also in your local machine for the older version.
            It shd definitely work.
    Regards,
    Guru

  • Deployment Tool Problem (J2EE -Composite primary Key Class)

    Hi !!
    e.g. I have an entiybean which has composite primary key class. So while deploying in J2EE tool u need to specify the Primary key class and the primary key field. well in case of a composite primary key class(if u have more than one field)...how do u declare all the fields for primary key class....
    if u r not getting me please tell me... See in J2EE deployment tool there is on section called Entity..in that see the Primary Key class (there u specify the Primary key class) and the Primary Key Field Name (the field name) Here u can just give only one Field name..if you have mulitple fields, then where you will specify... Please let me know..
    if anybody wants the code I will give the code...Please try to help..(how to deploy this kind of entity bean in J2EE deployment tool)
    -Bhumika

    Hi Bhumika,
    in case you have more than one field you need to write a Primary key class where the fields you want to be the key are member variables.
    your p.key class could look like this (it has to implement hash() and equals() ):
    public class PersonPK implements java.io.Serializable
    public int person_ID;
    public PersonPK()
    public PersonPK(int aPersonId)
    person_ID = aPersonId;
    public int hashCode()
    return person_ID;
    public boolean equals(Object ob)
    if (ob == this) return true;
    if (!(ob instanceof PersonPK)) return false;
    PersonPK other = (PersonPK) ob;
    if (person_ID != other.person_ID) return false;
    return true;
    -Hope this helps a bit,
    Anke

  • Problem connecting from Deploy tool to WAS

    Hi,
    We are trying to deploy an .ear file using deploy tool <j2ee Engine/deploying/deploytoll.bat>. But unable to connect to WAS though we gave the user, password and the port that J2EE engine is running (50100). Here is the error message we got: 
    RROR: Cannot connect to Host: [localhost] with user name: [Administrator]
                        Check your login info.
                        Exception is: com.sap.engine.services.jndi.persistent.exceptions.NamingException: Exception while trying to get InitialContext. [Root exception is com.sap.engine.interfaces.cross.DestinationException: cannot establish connection with any of the available instances:
    localhost:50100 Reason: Cannot open connection on host: 10.100.232.55 and port: 50100]
    And we are able to connect and login to the J2EE server/Portals. So please help us in deploying the .ear file and let us know whether we can do the same without the help of deploy tool.
    thanks,
    Priya.

    Have you tried using the SDM (Software depolyment manager)?
    \usr\sap\<SID>\DVEBMGS00\SDM\program

  • Deployment Tool, Different Config Files, Same Results

    I should mention that I'm generating App-V 5 packages for Office 2013. Maybe this question belongs in the App-V forums.
    I can't seem to create a configuration file for the Office Deployment Tool that does what I want. This configuration:
    <Configuration>
    <Add SourcePath="D:\Something\Something\Source\Full Suite" OfficeClientEdition="32">
    <Product ID="ProPlusVolume">
    <Language ID="en-us" />
    </Product>
    <Product ID="VisioProVolume">
    <Language ID="en-us" />
    </Product>
    <Product ID="ProjectProVolume">
    <Language ID="en-us" />
    </Product>
    </Add>
    </Configuration>
    generates an App-V package with the "basic" Office apps (Word, Excel, etc.), along with Visio and Project. That part is fine.
    If I remove the Product elements for Project and Visio, I expect that a "basic" Office package will be created. However, Visio and Project are still in the package, and they are indeed usable. We have limited licenses for Project and Visio, so
    I would like them not to be deployed to every machine.
    I have tried giving the two configuration files their own source folders, that is, running the download command once for each configuration file and telling it to download to two different folders... same results.
    This is similar to John Marcum's follow-up question at
    https://social.technet.microsoft.com/Forums/office/en-US/c9462446-7744-4e3e-8c25-dbcd185a17e4/creating-lync-and-onenote-appv-packages?forum=officesetupdeploy

    Kazzan's reply technically does work, and it is a viable option. However, that reply led me to wonder what the Office Deployment Tool (ODT) is doing to a machine that makes generating different packages difficult or impossible.
    I found that the ODT leaves files behind in the current user's Temp directory, after the package generation is finished. At least one of these folders (named Microsoft Office 15) contains the file system contents of the App-V package. So, I decided
    to clear the Temp directory in between runs of the Office Deployment Tool. Simply clearing this directory was not enough to solve the problem, but I'm still doing it as part of the build process.
    Running Process Monitor showed me activity in HKCU\Software\Microsoft\Office\15.0\ClickToRun. Deleting this entire key does not appear to be necessary, and I'm not sure what that would do if you actually used Office Click-To-Run on the same machine on which
    you're running ODT.  So, I deleted just these keys:
    HKCU\Software\Microsoft\Office\15.0\ClickToRun\Configuration
    HKCU\Software\Microsoft\Office\15.0\ClickToRun\ProductReleaseIDs
    HKCU\Software\Microsoft\Office\15.0\ClickToRun\Scenario\APPVPACKAGE
    Deleting those keys, along with the Temp directory cleanup, is sufficient to let me build multiple Office 2013 App-V 5 packages on the same computer.

  • How to specify JDBC Oracle url using deployment tool - Entity Bean

    Hello I'am new to EJB.
    When creating a entity bean-managed persistence and you need to specify the jdbc url with user name
    and password to establish a connection object, how does one specify that in the deployment
    tool?
    Heres an example of what has in the J2EE tutorial has in AccountEJB to get an connection object
    private String dbName = "java:comp/env/jdbc/AccountDB";
    private void makeConnection() throws NamingException, SQLException {
    InitialContext ic = new InitialContext();
    DataSource ds = (DataSource) ic.lookup(dbName);
    con = ds.getConnection();
    Now if my oracle jdbc url is to be jdbc:oracle:thin:@Abe:1521:dev
    ie My host is Abe, port number 1521 and database name of dev and username/password will be system/manager.
    what would my dbName be at the top?
    Would my JNDI lookup of a DataSource resource "java:comp/env/jdbc/AccountDB" become "java:comp/env/jdbc/dev" for starters?
    In the Resource Factories Reference Code I've add a reference of
    Coded Name: jdbc/dev
    Type: javax.sql.DataSource
    Authentication: Container
    and down the bottom of the I've put JNDI Name: MyAccount
    according to the AccountClient code of:
    Context initial = new InitialContext();
    Object objref = initial.lookup("MyAccount");
    and put User Name of "system" and Password of "manager"
    I'am sure in the source code I have to put
    Class.forName("oracle.jdbc.driver.OracleDriver")
    else you would get that no sutitable driver error, maybe you don't have to if ejb server is smart enough?
    What I'am confuse about is where to specify the jdbc url of "jdbc:oracle:thin:@Abe:1521:dev" ??
    Know it won't work because of this vital part. Do you have to put that somewhere else in the deployment tool or properties file, or some other tool??
    Please help
    Thanks
    Abraham Khalil

    When running the client after successful deployment with jdbc, I'am getting
    javax.naming.CommunicationException: java.rmi.MarshalException: CORBA MARSHAL 1398079699 Maybe; nested exception is:
    org.omg.CORBA.MARSHAL: Unable to read value from underlying bridge : minor code: 1398079699 completed: Maybe
    org.omg.CORBA.MARSHAL: Unable to read value from underlying bridge : minor code: 1398079699 completed: Maybe
    at com.sun.corba.ee.internal.iiop.CDRInputStream_1_0.read_value(CDRInputStream_1_0.java:923)
    at com.sun.corba.ee.internal.iiop.CDRInputStream.read_value(CDRInputStream.java:281)
    at com.sun.corba.ee.internal.corba.TCUtility.unmarshalIn(TCUtility.java:274)
    at com.sun.corba.ee.internal.corba.AnyImpl.read_value(AnyImpl.java:554)
    at com.sun.corba.ee.internal.iiop.CDRInputStream_1_0.read_any(CDRInputStream_1_0.java:605)
    at com.sun.corba.ee.internal.iiop.CDRInputStream.read_any(CDRInputStream.java:252)
    at com.sun.corba.ee.internal.javax.rmi.CORBA.Util.readAny(Util.java:203)
    at javax.rmi.CORBA.Util.readAny(Unknown Source)
    at org.omg.stub.com.sun.enterprise.naming._SerialContextProvider_Stub.lookup(Unknown Source)
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:133)
    at javax.naming.InitialContext.lookup(Unknown Source)
    at AccountClient.main(AccountClient.java:21)
    at com.sun.enterprise.naming.SerialContext.lookup(SerialContext.java:151)
    at javax.naming.InitialContext.lookup(Unknown Source)
    at AccountClient.main(AccountClient.java:21)
    One thing I don't like about EJB is that everything is transparent which is good! But its much
    harder to debug! :( Tried to see if I can figure it out. Hope someone has seen this problem before?

  • Error installing 365 Pro Plus from deployment tool

    I have 1 Windows 7 x64 PC which is failing to install from the deployment tool. It is built from the same image as 50-60 other PCs which had no issues installing using the same XML configuration file and network share. The log always shows the same few lines
    at the end implying there is some kind of pre-requisite missing. So far I have tried:
    Scanned for Windows updates and installed all available
    Ran the Fix It tool from KB 2739501 which said it could not detect any problems
    Checked that the registry entries did not exist for HKLM\Software\Microsoft\Office\15.0 and HKCU\Software\Microsoft\Office\15.0
    Checked "C:\Program files\Microsoft Office 15" does not exist
    Checked "C:\Program files (x86)\Microsoft Office 15" does not exist
    Tried creating a new local administrator account
    Uninstalled the previous version of Office
    The last few lines of the log are:
    04/08/2014 17:08:12.366 SETUP (0x8e4) 0x508  Click-To-Run anhmn Unexpected Prereq::PrereqsFailed: OException has occured ErrorCodeOnly (failed MsiEnumProducts , Error:0x64a). Exiting bootstrapper. 
    04/08/2014 17:08:12.366 SETUP (0x8e4) 0x508  Click-To-Run aoh88 Medium RunPrereqs::HandleStateAction Prereq check has failed. 
    04/08/2014 17:08:12.366 SETUP (0x8e4) 0x508  Click-To-Run aoh9e Unexpected HandlePrereqFailure::HandleStateAction: Failure has occured with unknown action: 160 
    04/08/2014 17:08:12.366 SETUP (0x8e4) 0x508  Click-To-Run aoh71 Medium BootstrapperState::OnError: Error has occured. Go to ExitBootStateMachine. 
    04/08/2014 17:08:12.366 SETUP (0x8e4) 0x508  Click-To-Run aoh9f Medium BootStateMachine::ShowFailureUI: Showing failure UI. 

    04/08/2014 17:08:12.366 SETUP (0x8e4) 0x508  Click-To-Run anhmn Unexpected Prereq::PrereqsFailed: OException has occured ErrorCodeOnly (failed MsiEnumProducts , Error:0x64a).
    0x64a = 1610 (hex-to-decimal)
    MSI error reference:
    ERROR_BAD_CONFIGURATION
    1610
    The configuration data for this product is corrupt. Contact your support personnel.
    -=-=-
    Not terribly helpful. Are there other errors in the event log of the machine (maybe bad hardware or other issues)?
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Do I have to use deployment tool to build my ear/jar/war ?

    Hi !
    I have a ear application, which is developed in JBOSS+Tomcat.
    I want to port this into iPlanet sp3 test drive. Do I have to use the
    deployment tool to generate the uid and isa xml files ?
    Can I edit it manually ? cause I have problem to resolve my almost 100
    jsp/html/img files. And even if I do, it always tells me "missing xml
    files".
    Thanks,
    H.H.

    Hi,
    If you are good at XML then please go ahead and build the required XML
    files. If not, it's always better to use the deployment tool bundled with
    iAS or use Forte For Java 3 Enterprise Edition to deploy the application.
    Please do not use JDK other than the one provided with iAS as it may not
    produce the correct results. However you can use JDK 1.3 to build your
    application but your app server doesn't run on JDK 1.3. Again, some of the
    functions may run and there is no guarantee to work, the tech support may
    refuse to support on your application if you use JDK 1.3. Hope this helps.
    Regards
    Raj
    I will try again, and do you have any suggestions for the "missing xml
    files" ?
    Also I rememeber seeing one of your post somewhere metioned that ias
    doesn't
    work with jdk1.3 ?
    do you have any suggestions if we are using some 1.3 functions such as
    TimerTask ?
    Thanks
    Brandon wrote:
    Hi !
    I have a ear application, which is developed in JBOSS+Tomcat.
    I want to port this into iPlanet sp3 test drive. Do I have to use the
    deployment tool to generate the uid and isa xml files ?
    Can I edit it manually ? cause I have problem to resolve my almost 100
    jsp/html/img files. And even if I do, it always tells me "missing xml
    files".
    Thanks,
    H.H.

  • Deployment Tool, for 6.40 SP7

    I just installed EP 6.0 SP6 on NetWeaver 6.40 SP7. When run deploytool.bat, a popup window tells error:
       There is no disk in the drive. Please insert a disk into drive \Device\Harddisk2\DR6
        I have a choice of cancel, try again, continue.
      The flash screen shows on the back: SAP J2EE Engine 630 Deployment Tool.
      BTW, I was using NetWeaver 6.20 and the deploytool was working fine.
      Has anybody run into this problem before? Any suggestion or help is appreciated.
    thanks
    Dave Wang

    Hi,
    I had exactely the same problem and found the solution here:
    http://listserv.sap.com/pipermail/linux.general/2005-May/004673.html
    After I changed the entry in /etc/hosts, everything went smooth.
    Regards,
    Andreas

  • Deploy a web service with the deploy tool (J2EE)

    Hi!
    I want to deploy a web service with the Deploy Tool (J2EE 1.4).
    (For info, I'm working on Win 2000.)
    I have the following error when I'm trying to deploy:
    distribute: C:\monHello2\monApp.ear
    Deploy action running...
    Deployment failed on target localhost:4848_server : Fatal Error from EJB Compiler -- jaxrpc compilation exception
    !!! Operation Failed !!!
    Someone can help me, please? What's the problem?
    Other question: when I create the WAR file, I have to add : my interface class, my implementation class, my others java classes, my WSDL file and my mapping.xml file.
    Should I add the .jar that is used by one of my class???? I think yes, but...
    thank you and excuse me for my english... ;o)

    Only primitive types can be returned? Is thatcorrect????
    true - for more details check out section 3.4.1.3 of
    this book which is available for purchase or online
    http://java.sun.com/blueprints/guidelines/designing_w
    ebservices/I meant to say primitive type and "special POJOs" called "JAXRPC Value Types" - check out the reference I listed

  • Error in Office Deployment tool

    hi,
    Error in Office Deployment tool
    Any known issue?  tnx

    I've seem the same problem twice today. Check your local network status and disable filewall/AVG to try it again.
    You may also refer to the answer in my another threads and let me know your update. Thanks.
    http://social.technet.microsoft.com/Forums/en-US/de716bad-ad39-4dc6-a473-c43574afd942/office-deployment-tool-fails-to-download-source-files?forum=offi 
    Tony Chen
    TechNet Community Support

  • Finders in the deployment tool

    Hi!
    I'm trying to figure out how to write custom finders in the deployment tool.
    But I've run into two problems:
    1. Can I define my own PrimaryKey class that I use to identify the bean and
    how do I configure it in the deployment tool?
    - e.g. findByPrimaryKey(CustomPK pk)
    - Do I need to configure anyhing in the LightWeightCMP tab in the
    deployment tool or is it enough that I give the PrimaryKey class name in the
    General tab?
    2. How do I configure the findAll method in the deployment tool?
    - Is it sufficient that I provide the following information:
    - Name: findAllSQL
    - Type: java.lang.String
    - Value: SELECT C_ID FROM TBL_PARTNER
    Thanks in advance for any help I can get!

    the tab is for the user to fill in the entries of all the EJBs referenced by the module that is selected in the left side tree.
    thus, when you select the client jar, it will show you the EJBs that the client references (as per the deployment descriptor). Likewise for EJBs.
    for simple bmp example, the ejb-jar.xml file does not contain any entries of the type <ejb-ref> where as, the application-client.xml (DD for the client) does.
    the same logic applies to cmpcustomer example.
    hope this helps.

Maybe you are looking for

  • I need to change the Apple ID on iCloud as I was hacked...

    I had to change my apple ID as my iTunes was hacked, but now I can't access iCloud as the username is still the old one. How do I change it? I've tried to sign out but the password for the account was changed by the hackers. All I want to do is acces

  • Blurred display

    I woke up this morning and when I picked up my Iphone the screen is horribly blurred and I can hardly read the text. Everything works correctly but the display is the only thing messed up any ideas here?

  • HT201209 I want to use a gift card but it's asking for credit card info. I do not have a credit card. what do I do?

    I want to use a gift card but it's asking for credit card info. I do not have a credit card. what do I do?

  • Copying data files to separate partition

    I am using Oracle 9i Release 2 with Windows XP and I would like to store the tablespace or data files on a separate raw partition. I was told that this could increase performance. How would I go about doing this? Thank you, Malina

  • Oracle Portal DADs

    Hi everybody, Here is my configuration: SERVER1 : Oracle Application Server 10gR2 1.0.1.4 (Infrastructure and Portal & Wireless) for portal development. SERVER2 : An Oracle Database Server 10gR2 My question: How can I use SERVER2 Database Schemas as