How to translate many to many  with association class

hello
I have found that there is many way to translate this to java code ,could you please tell me what do you think about this. is it right ??is it the best way ??
The relation between A and B is a bidirectional
Class A:
-idA
ClassB:
-idB
Class C:
-date
Class A {
private int  idA;
private C[] c;
public A(){}
//getters and setters and other methods
Class B {
private int  idB;
private C[] c;
public B(){}
//getters and setters and other methods
Class C {
private int  idA;
private int  idB;
private Date date;
public C(){}
//getters and setters and other methods
}thank you in advance

What do you need the IDs for? I prefer this:
Class A {
    private Set<C> cees = new HashSet<C>();
    public A(){}
    //other methods
Class B {
    private Set<C> cees = new HashSet<C>();
    public B(){}
    //other methods
Class C {
    private final A a;
    private final B b;
    private Date date;
    public C(final A a, final B b){
        this.a = a;
        this.b = b;
    //other methods
}

Similar Messages

  • UML: Rel. with association class having attrib. Are they equivalent?

    Hi All, (and 1M Thanks.)
    Notation:
    _______________ : Bidirection
    1 : cardinality One
    *     : cardinality many
    ................: I draw it to graphically shown the association class AB
    Question 1: Is point 1 and 2 equivalent from the implementation perspective?
    Question 2: Likewise, Is point 3 and 4 equivalent from the implementation perspective?
    1.
    A (1) _______________ (1) B
    ............|
    ............|
    ............AB (association class with an attribute)
    2.
    A (1) _______________ (1) AB (1) _______________ (1) B
    3.
    A (*) _______________ (*) B
    ............|
    ............|
    ............AB (association class with an attribute)
    4.
    A (1) _______________ (*) AB (*) _______________ (1) B

    Association classes imposes that there should only be one connection between two instances, while there is no such limitation in the other case (your comparison between 3 and 4). But there probably won't be any difference between 1 and 2.

  • How to read a xml file with StringReader class

    Hi,
    I need to read a XML document with StringReade class. My aplication receives an absolute path but this doesn't work:
    StringReader oStringReader =
    new StringReader(c:\java\libros.xml);
    However it works with:
    StringReader oStringReader =
    new StringReader("<?xml version="1.0" e......");
    ie, with the whole document as a String, but I need to do it as the frist way.
    Thanks

    Hi,
    I need to read a XML document with StringReade class.
    My aplication receives an absolute path but this
    doesn't work:
    StringReader oStringReader =
    new StringReader(c:\java\libros.xml);
    However it works with:
    StringReader oStringReader =
    new StringReader("<?xml version="1.0" e......");
    ie, with the whole document as a String, but I need
    to do it as the frist way.
    Thankstake a look at this link:
    http://java.sun.com/webservices/jaxp/dist/1.1/docs/tutorial/sax/2a_echo.html

  • How to translate a XYLineChart along with other items?

    This code plots a XYLineChart and a straigth line: by left mouse click and drag anywhere on the graph, XYLine is translated left/right and up down while the black line do not.
    I would like to bind the black line and the XYLine so that when I click and drag, both lines move together.
    How to accomplish this?
    Thanks
    import javafx.application.Application;
    import javafx.beans.property.SimpleDoubleProperty;
    import javafx.event.EventHandler; 
    import javafx.scene.chart.NumberAxis;
    import javafx.scene.chart.XYChart;
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.Node;
    import javafx.scene.chart.LineChart;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.BorderPane;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.LineTo;
    import javafx.scene.shape.MoveTo;
    import javafx.scene.shape.Path;
    public class JavaFXMovePath extends Application {
    Path path;
    BorderPane pane;
    XYChart.Series series1 = new XYChart.Series();
    SimpleDoubleProperty rectinitX = new SimpleDoubleProperty();
    SimpleDoubleProperty rectinitY = new SimpleDoubleProperty();
    SimpleDoubleProperty rectX = new SimpleDoubleProperty();
    SimpleDoubleProperty rectY = new SimpleDoubleProperty();
    @Override
    public void start(Stage stage) {
        final NumberAxis xAxis = new NumberAxis(1, 12, 1);
        final NumberAxis yAxis = new NumberAxis(0.53000, 0.53910, 0.0005);
        xAxis.setAnimated(false);
        yAxis.setAnimated(false);
        yAxis.setTickLabelFormatter(new NumberAxis.DefaultFormatter(yAxis) {
            @Override
            public String toString(Number object) {
                return String.format("%7.5f", object);
        final LineChart<Number, Number> lineChart = new LineChart<Number, Number>(xAxis, yAxis);
        lineChart.setCreateSymbols(false);
        lineChart.setAlternativeRowFillVisible(false);
        lineChart.setAnimated(false);
        lineChart.setLegendVisible(false);
        series1.getData().add(new XYChart.Data(1, 0.53185));
        series1.getData().add(new XYChart.Data(2, 0.532235));
        series1.getData().add(new XYChart.Data(3, 0.53234));
        series1.getData().add(new XYChart.Data(4, 0.538765));
        series1.getData().add(new XYChart.Data(5, 0.53442));
        series1.getData().add(new XYChart.Data(6, 0.534658));
        series1.getData().add(new XYChart.Data(7, 0.53023));
        series1.getData().add(new XYChart.Data(8, 0.53001));
        series1.getData().add(new XYChart.Data(9, 0.53589));
        series1.getData().add(new XYChart.Data(10, 0.53476));
        pane = new BorderPane();
        pane.setCenter(lineChart);
        Scene scene = new Scene(pane, 800, 600);
        lineChart.getData().addAll(series1);
        stage.setScene(scene);        
        path = new Path();
        path.setStrokeWidth(5);
        path.setStroke(Color.RED);
        scene.setOnMouseClicked(mouseHandler);
        scene.setOnMouseDragged(mouseHandler);
        scene.setOnMouseEntered(mouseHandler);
        scene.setOnMouseExited(mouseHandler);
        scene.setOnMouseMoved(mouseHandler);
        scene.setOnMousePressed(mouseHandler);
        scene.setOnMouseReleased(mouseHandler);
        stage.show();
    EventHandler<MouseEvent> mouseHandler = new EventHandler<MouseEvent>() {
        @Override
        public void handle(MouseEvent mouseEvent) {
            if (mouseEvent.getEventType() == MouseEvent.MOUSE_PRESSED) {            
                rectinitX.set(mouseEvent.getX());
                rectinitY.set(mouseEvent.getY());
            else if (mouseEvent.getEventType() == MouseEvent.MOUSE_DRAGGED || mouseEvent.getEventType() == MouseEvent.MOUSE_MOVED) {
                LineChart<Number, Number> lineChart = (LineChart<Number, Number>) pane.getCenter();
                NumberAxis yAxis = (NumberAxis) lineChart.getYAxis();
                NumberAxis xAxis = (NumberAxis) lineChart.getXAxis();
                double Tgap = xAxis.getWidth()/(xAxis.getUpperBound() - xAxis.getLowerBound());
                double newXlower=xAxis.getLowerBound(), newXupper=xAxis.getUpperBound();
                double newYlower=yAxis.getLowerBound(), newYupper=yAxis.getUpperBound();
                //double xAxisShift = getSceneShift(xAxis);
                //double yAxisShift = getSceneShift(yAxis);          
                //double yAxisStep=yAxis.getHeight()/(yAxis.getUpperBound()-yAxis.getLowerBound());           
                double Delta=0.3;
                if(mouseEvent.getEventType() == MouseEvent.MOUSE_DRAGGED){
                if(rectinitX.get() < mouseEvent.getX()){   
                    newXlower=xAxis.getLowerBound()-Delta;
                    newXupper=xAxis.getUpperBound()-Delta;
            else if(rectinitX.get() > mouseEvent.getX()){   
                    newXlower=xAxis.getLowerBound()+Delta;
                    newXupper=xAxis.getUpperBound()+Delta;
                xAxis.setLowerBound( newXlower );
                xAxis.setUpperBound( newXupper );
                //========== Y-Axis Moving ============================
                if(rectinitY.get() < mouseEvent.getY()){   
                    newYlower=yAxis.getLowerBound()+Delta/1000;
                    newYupper=yAxis.getUpperBound()+Delta/1000;
                else if(rectinitY.get() > mouseEvent.getY()){   
                    newYlower=yAxis.getLowerBound()-Delta/1000;
                    newYupper=yAxis.getUpperBound()-Delta/1000;
                yAxis.setLowerBound(newYlower);
                yAxis.setUpperBound(newYupper);                      
                rectinitX.set(mouseEvent.getX());
                rectinitY.set(mouseEvent.getY());
                MoveTo moveTo = new MoveTo();
                moveTo.setX(80);
                moveTo.setY(80);
                LineTo lineTo1 = new LineTo();
                lineTo1.setX(80);
                lineTo1.setY(80);
                LineTo lineTo2 = new LineTo();
                lineTo2.setX(200);
                lineTo2.setY(200);
                path.getElements().add(moveTo);
                path.getElements().add(lineTo1);
                path.getElements().add(lineTo2);
                path.setStrokeWidth(3);
                path.setStroke(Color.BLACK);
                pane.getChildren().add(path);                               
    //private static double getSceneShift(Node node) {
    //    double shift = 0;
    //    do { 
    //        shift += node.getLayoutX(); 
    //        node = node.getParent();
    //    } while (node != null);
    //    return shift;
    public static void main(String[] args) {
        launch(args); 
    }

    The model-based search is standard ADF functionality.
    Jheadstart simply generate the search component on the page. There are a lot of addiitonal properties on af:query that you can set that we do not expose through the Jheadstart application definition editor.
    You can create a custom template to set those additional properties.
    See the af:query tag doc for more info:
    http://download.oracle.com/docs/cd/E12839_01/apirefs.1111/e12419/tagdoc/af_query.html
    Steven Davelaar,
    Jheadstart Team.

  • How do I use f:subview with referance class attributes

    Hi all,
    Any pointer on the below problem will be greatly appretiated....
    I have a "Address" class used in "Customer" for billing and shipping address and "Customer" Class is placed in faces-config.xml as named with "CustomeBean".
    public class Address {
         private String street;
         private String city;
         private String state;
         private String zip;
    // Empty construtor + all getter and setter methods
    public class Customer{
    private String firstName;
    private String lastName;
    private Address billingAddress;
    private Address shippingAddress;
    //Empty Constructor and all getter and setter methods
    public void add(Customer customer){
    // Logic to make this as persitance
    customer.jsp
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <html>
    <head><title>Login</title></head>
    <body>
    <f:view>
    <h:form id="customerForm">
    First Name: <h:inputText id="firatName" value="#{CustomerBean.firstName}" >
    Last Name: <h:inputText id="lastName" value="#{CustomerBean.lastName}" >
    Billing Address
    Street: <h:inputText id="bstreet" value="#{CustomerBean.billingAddress.street}" >
    City : <h:inputText id="bcity" value="#{CustomerBean.billingAddress.city}" >
    State: <h:inputText id="bstate" value="#{CustomerBean.billingAddress.state}" >
    Zip: <h:inputText id="bzip" value="#{CustomerBean.billingAddress.zip}" >
    Shipping Address
    Street: <h:inputText id="sstreet" value="#{CustomerBean.shippingAddress.street}" >
    City: <h:inputText id="scity" value="#{CustomerBean.shippingAddress.city}" >
    State: <h:inputText id="sstate" value="#{CustomerBean.shippingAddress.state}" >
    Zip: <h:inputText id="szip" value="#{CustomerBean.shippingAddress.zip}" >
    </h:form>
    </f:view>
    </body>
    </html>
    Now, what I want to do is "address" part as re-usable with <f:subview> by makeing it in seperate page and make it include in customer.jsp.
    customer.jsp
    <f:view>
    <f:subview id = "bAddress">
    <jsp:include page="address.jsp" />.
    </f:subview>
    <f:subview id = "sAddress">
    <jsp:include page="address.jsp" />
    </f:subview>
    </f:view>
    How do I make refer the CustomerBean.billingAddress.* and CustomerBean.shippingAddress.* values when I use <f:subview> ?
    How to make to access the values of address in managedbean(Custoer.java) in add(customer) method?
    Any help ...
    Thanks
    pvkr

    Martin,
    I'm still bothered by "CustomerBean.shippingAddress".
    Please post a snip of the management of this object
    from your faces-config.xml. You actually name your
    object instance with the first letter captialized
    like your class?
    Sorry for breaking coding convestion ...:-)
    faces-config.xml
    <faces-config>
    <managed-bean>
    <description>Customer Bean Holder</description>
    <managed-bean-name>CustomerBean</managed-bean-name>
    <managed-bean-class>com.my.test2.Customer</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    </faces-config>
    I'm still not sure what you are trying to achieve.
    <f:subview> is mostly like an import of a frag of
    f jsf tags. Does not have runtime storage capability
    but is a way to repeat a frag different places. It
    does not control the workings, serial state of managed
    beans.
    Post more snips...All i am trying to achive is , address(Address.java) part is gona simillar in most of the places in application and it is gona just like an attribute to all other classes like customer, insurance, company etc ...SO when I do create data entry screens for customer, insurance, company etc .. i need to just include address part as a snippet with <f:subvirew> and wire that seamlessly to customerBean, insuranceBean, companyBean etc...
    So in my previous posting what i mention customerBean.billingAddress.*(street,city,state,zip) and customerBean.shippingAddress.* is directly inside customer.jsp
    But when you try to re-use address part as address.jsp, address.jsp knows only some object simillar to Address class. And the address attributes are unchanges extect the prefix of those attributes in valuebinding is changing based who is the parent object of that address attributes.
    So in address.jsp in the place of "???" , i need to find a way to pass the "parentObject.addressObject" (ex: customerBean.shippingAddress , customer.billing Address , insurance.mailingAddress etc ...) so that in process it should look like "parentObject.addressObject.street" , "parentObject.addressObject.city" etc ...
    Street: <h:inputText id="bstreet" value="#{???.street}" >
    City : <h:inputText id="bcity" value="#{???.city}" >
    State: <h:inputText id="bstate" value="#{???.state}" >
    Zip: <h:inputText id="bzip" value="#{???.zip}" >
    Any clue ....

  • How to create a ActiveX Object with custom classes

    Hi
    I am trying to create a Active X object for some of the work I have done in Java to be used with VB, but I cannot get the Active X object to generate and it always come up with the following error:
    Exception occurred during event dispatching:
    java.lang.NoClassDefFoundError: uk/co/agena/minerva/model/Model
    at java.lang.Class.getMethods0(Native Method)
    at java.lang.Class.getDeclaredMethods(Unknown Source)
    at java.beans.Introspector$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.beans.Introspector.getPublicDeclaredMethods(Unknown Source)
    at java.beans.Introspector.getTargetEventInfo(Unknown Source)
    at java.beans.Introspector.getBeanInfo(Unknown Source)
    at java.beans.Introspector.getBeanInfo(Unknown Source)
    at sun.beanbox.JarInfo.<init>(Unknown Source)
    at sun.beanbox.JarLoader.createJarInfo(Unknown Source)
    at sun.beanbox.JarLoader.loadJar(Unknown Source)
    at sun.beans.ole.Packager.loadBean(Unknown Source)
    at sun.beans.ole.Packager.generate(Unknown Source)
    at sun.beans.ole.Packager.actionPerformed(Unknown Source)
    at java.awt.Button.processActionEvent(Unknown Source)
    at java.awt.Button.processEvent(Unknown Source)
    at java.awt.Component.dispatchEventImpl(Unknown Source)
    at java.awt.Component.dispatchEvent(Unknown Source)
    at java.awt.EventQueue.dispatchEvent(Unknown Source)
    at java.awt.EventDispatchThread.pumpOneEventForComponent(Unknown Source)
    at java.awt.EventDispatchThread.pumpEventsForComponent(Unknown Source)
    at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
    at java.awt.EventDispatchThread.run(Unknown Source)
    This appears to be beacuse the class uk/co/agena/minerva/model/Model is a custom class which is based on the software I am using. Does anyone know how I can get around this issue. I have tried incluijng those class files for the custom classes within the jar file, but I continue to get the same issue?
    Any help would be gratefully received.
    Thanks
    Angie

    This error is no longer coming up, it is now saying that it has an unsupported class version error. I believe this may be because the class file and library files have been complied under different versions, is there a method to check this?

  • JPA and @ManyToMany with Association Class

    Hi!
    I need to create a @ManyToMany relationship with another field in relation table besides the primary keys of the two main tables. How can I do that? I'm using Toplink Essentials.
    Thanks.

    ManyToMany relationships having an attribute can be modeled by an extra object, e.g.:
    Assuming A has a ManyToMany relationship to B. Introduce an object, say AB, having:
    * the extra attribute xyz
    * a ManyToOne relationship A, ie. A is the "one" side, AB owns the relationship
    * a ManyToOne relationship to B, ie. B is the "one" side, AB owns the relationship
    * AB's primary key would be the conbination of the foreign keys to A and B

  • How do I share one book with a class set of ipads

    I am new to ipad I was given 14 iPads and want to be able to share books(class set) and documents with all of the iPads so that we could review the books and documents together

    For books, see my previous post to you: https://discussions.apple.com/thread/5239492?tstart=0
    For sharing documents like PDFs, I like using Dropbox. Each of your students can download the Dropbox app on his/her iPad. You can then set up a shared folder in Dropbox that each of your students can view or edit (depending on what permissions you set on the folder). From your computer or iPad, you can add PDF files to the Dropbox folder and your students will wirelessly be able to view these documents from their Dropbox app.
    Hope this helps!
    ~Joe

  • How to create a .java file with multiple classes

    I have all the below classes declared in a file say ABC.java under
    a common package called somepackage
    Abstract class A
    Void abstract metod1();
    Void metod2();
    Class B
    void method3();
    Void method4();
    Class C
    void method1();
    Void method2();
    In Client.Java
    On compiling the Client.Java I get errors
    Import somepackag.*;
    Class Samp extents A
    void Method1()
    Public class Client
    A a1 =new Samp(); //error undeclared class A
    B b1 = new B1();//error undeclared class B
    C c1 = new C1();//error undeclared class C
    is it possible to have all the class declared in one file ( i dont need mutiple classes, as this file will be autogenerated , i need all classes in one file) and use the classes inside this in the some client app
    regards
    MP

    Peetzore wrote:
    As long as you have only one public class and your .java file is named after it you shouldn't have any problem.I did exactly that, but still i get the same error "Cannot find symbol"
    i have used the import command on top as import somepackage.*;
    Edited by: mpjava on Jun 2, 2009 1:29 AM
    Edited by: mpjava on Jun 2, 2009 1:30 AM

  • How can I combine one font with many styles to show up as one font

    How can I combine one font with many styles to show up as one font? I have quite a few fonts, that instead of showing up as a single font with different font styles (bold, bolditalic, semibold, light....) each style shows up in the fonts dropdown menu as a separate font. Any way I can fix this?
    Another font question, is there any way to group my fonts in the dropdown menu according to different categories such as 'favorite san serif fonts', or 'script fonts'?

    So your saying if it wasn't set up that way be the font creator there is nothing I can do. That's a shame.
    Most of the fonts that do this were free fonts, such as Walkway.
    But I do have some fonts (hebrew fonts) that I purchased that do the same thing.

  • I've used up several gift cards playing games on my iPad. Now I want to put back in my main credit card that I use playing games and it won't take it. Says there are too many cards associated with this apple ID.  I have no idea what to do now -- anybody?

    I've used up several gift cards playing games on my iPad. Now I want to put back in my main credit card that I use playing games and it won't take it. Says there are too many cards associated with this apple ID.  I have no idea what to do now -- anybody?

    You can not merge accounts.
    Apps are tied to the Apple ID used to download them, you can not transfer them.

  • How to resolve many-to-many join by 2 one-to-many joins

    Hi,
       I was asked many times how to resolve many to many relationship between two tables. I read to use 2 one -to- many relationships to resolve this. Can some expalin me when many to many relationship occurs between two tables and how to reslove them with practicle examples. Is there any article on this?
    Regards,
    Nanda Kishore

    Hi,
    Please check below link.
    http://www.forumtopics.com/busobj/viewtopic.php?p=859029&sid=20d79e3df07b0d8b41aadfbd902bb6b2
    http://blog.oaktonsoftware.com/2011/04/bridge-tables-and-many-to-many.html
    Thanks,
    Amit

  • How to connect many users to one library

    how do i have 3 devices with 3 diferent Apple ID's use one library.

    You just sync them all with the library.
    In brief...
    You can sync as many devices as you like to a single library.
    Up to five computers can be authorized for your account's protected content.
    Each device can hold protected content from up to five different accounts.
    Managing apps purchased with more than one account is a chore.
    A combination of up to 10 iOS devices and computers can be authorized for automatic downloads of your purchases.
    http://support.apple.com/kb/PH12313

  • How to combine many rows into one row

    Hi all,
    I have a question regarding to how to combine many rows into one row?
    My result set is like that:
    ITEM_NO NAME1
    11 abc
    11 cde
    11 fg
    Want to combine them into
    ITEM_NO NAME1
    11 abc;cde;fg
    would anybody can tell me how to do that? Thanks
    Ray

    You can check this --
    satyaki>
    satyaki>
    satyaki>create table t
      2  as
      3      select 11 ITEM_NO, 'abc' NAME1 from dual
      4      union all
      5      select 11 ITEM_NO, 'cde' NAME1 from dual
      6      union all
      7      select 11 ITEM_NO, 'fg' NAME1 from dual;
    Table created.
    satyaki>
    satyaki>
    satyaki>
    satyaki>set lin 10
    satyaki>
    satyaki>desc t;
    Name              Null?    Type
    ITEM_NO                    NUMBER
    NAME1                      VARCHAR2(3)
    satyaki>
    satyaki>
    satyaki>set lin 1000
    satyaki>
    satyaki>
    satyaki>
    satyaki>SELECT ITEM_NO,
      2         LTRIM(MAX(SYS_CONNECT_BY_PATH(NAME1,';'))
      3         KEEP (DENSE_RANK LAST ORDER BY curr),';') AS NAME1_DET
      4  FROM   (SELECT ITEM_NO,
      5                 NAME1,
      6                 ROW_NUMBER() OVER (PARTITION BY ITEM_NO ORDER BY NAME1) AS curr,
      7                 ROW_NUMBER() OVER (PARTITION BY ITEM_NO ORDER BY NAME1) -1 AS prev
      8          FROM   t)
      9  GROUP BY ITEM_NO
    10  CONNECT BY prev = PRIOR curr AND ITEM_NO = PRIOR ITEM_NO
    11  START WITH curr = 1;
       ITEM_NO  NAME1_DET
            11  abc;cde;fgRegards.
    Satyaki De.

  • How to combine many rows into 1 rows in 1 column?

    Hi all,
    I have a question regarding to how to combine many rows into one row?
    My result set is like that:
    ITEM_NO NAME1
    11 abc
    11 cde
    11 fg
    Want to combine them into
    ITEM_NO NAME1
    11 abc;cde;fg
    would anybody can tell me how to do that? Thanks
    Ray

    Hi,
    select * from x2;
    INO NAME
    13 PQR
    11 ABC
    11 DEF
    12 JKL
    12 MNO
    11 GHI
    select p.ino as ITEMNO,
           substr(max(substr(sys_connect_by_path (p.name,';'),2)),1,60) as ITEMNAME
    from (select ino,name,
          row_number()over (partition by ino order by ino, name) rn
    from x2) p
    start with p.rn = 1
    connect by p.rn = prior p.rn + 1
    and prior p.ino = p.ino
    group by ino;
    OP
    ITEMNO ITEMNAME
    11 ABC;DEF;GHI
    12 JKL;MNO
    13 PQR cheers
    Nirmal

Maybe you are looking for

  • Web analysis issue

    hi, I am trying to develop a new report in Web analysis. I followed these steps: 1. file > new > Document 2. file> database connection > analytic server 3. drag the spreadsheet option and i am on Data Layout tab wherein i can select column , rows and

  • ECC local PO mapping detailsu2019

    Hi All, I am trying to change the PO data through the BBP_DOC_CHNAGE_BADI( through BBP_PO_CHANGE) Where my requirement is couple of the shopping cart custom header details ( Like telephone no , fax no , email id of preferred vendor ) need to map it t

  • Does iFilter 11 x64 OCR all PDFs?

    We have installed ifilter 11 x64 on our Search Server for SharePoint 2010 and followed the installation instructions. I've verified all the registry hacks, file permissions and configurations. We can upload a tiff and the ifilter from Microsoft will

  • Pushing CS6 applications to existing CS6 suite users

    If an Adobe CS6 Production Premium user requests Adobe InDesign CS6 or Adobe Acrobat Pro X (neither of which are included in the Adobe CS6 Production Premium suite), the license file used by the suite would be overwritten by the license file used by

  • Macintosh file format in a portal

    Has anyone used Oracle Portal to share/post Macintosh files? Are there any problems or issues in doing this?