Coldfusion create instance of class from data element when cosuming a webservice

I am calling the following wsdl via cfobject https://services-staging.labcorpsolutions.com/webservice/services/LabcorpOTS/wsdl/LabcorpO TS.wsdl
I am attempting to call the following method registerDonor(java.lang.String, java.lang.String, com.labcorp.ots.ws.data.CreateRegistrationRequest) which references the CreateRegistrationRequest data element.
I haven't been successful in creating an instance of the CreateRegistrationRequest class and setting values of its members, as well as the Phone class which is also a data element.
Any assistance would be greatly appreciated in creating instances of methods located in the targetNamespace="http://data.ws.ots.labcorp.com" of the wsdl.
Thanks

Thanks for the explanation and example. At first, I didn't understand what you were getting at, but after reading "Using Top-Level Containers" and "How to Use Root Panes" java tutorials it made much more sense. Unfortunately, the books I've read up to this point, did not cover those topics at all. The books simply stated that the first step in creating a Swing gui was to extend the JFrame, or JApplet, or etc.
Unfortunately, my original problem persists. I continue to get compile-time errors such as:
TestUserInterface.java:5: cannot find symbol
symbol: class UserInterface
location: class projects.web.TestUserInterface
                      UserInterface ui = new UserInterface(); Anyone know why?
Both the classes are in the same named packaged. Below is my code:
package projects.web;
import java.awt.*;
import javax.swing.*;
public class UserInterface extends JFrame{
     JPanel menuPanel = new JPanel();
     JPanel contentPanel = new JPanel();
     JPanel selectionPanel = new JPanel();
     JButton save = new JButton("Save");
     JButton addFiles = new JButton("Add");
     public UserInterface(){
     super("File Upload");
     setSize(500, 500);
     menuPanel.add(addFiles);
     selectionPanel.add(save);
     setLayout(new BorderLayout());
     add(menuPanel, BorderLayout.NORTH);
     add(contentPanel, BorderLayout.CENTER);
     add(selectionPanel, BorderLayout.SOUTH);
     } // end constructor
} // end UserInterface class
package projects.web;
public class TestUserInterface{
     public static void main(String[] args){
          UserInterface ui = new UserInterface();
} // end TestUserInterface class

Similar Messages

  • Error creating instance of class from same package

    When I try to create an instance of a class that is in the same package, my IDE indicates that the constructor can not be found. Can anyone tell me what is wrong? Thanks. Below are the codes for both classes:
    package com.practice;
    import java.applet.*;
    import java.awt.*;
    import javax.swing.*;
    public class WebProject extends Applet{
         public void init(){
                    // The following line is where the IDE indicates there is an error
              UserInterface gui = new UserInterface();
         } // end init()
         public void start(){
         } // end start()
         public void stop(){
         } // end stop()
         public void destroy(){
         } // end destory()
    } // end class
    package com.practice;
    import java.applet.*;
    import java.awt.*;
    import javax.swing.*;
    public class UserInterface extends Applet{
         JPanel menuPanel = new JPanel();
         JPanel contentPanel = new JPanel();
         JPanel savePanel = new JPanel();
         ImageIcon saveIcon = new ImageIcon("workspace/images/toolbarButtongraphics/general/Save24");
         JButton saveButton = new JButton("Save", saveIcon);
         public UserInterface(){
              savePanel.add(saveButton);
              setLayout(new BorderLayout());
              add(menuPanel, BorderLayout.NORTH);
              add(contentPanel, BorderLayout.CENTER);
              add(savePanel, BorderLayout.SOUTH);
    } // end UserInterface class

    Thanks for the explanation and example. At first, I didn't understand what you were getting at, but after reading "Using Top-Level Containers" and "How to Use Root Panes" java tutorials it made much more sense. Unfortunately, the books I've read up to this point, did not cover those topics at all. The books simply stated that the first step in creating a Swing gui was to extend the JFrame, or JApplet, or etc.
    Unfortunately, my original problem persists. I continue to get compile-time errors such as:
    TestUserInterface.java:5: cannot find symbol
    symbol: class UserInterface
    location: class projects.web.TestUserInterface
                          UserInterface ui = new UserInterface(); Anyone know why?
    Both the classes are in the same named packaged. Below is my code:
    package projects.web;
    import java.awt.*;
    import javax.swing.*;
    public class UserInterface extends JFrame{
         JPanel menuPanel = new JPanel();
         JPanel contentPanel = new JPanel();
         JPanel selectionPanel = new JPanel();
         JButton save = new JButton("Save");
         JButton addFiles = new JButton("Add");
         public UserInterface(){
         super("File Upload");
         setSize(500, 500);
         menuPanel.add(addFiles);
         selectionPanel.add(save);
         setLayout(new BorderLayout());
         add(menuPanel, BorderLayout.NORTH);
         add(contentPanel, BorderLayout.CENTER);
         add(selectionPanel, BorderLayout.SOUTH);
         } // end constructor
    } // end UserInterface class
    package projects.web;
    public class TestUserInterface{
         public static void main(String[] args){
              UserInterface ui = new UserInterface();
    } // end TestUserInterface class

  • Is it possible to invoke a Java class from Data Services 4.0?

    Is it possible to invoke a Java class from Data Services? I have a query transform with a varchar column which I want to run an external java class against to encrypt the string value. In the Management Console, I created an adapter of type TestAdapter and referenced my jar file in the Classpath section, but when I create a Datastore of type Adapter I can't import any functions related to my java class? It seems like I need to create a new Adapter type similar to the TestAdapter with the 'Adapter Class' set to my java class? I can't figure out how to do this - which is the correct approach and is there some documentation available? thanks!

    First u nees to imoprt the class which u are doing right
    then u need to call the function of the class , and then you can put the value in a string .
    DbCon.function()
    String data = DbCon.db;
    where db is a string in DbCon
    Cheers
    Varun Rathore

  • Create instance of class

    Hi all,
    I have problem with creating static fields in class. I have separate packages in my project and I need to have instances for all classes in this packages. I create instance of class using next code:
    public class Digest
       private static Digest digest = null;
       protected Digest ()
      public static Digest getInstance()
             if(digest == null)
              digest = new Digest();
            return digest;
      public static void clearInstacePool()
             digest = null;
    }But I have problem with deleting my packages and applet after I call Digest.getInstance(). I need to implement clearInstacePool() method to set reference of digest to null in unistall() method of my applet. Question is: how to create instance of class without implementing clearInstacePool()?

    Question is: how to create instance of class without implementing clearInstacePool()?That question doesn't make sense,or at least it is ambiguous. 'Create instance' usually involves the 'new' operator, which has nothing to do with what methods are implemented. Do you mean how to code the class without implementing clearInstancePool()?

  • WebI:Creating a minus query from data providers not using the same universe

    Hi there. A client of ours wishes to use Combined Query on multiple universes in the same WebI report. So far, I have heard it is not feasible in WebI. I know it is possible in DeskI. Even the sub-query option is limited to just one universe in WebI. So, I am stuck.
    Is there a workaround to creating a minus query from data providers not using the same universe in WebI?

    Hello Amit,
    what are the Datasources ? Usually when you create a Sub Query you can choose a seperate Universe.
    Maybe if you only see one Universe you only have the rights for this Universe ?!.
    Regards
    -Seb.

  • Fields copied to AUC from WBS Element (when WBS Element is released)

    Hi,
    I would like to know what are the fields that are copied to AUC from WBS element (when WBS Element is released).
    Regards,
    Vivian

    Hi Vivian,
    menu path: Asset Accounting / Valuation / Determine Depreciation Areas in the Asset Class
    Select there your asset under construction asset class.
    Here you can fill in default values. (when you click on the fields you get more fields)
    When you want to fill in other fields you can use a substitution ( Asset Accounting / Master Data / Define Substitution)
    In our case, i think standard
    The field description (WBS)
    Req cost center (WBS)
    Plant (WBS)
    BA  (WBS)

  • Trying to access methods from a .class file by creating instance of class

    Hey all,
    I'm hoping you can help. I've been given a file "Input.class" with methods such as readInt(), readString(), etc. I have tried creating instances of this class to make use of it, but I receive the error "cannot find symbol : class Input".
    If you could help at all, I would greatly appreciate it.
    Here's my code. The first is the base program, the second is the driver.
    import java.util.*;
    public class CarObject
         private String makeType = "";
         private String modelType = "";
         private int yearOfRelease = 0;
         private double numOfMiles = 0.0;
         public void setFilmTitle(String make)
              makeType = make;
         public void setMediaType(String model)
              modelType = model;
         public void setYearOfRelease(int year)
              yearOfRelease = year;
         public void setNumOfMiles(double miles)
              numOfMiles = miles;
         public String getMakeType()
              return makeType;
         public String getModelType()
              return modelType;
         public int getYearOfRelease()
              return yearOfRelease;
         public double getNumOfMiles()
              return numOfMiles;
    The program is used by a rental car company and the object takes on desired attributes.
    import java.util.*;
    public class TestCarObject
         static Scanner keyboard = new Scanner(System.in);
         public static void main(String[] args)
              System.out.println("Please answer the following questions regarding your rental car order.");
              Input carinput = new Input();
              String makeType = carinput.readString("Enter your desired make of car: ");          
              String modelType = carinput.readString("Enter your desired model of car: ");
              int yearOfRelease = carinput.readInt("Enter the oldest acceptable year of release to rent: ");
              double numOfMiles = carinput.readDouble("Enter the highest acceptable number of miles: ");
              System.out.println("Make: " + makeType);
              System.out.println("Model: " + makeType);
              System.out.println("Year: " + makeType);
              System.out.println("Mileage: " + makeType);
    }

    No, I don't know the package name....Is there a way
    to import the Input.class by itself without importing
    the entire packge?
    I tried extending the driver program too...It didn't
    work either...
    Message was edited by:
    BoxMan56How do you know you have a class called Input.class ?
    You got a jar file which contains it ? or just a simple .class file ?
    You have to set the classpath in either case.
    But for the former, you should also need to explicitly telling which package containing the class file you looking for (i.e. Input.class)
    e.g. java.util.Vector which is a class called Vector inside java.util package.
    You don't have to import the whole package, but you should tell which package this class belongs to.

  • Creating a Button Class from MC

    I have a few simple questions for those who know about
    classes. I have been reading the tutorials on creating classes and
    specifically extending the MC class. I am pretty sure that an
    extended MC_Class might help me get what I need from my project.
    I essentially have a bunch of buttons, hundreds to be exact -
    and the exact number needs to be dynamic. Each one is currently a
    static MC with a bunch of variables assigned to each one via global
    variables. Its iis pulling in data taht assign the button values
    from XML files and - these XML files may change.
    Q1. If I extend the MC class so I can add attributes to MC's
    instance (Avoiding global variables) - will it mess with the rest
    of the movie clips in my scene? I mean if all I want to do is ad a
    a few dynamic string variables - it really shouldnt effect any of
    the other clips would it? MC.JumpURL = "newurl.com", MC.Thumnail
    ="/here/image.jpg" (This would help alot)
    Q2. What if I wanted to define actions of the new MC in the
    class? If the MC is an extension of the MC class. Would all of my
    MC's automatically take on the actions of the custom MC Class? For
    instance - I want the movieclip to animate onscreen and have
    rollover effects. I could do this easy if it were static - but I
    need this to become dynamic. Also - there are now unknown
    quantities to deal with
    Q3. How exactly would I call and assign the MC its atributes
    at the same time? And how do I specify this MC to use the functions
    defined in the class and not the other MC's I created elsewhere in
    the File.
    Example. Currently I have a grid of MCs' created when the
    User clicks a menu item (Another type of MC).
    Each new MC animates onstage - it calls a
    loadMovie(_root.thumb[0], this.Flipper) to assign and embedded MC
    an image defined in the XML that was loaded and assigned because I
    placed the instance on stage and wrote a MC script on each MC.
    Confused - check out what I am creating at
    www.vincesidwell.com/Fischer
    Click Fabrication or TurboSystems menus. Both menues will
    load a new set of Thumbnails at the bottom. They are loaded via an
    XML loaded by the menu and a function assigns the jpgs for the main
    gallery, Rollover image, and eventually a URL for a downloadable
    High Res Image.
    The client recently added more than 9 images per menu item. I
    will need to create a scrollable thumbnail gallery with dynamic
    quantities
    I can manually create the MC Scroller item for static number
    of buttons. But scripting an unknown for each ones links and images
    is insane. So I am looking at Classes. Assign a custom class for
    the flipping buttons and I should be able to assign tthem as the
    XML loads, and have it automatic. (pray please please please)
    Anyhelp?
    Thanks
    Vince Sidwell

    Hi there!
    I'll try and give some answers to your questions below...
    "vin-E" <[email protected]> wrote in message
    news:[email protected]...
    >I have a few simple questions for those who know about
    classes. I have
    >been
    > reading the tutorials on creating classes and
    specifically extending the
    > MC
    > class. I am pretty sure that an extended MC_Class might
    help me get what
    > I
    > need from my project.
    >
    > I essentially have a bunch of buttons, hundreds to be
    exact - and the
    > exact
    > number needs to be dynamic. Each one is currently a
    static MC with a
    > bunch of
    > variables assigned to each one via global variables. Its
    iis pulling
    > in
    > data taht assign the button values from XML files and -
    these XML files
    > may
    > change.
    >
    > Q1. If I extend the MC class so I can add attributes to
    MC's instance
    > (Avoiding global variables) - will it mess with the rest
    of the movie
    > clips in
    > my scene? I mean if all I want to do is ad a a few
    dynamic string
    > variables -
    > it really shouldnt effect any of the other clips would
    it? MC.JumpURL =
    > "newurl.com", MC.Thumnail ="/here/image.jpg" (This would
    help alot)
    You do not have to create a new MC class to assign local
    values or functions
    to it. A pseudo code example:
    Loop through total buttons you want to make (which can be
    number of entries
    in an XML file)
    Create a new movieclip and load the button graphic into
    this, give it a
    name like
    MyButtonX, where X is an increasing number based on which
    button this
    is. (Instead of creating
    and empty movielcip, you could also attach a movie (or
    button) from
    library.
    Assign the values and create the functions for this button
    that you
    would like (probably based
    on information in the XML file):
    MyButtonX.someVariable = node.attribues.someData;
    createOnRelease(MyButtonX, someOtherParamters)
    (where you have defined the function createOnRelease to do
    something
    like
    function createOnRelease(MC, someOtherParameteres) {
    MC.onRelease = function() {
    do what you want to do based on someOtherParameteres
    Position and resize MyButtonX
    In your example you have a 3x3 grid, which might extend to
    3xTOTAL,
    so you'd have to use some
    mathematical formula based on the value X, something like
    MyButtonX._x =
    (((X-1)%3)*(buttonWidths+hSpaceBetweenButtons)
    MyButtonY._y = Math.floor((X-1)/3)*(buttonHeights
    +vSpaceBetweenButtons
    end of loop.
    >
    > Q2. What if I wanted to define actions of the new MC in
    the class? If
    > the MC
    > is an extension of the MC class. Would all of my MC's
    automatically take
    > on
    > the actions of the custom MC Class? For instance - I
    want the movieclip
    > to
    > animate onscreen and have rollover effects. I could do
    this easy if it
    > were
    > static - but I need this to become dynamic. Also - there
    are now unknown
    > quantities to deal with
    If you actually create a new class, than all instances of
    that class will
    have the methods you define for it (just like all instances
    of a movieclip
    has those methods. At least, have them available. That
    doesn't mean they are
    always in use ... like for example the onRollOver. But again,
    you don't need
    to create a class to give all your dynamically created
    buttons a rollover
    effect. (Check code above).
    > Q3. How exactly would I call and assign the MC its
    atributes at the same
    > time? And how do I specify this MC to use the functions
    defined in the
    > class
    > and not the other MC's I created elsewhere in the File.
    You use the instance name of the MC to access that MC and its
    attributes/methods. For example button number 10 might look
    like this:
    trace(MyButton10._x);
    trace(MyButton10.someVariableYouHaveDefined);
    MyButton10.callSomeFunctionYouHaveDefined();
    For a movieclip to access a variable that has been defined
    for that instance
    of the movieclip, use "this" to point to that particular
    instance. So if we
    defined the function "callSomeFunctionYouHaveDefined" for
    button number 10
    and want to access "someVariableYouHaveDefined" for this
    particular
    instance, then
    MyButton10.callSomeFunctionYouHaveDefined = function() {
    trace(this.someVariableYouHaveDefined);
    > Example. Currently I have a grid of MCs' created when
    the User clicks a
    > menu
    > item (Another type of MC).
    > Each new MC animates onstage - it calls a
    loadMovie(_root.thumb[0],
    > this.Flipper) to assign and embedded MC an image defined
    in the XML that
    > was
    > loaded and assigned because I placed the instance on
    stage and wrote a MC
    > script on each MC.
    >
    > Confused - check out what I am creating at
    www.vincesidwell.com/Fischer
    >
    > Click Fabrication or TurboSystems menus. Both menues
    will load a new set
    > of
    > Thumbnails at the bottom. They are loaded via an XML
    loaded by the menu
    > and a
    > function assigns the jpgs for the main gallery, Rollover
    image, and
    > eventually
    > a URL for a downloadable High Res Image.
    >
    > The client recently added more than 9 images per menu
    item. I will need
    > to
    > create a scrollable thumbnail gallery with dynamic
    quantities
    >
    > I can manually create the MC Scroller item for static
    number of buttons.
    > But
    > scripting an unknown for each ones links and images is
    insane. So I am
    > looking
    > at Classes. Assign a custom class for the flipping
    buttons and I should
    > be
    > able to assign tthem as the XML loads, and have it
    automatic. (pray please
    > please please)
    Again, no need for a class for this. If you load the buttons
    into seperate
    MCs, and make sure to have all these MCs created inside a
    common parent MC
    for these buttons (which then _only_ contains these buttons).
    You can move
    this parent MC up and down on the stage based on the
    scrollbar. And you can
    read height off this MC to create your scrollbar.
    You might want to check out the following tutorials at
    http://www.gotoandlearn.com/:
    XML Video Playlist
    Creating Animated Buttons
    Introduction to OOP
    Now, I've said many times you don't need to make your own
    class to do what
    you want. That does not mean you can't make your own class. I
    just think
    that the main problem you are facing is the dynamic part,
    which you will be
    facing if you make your own class or not.
    /Jensen/
    >
    > Anyhelp?
    >
    > Thanks
    > Vince Sidwell
    >
    >
    >

  • Description of field from data element in table control

    hello people !!! I need help !!
    I’m using a table control in my module pool program. I create this table through wizard, taking the fields from an internal table. This internal table was defined like this:
    Table Control ; posting items
    DATA: t_postitems  TYPE stucture_fd OCCURS 0 WITH HEADER LINE.
    Where  <b>stucture_fd</b> is strucuture with the fields.
    The problem that I have is that the titles of the fields does not take their description from the data element.
    How I create this table control from the internal table and that takes the description from the data element? It is very important this, because this development will be used in different languages.
    From already I am thanking for any answer.
    Thank so much.
    Best regards, Esther.

    Gracias, es mas facil para mi en espanol.
    tables: tab_prb.
    types: begin of <b>ti</b>.
               include structure <b>tab_prb</b>.
    types: end of <b>ti</b>.
    data: <b>ti_b</b>kpf type table of ti,
             <b>wa_bkpf</b> type ti.
    Explicacion:
    tab_prb, es una tabla transparent que contiene la estructura <b>struct_fd</b> que tiene los campos mas un flag para la seleccion de fila (flag).
    Defini esta tabla transparente, para que los campos tomen su decripcion desde los elementos de datos.
    Si creo el TB directo de la tabla tab_prb, no me permite seleccionar el campo flag como campo de seleccion, cuya funcion es marcar linea simple.
    Si yo hago la definicion anterior en mi programa, cuando creo el TB, va todo bien, hasta <b>ti_bkpf</b> que seria mi tabla interna, pero cuando me pide el work area, le ingreso <b>wa_bkpf</b> me indica que no esta definido en mi programa o ne es una estrucutura.
    Espero haber aclarado un poco mi respuesta.
    Muchas gracias !!!
    Esther.-

  • Creating Instances of class within its definition

    Hi,
    I am a newbie to Java and am doing a course on Java. In one my assignments it asks us to develop the following method for a Class called CraftStock:
    "Define a new helper method void increaseStockCapacity() that creates a
    new expanded array as follows. It should create a temporary instance of
    CraftStock by using its single-argument constructor ? the value of the argument n is determined by the current size of the original craft stock array plus the
    extraCapacity constant. All items in the original array must be copied from the
    original array to the temporary instance of CraftStock. The array reference in the
    original array instance of CraftStock must then be reassigned to the new
    temporary array instance."
    My question is - is this possible - can one create an instance of a class from within its definition? I can't find anyhting on this from the books.
    Any help would be appreciated.
    Thanks
    Dev

    Isn't there a caveat to all this?
    If one creates an instance of a class within its own
    definition, doesn't one face the potential danger of
    attempting to access some part of the object which
    has not yet been constructed?nope. why would it? we're creating a new instance of the class, from scratch. we're not accessing any part of the object, we're creating a new one. the fact that this is being done within the definition of the class is irrelevant. by the time anything comes to call on a static method of the class, the class is initialized already. remember, static methods don't have any dependency on a particular instance
    sorry, that doesn't read very well, does it! what I mean is that the class itself is not the same thing as an instance of that class
    Message was edited by:
    georgemc

  • Create MS Word documents from data in an Apex Form/Report

    My requirement is to create editable RTF form letters from data managed by an Apex application. I do not have BI publisher available and am looking at using the XSL-FO route. Effectively I want the user to select the desired data in the Apex application, hit a button and be presented with a word document containing the data, which they can then customise.
    I know how to set Apex up to create PDFs based on reports using embedded XSL-FO but PDFs are not editable extra steps by the user. Also the user could export data to CSV and mailmerge with a word template but thats extra work for the user too.
    In the past I've used PLSQL/XML/XSL-FO with .NET to do what I want here by generating an XML file with PLSQL and using .NET to associate the XML file to XSLT/XSL-FO template files creating output as varied as .doc, .ps and .html files.
    Any ideas on acheving the same flexibility with Apex would be greatly appreciated. As my googling and forum hunting has not turned up much.
    Thanks
    FunkyMonkey

    Hi FunkyMonkey,
    Do you know Docufy | Simplify with docufy ? It's an APEX application that lets you create/generate/edit word templates. Else JasperReports Library | Free software downloads at SourceForge.net lets you generate a multitude of report formats (RTF/pdf/docx/xlsx/xml/etc.) you can use iReports to easily create xml templates for the reports, It's a lot simpler then xsl-fo.
    Regards,
    Vincent Deelen

  • Field label from data element (language dependent)

    I have 2 development systems and am struggling to get different language from a standard sap data element.
    On Dev system 1 the program is:
       parameters:  l_file1  like filename-fileintern.
    In the selection texts of the program I select "Dictionary ref." and the text is automatically populated with the value "Logical File" i.e. it picks it up from the data element FILEINTERN of the parameter.
    Now I log out and log back in in German and in this field I have "logische Datei" i.e. as expected this is the value in the data element of FILEINTERN.
    When I logon in English and execute the program, the selection screen has "Logical File", and when I login in German and execute the program the selection screen has "logische Datei".
    All well and good at this point and everything works as expected.
    On Dev system 2 I have exactly the same program i.e. the same parameter, and same selection text settings.
    However when I logon in English and execute the program I get "Logical File", but when I log on in German and execute it displays "L_FILE1" i.e. the name of the parameter and not the data element text value?
    Any help greatly appreciated.

    Hi Edgar and Sree,
    Yes I have checked the data element in both systems and it is identical. In fact in the 2nd system when I log in in German and display the selection text it is correctly in German, only when I execute the program I don't get the value on the screen!
    I realise I can simply uncheck this "dictionary ref." and translate the value myself but i want to understand why this doesn't work.... argh.

  • Can't create client proxy classes from WebLogic-generated WSDL file

    We have a web service that we used to generated a WSDL file. We then used clientgen
    to try and create the client proxy classes from the WSDL. This failed. Doesn't
    it seem reasonable that if WebLogic creates a WSDL that WebLogic should also be
    able to consume that WSDL?

    Can you please post the wsdl?
    Regards,
    -manoj
    http://manojc.com
    "Robert" <[email protected]> wrote in message
    news:40db0bc0@mktnews1...
    >
    We have a web service that we used to generated a WSDL file. We then usedclientgen
    to try and create the client proxy classes from the WSDL. This failed.Doesn't
    it seem reasonable that if WebLogic creates a WSDL that WebLogic shouldalso be
    able to consume that WSDL?

  • Unable to mark the box 'create Multi-page PDF from page tiles' when saving to pdf-file

    I am running Illustrator CS3 on a Mac OSX 10.5.8
    I want to print a very large illustrator-file (1000 mm x 900 mm) across mutliple pages of A4-paper (5 x 5 sheets of A4-paper) by saving the file as a multi-page pdf file.
    I first followed the instructions provided here:
    http://helpx.adobe.com/illustrator/kb/create-mutli-page-pdf-illustrator.html
    When I then tried to save the file: -> File -> Save as -> 'choose .pdf from drop-down menu'
    I get to this menu:
    I am unable to mark the box that says: 'Create multi-page pdf from page tiles'. I have made a red arrow pointing to the box I want to mark.
    I have tried changing the other drop-down menus inside this menu, to see if the box I want to mark could become available, but without any luck.
    I am not sure what I am doing wrong. I would be grateful if anyone could help me set my settings right to allow me to create such a multi-page pdf-file.
    Thanks in advance for your help

    Your ps file should be good, the problem likely resides elswehere. Maybe in your acrobat install, distillers settings. what error did distiller give?
    Mine ran good and got a multi page document, here is a screenshot to help you troubleshoot.
    On mac go to system preferences / print and fax / and change your default printer if you have another option. I know sounds like this should not help, but there are problems like Illustrator for example not making .pdfs if you do not have a printer chosen or an old or corrupt .ppd assigned.

  • Urgent: how to really seperate business logic class from data access class

    Hello,
    I've this problem here on my hand and i really need help urgently. so please allow me to thank anyone who replies to this thread =)
    Before i go any futhur, let me present a scenario. this will help make my question clearer.
    "A user choose to view his account information"
    here, i've attempted to do the following. i've tried to seperate my application into 3 layers, the GUI layer, the business logic layer, and the data access layer.
    classically, the GUI layer only knows which object it should invoke, for example in the case above, the GUI would instantiate an Account object and prob the displayAcctInfo method of the Account object.
    here is how my Account class looks like:
    public class Account
    private acctNo;
    private userid;
    private password;
    private Customer acctOwner;
    the way this class is being modelled is that there is a handle to a customer object.
    that being the case, when i want to retrieve back account information, how do i go about retrieveing the information on the customer? should my data access class have knowledge on how the customer is being programmed? ie setName, getName, setAge, getAge all these methods etc? if not, how do i restore the state of the Customer object nested inside?
    is there a better way to archieve the solution to my problem above? i would appriciate it for any help rendered =)
    Yours sincerely,
    Javier

    public class AccountThat looks like a business layer object to me.
    In a large application the GUI probably shouldn't ever touch business objects. It makes requests to the business layer for specific information. For example you might have a class called CustomerAccountSummary - the data for that might come entirely from the Account object or it might come from Account and Customer.
    When the GUI requests information it receives it as a 'primitive' - which is a class that has no behaviour (methods), just data. This keeps the interface between the GUI and business layer simple and makes it easier to maintain.
    When using a primitive there are four operations: query, create, update and delete.
    For a query the gui sets only the attributes in the primitive that will be specifically queried for (or a specialized primitive can be created for this.) The result of a query is either a single primitive or a collection of primitives. Each primitive will have all the attributes defined.
    For a create all of the attributes are set. The gui calls a method and passes the primtive.
    For an update, usually all fields are defined although this can vary. The gui calls a method and passes the primitive.
    For a delete, only the 'key' fields are set (more can be but they are not used.) The gui calls a method and passes the primitive.
    Also keep in mind that a clean seperation is always an idealization. For example verify that duplicate records are not created is a business logic requirement (the database doesn't care.) However, it is much easier and more efficient to handle that rule in the database rather than in the business layer.

Maybe you are looking for

  • Excise invoice already exists  error in J1IS

    Hello Created the Subcontracting PO , and Issue the material to vendor ( mov type 541) with payment of duty, after this created the Excise invoice with T.code J1IS, system was generated the Excise entries in table J_1IEXCDTL and J_1IEXCHDR. After tha

  • How to fix ipod when it tells u ipod disabled connect to i tunes

    how can i fix my ipod touch when a friend put the wrong password in now it tells me ipod disabled connect to i tunes an it still doesnt work

  • Results and a Procedure for SSD Upgrade on T410s

    After finding that my T410s 1.8" hard drive was 35% - 60% slower than the variety of 2.5" SATA Hard Drives in my older Thinkpads, I selected a Kingston SSDNow V+180 128GB for $219 for the SSD upgrade from Amazon because this Kingston model had the be

  • Ip route command in GRE tunnel

                       Hi Everyone, I have setup GRE Lab between Routers R1 and R3. R1 is connected to R2 using OSPF  and R2  is connected to R3 using OSPF. I config GRE tunnel interface on R1 and R3. R1 has internal subnet say 100.x.x.x.x to share with

  • Hello any 1 big queation??????? need alot of help!

    any no were i can download free music onto my creative MuVo TX FM? iv looked every where!