Explanation of a client-class configuration in a CNR

Hi, we have a CNR with a client-class configured, and the value defined in the client-lookup-id field is: "(try (request option "relay-agent-info" "remote-id") "default")". I can understand the expression but what I don't know is where is defined this parameter "default", which fields does it include, etc.
Can anybody please help me?
Kind regards.

I just did another test to make sure I'm not blowing smoke ;)
and it works, here's the manifest:
Manifest-Version: 1.0
Main-Class: LongManifest
Created-By: 1.3.0 (Sun Microsystems Inc.)
Class-Path: aaaaaaaaaaaaaaaaaaaaaaaaa.jar bbbbbbbbbbbbbbbbbbbbbbbbb.jar ccccccccccccccccccccccccc.jar ddddddddddddddddddddddddd.jar
And what it looks like after the jar cmf ...
Manifest-Version: 1.0
Created-By: 1.3.0 (Sun Microsystems Inc.)
Class-Path: aaaaaaaaaaaaaaaaaaaaaaaaa.jar bbbbbbbbbbbbbbbbbbbbbbbbb.ja
r ccccccccccccccccccccccccc.jar ddddddddddddddddddddddddd.jar
Main-Class: LongManifest
Which is just like what you posted, and mine works - why didn't yours?
To be honest, when I did my first test a long time ago, I never bothered to see what the resultant manifest looked like, I was just happy that it worked. :)
-Ron
I can email you my sample if you like

Similar Messages

  • Problem in SOAP Client Handler configuration

    Hi all,
    I am working on a webservice project where i have to send SOAP headers in the SOPA Request from Client and retrive the same at webservice end. I have configured server Handler in webservices.xml of the Webservice and it is working fine. (It is going into the handleRequest(MessageContext ctx) method.). Also i have configured a client Handler in the client and configured it in the web.xml. But this client side handler is not working. (call is not going in the handleRequest(MessageContext ctx) method of this handler).
    Now i have two probs -
    1. What can be the prob in the client side Handler configuration? And how to resolve this so that call goes in handleRequest() method.
    2. I want to send SOAP header from client, so where i will have to set these headers? For client side i have generated client classes from WSDL, written a ClientTest.java class which calls the webservice. (It is perfectly calling the webservice) and created & configured SOAPHandlerClient.java. In which class should i add the code to set (or add) SOAP headers?
    Note : -I am using RAD and websphere server.
    Thanks in advance.

    Check the URL.
    the communication channel that u assign is not valid. Also I am seeing that u are sending the SOAP request to XI using the SOAP adapter??
    So your URL should contains the SOAP sender channel right??
    Thanks
    Farooq.

  • Can't get a client class to run

    hi all,
    this is my first post and i'm a j2ee newbie.
    I'm studying a book 'headfirst ejb' at the moment. i've installed the server and configurated everything. the first example in the book creates a simple application where there's a string[] full of strings which are advice eg "don't eat yellow snow" :) i've three files AdviceBean, AdviceHome and advice. i can post the code if necessary. i've used the deploytool and compiled and deployed them to the server, everythings fine so far. i then have to run a client use the bean. the client class compiles but when i try to run the client it gives me a 'java.lang.noclassdeffounderror : AdviceClient '
    this is what i typed to run the client
    java -cp {$CLASSPATH}:AdviceAppClient.jar;C:\j2sdkee1.3.1\lib\j2ee.jar;C:\projects\advice\classes AdviceClient
    has anyone got this book or can help?
    thanks in advance
    mat

    sorry to double post but here are the.java files, the 1st 3 are on the server and the forth one is the one that is giving me the error.
    Advice.java
    package headfirst;
    import javax.ejb.*;
    import java.rmi.RemoteException;
    public interface Advice extends EJBObject{
         public String getAdvice() throws RemoteException;
    }AdviceBean.java
    package headfirst;
    import javax.ejb.*;
    public class AdviceBean implements SessionBean {
         private String[] adviceStrings = {"bbbbbbbb", "vvvvvvv", "gggggggggg"
    , "jjjjjjj", "rrrrrrr", "qqqqqqqq"};
         public void ejbActivate(){
              System.out.println("ejb activate");
         public void ejbPassivate(){
              System.out.println("ejb passivate");
         public void ejbRemove(){
              System.out.println("ejb remove");
         public void setSessionContext(SessionContext ctx){
              System.out.println("SessionContext");
         public String getAdvice(){
              System.out.println("in getadvice");
              int random = (int) (Math.random() * adviceStrings.length);
              return adviceStrings[random];
         public void ejbCreate(){
              System.out.println("in ejbCreate");
    }AdviceHome.java
    package headfirst;
    import javax.ejb.*;
    import java.rmi.RemoteException;
    public interface AdviceHome extends EJBHome{
         public Advice create() throws  CreateException, RemoteException;
    }AdviceClient.java
    import javax.naming.*;
    import java.rmi.*;
    import javax.rmi.*;
    import headfirst.*;
    import javax.ejb.*;
    public class AdviceClient {
         public static void main (String[] args){
              new AdviceClient().go();
              }  // end of main
         public void go() {
              try{
              Context ic = new InitialContext();
              Object o = ic.lookup("Advisor");
              AdviceHome home = (AdviceHome) PortableRemoteObject.narrow(o, AdviceHome.class);
              Advice advisor = home.create();
              System.out.println(advisor.getAdvice());
              } catch (Exception ex) {
              ex.printStackTrace();
              } // end of try|catch
         } // end of go
    } // end of class

  • Web service proxy client class missing

    Hi,
    I am using Jdev 11g.
    I created web service proxy but I cannot find a client class.
    Where is a client class jdev created?
    This is jdev help I refered;
    Designing and Developing Applications > Developing with Web Services > Using Existing Web Services in Applications > Creating Web Service Proxies > Using Web Service Proxies
    Thanks

    Hi,
    I created a client class with jdev10134 and put class in my jdev11g project.
    I got following error when run client class
    Exception in thread "main" java.lang.Error: Jaxrpc 1.1 method is not supported.
         at weblogic.webservice.core.rpc.ServiceFactoryImpl.loadService(ServiceFactoryImpl.java:65)
    I found this thread.
    "Jaxrpc 1.1 method not supported" when running jdev ws-proxy on weblogic
    I checked WLS10.3 release note, it seems supported.
    Please could someone help me?
    Thanks
    Edited by: user10445424 on 2008/11/10 17:21

  • Invoking a method in WSDL file from client class

    Hi,
    I have got a WSDL file and I have to invoke certian methods from a client class from the WSDL file. What exactly should I do to invoke them from a Java standalone program /servlet/JSP. There is a sayHello() method in the WSDL. Please tell me how to invoke that method from client side. Aslo please let me know the jar files that are needed.
    Below is the WSDL file
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions targetNamespace="http://tutorial.com" xmlns:apachesoap="http://xml.apache.org/xml-soap" xmlns:impl="http://tutorial.com" xmlns:intf="http://tutorial.com" 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.2.1Built on Jun 14, 2005 (09:15:57 EDT)-->
    <wsdl:message name="sayHelloResponse">
    </wsdl:message>
    <wsdl:message name="sayHelloResponse1">
    <wsdl:part name="sayHelloReturn" type="xsd:string"/>
    </wsdl:message>
    <wsdl:message name="addRequest">
    <wsdl:part name="a" type="xsd:int"/>
    <wsdl:part name="b" type="xsd:int"/>
    </wsdl:message>
    <wsdl:message name="sayHelloRequest">
    </wsdl:message>
    <wsdl:message name="addResponse">
    <wsdl:part name="addReturn" type="xsd:int"/>
    </wsdl:message>
    <wsdl:message name="sayHelloRequest1">
    <wsdl:part name="name" type="xsd:string"/>
    </wsdl:message>
    <wsdl:portType name="Hello">
    <wsdl:operation name="sayHello">
    <wsdl:input message="impl:sayHelloRequest" name="sayHelloRequest"/>
    <wsdl:output message="impl:sayHelloResponse" name="sayHelloResponse"/>
    </wsdl:operation>
    <wsdl:operation name="sayHello" parameterOrder="name">
    <wsdl:input message="impl:sayHelloRequest1" name="sayHelloRequest1"/>
    <wsdl:output message="impl:sayHelloResponse1" name="sayHelloResponse1"/>
    </wsdl:operation>
    <wsdl:operation name="add" parameterOrder="a b">
    <wsdl:input message="impl:addRequest" name="addRequest"/>
    <wsdl:output message="impl:addResponse" name="addResponse"/>
    </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="HelloSoapBinding" type="impl:Hello">
    <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
    <wsdl:operation name="sayHello">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="sayHelloRequest">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://tutorial.com" use="encoded"/>
    </wsdl:input>
    <wsdl:output name="sayHelloResponse">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://tutorial.com" use="encoded"/>
    </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="sayHello">
    <wsdlsoap:operation soapAction=""/>
    <wsdl:input name="sayHelloRequest1">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://tutorial.com" use="encoded"/>
    </wsdl:input>
    <wsdl:output name="sayHelloResponse1">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://tutorial.com" 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://tutorial.com" use="encoded"/>
    </wsdl:input>
    <wsdl:output name="addResponse">
    <wsdlsoap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://tutorial.com" use="encoded"/>
    </wsdl:output>
    </wsdl:operation>
    </wsdl:binding>
    <wsdl:service name="HelloService">
    <wsdl:port binding="impl:HelloSoapBinding" name="Hello">
    <wsdlsoap:address location="http://localhost/WebService1/services/Hello"/>
    </wsdl:port>
    </wsdl:service>
    </wsdl:definitions>
    Thanks in advance
    Prashanth

    Hi.
    Please put this line in the google search engine "Invoking java web service" u will get lots of the links.
    Sanjay Kumar Gupta
    [email protected]

  • Running reports created with Reports 9i in client-server configuration

    I need to have users run reports created with Oracle Reports 9i on workstations without any Oracle products installed on it, (in a client-server configuration as opposed to Web based) . I am looking for a step-by-step approach to accomplish this. I looked through the installation documents in OTN and I did not see one that addressed this.
    BTW, I saw an earlier post in this form which disscussed this,indirectly, for Reports 6i but I don't think these steps will work for 9i rpeorts
    ** Earlier post
    Question:
    I have an application in Oracle 8i, Forms 6i, Reports 6i. Now I want to make executable CD which will be installable in nature. I don't know how to make it or what tools to be used for this . Kindly help me out.
    Answer:
    You can write a .bat file for installation.....
    This file should do following things.
    1. Oracle8 Personal Setup
    Install only Database (no tools)
    2. Oracle Developer200 Setup
    Install only Forms Runtime
    Reports Runtime
    Graphics Runtime
    3. Use imp/exp to put the desired database...
    4. Copy exexutables in some directory and place shortcuts in programs and destkop
    5. Make new file-types in start->setting ->folder options-> file-types
    and specify that in which runtime-application you want to open your executables....
    Thanks in advance,
    Audrey Watson

    hi audrey,
    there is no client/server runtime available for reports9i. what
    you can do is to use the rwclient executable shipped with IDS
    to submit jobs to the reports server.
    there are plans to provide a stand alone thin client in the
    future but this is not available yet.
    regards,
    christian

  • Client side configuration

    Hi Everybody,
    Thanks to all of the oracle experts.
    We installed oracle 10.2 RAc database on the server side using 2 nodes on solaris 10.
    Raw devices are used for clusterware installation.
    ASM is configured for database shared files.
    Now i want to configure on the client side as they should be able to connect to this database.
    would anybody kindly provide me how to do this.
    i am in very need of it.
    thanks and regards
    suresh

    You need to install Oracle Software Client and configure tnsnames.ora with something like
    ORCLTEST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = oraclerac1vip)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = oraclerac2vip)(PORT = 1521))
    (LOAD_BALANCE = yes)
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl)
    (FAILOVER_MODE =
    (TYPE = SELECT)
    (METHOD = BASIC)
    (RETRIES = 180)
    (DELAY = 5)
    You must view oraclerac1vip and oraclerac2vip using DNS or you add this host to host table.
    Regards.
    Angel

  • Access-SQL Server (Client Server Configuration) Best Way To Refresh SQL Server Records ?

    We are using Access 2013 as the front end and SQL Server 2014 as the back end to a client server configuration.
    Access controls are bound to the SQL fields with the same names. When using Access to create a new record in a Form, the data are not transferred to SQL if the form is exited to display a different Form or Access is closed. If the right or left arrow navigation
    buttons at the bottom of the form are first used to display either the previous or next record, then the data in the new record are correctly transferred to SQL.
    What is the best way to refresh the new SQL record prior to the closing of the new record in the bound Access form ? We have tried Requery of the entire form and with all of the individual controls without success. We are looking for a method of refreshing
    SQL that functions in a manner similar to that of what happens with the navigation buttons.
    Thank you very much for your assistance.
    Robert Robinson
    RERThird

    Hi Stefan,
    I had added the code to set me.dirty = False in response to the On Dirty event and didn't realize that it was working properly. I had tried other several approaches and must have become confused somewhere along the line.
    I retested the program. On Dirty is working and the problem is solved.
    Thank you very much for your assistance.
    Robert Robinson
    RERThird

  • EJB Client class could not run......very urgent

    Hi
    My classpath is as follows.
    C:\Program Files\Altova\xmlspy\XMLSpyInterface.jar;
    C:\Sun\j2eesdk1.4_beta2\lib\j2ee.jar;
    C:\DSTA\session\Sisters\temp\SampleObject.jar;
    C:\bea\weblogic81\server\lib\weblogic.jar;
    C:\DSTA\session\Sisters\temp\StatelessEJB.jar;
    C:\DSTA\session\drools\drools-2.0-beta-11\examples\drools2.jar;
    I am getting ClassDefNotFoundError as follows.
    C:\DSTA\session\Sisters\Sisters\sisters\ejb>java sisterclient
    Exception in thread "main" java.lang.NoClassDefFoundError: sisterclient (wrong
    n
    ame: sisters/ejb/sisterclient)
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at java.security.SecureClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.access$100(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    ===================
    If you need further info. please see my previous mail.
    Thanks
    Murali

    Murali,
    Run the client class with the fully qualified class name.
    java sisters.ejb.sisterclientthanks,
    Deepak
    "murali" <[email protected]> wrote:
    >
    Hi Gurus
    I am trying to run a weblogic application EJB application. I
    could deploy
    the application
    in weblogic 8.1 successfully. But I am getting the following error. I
    have the
    following jars
    in my CLASSPATH .
    1. weblogic.jar 2. j2ee.jar 3. my ejb jar file called StatelessEJB.jar
    Further I had set JAVA_HOME, JDK_HOME etc . My jdk is jdk_141_02 .
    My ejb-jar.xml and weblogic-ejb-jar.xml are deployed in META-INF directory.
    Is it necessary I should populate an application.xml file in the META-INF
    directory.
    Please help me. I had tried my best but all failing.
    In additon to that I had added a jar called wl_client.jar file in CLASS-PATH
    too, but my problem
    still exists. Please provide me a workable solution ASAP. I am struggling
    a lot.
    Thanks in advance
    Murali
    ========================== ERROR MESSAGE =========
    C:\DSTA\session\Sisters\Sisters\sisters\ejb>java sisterclient
    Exception in thread "main" java.lang.NoClassDefFoundError: sisterclient
    (wrong
    n
    ame: sisters/ejb/sisterclient)
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at java.security.SecureClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.access$100(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    ======================================

  • 10g R2 client설치후 Net Configuration Assistant에서 오류

    Client 환경은 Window vista Home PremiumK이고, 10g R2 client를 인스톨한후
    Net Configuration Assistant를 실행하면
    ORA-12170 오류가 발생합니다.
    어디를 어떻게 수정해야하는지, 아니면 다시 인스톨을 해야하는지 좀 알려주세요.
    하루 종일 헤매고 있습니다.

    tnsping 사용후 결과 값에 대한 로그와 기타 network 설정에 관련된 파일의 내용을 올려 주시면 분석이 되리라 생각합니다. tnsnaems.ora , sqlnet.ora , 서버측의 listener.ora 또는 서버측의 리스너 프로세스 존재 여부 등입니다.

  • OLAP client classes are missing - BIB-16626

    Hello
    BI Beans Diagnostics(v1.0.0.0) 11/12/03
    ===============================================================================
    JDEV_ORACLE_HOME ............................. = C:\JDev9032
    JAVA_HOME .................................... = C:\JDev9032\jdk
    JDeveloper version ........................... = 9.0.3.2.1145
    BI Beans version ............................. = 9.0.3.6.0
    BI Beans internal version .................... = 2.7.0.13.1
    Connect to database .......................... = Successful
    JDBC driver version .......................... = 9.2.0.3.0
    JDBC JAR file location ....................... = C:\JDev9032\jdbc\lib
    Database version ............................. = 9.2.0.4.0
    OLAP Catalog version ......................... = 9.2.0.4.1
    OLAP AW Engine version ....................... = 9.2.0.4.1
    OLAP API Server version ...................... = 9.2.0.4.1
    BI Beans Catalog version ..................... = N/A; not installed in BIBDEMO
    OLAP API JAR file version .................... = N/A
    OLAP API JAR file location ................... = C:\JDev9032\jdev\lib\ext
    Load OLAP API metadata ....................... = Unsuccessful
    Error: BIB-10100 Cannot connect to the database. (Reason: See error BIB-16626)
    See C:\JDev9032\bibeans\bin\bi_error.log
    BIB-16626 Cannot connect to the database because OLAP client classes are missing.
    Cause: The CLASSPATH setting does not contain the OLAP client classes (olap_api_xx.zip).
    Action: Include the OLAP client classes in the CLASSPATH setting.
    I tried to add the olap_api_92.jar to the Classpath, I restarted my machine, I reexecuted the \olap\admin\olapu92041.sql, the cwmlite\admin\amdpatch.sql and the olap\admin\olap.sql script... But nothing helped.
    At First all was going wright, then I created some own Dimensions, a cube and materialzed views...
    Can somebody please tell me how I can solve this problem?

    Sorry I placed it in the wrong forum... ;)

  • Primavera P6 Client Server Configuration

    Hi,
    I am new to Primavera. I wanted to know what are the exact specifications required for installing Primaver P6 EPPM Client / Server.
    The configuration would consists of all the modules like - Project Management, Timesheet, Web Access.
    Also, we have a server with SAP installed on it. Can we still go ahead and install Primavera on it.
    I have searched a lot on Google for the realistic client/server configuration. But no luck.
    Kindly help.
    Thanks

    Its Java j2EE

  • Class configured as CertStore (bouncycastle)

    Hi all,
    I'm working in a J2ee application where I need to use the bouncy castle package.
    I'm doing some tests with a local application, in my PC with jdsdk1.4.2 and a package of bouncy castle for 1.4.
    It justs tries to retrieve the certificate information from a pkcs7 encoded string... it works fine locally but when I try to run it in a weblogic server, I'm having this kind of exception...
    java.security.NoSuchAlgorithmException: class configured for CertStore: org.bouncycastle.jce.provider.CertStoreCollectionSpi not a CertStore while doing...
    certs = s.getCertificatesAndCRLs("Collection", "BC");how do I change this class configuration for the CertStore... or which do you think that can be the problem?
    thanks in advance

    solved!
    the problem was due different release versions of bouncy castle in compilation and in execution.

  • Create client classes in Abstract Factory

    Hi!
    Let's we have one of the next classes in AbstractDesign patterns:
    1.WindowFactory - abstract factory
    2.MotifWindowFactory, MacWindowFactory - concrete factory
    3.Window - abstract product
    4.MotifWindow, MacWindow - concrete products
    5.Client - client class
    6.ClientCreator - class that creates our client class
    The source code of Client is like this:
    public class Client {
    private AbstractFactory af = null;
    public Client(AbstractFactory af) {
    this.af = af;
    af.createAbstractProduct();
    The code of ClientCreator will be like this:
    public class ClientCreator {
    Client client = new Client(new MotifWindowFactory());
    OK!
    But we can have many client classes. And this client classes can create from different places (many ClientCreator classes) in our project.In our project we have:
    public class ClientCreator1 {
    Client client1 = new Client(new MotifWindowFactory());
    public class ClientCreator2 {
    Client client2 = new Client(new MotifWindowFactory());
    public class ClientCreatorN {
    Client clientN = new Client(new MotifWindowFactory());
    And what will happen when I need to change concrete factory. I must go to EVERY ClientCreator classe and change code to create client classes with another concrete factory:
    public class ClientCreator1 {
    Client client1 = new Client(new MacWindowFactory());
    public class ClientCreator2 {
    Client client2 = new Client(new MacWindowFactory());
    public class ClientCreatorN {
    Client clientN = new Client(new MacWindowFactory());
    I think that this is not flexibility.
    Can any tell me what I wrong understand in AbstractFactory pattern?
    Thanks.

    The code
    Client client1 = new Client(new MacWindowFactory());
    Client clientN = new Client(new MacWindowFactory());results in the creation of a factory for each client. This is unnecessary. Typically, you'd use a singleton here - this is mentioned in GoF 1995:
    Client client1 = new Client(MacWindowFactory.getInstance());
    Client clientN = new Client(MacWindowFactory.getInstance());This means that only one factory is created (assuming a singleton implementation within MacWindowFactory.getInstance).
    This approach ties each client creation to a given factory type. If you want all clients to use the same factory type, then you would change the code to:
    Client client1 = new Client(WindowFactory.getInstance());
    Client clientN = new Client(WindowFactory.getInstance());where WindowFactory would return the appropriate factory type. Now if WindowFactory is an interface, then you create a "Factory Factory", or "Factory Manager". i.e.
    Client client1 = new Client(WindowFactoryManager.getFactoryInstance());
    Client clientN = new Client(WindowFactoryManager.getFactoryInstance());The implemenetation of getFactoryInstance can work any of many ways. If you've only one concrete WindowFactory for now, then hard code it into getFactoryInstance. If you have many, then you could have a setFactoryInstance method on WindowFactoryManager. Or getFactoryInstance could use reflection to create a factory based on a Property, etc.

  • What is this ?   com.apple.audio.DriverHelper[162]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.

    What is this ?   com.apple.audio.DriverHelper[162]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.

    What is this ?   com.apple.audio.DriverHelper[162]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.

Maybe you are looking for

  • Text Input app

    tried any text input app from ovi? by the way ovi is giving out free apps as gifts.

  • Total Field in ALV Grid

    Can i change the values in total column in ALV Grid program. I had made one report with 3 hirerchy level and for first hirerchy i need different total values just for one column as total values are misleading the users. is it possible to change the v

  • Dropping Undo Tablespace

    Hi, I am running Oracle 9.2 on Solaris. I have Automatic undo management turned on and have a Undo tablespace by name UNDOTBS. It has a single datafile and has AUTOEXTEND feature turned on. My UNDO_RETENTION was set to 4 hours. Presently, the size of

  • GP attachment

    Hi, all, In the GP, we can add attachments in the runtime through the attachment link at the top area. But i want to retrive those attachments even if the process is finish. Where can i find all attachments? Can those files store in the KM repository

  • 5700Ultra-3-TD128 reports insufficient power

    Hi, I have an MSI MS-6758 ATX motherboard and an MSI fx5700Ultra running on a Hiper HPU-3S525 525w PSU. I have a 17" TFT monitor on the VGA and a 15" TFT running on the DVI port using the supplied VGA/DVI adapter. Whenever I start up, I get an error