BC4J and Visibroker

I have been able to deploy the server piece of the Emp/Dept applet to the Visibroker (3.4) enviroment. It shows up in OSFIND with all of the right parts. I start OSAGENT, GateKeeper, Name Server, then the server application. Here are some feedbacks on the start ups...
Server.bat:
Warning: JIT compiler "d:\jdk1.1.7\bin\javac.exe" not found. Will use interpreter.
Diagnostics: Routing diagnostics to standard output (use -Djbo.debugoutput=silent to remove)
[00] Diagnostic Properties: Timing:false Functions:false Linecount:true Threshold:6
[01] JavaVMVersion: 1.1.7
[02] JavaVMVendor: IBM Corporation
[03] JavaVMName: IBM Corporation
[04] OperatingSystemName: Windows NT
[05] OperatingSystemVersion: 4.0
[06] OperatingSystemUsername: jmartine
[07] Loading from MyCorba.jpx file
[08] Registered emp_bc.Emp_bcModule at context SNICKERS
[09] Started emp_bc.Emp_bcModule
Result of OSFIND:
HOST: SNICKERS
REPOSITORY ID: IDL:omg.org/CosNaming/NamingContext:1.0
OBJECT NAME: SNICKERS/1
REPOSITORY ID: IDL:visigenic.com/gatekeeper/AliasManager:1.0
OBJECT NAME: IIOP Gate-Keeper
REPOSITORY ID: IDL:omg.org/CosNaming/NamingContextFactory:1.0
OBJECT NAME: SNICKERS
OBJECT NAME: SNICKERS
REPOSITORY ID: IDL:omg.org/CosNaming/ExtendedNamingContextFactory:1.0
OBJECT NAME: SNICKERS
REPOSITORY ID: IDL:oracle/jbo/common/remote/corba/RemoteApplicationModuleHome:1.0
OBJECT NAME: emp_bc.Emp_bcModule
OBJECT NAME: emp_bc.Emp_bcModule
OBJECT NAME: emp_bc.Emp_bcModule
I get this error when I run the Client from within JDeveloper:
DAC-405: SessionInfo: Application module creation failed; className: Emp_bcModule
null
My remote path on the login screen is "SNICKERS"
Any Ideas on where to look?
My only idea is in the lines:
sessionInfo.setAppModuleInfo(new ModuleInfo("emp_bc", "Emp_bcModule"));
sessionInfo.setConnectionInfo(new VBNamingConnection("LSS",
"SNICKERS",
this ));
that come out of the client applet.

Hi Joe: You should see the topic "Modifying the HTML for Visibroker Deployment" in the help. It talks about PARAM tags to add.
<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Joe Martine ([email protected]):
I have been able to deploy the server piece of the Emp/Dept applet to the Visibroker (3.4) enviroment. It shows up in OSFIND with all of the right parts. I start OSAGENT, GateKeeper, Name Server, then the server application. Here are some feedbacks on the start ups...
Server.bat:
Warning: JIT compiler "d:\jdk1.1.7\bin\javac.exe" not found. Will use interpreter.
Diagnostics: Routing diagnostics to standard output (use -Djbo.debugoutput=silent to remove)
[00] Diagnostic Properties: Timing:false Functions:false Linecount:true Threshold:6
[01] JavaVMVersion: 1.1.7
[02] JavaVMVendor: IBM Corporation
[03] JavaVMName: IBM Corporation
[04] OperatingSystemName: Windows NT
[05] OperatingSystemVersion: 4.0
[06] OperatingSystemUsername: jmartine
[07] Loading from MyCorba.jpx file
[08] Registered emp_bc.Emp_bcModule at context SNICKERS
[09] Started emp_bc.Emp_bcModule
Result of OSFIND:
HOST: SNICKERS
REPOSITORY ID: IDL:omg.org/CosNaming/NamingContext:1.0
OBJECT NAME: SNICKERS/1
REPOSITORY ID: IDL:visigenic.com/gatekeeper/AliasManager:1.0
OBJECT NAME: IIOP Gate-Keeper
REPOSITORY ID: IDL:omg.org/CosNaming/NamingContextFactory:1.0
OBJECT NAME: SNICKERS
OBJECT NAME: SNICKERS
REPOSITORY ID: IDL:omg.org/CosNaming/ExtendedNamingContextFactory:1.0
OBJECT NAME: SNICKERS
REPOSITORY ID: IDL:oracle/jbo/common/remote/corba/RemoteApplicationModuleHome:1.0
OBJECT NAME: emp_bc.Emp_bcModule
OBJECT NAME: emp_bc.Emp_bcModule
OBJECT NAME: emp_bc.Emp_bcModule
I get this error when I run the Client from within JDeveloper:
DAC-405: SessionInfo: Application module creation failed; className: Emp_bcModule
null
My remote path on the login screen is "SNICKERS"
Any Ideas on where to look?
My only idea is in the lines:
sessionInfo.setAppModuleInfo(new ModuleInfo("emp_bc", "Emp_bcModule"));
sessionInfo.setConnectionInfo(new VBNamingConnection("LSS",
"SNICKERS",
this ));
that come out of the client applet.<HR></BLOCKQUOTE>
null

Similar Messages

  • [URGENT] Performance problem with BC4J and partioned data

    Hi all,
    I have a big performance probelm with BC4J and partitioned data. As as partitioned table shouldn't have a primary key like a sequence (or something else) my partitioned table doesn't have any primary key.
    When I debug my BC4J application I can see a message showing me "ignoring row with no primary key" from EntityCache. It takes a long time to retrieve my data even if I use the partition keys. A quick & dirty forms application was multiple times faster!
    Is this a bug in BC4J, or is BC4J not suitable for partitioned data? Can anyone give me a hint what to do, do make the BC4J application fast even with partitioned data? In a non-partitioned environment the application works quite well. So it seams that it must be an "error" somewhere in this part.
    Thanks,
    Axel

    Here's a SQL statement that creates the table.
    CREATE TABLE SEARCH
    (SEAR_PARTKEY_DAY              NUMBER(4)        NOT NULL
    ,SEAR_PARTKEY_EMP            VARCHAR2(2)      NOT NULL
    ,SEAR_ID                     NUMBER(20)       NOT NULL
    ,SEAR_ENTRY_DATE             TIMESTAMP        NOT NULL
    ,SEAR_LAST_MODIFIED            TIMESTAMP             NOT NULL
    ,SEAR_STATUS                 VARCHAR2(100)    DEFAULT '0'
    ,SEAR_ITC_DATE               TIMESTAMP        NOT NULL
    ,SEAR_MESSAGE_CLASS          VARCHAR2(15)     NOT NULL
    ,SEAR_CHIPHERING_TYPE        VARCHAR2(256)   
    ,SEAR_GMAT                   VARCHAR2(1)      DEFAULT 'U'
    ,SEAR_NATIONALITY            VARCHAR2(3)      DEFAULT 'XXX'
    ,SEAR_MESSAGE_ID             VARCHAR2(32)     NOT NULL
    ,SEAR_COMMENT                VARCHAR2(256)    NOT NULL
    ,SEAR_NUMBER_OF              NUMBER(3)        NOT NULL
    ,SEAR_INTERCEPTION_SYSTEM    VARCHAR2(40)    
    ,SEAR_COMM_PRIOD_H           NUMBER(5)        DEFAULT -1
    ,SEAR_PRIOD_R                  NUMBER(5)        DEFAULT -1
    ,SEAR_INMARSAT_CES           VARCHAR2(40)    
    ,SEAR_BEAM                   VARCHAR2(10)    
    ,SEAR_DIALED_NUMBER          VARCHAR2(70)    
    ,SEAR_TRANSMIT_NUMBER        VARCHAR2(70)    
    ,SEAR_CALLED_NUMBER          VARCHAR2(40)    
    ,SEAR_CALLER_NUMBER          VARCHAR2(40)    
    ,SEAR_MATERIAL_TYPE          VARCHAR2(3)      NOT NULL
    ,SEAR_SOURCE                 VARCHAR2(10)    
    ,SEAR_MAPPING                VARCHAR2(100)    DEFAULT '__REST'
    ,SEAR_DETAIL_MAPPING         VARCHAR2(100)
    ,SEAR_PRIORITY               NUMBER(3)        DEFAULT 255
    ,SEAR_LANGUAGE               VARCHAR2(5)      DEFAULT 'XXX'
    ,SEAR_TRANSMISSION_TYPE      VARCHAR2(40)    
    ,SEAR_INMARSAT_STD           VARCHAR2(1)     
    ,SEAR_FILE_NAME              VARCHAR2(100)    NOT NULL
    PARTITION BY RANGE (SEAR_PARTKEY_DAY, SEAR_PARTKEY_EMP)
      PARTITION SEARCH_MAX VALUES LESS THAN (MAXVALUE, MAXVALUE) MIRA4_SEARCH_EVEN
    );of course SEAR_ID is filled by a sequence but the field is not the primary key as it would decrease the performance of partitioned data.
    We moved to native JDBC with our application and the performance is like we never expected to be!

  • BC4J and OAS with Java Application Client

    Could you show me an example about using the BC4J and OAS with Java Application client.
    The JDeveloper Help is not enough to solve this kind of problem.
    Configuration:
    Jdeveloper 3.1
    OAS 4.0.8.1
    Database 7.3.4
    null

    if you can logon with client tools then that should be an indication that the service account running the CMS IS working! Good news.
    So the problem is likely with the java portion (krb5/bsclogin or java options)
    If the files are in c:\winnt\ (if not copy them there) and perform c:\program files\business objects\javasdk\bin\kinit username
    then enter and password/enter again
    Probably get the same message. To note in your krb5.ini all domain info must be in CAPS (the .com appears to be in lower case)
    kinit works with just the krb5.ini, java SDK and AD (removing BO config and the service account from the picture). Once that works if your java options are specified properly you should be able to login to CMC/infoview.
    also 1 last point. Add udp_preference_limit = 1 to the krb5 lib defaults section
    libdefaults
    default_realm = BD.com
    dns_lookup_kdc = true
    dns_lookup_realm = true
    udp_preference_limit = 1
    Regards,
    Tim

  • About BC4j and java stored procedure

    Is it possible create a java stored procedure using BC4j and deploy to Oracle9iR2 VM?
    If it is possible, how about the performance compare to PL/SQL stored procedure?

    In 9.0.3.3 it will be possible again. The ability to deploy a BC4J-based, local-mode Java Stored Procedure was broken in 9.0.3 before this upcoming maintenance release.
    PL/SQL will almost surely be faster if you are talking about just doing basic DML type of operations, when compared to Java stored procedures.

  • Demo applications with BC4J and JClient

    Are there any demo applications with BC4J and JClient, which go beyond the one frame samples, tutorials and how to's?
    This would deliver a better insight to develop a complete application.
    Bye
    Holger

    Thanks,
    the Virtual Shopping Mall sample is quite not I have searched for, because it is primarily an Web application and I am searching for an JClient application without Application Server, but it is a beginning.
    Bye
    Holger

  • (UIX XML) Sharing Connection objects between BC4J and custom java.

    If I have a UIX XML page that contains some BC4J application modules, then in the event handler I call [public static EventResult handleMyEventEvent (BajaContext context, Page page, PageEvent event..) ], which in turn calls some java classes I have written that take a java.sql.Connection object and access the database doing some updates/inserts with this Connection object (via JDBC)....HOW CAN I USE THE SAME TRANSACTION AS WAS USED IN THE BC4J APPLICATION MODULE...i.e. CAN I SHARE THE CONNECTION OBJECT BETWEEN BC4J AND MY OWN JAVA CLASSES THAT USE JDBC?
    What are the best ways to share such a transaction?
    Thanks,
    Paul.

    Would it be easier to use a custom method on the bc4j Application module?
    Take this scenario...
    1. User opens UIX XML web page which opens a bc4j App Module..it has a VO based on all employees.
    2. User presses the add button and a new employee is created (using the bc4j App Module).
    (Notice: no commit yet!)
    3. User presses the submit button...fires event REVIEW_SALARY.
    4. This event is 'handled' in the event section of the UML XML...it calls:-
    public static EventResult handleREVIEW_SALARYEvent (BajaContext context, Page page, PageEvent event)...
    5. I now want to call a java class I wrote that computes an employees new salary and updates the employee record with this new salary. This update will fail unless it is part of the same transaction as the one used by the bc4j App Module (that inserted the new employee).
    How best to proceed from here?
    How about having a method on the bc4j App Mod's VO called 'reviewSalary'? Calling this would use the same transaction? I could then call my java class from within the VO's method? However do I still have the same problem in that my java class expects to be passed the connection object?
    The approach you suggested previously seems a touch dangerous....in that these are not 'publically exposed'...and a new release of JDev may break my code.
    Thanks,
    Paul.

  • BC4J and CVS

    When I update an BC4J component's XML file It's not updated. This can be v. dangerous e.g. Developer A working on a project, meanwhile Developer B remove a column from an entity object and commits it's work. Developer A run update to include Developer B's changes in its version. But Entity Object in A is not get updated properly and when Developer A commits it's work, the column that developer B had removed appears again.

    Hi,
    At the moment, the architecture of JDeveloper is that the SCM support is a completely separate and distinct module from BC4J. Because of this, there is no special awareness in the SCM support about BC4J and dependencies between files it uses, so there's no way it can automatically check files out when the BC4J design time needs to update them. For the user, this is somewhat inconvenient: the user must anticipate what BC4J is going to change and check those files out in advance. We recognize this as a usability problem that needs to be resolved.
    We are hoping to provide better integration with components of the IDE by providing an interface to the version system through the extension API in the IDE. However, adopting this in the main areas of the IDE (such as BC4J) will involve a significant investment of time and this is unlikely to be completed for the next (9.0.3) release. We are targetting this improved integration for a future release of the IDE (possibly the 9.0.4 or 9.2 release).
    Thanks,
    Brian
    JDeveloper Team (SCM)

  • BC4J and C++ Clients

    Hi,
    is there anyone out there who has experiences in using BC4J as application server components and C++ (more precisely Borland C++ Builder) Clients? The BC4J should be depoyed as EJBs to OC4J or (less prefered) as Corba Objects to Visibroker?
    Any experiences and info would be very welcome!
    Regards
    Stefan

    Hi Mark,
    Check out NetworkCredential and see if this does the magic.
    Regards,
    Bruce
    public string testRightUser_RightPassword()
         string input = "Invocation with right user and password";
         try
              // Create a new instance of CredentialCache.
              CredentialCache credentialCache = new CredentialCache();
              // Create a new instance of NetworkCredential using the client
    credentials.                         NetworkCredential credentials = new
    NetworkCredential(rightuser, rightpassword);
              // Add the NetworkCredential to the CredentialCache.
              credentialCache.Add(new Uri(client.Url), "Basic", credentials);
              // Add the CredentialCache to the proxy class credentials.
              client.Credentials = credentialCache;
              // Call the method on the proxy class.
              string output = client.echoString(input);
              if ( !output.Equals(input) )
                   return "fail, input:" + input.ToString() + " output:" +
    output.ToString();
         catch (Exception e)
         return "exception:" + e.Message + "\nClient Credential USER:" +
    rightuser + " PASSWORD:" + rightpassword;
    return "success";
    mark wrote:
    >
    We currently have a running web service that uses the weblogic container authentication
    to limit access. All is well with java clients but a user wants to use a C++
    client. He has no idea how to pass the user id and password to the container
    and obviously, neither do I. The service runs on WL7.0 SP4. Any ideas? The
    docs dont provide much guidance.

  • Problem with BC4J and PostrgreSQL 7.2

    I successful configure connection to PostgreSQL DB.
    Then I create simple table on DB and create BC4J appmodule.
    In appmodule properties I change jbo.sql92.JdbcDriverClass = org.postgresql.Driver
    I run test appmodule in BC4J browser. I see my row in table but when I try to put something in table
    JBO-27123: SQL error during call statement preparation. Statement: INSERT INTO CITIES(name,last) VALUES (?,?)
    Callable Statements are not supported at this time.
    Same thing is happening on delete or update ???
    When I put some data into table from connection/sqlworksheet in Jdeveloper everething is ok.
    I use JDeveloper 9.0.2.829

    REPOST

  • EJB 3.0, BC4J and weblogic managed server

    Hi, I've got a problem using EJB 3.0 with a BC4J Application module in a weblogic managed server.
    My bean is a stateless session bean that use BC4J for database transaction.
    When I call the bean the first time, It returns de values I need, without problem. If I do the same call again, I always get "null". I deployed the same bean on the AdminServer, linking to the same DataSource, It works fine and I never got a null result.
    My application module is created insid my EJB abstract class by :
    _am = (BaseServiceImpl)Configuration.createRootApplicationModule(adfModel, adfConfiguration);*
    Where adfModel and adfConfiguration are configured through annotations in my EJB Implementation.
    In my abstract EJB, I have a methode with a +@PreDestroy+ method like that :
    +@PreDestroy+
    *protected void releaseModele() {*
    *if (_am != null) {*
    Configuration.releaseRootApplicationModule(_am, false);
    _am = null;*
    My Data Source on the server is defined as Supporting Global Transaction, one-phase commit. I activated the BC4J Logs on the server to see what was going on and I see that the JDBC seems to close after the first call :
    *** closing jdbc connection now **** (weblogic.jdbc.wrapper.JTSConnection_oracle_jdbc_driver_T4CConnection@0)
    And that is when I've got the error on the server :
    oracle.jbo.InvalidObjAccessException: JBO-25036: An invalid object operation was invoked on type View Object with name AppModAD
    So, my JDBC connection seems to close somewhere beetween the first and the second call, but only on a managed server... Someone has ever encountered a problem like that?
    Maybe there is something with the configuration of a datasource on a managed server? Or with the lifecycle of an

    The solution was to NOT have glabal transaction checked in the configuration of the data-source and "Failover Transaction State Upon Managed Release" uncked in the configuration of the Business component configuration.

  • Using Struts with JDeveloper, BC4J and OC4J 9.0.2

    Is it feasible to use Struts with JDeveloper 9.0.2, BC4J 9.0.2 and OC4J 9.0.2? We have an application that uses the BC4J JBO tags in version 9.0.2. We wish to use Struts and we want to retain the use of the JBO tags. Is there a way to do this without upgrading to 9.0.3?

    Here are two related questions:
    Can we upgrade to oracle9iAS 9.0.3 yet still use JDeveloper 9.0.2 and BC4J/JBO 9.0.2?
    Can we upgrade to JDeveloper 9.0.3 and BC4J/JBO 9.0.3 yet still deploy to oracle9iAS 9.0.2?

  • Adf-Struts/JSP/BC4J- and setting date fields from jsp

    Hi,
    I'm working with the new ADF Frameworks (JDev 9.0.5.1) and ran into some questions regarding exception handling using BC4J, Struts and JSPs.
    I have a DATE column in database and an entity and VO with a datefield with type oracle.jbo.domain.Date.
    My JSP shows a textfield and the user should enter a valid date. Everything fine, until date is of wrong format or contains illegal characters...
    Problem:
    ADF tries to do a setAttribute on the datefield in VO row which expects a parameter with type oracle.jbo.domain.Date. When the user entered e.g. "NiceWeather" as date, I get an IIlegalArgumentException while converting to the correct Date format. This exception isn't thrown by bc4j as AttrValException and therefore my JSP renders a global error instead of a message directly behind the date field.
    I tried to validate the datefield in my DataForm and in my Action in the validateModelUpdates() method, but with no fitting solution.
    Any ideas how to validate a datefield with adf/struts/jsp/bc4j?
    Thanks for your help!
    Torsten.

    Torsen - In the first instance I'd recommed that you try and handle it declaritively using the Struts Validator Framework . See http://otn.oracle.com/products/jdev/howtos/10g/StrutsValidator/struts_validator_howto.html
    There is a section in there on how to use the validator with ADF databound pages and you can check the format the user enters via generated JavaScript.
    Also check out the matching sample project:
    http://otn.oracle.com/sample_code/products/jdev/10g/ADFandStrutsValidator.zip - this has a data field check on it as well

  • How to create new OC4J instance in AS 10.1.3 with BC4J- and ADF-Libraries

    Hi
    I have done all the steps mentioned in this thread:
    How to create new OC4J instance in AS 10.1.3
    However, the new created OC4J instance obviously misses some libraries. If I deploy my Application to this OC4J I get an internal error: Class not found: oracle.jbo.JboException.
    The same Application runs well in the "home" Instance.
    What is the trick, to create a new OC4J instance, which more or less behaves the same way as the "home" instances (and especially has all the same libraries)?
    Thanks for your help
    Frank Brandstetter

    I encountered this last month. I definitely agree that it is a glaring omission to not have "Create Like" functionality when instantiating new containers. Here's my notes on the manual steps required after using createinstance to create the fresh container. Not too bad. I've been deploying ADF applications to the new container with no problems after this.
    ==============
    The default (home) OC4J container is pre-configured for ADF 10.1.3 applications; however, when $ORACLE_HOME/bin/createinstance is used to create additional containers, these containers are not configured automatically to host ADF 10.1.3 applications.
    I followed these manual steps:
    1. $ORACLE_HOME/j2ee/home/config/server.xml defines three shared libraries that "install" the needed JARs for Oracle ADF applications in your application server instance (container). Note that "install" does not necessarily mean available to applications (see Step 2). Copy the three shared library element definitions to the <application-server> element of your new container (in server.xml).
    <shared-library name="oracle.expression-evaluator" version="10.1.3" library-compatible="true">
         <code-source path="/usr2/oracle/as10130/jlib/commons-el.jar"/>
         <code-source path="/usr2/oracle/as10130/jlib/oracle-el.jar"/>
         <code-source path="/usr2/oracle/as10130/jlib/jsp-el-api.jar"/>
    </shared-library>
    <shared-library name="adf.oracle.domain" version="10.1.3" library-compatible="true">
         <code-source path="/usr2/oracle/as10130/BC4J/lib"/>
         <code-source path="/usr2/oracle/as10130/jlib/commons-cli-1.0.jar"/>
         <code-source path="/usr2/oracle/as10130/mds/lib/concurrent.jar"/>
         <code-source path="/usr2/oracle/as10130/mds/lib/mdsrt.jar"/>
         <code-source path="/usr2/oracle/as10130/jlib/share.jar"/>
         <code-source path="/usr2/oracle/as10130/jlib/regexp.jar"/>
         <code-source path="/usr2/oracle/as10130/jlib/xmlef.jar"/>
         <code-source path="/usr2/oracle/as10130/BC4J/jlib/adfmtl.jar"/>
         <code-source path="/usr2/oracle/as10130/BC4J/jlib/adfui.jar"/>
         <code-source path="/usr2/oracle/as10130/BC4J/jlib/adf-connections.jar"/>
         <code-source path="/usr2/oracle/as10130/BC4J/jlib/dc-adapters.jar"/>
         <code-source path="/usr2/oracle/as10130/ord/jlib/ordim.jar"/>
         <code-source path="/usr2/oracle/as10130/ord/jlib/ordhttp.jar"/>
         <code-source path="/usr2/oracle/as10130/jlib/ojmisc.jar"/>
         <code-source path="/usr2/oracle/as10130/jlib/jdev-cm.jar"/>
         <code-source path="/usr2/oracle/as10130/lib/xsqlserializers.jar"/>
         <import-shared-library name="oracle.xml"/>
         <import-shared-library name="oracle.jdbc"/>
         <import-shared-library name="oracle.cache"/>
         <import-shared-library name="oracle.dms"/>
         <import-shared-library name="oracle.sqlj"/>
         <import-shared-library name="oracle.toplink"/>
         <import-shared-library name="oracle.ws.core"/>
         <import-shared-library name="oracle.ws.client"/>
         <import-shared-library name="oracle.xml.security"/>
         <import-shared-library name="oracle.ws.security"/>
         <import-shared-library name="oracle.ws.reliability"/>
         <import-shared-library name="oracle.jwsdl"/>
         <import-shared-library name="oracle.http.client"/>
         <import-shared-library name="oracle.expression-evaluator"/>
    </shared-library>
    <shared-library name="adf.generic.domain" version="10.1.3" library-compatible="true">
         <code-source path="/usr2/oracle/as10130/BC4J/jlib/bc4jdomgnrc.jar"/>
         <code-source path="/usr2/oracle/as10130/BC4J/lib"/>
         <code-source path="/usr2/oracle/as10130/jlib/commons-cli-1.0.jar"/>
         <code-source path="/usr2/oracle/as10130/mds/lib/concurrent.jar"/>
         <code-source path="/usr2/oracle/as10130/mds/lib/mdsrt.jar"/>
         <code-source path="/usr2/oracle/as10130/jlib/share.jar"/>
         <code-source path="/usr2/oracle/as10130/jlib/regexp.jar"/>
         <code-source path="/usr2/oracle/as10130/jlib/xmlef.jar"/>
         <code-source path="/usr2/oracle/as10130/BC4J/jlib/adfmtl.jar"/>
         <code-source path="/usr2/oracle/as10130/BC4J/jlib/adfui.jar"/>
         <code-source path="/usr2/oracle/as10130/BC4J/jlib/adf-connections.jar"/>
         <code-source path="/usr2/oracle/as10130/BC4J/jlib/dc-adapters.jar"/>
         <code-source path="/usr2/oracle/as10130/ord/jlib/ordim.jar"/>
         <code-source path="/usr2/oracle/as10130/ord/jlib/ordhttp.jar"/>
         <code-source path="/usr2/oracle/as10130/jlib/ojmisc.jar"/>
         <code-source path="/usr2/oracle/as10130/jlib/jdev-cm.jar"/>
         <code-source path="/usr2/oracle/as10130/lib/xsqlserializers.jar"/>
         <import-shared-library name="oracle.xml"/>
         <import-shared-library name="oracle.jdbc"/>
         <import-shared-library name="oracle.cache"/>
         <import-shared-library name="oracle.dms"/>
         <import-shared-library name="oracle.sqlj"/>
         <import-shared-library name="oracle.toplink"/>
         <import-shared-library name="oracle.ws.core"/>
         <import-shared-library name="oracle.ws.client"/>
         <import-shared-library name="oracle.xml.security"/>
         <import-shared-library name="oracle.ws.security"/>
         <import-shared-library name="oracle.ws.reliability"/>
         <import-shared-library name="oracle.jwsdl"/>
         <import-shared-library name="oracle.http.client"/>
         <import-shared-library name="oracle.expression-evaluator"/>
    </shared-library>
    2. To make the necessary ADF and JSF support libraries available to your deployed ADF application, the default application (that your ADF application and the majority of applications should inherit from) should explicitly import the shared library in the <orion-application> element of $ORACLE_HOME/j2ee/<your container>/config/application.xml.
    <imported-shared-libraries>
         <import-shared-library name="adf.oracle.domain"/>
    </imported-shared-libraries>
    Note: the adf.oracle.domain shared library imports several other shared libraries including oracle.expression-evaluator.

  • Help !! help !! mysql bc4j and jheadstart & uix

    hi please help me
    i make a bc4j project against mysql database server
    i used jdbc connection with the wy as described in the document :How To Use ADF Business Components with MySQL
    url:http://www.oracle.com/technology/products/jdev/howtos/10g/MySql/MySQL_and_BC_HowTo.html
    and i do not forgete to add all parameters to the jdbc connection url
    for example :jdbc:mysql://DESIGNSVR/test?&ultraDevHack=true&capitalizeTypeNames=yes&pedantic=yes&sqlmode=oracle
    so i use the bc4j tester and i navigate into records insert ,update ,delete !! no problems
    but when i moved to ViewController project end enable jheadstart and create new jheadstart application structure file every things go so well !! no problems
    i run the appliction first moved to index.html page as usual with jheadstart then when i start the link Start AppModule:StartAppModule.do
    i find the message 500 internal server error
    why?? please help me
    nieo1977
    30-3-2006

    when i moved to ViewController project open struts page folow diagram
    and put data page and moved to uix editor !!!!
    simple drag and drop operation to data controll unit as read only table
    run the program the browser : ie 6 tell that the page cannot be displayed
    and in Embedded OC4J window i have the folowing:
    Target URL -- http://hussam:8988/mysqljapp-adfonly-context-root/dept.do
    06/04/04 20:23:57 Oracle Application Server Containers for J2EE 10g (10.1.2.0.2) initialized
    04/04/2006 08:24:01 &#1605; org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.struts.util.LocalStrings', returnNull=true
    04/04/2006 08:24:01 &#1605; org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='org.apache.struts.action.ActionResources', returnNull=true
    04/04/2006 08:24:01 &#1605; org.apache.struts.util.PropertyMessageResources <init>
    INFO: Initializing, config='mypackage1.ApplicationResources', returnNull=true
    04/04/2006 08:24:04 &#1605; org.apache.struts.action.RequestProcessor processException
    WARNING: Unhandled Exception thrown: class oracle.jbo.common.ampool.ApplicationPoolException what is the problem ???
    it may somthing about aplicationmodule pool isn't it??????
    my jdeveloper version is 10.1.2.1.0 build(1913)
    and mysql database server version is 5.0 18-nt
    can you sandra help me please
    nieo1977

  • Oracle 8i CORBA and Visibroker

    Hello.
    I am trying to get a Visibroker client to talk to a CORBA server deployed in Oracle 8i. This is being done to test the interoperability between the two ORBs. Does anyone have a sample code for the client ?
    Thanks,
    Santosh.

    Not sure. But 8.1.7 client and 9i Lite seem to do OK together on Win2000. Having problems running java examples though.

Maybe you are looking for

  • How do I get my photos back to my PC?

    I know. I know. I should have NOT gotten a Dell. After months of dealing with "tech support" and (as they call it) the "Repair Depot" I basically have new wine in an old bottle. Everything on my laptop is gone. My photo albums are gone but I do have

  • Sound stops working while using headphones on Retina Macbook Pro (late 2013)

    I have a brand new Retina Macbook Pro (late 2013) with OSX 10.9.1 installed. The sound continuously stops working when I'm using my headphones (which I use on a daily basis). I've noticed that when I unplug the headphones, the sound from the internal

  • Variable NOT Found in Class. I'm Confused!

    Variable "no" not found in class. I don't understand. Also, this code is really a mess. If a User enters an integer, then another and another, it's suppose to count the number of integers and how many times each was chosen. Example 1.4.4.5.7.7.7.8. I

  • Adjustment Brush Intermittently Won't Work

    Running a new Mac 27" with 3.06 Intel 2 core, 8 GB RAM, OS 10.6.3, Lightroom 3 (64 bit). The adjustment brush will suddenly stop and start working. Very frustrating!

  • Problems running jobs in db 10gR2 from owb 10.1.0.4

    Hi all, we have a little problem, we can not run jobs through the deployment manager. The deployment is ok but instead of something running we get to see nothing at all. I already noticed some minor problems that could be solved by granting a few pri