Confusion about development vs server (client) runtimes

I built some reports using Crystal XI for a client at their offices.
They asked that I write a program to help automate the running of those reports. They don't have visual studio, so I developed the program on my laptop. I have visual studio 2008. I also recently installed the trial version of crystal 2008.
The reports are not embedded in the app. The app is simply there to run reports that exist on the server where the same report must be generated multiple times using different parameters.
The code in the app which references the report looks like so:
CrystalDecisions.CrystalReports.Engine.ReportDocument report = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
report.Load(Properties.Settings.Default.ReportPath + Properties.Settings.Default.CTIReportName);
My project of course has a reference to the crystal assemblies, which I assume were installed with the trial version of crystal 2008.
Trying to run the application on their box results in the failure to load crystaldecisions.windows.forms, etc, which I suppose is because their assemblies are not the same version as mine.
Is there any way to get this to work, or does my development machine have to have the same version of crystal installed as their production machine? I'm thinking the best way might be for me to install visual studio on their box just to re-add the referenecs and compile the app, but having to do this seems silly.

I discovered that the downloadable Crystal XI R2 demo has the same assemblies as Crystal XI R1 used by my client, so this solved my issue.

Similar Messages

  • [SOLVED] Confused about development packages

    To build an embedded linux image using minifs utility, I need to install some development packages. The packages listed in the tutorial are named for Debian based distros, with the "-dev" suffix. Some of the listed packages are: libz-dev, libelf-dev, libelfg0-dev, libncurses-dev, etc.
    I can't find these packages, and I'm a bit confused. I have read that these packages in Arch Linux have different suffixes denpending on the origin (-cvs, -git, etc.), but I can't find any packages with that suffixes. For example for ncurses:
    $ pacman -Ss ncurses
    core/ncurses 5.9-3 [instalado]
    System V Release 4.0 curses emulation library
    extra/cmus 2.4.3-1
    A very feature-rich ncurses-based music player
    extra/finch 2.10.1-1
    A ncurses-based messaging client
    extra/moc 20110528-5
    An ncurses console audio player with support for the mp3, ogg, and wave
    formats
    extra/naim 0.11.8.3.2-2
    An ncurses AOL Instant Messenger and IRC client.
    extra/ncmpc 0.20-1
    A ncurses (command line) interface for MPD
    community/echat 0.04beta1-3
    vypress compatible ncurses chat (can work without server)
    community/ekg2 0.3.1-2
    ncurses based Jabber, Gadu-Gadu, Tlen and IRC client
    community/ncdu 1.8-1
    Disk usage analyzer with an ncurses interface
    community/rtorrent 0.8.9-2
    Ncurses BitTorrent client based on libTorrent
    community/ruby-ncurses 1.3.1-3
    Module for interactive text console applications (ncurses)
    community/sniffit 0.3.7.beta-11
    very good packet sniffer for unix with ncurses interactive mode.
    community/vifm 0.7.2-1
    Ncurses based file manager with vi like keybindings
    community/yacpi 3.0.1-3
    ncurses-based acpi monitor.
    No ncurses-cvs, ncurses-git, ncurses-svn or the like is found. How can I find development packages?
    Last edited by doragasu (2012-03-09 22:38:03)

    doragasu wrote:So in Arch, packages include not only binaries + resources, they also include header files? If I install for example ncurses, also header files for ncurses get installed?
    headers, pkg-config, everything in one package, that is required for a compilation. we keep stuff simple
    Last edited by wonder (2012-03-09 22:37:46)

  • About developing portal server

    Hi
    I am setting up portal service for my university. I am using Sun ONE Portal Server 6.0. Any body who has done such a task before and willing to share me experience is grately welcomed.
    Especially I need help in developing user-defined container channel and inserting customised content in it.
    Thanks,

    I strongly reccomend NOT using 6.0. The latest version is 6.3. There are lot of bug fixes and enhancements between 6.0 and 6.3.
    Also, here's a link to a Portal server forum.
    http://swforum.sun.com/jive/forum.jspa?forumID=80
    Hopefully, you'll get your questions answered there.
    Good Luck,
    Roger S.

  • Confused About iCal with Server

    Hi,
    Our office has just added a server and now our iCal calenders look very different. I have three categories on my calendar list. First there is "Calendars", which has Work, Home, and Training Classes in it. Then there is" Xserve.Local", which has a calendar for me in it. Lastly there is a section called "Delegates", which has calenders for everyone in the office, including the same calendar for me that appears under "XServe.Local".
    Before the server came, I could enter private events and set alarms for them. Now everything I add seems to be visible to everyone in the office. Do I still have a local calendar? How do I access it?
    MultiMacs

    I think the first method is mostly for calendars shared via mobileme. I don't know if it will even work for google. I would suggest using the method recommended by google. it works for me.

  • Python Server/Client Application Development

    Hey All!
    I am writing a basic proof of concept server/client application for a project I am working on.
    My goal is this:
    1) End user launches client.
    2) Client connects to server.
    3) User selects one or more files to send to server.
    4) Server saves a copy of each file.
    5) Server terminates connection.
    5) Server processes each file.
    6) Upon completion of the processing server sets a "processing completed flag."
    7) Client periodically checks with server for "processing completed flag."
    8) Client securely reconnects
    9) Client downloads processed files.
    I have no background in programming servers/clients so this will be a learning experience for me and the workflow described above may change as I learn more about how this all works. Currently my hope is to first implement a system that will stay connected while the files are processed and once I have a better understanding as to how that works I can add more complexity to the system.
    I will be writing this in Python 3.3 and the server will be hosted on a server which will (for now) be running Arch.
    This thread will act as a sort of development journal but feel free to comment or post suggestions. I will for sure have questions as I go along too!

    brettski wrote:Turns out the best way (so far as I can tell) is to go integer -> string -> byte and then byte -> string -> integer..
    Do you mean regular, non-byte strings? That cannot possibly be the best way to do it. It would be like using Russian as an intermediary language for translating Spanish to French.
    Maybe the following will set you on the right path:
    http://stackoverflow.com/questions/6187 … -in-python
    http://stackoverflow.com/questions/4445 … int-python
    Looking further, this is probably the right way to do it:
    some_int = 57
    bytes = struct.pack('i', bytes)
    sock.send(bytes)
    See http://docs.python.org/3/library/struct.html for details.
    As for threaded servers, you may find some useful examples here.

  • Confused about the instructions for installing MySQL on my OS X client

    I installed MySQL for OS X as recommended here:
    http://developer.apple.com/internet/opensource/osdb.html
    it looks like I managed to created a test database in the mysql directory, but now can't access it.
    Basically, I'm confused about what to do after installing the MySQL server about setting permissions, getting databases to be where I want them to be, etc.
    I tried download phpMyAdmin, since I am used to using that via cPanel on my ISP, but don't know how to use it on my Mac. Do I need to start up Apache to do that? And if I do that, won't it interfere with the mongrel server that I'm trying to use in the separate Ruby on Rails instructions?
    I guess I could probably do all my development online via my ISP, which supports Ruby on Rails and where it is easy to set up MySQL databases, but if I could just figure out how to use MySQL on my Mac it would be fun to try to do this development offline.
    Any hints?
    Thanks,
    doug

    Have you done anything past those instructions? like creating MySQL user accounts, granting permissions, etc?
    There's a whole lot more to running MySQL that just installing it (and I'm not sure why Apple suggest building from scratch when MySQL offer binary distributions which do all the hard work for you.
    Once installed you should follow the MySQL Post Install Instructions for guidance on setting up accounts and configuring MySQL.
    As for the PHPMyAdmin question, yes, you'll need Apache running. Whether that will conflict with any other web services you're running depends on how they're configured. I've never heard of mongrel to be able to advise further there.

  • Server/client application

    i'm just starting to learn about server/client applications and i'm a little confused about actually implementing them.
    my client will be an applet which can be accessed over the internet. i want the applet to be able to read/write to the server.
    now my question is, how can i start up the server program?
    i would want it to initialize and run, only when the user has gone to the website that uses the applet.

    look at using a Servlet, running under Tomcat (download the Java Web Services Developer pack from java.sun.com
    here's what the servlet looks like:
    mport javax.servlet.*;
    import java.util.*;
    import java.net.*;
    public class ServletTest extends GenericServlet
    /** servlet is initialising */
    public void init()
    System.out.println("ServletTest initializing");
    /** servlet wascalled bt client */
    public void service(ServletRequest request,ServletResponse response)
    try
    byte[] data=new byte[100];
    ServletInputStream inputStream=request.getInputStream();
    int read=inputStream.read(data);
    String string=URLDecoder.decode(new String(data,0,read),"UTF-8");
    System.out.println("read "+read+" bytes: "+string);
    inputStream.close();
    ServletOutputStream outputStream=response.getOutputStream();
    Date date=new Date();
    outputStream.write(date.toString().getBytes());
    outputStream.close();
    catch(Exception ex)
    ex.printStackTrace();
    /** servlet is being destroyed */
    public void destroy()
    System.out.println("ServletTest terminating");
    here's what the client looks like:
    mport javax.servlet.*;
    import java.util.*;
    import java.net.*;
    public class ServletTest extends GenericServlet
    /** servlet is initialising */
    public void init()
    System.out.println("ServletTest initializing");
    /** servlet wascalled bt client */
    public void service(ServletRequest request,ServletResponse response)
    try
    byte[] data=new byte[100];
    ServletInputStream inputStream=request.getInputStream();
    int read=inputStream.read(data);
    String string=URLDecoder.decode(new String(data,0,read),"UTF-8");
    System.out.println("read "+read+" bytes: "+string);
    inputStream.close();
    ServletOutputStream outputStream=response.getOutputStream();
    Date date=new Date();
    outputStream.write(date.toString().getBytes());
    outputStream.close();
    catch(Exception ex)
    ex.printStackTrace();
    /** servlet is being destroyed */
    public void destroy()
    System.out.println("ServletTest terminating");

  • Java Server/Client Applicaton - problem with sending data back

    Hello!
    I'm trying to write a small server/client chat application in Java. It's server with availability to accept connections from many clients and it's app just for fun... However, I've come up against a huge problem: everything what clients send, arrives to server (I'm sure about that because it is displayed on the Server Application screen) and then server should send it back to all clients but it doesn't work. I have no faintest idea what causes this problem. Maybe you can help me?
    Here is my server app code:
    import java.net.*;
    import java.util.*;
    import java.io.*;
    * @author Robin
    public class Server {
        ServerSocket serw = null;
        Socket socket = null;
        String line = null;
        Vector<ClientThread> Watki = new Vector();
        ClientThread watek = null;
        public Server(int port) {
            try {
                serw = new ServerSocket(port);           
                line = "";
                while(true) {
                    System.out.println("Running. Waiting for client to connect...");
                    socket = serw.accept();
                    System.out.println("Connected with:\n" + socket.getInetAddress() + "\n");
                    watek = new ClientThread(socket);
                    Watki.addElement(watek);
                    Watki.firstElement().Send("doszlo?");
            }catch (IOException e) {
                System.out.println("BLAD: " + e);
        public void sendToAll(String s) {
            for(int i = 0; i < Watki.size(); i++) {
                Watki.elementAt(i).Send(s);
        public class ClientThread extends Thread {
            Socket socket;
            DataInputStream in = null;
            DataOutputStream out = null;
            String line = null;
            public ClientThread(Socket s) {
                try {
                    this.socket = s;
                    in = new DataInputStream(s.getInputStream());
                    out = new DataOutputStream(s.getOutputStream());
                    start();
                }catch (IOException e) {
                    System.out.println("BLAD: " + e);
            public void Send(String s) {
                try {
                    out.writeUTF(s);
                }catch (IOException e) {
                    System.out.println("BLAD: " + e);
            public void run() {
                try {
                    line = "";
                    while (true) {
                        line = in.readUTF();
                        System.out.println(line);
                        sendToAll(line);
                }catch (IOException e) {
                    System.out.println("BLAD: " + e);
        public static void main(String[] args) {
            Server serwer = new Server(5000);
    }And here is client app code:
    import java.net.*;
    import java.util.*;
    import java.io.*;
    * @author Robin
    public class Client implements Runnable {
        Socket socket = null;
        BufferedReader keyIn = new BufferedReader(new InputStreamReader(System.in));
        DataInputStream in = null;
        DataOutputStream out = null;
        String line = null;
        public Client(String host, int port) {
            try {
                System.out.println("Connecting to " + host + ":" + port);
                socket = new Socket(host, port);
                System.out.println("Connected\nTALK:");
                out = new DataOutputStream(socket.getOutputStream());
                in = new DataInputStream(socket.getInputStream());
                line = "";
                while(!line.toLowerCase().equals(".bye")) {
                    line = keyIn.readLine();
                    Send(line);
            }catch (UnknownHostException e) {
                System.out.println("BLAD: " + e);
            }catch (IOException e) {
                System.out.println("BLAD: " + e);
        public void Send(String s) {
            try {
                out.writeUTF(s);
            }catch (IOException e) {
                System.out.println("BLAD: " + e);
        public void run() {
            String loaded = "";
            try {
                while(true) {
                    loaded = in.readUTF();
                    System.out.println(loaded);
            }catch (IOException e) {
                System.out.println("BLAD: " + e);
        public static void main(String[] args) {
            Client client = new Client("localhost", 5000);
    }By the way, this app is mainly written in English language (text that appears on the screen) however in functions I used Polish language (for example: BLAD - it means ERROR in English). Sorry for that :)

    Yeap, I will change those exceptions later, thanks for advice.
    You asked what's going on with it: both applications start with no errors, but when I write something in client side it should be sent to the server and then forwarded to all connected clients but it stops somewhere. However, I added a one line to the server code
    line = in.readUTF();
    System.out.println(line);
    sendToAll(line); and after it reads message from client (no matter which one) it shows that message on the server side screen, then it should send this message to all clients but it doesn't work in this moment. What's confusing: no errors occurs, so it's rather a mistake in my code, but where?
    Edited by: Robin3D on Sep 30, 2009 9:07 AM

  • Confused about schema..

    I'm currently working on a project using VB 2010 Express and Oracle 11g XE. On my Oracle My SQL Developer, I am currently logged on as 'user X' and I created three tables. All of which are just listed on the 'tables' tree. Does it mean that 'user X' is like a schema when compared to MySQL?
    I have already integrated my database to my vb project and is working fine ATM. I'm just really confused about schemas in Oracle 11g XE.

    I'm just really confused about schemas in Oracle 11g XE.http://docs.oracle.com/cd/E11882_01/server.112/e25789/intro.htm#CEGJFFFD

  • Confuse about Configuring Oracle Warehouse Builder

    newbie here... i am abit confuse on how to configure the Oracle Warehouse builder...
    I have 2 database... 1 source and 1 new one...
    I understand that i have to install the Runtime Repository in the database computer and the Target Schema through the client's computer...
    so all this while... i am just confuse about what to install into the source database and what to install into the new database...
    Please help...

    Location is a logical entity in your OWB design that can be either a database schema, a flat file location, an SAP application location etc. Once you complete your design and are ready to deploy the design into the runtime environment, you will have to 'register' the locations by providing the physical details of your location to OWB (user name/password, database, hostname etc.).
    I am a bit confused by your configuration - are the source and the target in two separate schemas or in the same schema? Your posts are somewhat contradictory.
    If they are in two different schemas, you should:
    1. Create a source module pointing to a source schema (you can then import data object structures from the source schema - i.e. you don't have to create source tables manually in OWB, but you can import them into the module automatically). This module will have a source location (for example SRC_LOC).
    2. Create a target module where all your target objects will be (i.e. where the data will be loaded). This module will have a different location (TGT_LOC). In your target module you will also create the mappings.
    3. When deploying, you will register SRC_LOC with the physical details of your source schema, while the target location will be registered with the physical details of the target schema. The code generated by OWB during deployment will make sure that the data is extracted from the source schema and inserted into the target schema (either by generating and using DB links or by qualifying the schemas in the extraction queries if source and target are in the same database instance).
    On the other hand, if both source and target objects are in the same db schema, you can have all your objects in the same target module and you will only have to register the location of this target module when deploying (LOC_TGT).
    That said, there can be a variety of reasons why there is no data in the target after you run the extract mapping that have nothing to do with locations, such as logical errors in the mapping (an inappropriate filter or a wrong join), insufficient privileges etc. I suggest you take a look in the runtime audit browser that should contain the error messages relative to your mapping.
    Regards:
    Igor

  • Oracle.j2ee.ws.server.mgmt.runtime.InterceptorContainerExtension not found

    I am getting this error whenever I try to start the oc4j server using jdev
    Server start failed (com.evermind.server.ApplicationServer@1f1e666)java.lang.InstantiationException: server-extension-provider class 'oracle.j2ee.ws.server.mgmt.runtime.InterceptorContainerExtension' not found
         at oracle.oc4j.runtime.ServerExtensionProviderSpec.instantiateServiceExceptionProvider(ServerExtensionProviderSpec.java:70)
         at oracle.oc4j.runtime.ServerExtensionProviderSpec.getProvider(ServerExtensionProviderSpec.java:55)
         at com.evermind.server.ApplicationServer.initInternalSettings(ApplicationServer.java:1401)
         at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1104)
         at oracle.oc4j.server.ServerFactory$Worker.startServer(ApplicationServerFactory.java:272)
         at oracle.oc4j.server.ServerFactory$Worker.run(ApplicationServerFactory.java:284)
         at java.lang.Thread.run(Thread.java:595)
    2008-11-25 04:14:06.698 Trying to destroy server.
    2008-11-25 04:14:06.701 Server exiting: ApplicationServer entered state FAILED_IN_START
    Process exited.
    And thus I am unable to start the server.
    The strange thing is that other people working on the same project don't get this error on their machines.I tried deleting system folder, restarting jdev, restarting my system and even tried to run a new page in a new view and new transaction
    However, nothing worked out as I am still getting the same error.
    The complete log is given below for reference.
    Please help.
    [Starting DefaultServer using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    /ade_autofs/ade_fusion_linux/JDK15_MAIN_LINUX.rdd/080209.1.5.0.15.02/jdk15/bin/java -server -classpath /scratch/software/jdev_local/FMWTOOLS_MAIN.APPS_GENERIC_081007.1211.D06B09.3/j2ee/home/oc4j.jar:/scratch/software/jdev_local/FMWTOOLS_MAIN.APPS_GENERIC_081007.1211.D06B09.3/jdev/lib/jdev-oc4j-embedded.jar -Xmx1024M -Djbo.debugoutput=console -Xverify:none -XX:MaxPermSize=512m -DcheckForUpdates=adminClientOnly -Xrs -Doracle.oc4j.configuration.rds.enabled=n -Dhttp.file.allowAlias=true -Doracle.application.environment=development -Doracle.j2ee.dont.use.memory.archive=true -Doracle.j2ee.http.socket.timeout=500 -Doc4j.jms.usePersistenceLockFiles=false -Djava.security.policy=/scratch/mkghatak/view_storage/mkghatak_product_reg/.jdev_user_home/system11.1.1.0.30.50.50/o.j2ee/embedded-oc4j/config/java2.policy oracle.oc4j.loader.boot.BootStrap -config /scratch/mkghatak/view_storage/mkghatak_product_reg/.jdev_user_home/system11.1.1.0.30.50.50/o.j2ee/embedded-oc4j/config/server.xml
    [waiting for the server to complete its initialization...]
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.wsil.WSILServlet' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.DynamicProxySerializationReplacer' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.ServerMessages' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.WebServiceException' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.mgmt.runtime.InterceptorContainerFactory$1' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.mgmt.runtime.InterceptorContainerFactory' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.mex.MEXInterceptor' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.addressing.ServerWSAddressingInterceptor' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.wsat.WSATTransactionServices' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.wsat.WSATServerInterceptor' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.JmsTransportListener' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.WebServiceInvoker' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.portcomp.PortCompLinkResolverStruct' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.JAXRPCServlet' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.ServletContextualizer' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.ServletEndpointContextImpl' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.ServletPostHandler' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.ServletPreHandler' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.SingleThreadJAXRPCServlet' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.EjbContainerPostHandler' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.EjbContainerPreHandler' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.provider.ProviderConfigImpl$DynamicService' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.provider.ProviderConfigImpl' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.provider.ProviderDescription' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.provider.ProviderInfo' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.provider.ProviderInfoFactory' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.provider.ProviderInfoGenerator' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.provider.ProviderJmsMessageListener' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.provider.ProviderOperation' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.provider.ProviderPlatformManager' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.provider.ProviderPort' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.provider.ProviderProcessor' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.provider.ProviderServlet' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.WebServiceProcessor' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.WebServiceServlet' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.ProcessorContext' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.addressing.ServerWSAddressingInterceptor' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.portcomp.PortCompLinkResolver' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.portcomp.PortCompLinkResolverHome' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.portcomp.PortCompLinkResolverIntf' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.JAXRPCServlet' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.mgmt.runtime.ServerInterceptorPipeline' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.codegen.ServerArtifactGenerator' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.Tie' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.TieBase' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.StreamingHandler' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.StreamingHandlerState' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.ServiceObjectFactory' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.ServiceRefInvocationHandler' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.ServletContextualizer' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.deployment.XMLHelper' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.fabric.FabricServiceEntry' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.fabric.FabricServiceEntryImpl' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.fabric.FabricServiceRegister' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.jaxws.DocumentBareEndpointSerializer' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.jaxws.DocumentWrapperEndpointSerializer' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.jaxws.EJBWebServiceAnnotationParser' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.jaxws.JAXWSRuntimeDelegate$1' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.jaxws.JAXWSRuntimeDelegate' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.jaxws.IncomingRequestData' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.jaxws.JaxWsEJBWebServiceAnnotationParser' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.jaxws.ProviderInfoGeneratorImpl' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.jaxws.ProviderMessageContext' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.jaxws.RpcLiteralEndpointSerializer' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.jaxws.ServiceEndpointRuntime$1' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.jaxws.ServiceEndpointRuntime' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.jaxws.SoapEndpointSerializer' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.jaxws.SoapEndpointSerializerManager$1' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.jaxws.SoapEndpointSerializerManager' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.jaxws.WebServiceAnnotationParser' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.jaxws.WebServiceAnnotationParserFactory' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.jaxws.WebServiceAnnotationParserResult' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:02 WARNING: Bulk-load class 'oracle.j2ee.ws.server.jaxws.WebServiceContextImpl' not found in oc4j:11.1.1.0.0
    08/11/25 04:14:03 WARNING: Bulk-load class 'oracle.j2ee.ws.reliability.interceptor.ReliabilityClientDescriptor' not found in oracle.ws.reliability:10.1.3
    08/11/25 04:14:03 WARNING: Bulk-load class 'oracle.j2ee.ws.saaj.soap.ch.BinaryDataContentHandler' not found in oracle.saaj:11.0
    08/11/25 04:14:03 WARNING: Bulk-load class 'oracle.j2ee.ws.saaj.soap.ch.GifDataContentHandler' not found in oracle.saaj:11.0
    08/11/25 04:14:03 WARNING: Bulk-load class 'oracle.j2ee.ws.saaj.soap.ch.JpegDataContentHandler' not found in oracle.saaj:11.0
    08/11/25 04:14:03 WARNING: Bulk-load class 'oracle.j2ee.ws.saaj.soap.ch.StringDataContentHandler' not found in oracle.saaj:11.0
    08/11/25 04:14:03 WARNING: Bulk-load class 'oracle.j2ee.ws.saaj.soap.ch.XmlDataContentHandler' not found in oracle.saaj:11.0
    2008-11-25 04:14:05.859 Legacy datasource detected...attempting to convert to new syntax.
    2008-11-25 04:14:05.859 Legacy datasource detected...attempting to convert to new syntax.
    2008-11-25 04:14:06.170 Missing audit farm configuration file null
    2008-11-25 04:14:06.209 Base directory /scratch/mkghatak/view_storage/mkghatak_product_reg/.jdev_user_home/system11.1.1.0.30.50.50/o.j2ee/embedded-oc4j/config/applications defined in system property does not exist.
    2008-11-25 04:14:06.697 Server start failed (com.evermind.server.ApplicationServer@1f1e666)java.lang.InstantiationException: server-extension-provider class 'oracle.j2ee.ws.server.mgmt.runtime.InterceptorContainerExtension' not found
         at oracle.oc4j.runtime.ServerExtensionProviderSpec.instantiateServiceExceptionProvider(ServerExtensionProviderSpec.java:70)
         at oracle.oc4j.runtime.ServerExtensionProviderSpec.getProvider(ServerExtensionProviderSpec.java:55)
         at com.evermind.server.ApplicationServer.initInternalSettings(ApplicationServer.java:1401)
         at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1104)
         at oracle.oc4j.server.ServerFactory$Worker.startServer(ApplicationServerFactory.java:272)
         at oracle.oc4j.server.ServerFactory$Worker.run(ApplicationServerFactory.java:284)
         at java.lang.Thread.run(Thread.java:595)
    2008-11-25 04:14:06.698 Trying to destroy server.
    2008-11-25 04:14:06.701 Server exiting: ApplicationServer entered state FAILED_IN_START
    Process exited.

    This is not an ADF related problem. I have the same problem when trying to start embedded OC4J with an simple JSP or servlet. OC4J complains about the missing class and the browser does not start automatically, but you can start the browser manually and type in the right URL. At least with servlets and JSP this works just fine - (but you are still right, it's the wrong forum).
    Wolfgang

  • Error (access denied) when starting Client Runtime Audit Browser

    LS,
    After starting the OC4J instance, I try to start the Client Runtime Audit Browser. For a brief moment I see a DOS-box, then an IE-page appears saying the following:
    ======================================================
    ERROR
    The requested URL could not be retrieved
    While trying to retrieve the URL: http://127.0.0.1:8999/owbb/RABLogin.uix
    The following error was encountered:
    Access Denied.
    Access control configuration prevents your request from being allowed at this time. Please contact your service provider if you feel this is incorrect.
    ======================================================
    Any idea whether this is a local problem?
    I've tried applying the settings as mentioned in the configuration guide, but the Bypass option for the proxy is impossible to set since we do not use a proxy server.
    Your thoughts?
    Regards, Patrick

    Good morning All,
    Maybe I've got the wrong idea of what is all needed to be able to run the RAB locally, but I thought that starting the OC4J instance would be sufficient to get started.
    In the Installation and Configuration Guide the following is mentioned:
    2.7 Step 6. Configure the Web Browser for Design and Runtime Audit Browsers
    2.7.1 Add "LOCALHOST" to Your Web Browser Proxy Server Bypass List
    2.7.2 Configure the Cache Management in Your Web Browser
    2.7.3 Configure Warehouse Builder with a Net Service Name
    As said before:
    @2.7.1, we do not use a proxy (according to Internet Explorer settings) therefore I can't add 'localhost' to the bypass-list, but then again I think that it does not need to be, since there is nothing to be bypassed in the first place.
    2.7.2 has been implemented.
    @2.7.3, I added the net service name manually to TNSNAMES.ORA (since I also needed that to be able to get on to the database using TOAD and SQL*Plus).
    We do not have 9iAS integration for RAB, nor do we have OEM integration.
    Are there other things that need to be implemented? Mentioned so far have been HTTP-server and RTP services, but paragraph 2.7 does not mention anything about this. Maybe there are certain services that need to be running on the server (like HTTP and/or RTP), even though I would like to run the RAB locally?
    Where does one actually need RTP for?
    Thanks in advance.
    Cheers, Patrick

  • Confused about usage of usage types (NW2004s vs. NW 7.1 vs. NW mobile 7.1)

    Hello all
    I'm confused about the different combination possibilities / restrictions when it comes to compare NW2004s, NW PI 7.1 PI and NW Mobile 7.1. I already consulted the Master Guides and technical installation guides but am still confused. So if someone could shed some more light on it it would be great!
    We plan to implement our interfaces, whether internal (system to system) or external (customers, suppliers) using XI (now called PI, right?). But we also intend to develop and run mobile apps (occasionally conected ones). So my questions around it are:
    1) Do we need to install at least two separate servers for this? I mean:
    - 1 server for SAP Netweaver PI 7.1
    - 1 server for SAP Netweaver Mobile 7.1
    2) Or is possible to have all this on one single server using SAP Netweaver 2004s with usage types AS ABAP, PI and Mobile.
    3) Is usage type AS JAVA required when choosing usage type Mobile?
    4) What would you recommend for production environments (note: I'm aware of the sizing / scaling question but I'm only interested in some kind of best practices advices in terms of maintenance, patching, etc.).
    Thanks anyone for some input on it
    BR
    Renaud

    Thanks Russell and Larissa for your clarifications.
    Re-checked the master guide for NW 2004s (7.0) and now found the relevant text in chapter 3.3.1 on pages 30 + 31. Must have overlooked it the 1st time.
    Other questions:
    a) What is the difference between a installation of NW 7.0 with usage type AS ABAP and PI compared to NW PI 7.1 ?!?
    b) What is the difference between an installation of NW 7.0 with usage type AS ABAP and Mobile compared to NW Mobile 7.1 ?!?
    Do the 7.1 versions contain real newer releases or is it just another packaging of same components? What are the advanteges of the 7.1 versions?
    Thanks again in advance for some more clarification!
    Renaud

  • Samba UID/GID syncing between server/client

    I'm very confused about this. I'm trying to get a file share server up and running which is used by several people. I've only configured a Samba server so far for one user to use. The UID and GID of the users do not match on the server and client, and as a result I can't write to the share.
    More detailed explanation: The share on the server is owned by user "john" and group "data". The user john has a different UID on the client and the group data does not exist on the client (does it need to exist?). So the share shows up in the client as 1001:1001 and john can't write to it. How can this be fixed in an easy manner? I can't imagine having to manually adjust all uid's and gid's? There has to be an easier way, right?

    You shouldn't need to sync u/gid's. 
    The first thing that comes to my mind here is simple filesystem perms.  To test I would make the shared dir world/group readable/writeable - IE chmod 777 /my/shared/folder. then try connecting from the remote client.  Remember, there are two sets of access permissions...Share level and filesystem level.
    You can do user/group mapping if you're in a Windows AD or domain environment, but with stand-alone Samba servers this is not necessary.
    I would also check the samba check list at the following link for a decent, simple set of items to look at for basic troubleshooting...
    http://us3.samba.org/samba/docs/man/Sam … nosis.html

  • Peak level + rtp server / client

    Hi all JMF developper,
    Here are my questions. I have to develop a simple application that capture voice coming from a microphone and then transmit it over a network (the Internet in general). I would like to develop a peak level as many audio tools provide (just to see if the recording level is good).
    Then it will be very interesting for me to get materials, resources, codes or anything else about a simple JMF server / client. We plan to use the Darwin streaming server.
    From the client side, I would like to know if there a buffer security mechanism built in or not (for instance, listener that warns that the buffer will become empty in order to stop anything else that is synchronized with the voice)
    Kind regards,
    St�phane

    anybody does how I can create a Peak level in my GUI (a volume meter while recording)
    Thanks

Maybe you are looking for

  • Capture refernce PO number in BADI ME_GUI_PO_CUST

    Hello all, I am workinmng on purchase order screen enhancement Using BADI ME_GUI_PO_CUST new custom fields are implemented and it is working fine. when i create new PO using reference PO ( dragging from document overview), need ot capture the referen

  • Upgraded to iPhoto 6/iLife and cannot access my iPhoto Library - help!!!

    I upgraded to iPhoto 6 tonight and ran sofware update so I was sure to have the latest version. Went to open it and it said I needed to upgrade my Library. So I start the upgrade of the library and it goes all the way through till it gets to "examini

  • Does anyone know if the ZaggMate for iPad 1 will fit an iPad 2?

    Okay, so I didn't wait and bought my iPad in January (bought all my college texts as ebooks and they are on my iPad). I bought a Zaggmate keyboard/cover for it. http://www.zagg.com/accessories/zaggmate-ipad-case I was debating on upgrading to an iPad

  • Bubble Event Disadvantages in FormDataEvent

    Good day, Recently I've been experiencing some trouble using the bubbleevent = false in the formdataevent. Correct me if I'm wrong, but what I have appreciated is that if the Addon hangs while it's executing the formdataevent, the database can suffer

  • Hyperion Position

    Liz Claiborne, Inc. an International, Fortune 500, $4.5+ Billion, Best in Industry, Wholesale/Retail, Fashion Apparel and Accessories Corporation with 35+ brands worldwide is seeking a Financial Systems & Reporting Analyst.SUMMARYWorking as a member