Do I need to extend any of classes from AXIS  to return multiple values?

Do I need to extend any of classes from AXIS to return multiple values? I'm exposing the following method as web service through AXIS to return multiple values.
public ContactAddress testService()
          ContactAddress     cAddr     =     new     ContactAddress();
          cAddr.setAddresses1("AAAAAAAAAAAAA");
          cAddr.setAddresses2("BBBBBBBBBBBBB");
          cAddr.setAddresses3("CCCCCCCCCCCCC");
          return cAddr;
and the code for ContactAddress is
public class ContactAddress {
     // member variables
     private String addresses1;
     private String addresses2;
     private String addresses3;
     public String getAddresses1() {
          return addresses1;
     public void setAddresses1(String addresses1) {
          this.addresses1 = addresses1;
     public String getAddresses2() {
          return addresses2;
     public void setAddresses2(String addresses2) {
          this.addresses2 = addresses2;
     public String getAddresses3() {
          return addresses3;
     public void setAddresses3(String addresses3) {
          this.addresses3 = addresses3;
}when I'm exposing the method in following way...I'm gettting this error.
org.xml.sax.SAXParseException: Premature end of file.
The wsdl for this is .......
  <?xml version="1.0" encoding="UTF-8" ?>
- <wsdl:definitions targetNamespace="http://v:9090/services/Test" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://v:9090/services/Test" xmlns:intf="http://v:9090/services/Test" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <!--
WSDL created by Apache Axis version: 1.4
Built on Apr 22, 2006 (06:55:48 PDT)
  -->
- <wsdl:types>
- <schema targetNamespace="http://v:9090/services/Test" xmlns="http://www.w3.org/2001/XMLSchema">
  <import namespace="http://schemas.xmlsoap.org/soap/encoding/" />
- <complexType name="ContactAddress">
- <sequence>
  <element name="addresses1" nillable="true" type="soapenc:string" />
  <element name="addresses2" nillable="true" type="soapenc:string" />
  <element name="addresses3" nillable="true" type="soapenc:string" />
  </sequence>
  </complexType>
  </schema>
  </wsdl:types>
- <wsdl:message name="addRequest">
  <wsdl:part name="x" type="soapenc:string" />
  </wsdl:message>
- <wsdl:message name="testServiceResponse">
  <wsdl:part name="testServiceReturn" type="impl:ContactAddress" />
  </wsdl:message>
- <wsdl:message name="addResponse">
  <wsdl:part name="addReturn" type="soapenc:string" />
  </wsdl:message>
  <wsdl:message name="testServiceRequest" />
- <wsdl:portType name="TestService">
- <wsdl:operation name="testService">
  <wsdl:input message="impl:testServiceRequest" name="testServiceRequest" />
  <wsdl:output message="impl:testServiceResponse" name="testServiceResponse" />
  </wsdl:operation>
- <wsdl:operation name="add" parameterOrder="x">
  <wsdl:input message="impl:addRequest" name="addRequest" />
  <wsdl:output message="impl:addResponse" name="addResponse" />
  </wsdl:operation>
  </wsdl:portType>
- <wsdl:binding name="TestSoapBinding" type="impl:TestService">
  <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
- <wsdl:operation name="testService">
  <wsdlsoap:operation soapAction="" />
- <wsdl:input name="testServiceRequest">
  <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://services.avon.com" use="encoded" />
  </wsdl:input>
- <wsdl:output name="testServiceResponse">
  <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://v:9090/services/Test" use="encoded" />
  </wsdl:output>
  </wsdl:operation>
- <wsdl:operation name="add">
  <wsdlsoap:operation soapAction="" />
- <wsdl:input name="addRequest">
  <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://services.avon.com" use="encoded" />
  </wsdl:input>
- <wsdl:output name="addResponse">
  <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://v:9090/services/Test" use="encoded" />
  </wsdl:output>
  </wsdl:operation>
  </wsdl:binding>
- <wsdl:service name="TestServiceService">
- <wsdl:port binding="impl:TestSoapBinding" name="Test">
  <wsdlsoap:address location="http://v:9090/services/Test" />
  </wsdl:port>
  </wsdl:service>
  </wsdl:definitions>

1. The export button is only for use with Single Edition publications, for customers who are not using Creative Cloud.
2. All DPS issues are hosted by Adobe, you cannot host them on your own server.
3. The DPS pricing model is based around a per-issue download charge. There is no way to distribute content with DPS and avoid that charge.
Neil

Similar Messages

  • How to extend JAXB genrated classes from other application specifc classes

    Hi,
    I would like to know, is there a way to extend JAXB genrated classes from my application specific classes?
    Thanks!

    extend JAXB genrated classes from my application specific classes
    In JAXB 2.0 a Java class may be mapped to an XML document or an XML Schema with annotations in the javax.xml.bind.annotation package.

  • SSAS- DAX expression : Is there any DAX function that can return multiple values ?

    Hi,
    Iam in search of a DAX function that can return multiple values as result. please find below scenario where i want to implement the same.
    I have three  Tables: Table A (typeid, Cost, Qty ) ,Table B (typeid, Cost, Qty ) , Table C ( typeid,Typename ) .
    Table A                                       Table B                               
    Table C
    type id  cost  Qty             type id   Cost    Qty                 
    typeid  typename
    1           100    100                3         300     
    300                  1           aa
    2           200    200                4          400    
    400                  2           bb
                                                                                             3           cc
                                                                                             4          
    dd 
    i have to club cost and Qty of two tables(four measures)  as two measures in the  UI report. There are more columns in these tables that restrict the  UNION of the tables.(for the sake
    of understanding , i have not mentioned the othr columns). In the UI report(Execl 2013-power pivot) iam plotting these measures against the
    Table C.Typeid. Hence the measures drill down against each 
    Table C. Typeid as shown below:
    Typeid  Table A.cost  Table A.Qty  TableB.cost  TableB.Qty                              
    1              100             100
    2              200             200
    3                                                    
    300             300      
    4                                                    
    400             400
    My requirement is to club these measures so that the report will be as below
    Type id  cost   Qty
    1          100    100
    2          200    200
    3         300     300
    4         400      400
    Since i cannot club these in model,as a work around, i created a calculated measure in excel(Analyze tab->Calculations->olap tools->calculated measure) with the condition as below:
    new cost = IIF (ISEMPTY(TableA.cost)="TRUE",TableB.cost,TableA.cost)
    new Qty = IIF(ISEMPTY(TableA.Qty)="TRUE",TableB.Qty,TableA.Qty) and dragged these new measures into the report. It was working fine as expected.
    But  this functionality of Creating calculatedmeasure in excel report is possible only in 2013 excel version.
    Now the requirement is to get the same result in 2010 excel. Can you please help me in implementing the same in 2010 excel? or any other alternative method to bring the columns in model itself. I tried to create a measure in table A with DAX expression as
    : new cost :=CALCULATE(SUM(Table B.cost),ISBLANK(TableA.cost)) -> but this will return only 1 result .i need Sum(Table A.cost) also if it is not blank.
    Thanks in advance

    You can use SUMX ( 'Table A', 'Table A'[Cost] + 'Table B'[cost] )
    However, if you install the latest version of Power Pivot in Excel 2010, it supports the ISEMPTY function, too.
    http://support.microsoft.com/kb/2954099/en-us
    Marco Russo http://www.sqlbi.com http://www.powerpivotworkshop.com http://sqlblog.com/blogs/marco_russo

  • I need to return multiple values in function

    create or replace function f (p in varchar2) return varchar2
    is
    a number(10);
    begin
    for loop 1 in 1..10
    select instr('yyyyyyyyynnnnnyynny','y',1,i) into a from dual;
    end loop;
    return a;
    end;
    my function return a value but i need to return multiple values
    thanks in advance

    Dipali Vithalani wrote:
    I understand that OUt parameter should not be used in funtions... Then I am eager to know, why oracle has provided the opton of OUT Parameter in funtion creation ? Hope you can explain that..This is an option is many languages.
    And there is valid use for it. PL/SQL however does not implement the full solution. An OUT parameter is essentially passing parameters by reference and not passing it by value.
    Passing by reference means passing a pointer to the function/procedure to the variable in the caller. This allows the function/procedure to directly reference the value in the caller.
    Passing by value means that the value from the variable in the caller is copied to the stack space of the function/procedure being called. The function/procedure thus has its own local copy of that value.
    That could be a performance and resource problem when the caller has a large data structure and the entire structure needs to be copied from the caller to the called procedure/function. In such a case it is a lot faster (and less memory needed) to simply pass a pointer to that structure to the function/procedure being called.
    And this is basically what an OUT parameter does - it allows PL/SQL code direct access to write into the variable of the calling code.
    In some cases you may have a large data structure, want to pass it by reference, but do not want the function/procedure being called to change it. You do not want to allow it modify your large data structure. You simply want to pass a pointer and allow read access to the function/procedure.
    In other languages, such a parameter is defined as a constant - as constants cannot be changed. So the parameter signature will look something like the following:
    create or replace function FooFunc( largeStruct CONSTANT IN OUT NOCOPY SomeDataType ) return SomeOtherDataType is ..And this is the only time that you should use an OUT parameter (passing by reference) in a function - when the function parameter is a large data structure. At the same time, the function is disallowed from changing that OUT parameter. It is passed as an OUT parameter simply to increase call performance and reduce memory requirements.
    PL/SQL unfortunately does not support this - allowing a value to be passed as a constant reference.
    As for why PL/SQL supports it the way it does - it does not mean that because PL/SQL supports OUT parameters for functions, it should be used. PL/SQL also supports the GoTo statement. Simply because it supports a specific feature does not mean that it is a good idea to use it.

  • I need help extending the MovieClip class

    I want to add a property to the MovieClip class. I just have a bunch of MovieClips that are placed on the stage by reading an XML file and creating lots of clips according to the information in them. Now, I need to know which MovieClips were created below previous clips, and I figure that the easiest way to do so would be by extending the MovieClip class and add an order property.
    I have some problems though: I don't know how to set or get this order property within the main clip, I don't know how to place this clip within my movie, and I don't know how to create them dynamically (do I just do something like var myNewObjectOfExtendedClass : myExtendedClassName = new myExtendedClassName?)
    This is the code I have on my extended class, called Expando.as:
    class Expando extends MovieClip {
    private var _order:Number;
    public function get order():Number {
    return _order;
    public function set order(nOrder:Number):Void {
    _order = nOrder;

    You mean the Tree component?
    My concern with the Tree component (at least the AS2 version) is that I don't see a way to have each node in the Tree have different hit areas with different outcomes.
    The tree that I build must have up to 7 levels within each main branch, and not all of them behave the same way. In some branches, clicking the icon next to the label will have a completely different outcome than clicking on the label, which may or may not return a function. Each of those sublevels also need to support different icons, depending on what information is represented by it.
    Sample:
    • Reminders
    My Reminders
    Manual Reminders
    Escalated Reminders
    • Cases
    Name Actions < ---- this is where the problem begins. Clicking on the icon where the bullet should be should do something different than clicking on the name, which should do something different than clicking on the word ActionsThis is information about that referral that includes who referred them, the date of the referral, their full address. This information usually takes up 2 lines, sometimes 3
    Assignment   <------- you can only open see these leaves if you click on the bullet icon for the previous node; you can't open this by clicking on the text.
    Eligibility
    Etc., depending on what information has been appended
    • Suppliers
    Anyway, if the Tree Component can indeed support these features, I'd like to know where to find information about it please
    In my search for that information, I concluded that I'd probably be better served by building my own MovieClip that can handle these requirements. I did have a working Tree component pretty quickly as I started this project, but then I got more familiar with the app that I'm building the training for and noticed these requirements.
    Of course, maybe all these features are supported by the AS3 Tree component. The problem is that I'm a lot worse with AS3 than I am with AS2 heh.

  • How to extend/ replace generated classes from JAXB

    Hello Experts,
    In our application (Which uses Java Webdynpro as the UI and RFC’s for the backend access- an R/3 System), there is a need to construct an XML file (from the data entered by the user) which will be later accepted by the backend system. Now to avoid manual creation of the XML document, what we did is that we created an XSD file based on the back end structure (This XSD contains definition for all the possible fields and structures in the back end).
    Then we used the JAXB implementation to automatically create Java Objects from the XSD file. We populate this JAXB generated Java objects and then use the Serialization framework to serialize them into an XML file.
    This all works well, provided that the structure of the back end system does not change, but unfortunately it can, customer can add additional attributes to the existing structures (They do not create new structures, just add new attributes to it so I do not need to create new Java Object classes at runtime, I need only to add attributes to them). If they do so, the XSD and corresponding Java Objects (which are shipped as part of the source code) do not remain valid anymore as the automatically generated Objects (which correspond to the structures in the back end) would not have the definition of the newly added attributes.
    Can anyone please suggest how to overcome this limitation with JAXB.
    The needed functionality is that somehow I should be able to add fields (corresponding to the customer added attributes) to the automatically created Java objects and thus pass the data in the additional attribute to the backend. (Please note that at runtime using an RFC, I can find out the current structure of the backend but the structure at the Webdynpro end (set of Java objects generated from the JAXB) is static and is a part of the code).
    Any comments/suggestions could be of great help.
    Thanks
    Amit Kapoor

    You cannot do that. TheJAVA language does not allow a class to "extend" more than one upper class.
    Typically, the solution is to modify your architecture a little bit. Just use the "has a" relationship instead of "is a". That means something like that:public class MyFraisMessage
        extends MyOtherClass
        private FraisMessage message;
      etc...You write an extension "MyFraisMessage" of your upper class "MyOtherClass", which has the JAXB generated object as an attribute. This structure is often useful, when you think you would need multiple inheritance.

  • Need to extend my DVI cable from my Mac pro to my Apple 23" cinema display

    I need to extend my existing DVI cable to the maximum allowed distance (without using a repeater) of 3m or 15'. This means I need a 12 foot extension cable Male to Female. I don't need to extend the USB or Firewire ports.
    I've searched the threads and seen discussions but am interested in feedback from someone who has actually done the extension and is happy with the outcome.
    I understand that the 23" monitor can use a single link cable and that the interface is DVI-I. Anyone tried this?
    Many thanks for the help!!
    Mac Pro, 2.66GHz, 4GB mem, 2TB storage   Mac OS X (10.4.8)  

    The graphics board has a DVI-I port, but since the Apple display only uses the digital signals, you can use a digital only cable, which might be a bit cheaper. Take a look at the female connector on the cable, though. Make sure it has holes for all the pins on the display's plug. The plug may have the analog pins, even though it doesn't use them.

  • Calling java class from PLSQL  that returns date/time a file was saved

    Does anybody know, is there a java class I can compile into Oracle DB, and call from PLSQL that returns me the date/time a file was saved.
    As far as I'm aware this cannot be achieved using UTL_FILE.
    Please advise
    Thanks
    Warren

    I found this thread from before that might be helpful
    how to connect to UNIX OS from oracle stored procedure

  • Is there any exception class which has method returning Exception id?

    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : TestTableViewer.default
    Component Name : TestTableViewer.default
    The exception was logged. Inform your system administrator..
    Exception id: 05:26_15/03/06_0058_3045950
    See the details for the exception ID in the log file
    ==================================================== 
    Hi,
       I tried PortalException methods,PageException methods,PortalRuntimeException methods to get Exception id: generated at runtime.But I have not succeeded.If anybody knows it please reply.I need to find that Exception id in my project.
    Thanks in advance 
    ======================================================

    Portal Runtime Error
    An exception occurred while processing a request for :
    iView : TestTableViewer.default
    Component Name : TestTableViewer.default
    The exception was logged. Inform your system administrator..
    Exception id: 05:26_15/03/06_0058_3045950
    See the details for the exception ID in the log file
    ==================================================== 
    Hi,
       I tried PortalException methods,PageException methods,PortalRuntimeException methods to get Exception id: generated at runtime.But I have not succeeded.If anybody knows it please reply.I need to find that Exception id in my project.
    Thanks in advance 
    ======================================================

  • Need to return multiple values...

    Hi, I'm in need of some assistance. I've been pounding my head for the past hour or some and havent come up with any solution...
    I have a query..
    select subemplid, mgrposnbr from emplsunderposnbr e
    where subposnbr in
         select reports_to
         from pspath
         where jobcode = '11378' -- Assistant Store Manager
    what I need to do is pass a value from the inner join.. I need to do something like
    select subemplid, mgrposnbr from emplsunderposnbr e
    where subposnbr in
         select reports_to, emplid
         from pspath
         where jobcode = '11378' -- Assistant Store Manager
    Now I know this wont work but is there some work around that I can do do that the outer query will know the value of the emplid and reports_to of the inner query?
    Thanks much!

    select subemplid, mgrposnbr from emplsunderposnbr e
    where subposnbr in
         select reports_to
         from pspath
         where jobcode = '11378' -- Assistant Store Manager
    what I need to do is pass a value from the inner
    join.. I need to do something like
    select subemplid, mgrposnbr from emplsunderposnbr e
    where subposnbr in
         select reports_to, emplid
         from pspath
         where jobcode = '11378' -- Assistant Store Manager
    )You have to do it without embedded query:
    select distinct e.subemplid, e.mgrposnbr , p.emplid
    from emplsunderposnbr e, pspath p
    where e.subposnbr = p.reports_to
           and p.jodbcode = '11378'Note that perhaps you need to use DISTINCT.

  • Need a Dynamic SQL statgement that returns multiple values.

    Hi,
    I'm using Oracle 10.1.0.5.
    In an anonymous block I have a dynamic SQL statement that finds the table name and column name that a string value resides in.
    It looks like this:
          l_sql := 'SELECT 1 FROM dual WHERE exists (SELECT 1 FROM '||
                   r.owner||'.'||r.table_name||' WHERE '||r.column_name||
                   ' = :b1)';
             EXECUTE IMMEDIATE l_sql INTO l_res USING l_contents;
             DBMS_OUTPUT.Put_Line(l_contents||' exists in '||r_owner||
                                  r.table_name||'.'||r.column_name);I'd then like to do a 'Select Distinct' to list all the other values in that column in the anonymous block,
    preferably as another dynamic SQL statement.
    How can I do this?

    user10382685 wrote:
    Hi,
    I'm using Oracle 10.1.0.5.
    In an anonymous block I have a dynamic SQL statement that finds the table name and column name that a string value resides in.
    It looks like this:
    l_sql := 'SELECT 1 FROM dual WHERE exists (SELECT 1 FROM '||
    r.owner||'.'||r.table_name||' WHERE '||r.column_name||
    ' = :b1)';
    EXECUTE IMMEDIATE l_sql INTO l_res USING l_contents;
    DBMS_OUTPUT.Put_Line(l_contents||' exists in '||r_owner||
    r.table_name||'.'||r.column_name);I'd then like to do a 'Select Distinct' to list all the other values in that column in the anonymous block,
    preferably as another dynamic SQL statement.
    How can I do this?Well, it would be nice for you to post the whole context of your present solution so we know what's going on. I'll assume r comes from a loop referencing user_tab_cols or some equivalent view.
    If so, you'll likely need to check the DATA_TYPE column.
    Keeping in mind, doing something like this is going to be pretty ridiculous if you have a large amount of distinct values ... I'm hoping/assuming this is a one off type of thing.
    declare
      type        l_date is table of date;
      v_date      l_date;
      type        l_char is table of varchar2(4000);
      v_char      l_char;
      type        l_numb is table of number;
      v_numb      l_numb;
      l_distinct_ set sys_refcursor;
    begin
      <current_code>
      open l_distinct_set for 'select distinct ' || r.column_name || ' from ' || r.owner||'.'||r.table_name;
      --expand on the data types you care about as needed, this is a BASIC set
      if r.data_type = 'DATE'
      then 
        fetch l_distinct_set bulk collect into v_date;
        <process_collection_as_wanted>
      elsif r.data_type in ('VARCHAR2', 'CHAR')
      then
        fetch l_distinct_set bulk collect into v_char;
        <process_collection_as_wanted>
      elsif r.data_type = 'NUMBER'
      then
        fetch l_distinct_set bulk collect into v_numb;
        <process_collection_as_wanted>
      end if;
      close l_distinct_set;

  • Help needed urgently: Sub-Total from Child Dataset returns 0 value

    Hi all,
    I REALLY need help on this I can't figure it out. I'm using rtf, bi desktop tool 11.1.5.
    My dataset structure is as follows:
    G1
    Major_Service
    Strategy
    Period_Actual
    Period_Budget
    G3
    WBS_Name --->=Major_Service
    Task_Name ---->=Strategy
    Forecast
    G3 is the child dataset which I tried to indent right to show the structure but this editor is not catering to that.
    I populated a table with Major_Service, Strategy, Period_Actual, Period_Budget, Forecast; group left by Major_Service; Conditional Region (Major_Service!='A' & 'B')
    I am able to get the value for all of it correctly row by row, with the condition met, however when I get to subtotal by group, subtotal of Forecast comes as '0.00'.
    The code is <?sum (current-group()/FORECAST)?> while the code for others are also the same.
    How can I get the output for subtotal for Forecast? Please advise.
    Thanks,
    Bavani
    Edited by: 869112 on Jul 9, 2012 11:25 PM

    If forecast is column in group G3 and you are trying to find aggregate values after end of group G3 (and inside group G1) then you will zero values.
    e.g.
    If you have pseudo code like this, aggregate forecast value will be zero.
    <start group G1>
    <start group G3>
    Some calculations on G3 columns
    <end group G3>
    Sum on forecast (which is column in group G3)>
    <end group G1>

  • How can you retieve a list of classes from the Library

    Is it possible to retrieve a list of the Linkage or Export
    Classes from a swf library dynamically?
    I am building an application where I allow the user to load
    an asset swf at runtime, then they can choose to load any Exported
    class from the library of the swf. Currently it works if you know
    the name of the asset, that you want to load, but I would like to
    be able to bring up a chooser list of the assets, rather than
    having to type the Class names.
    So far I have only seen examples where "if you know the class
    name you can load it", but nothing concerning pulling the list.
    There must be a list somewhere in flash, I just want to tap into
    that.

    I saw this before and did not have a chance to go through it
    completely.
    As I was reading it, though it did not seem to be giving me
    the answer, as they seem to extend the Export clips in the library
    by extending the class.
    I'll run through that and see.
    It does give me another idea though.
    (crazy) Idea:
    What if I extend the loader class and add a method, kind of
    like what they are doing on the document class of the loaded swf,
    to pull the class names. They hard code in the class names into the
    array though.... so that is the crux of the issue.
    Somehow I think this concept is doomed to fail but, I will
    also see if that is possible.
    I suppose for the application, I could require that any user
    would use a swf with a document class that has the getAssets()
    method.... also has some problems .... namely dealing with the
    issue of "what if they do not extend" and having it fail
    gracefully.
    oh well, food for thought... I will leave this open for now
    and perhaps I will post some answer.

  • Auto-launch Java classes from deliveries

    I need to launch custom java class from deliveries like described in this article (http://oraclebizint.wordpress.com/2007/12/17/oracle-bi-ee-101332-calling-java-scripts-and-java-classes-from-ibots/). The problem is that I want to launch my java code with all reports and hide it from application users. Is it possible?

    You can use the standard JMS Session API available to create a Queue or Topic identity object.
    i.e. Queue _myQueue = _session.createQueue("xxxxxxxxxxxxxx");Note that while this is a portable API, the syntax of the name parameter may not be portable across providers.
    Further, this only creates the Destination identity object and not the physical Destination object.
    For Sun MQ, when this identity object is used to create a producer or consumer, the physical destination is 'auto-created' if the broker is operating with factory defaults.
    Other providers may not support the 'auto-creation' facility or even if supported, it may be turned off by the administrator, in which case the application needs to handle those cases to be a provider-independant JMS application.

  • How to call Java class from Forms 6i?

    Hi friends,
    I need to call a Java class from my Forms 6i application.
    (It runs under WIndows XP. It's a client/server application and I have only the client and the Form builder installed on my PC)
    I don't know almost anything about Java's world so your help would be very useful for me.
    Could you tell me exactly what i have to do?
    I've read in metalink several Notes, but they supposed that the Java architecture is already installed in the computer.... I only have the default installation of Developer 6i... so I would need to know:
    - How to install/configure the neccesary to execute Java classes without problem
    - How to invoke the .class from Forms 6i.
    Thanks a lot
    Jose.

    And also this one:
    Problem Description
    Installed Forms 6i Rel 2 on a MS Windows machine. When trying to Import the Java
    Classes getting the errors
    PDE-UJI0001 Failed to create the JVM
    Solution Description
    You need to to install JDK 1.2.2 to run the Java Importer. And set the PATH's
    and classpath's correctly.
    Explanation
    1. Download and install the JDK 1.2.2.
    Possibly available at: http://java.sun.com/products/archive/
    2. Assuming the JDK 1.2.2 is installed in c:\jdk1.2.2 directory and the JRE in
    C:\PROGRA~1\JAVASOFT\JRE\1.2 directory; ORACLE_HOME=C:\Dev6iR2.
    Set the PATH to
    set PATH=c:\jdk1.2.2\bin;C:\PROGRA~1\JAVASOFT\JRE\1.2\bin;C:\PROGRA~1\JAVASOFT\JRE\1.2\bin\classic;%PATH%
    ( If you are using ias9i then the JDK 1.2.2 comes with the ias installtion ,
    in this case please set the PATH to
    D:\ias9i\Apache\jdk\bin;D:\ias9i\Apache\jdk\jre\bin;D:\ias9i\Apache\jdk\jre\bin\classic;%PATH% )
    3. Set the CLASSPATH to set CLASSPATH=%CLASSPATH%;C:\Dev6iR2\TOOLS\COMMON60\JAVA\IMPORTER.JAR;.
    (If you do not set the CLASSPATH correctly you will get the error
    PDE-UJI002 Unable to find the required java importer classes)
    4. Now run the Forms Builder by using the command.
    C:\Dev6iR2\bin\ifbld60.exe
    Now the Java Importer Should Run fine.
    Francois

Maybe you are looking for

  • Error in transaction code ABAON

    Dear all, my user gets an error while he is running ABAON tc, its an ABAP runtime error GETWA_NOT_ASSIGNED Pls kindly assist me

  • Adding field in the WEB UI

    Hi All, The field Batch that is available in the sales order UI under Item. I want to add the same field in the Claims UI in the item level. I'm aware that I can use AET and EEWB. Here is the scenoria.  How do I tie the batch field of the sales order

  • Old Drag and Drop With Toast Issue:

    I found this link to an old discussion, but it does not resolve my issue: http://discussions.apple.com/message.jspa?messageID=9282890#9282890 I burnt two nice LightScribe labels, (nice because I cooked 'em twice for extra darkness, which takes time,)

  • Conversion Routine... plz help

    Dear Gurus, There is a text field in R3 called as SGTXT related to some finance table... some of the records in this field directly start with '#' character and then the details.. Well here is the problem.. I m loading to ODS 0FIAR_O04 and it ends up

  • Access list hit counts

     Hello Mates, Am getting a very rare type problem while I implement the aCL on 3850 switch I do get hit matches when I put a log keyword in the ACL 102 SW#sh ip access-lists Extended IP access list 102     5 permit tcp 192.168.0.0.0 0.0.255.255 196.1