Problems configuring JPDK with apache

I have ias 9i on solaris
oracle portal configured and running fine
ojsp and xml parser configured
I am trying to configure JPDK and use the samples that come with JPDK, but I have problems. I follow the instructions exactly: change the required parameters in jserv.properties, zone.properties and provider.xml. When I restart Apache and try to access the sample (http://server:port/servlet/sample) I get an HTTP 404 File not found error. I've checked and I can run succesfully servlets/JSP's. I would appriciate any help on this!!!!

Argyris,
I had the exact same problem with it not being able to locate the oracle jar file. Not matter how I changed the wrapper.classpath it would not work.
I was able to resolve this by modifying the startJServ.sh file in the /Apache/bin directory to set the CLASSPATH environment variable and then run the startJServ.sh to start both the Apache and then Jserv. This will start Jserv manually so you'll also have to modify the jserv.conf file to set autostart to ON. This worked for me, hopefully it will work for you too...can't figure out why it doesn't work the correct way, I put in a tar but they couldn't find the problem either.

Similar Messages

  • Configuring Streaming with Apache instead of IIS documents?

    Hello everyone,
    Does anyone have documentation for correctly setting up an Apache web server for steaming Zenworks Virtual Applications? The basic idea of putting the content off the root is straightforward but the other instructions seem to be geared specifically to IIS which we don't use.
    Anyone have a few minutes to give a brief setup example for someone who is just dangerous with Apache?
    -Nyle

    Originally Posted by zeevromm
    Nyle,
    I'll see if I get anything like this from Spoon. I know nobody on the support team has streamed with Apache, so we don't have anything readily available.
    If anyone else has been successful in setting this up, please post how you went about it.
    Thank you so much for checking. I really appreciate it. We are a Novell SLES OES house and only use Windows servers for specific applications that we can't get for Linux. Deploying with Apache would be wonderful.

  • Mail Server: problem configuring dovecot with postifx and virtualhosts

    Hi all,
    I'm am struggling trying to configure a mail server. I have a dedicated server running archlinux.
    I want to setup a complete mail server, ie: web access (for that I installed roundcube) and being able to retrieve mails on any e-mail client.
    I followed this guide, from the documentation but I've read that courier-imap is a lot more resources hungry than dovecot. As I could not have it working using the documentation, I tought I would use dovecot. The problem is that I am not able to configure it.
    What I already have up and running: web server (nginx) with postfixadmin and roundcubemail, postfix, mysql.
    Now, I want to be able to send and receive mails using dovecot. Could you guide me a little in order to replace courier-imap with dovecot, starting from this documentation? I already have my databases configured, a vmail user, ssl certificates and postifx configured for virtualhosts. Seems that the only thing missing is imap + smts thrue TLS.
    Thanks for any help.
    Last edited by Rolinh (2011-08-17 10:40:19)

    The dovecot configuration files are very well commented with documentation and examples in /etc/dovecot/
    As for TLS and SMTP Auth, this is the relevant part of my main.cf for postfix:
    # TLS Settings
    smtpd_use_tls = yes
    smtpd_tls_key_file = /etc/postfix/wildcard.example.com.key
    smtpd_tls_cert_file = /etc/postfix/wildcard.example.com.crt
    smtpd_tls_CAfile = /etc/postfix/root.crt
    smtpd_tls_received_header = yes
    smtpd_tls_security_level = may
    smtpd_tls_loglevel = 1
    smtpd_tls_session_cache_timeout = 3600s
    smtp_use_tls = yes
    smtp_tls_security_level = may
    smtp_tls_note_starttls_offer = yes
    tls_random_source = dev:/dev/urandom
    # Enable SMTP authentication support
    broken_sasl_auth_clients = yes
    smtp_sasl_auth_enable = no
    smtpd_sasl_auth_enable = yes
    smtpd_sasl_type = dovecot
    smtpd_sasl_local_domain = $mydomain
    smtpd_sasl_path = /srv/postfix/private/auth
    smtpd_sasl_security_options = noanonymous
    smtpd_sasl_authenticated_header = yes
    smtpd_sender_restrictions = permit_sasl_authenticated
    Last edited by fukawi2 (2011-08-17 12:33:15)

  • Problem configuring JTA with Spring in OC4J

    Hi all,
    I'm trying to develop an application that uses Spring with JTA in OC4J standalone.
    I've already read http://www.oracle.com/technology/tech/java/spring/how-to-jta-spring.html and the only difference to my configuration is that I'm not employing annotation-driven transaction definitions.
    All seems to be ok but during the deployment of the application I have the following error:
    07/10/11 17:07:03 WARNING: DeployerRunnable.run Error creating bean with name 'txAdvice': Cannot resolve reference to bean 'txManager' while setting bean property 'transactionManager'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'txManager' defined in ServletContext resource [WEB-INF/applicationContext.xml]: Invocation of init method failed; nested exception is org.springframework.transaction.TransactionSystemException: Could not initialize OC4JJtaTransactionManager because OC4J API classes are not available; nested exception is oracle.classloader.util.AnnotatedClassNotFoundException:
    Missing class: oracle.j2ee.transaction.OC4JTransactionManager
    Dependent class: org.springframework.transaction.jta.OC4JJtaTransactionManager
    Loader: global.libraries:1.0
    Code-Source: /home/jkliff/apps/oc4j-10.1.3.2/j2ee/home/applib/spring.jar
    Configuration: <code-source> in /home/jkliff/apps/oc4j-10.1.3.2/j2ee/home/config/server.xml
    This load was initiated at global.libraries:1.0 using the loadClass() method.
    The missing class is available from the following locations:
    1. Code-Source: /home/jkliff/apps/oc4j-10.1.3.2/j2ee/home/lib/oc4j-internal.jar (from <code-source> in META-INF/boot.xml in /home/jkliff/apps/oc4j-10.1.3.2/j2ee/home/oc4j.jar)
    This code-source is available in loader oc4j:10.1.3.
    Any ideas?

    Hi timo,
    I'm using OC4J - StandAlone runnig a application for wikis manageiment that uses servelt and have the system authenticate using JASS. I belive that the problem is about using JASS on OC4J.
    The code that the error shows is that:
    HttpServletRequest req = context.getHttpRequest();
    if( req != null && req.getSession() != null )
    HttpSession session = req.getSession();
    try
    String s;
    if( (s = (String)session.getAttribute( varName )) != null )
    return s;
    if( (s = context.getHttpParameter( varName )) != null )
    return s;
    catch( ClassCastException e ) {}
    for me it seem a problem when the application is trying to get a session, the OC4J block with a problem with authentication.
    I thank your help!

  • Help me: Configuring JBoss with Apache

    Hello,
    I have a configuration problem.
    I put my webApp on the htdocs directory, and I wanna to execute my JSPs files, but when I try to execute a JSP file the server response:
    [source]
    HTTP Status 500 - No Context configured to process this request
    type Status report
    message No Context configured to process this request
    description The server encountered an internal error (No Context configured to process this request) that prevented it from fulfilling this request.
    Apache Tomcat/4.1.24-LE-jdk14
    [source]
    Anybody can say me what I need to resolve it???
    Thank you.

    In the log:
    INFO [org.jboss.web.localhost.Engine] StandardHost[localhost]: MAPPING configuration error for request URI

  • Problems configuring bind with IPv6

    Hi there,
    I am setting up a cache bind server to resolve recursive queries in a ipv6 network only. The problem is my local dns can only return ipv6 address correctly if the domain also returns ipv4 address. For example, the domain www.v6.facebook.com is ipv6 only and returns me nothing, but ipv6.br returns the correct address because it has also a ipv4 address related.
    I used this:
    dig -6 AAAA @::1 www.v6.facebook.com
    dig -6 AAAA @::1 ipv6.br
    Any ideas?? Sorry for my english

    Argyris,
    I had the exact same problem with it not being able to locate the oracle jar file. Not matter how I changed the wrapper.classpath it would not work.
    I was able to resolve this by modifying the startJServ.sh file in the /Apache/bin directory to set the CLASSPATH environment variable and then run the startJServ.sh to start both the Apache and then Jserv. This will start Jserv manually so you'll also have to modify the jserv.conf file to set autostart to ON. This worked for me, hopefully it will work for you too...can't figure out why it doesn't work the correct way, I put in a tar but they couldn't find the problem either.

  • Problems configuring FDS with Hibernate

    I'm trying to configure Flex Data Services with Hibernate on
    the back end and I'm running into
    these problems as shown below. Any pointers to solve these
    would be highly appreciated.
    Thanks in anticipation!
    Aubrey M.
    Config: Windows XP
    FDS 2
    Integrated JRun4
    Entries in data-management-config.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <service id="data-service"
    class="flex.data.DataService"
    messageTypes="flex.data.messages.DataMessage">
    <adapters>
    <adapter-definition id="actionscript"
    class="flex.data.adapters.ASObjectAdapter" default="true"/>
    <adapter-definition id="java-adapter"
    class="flex.data.adapters.JavaAdapter"/>
    </adapters>
    <default-channels>
    <channel ref="my-rtmp"/>
    </default-channels>
    <destination id="BohaUser" channels="my-rtmp">
    <adapter ref="java-adapter" />
    <properties>
    <!-- <use-transactions>true</use-transactions>
    -->
    <source>flex.data.assemblers.HibernateAssembler</source>
    <scope>application</scope>
    <metadata>
    <identity property="id"/>
    <many-to-one property="establishment"
    destination="Establishment" lazy="true" />
    <many-to-one property="userRole"
    destination="UserRole" lazy="true" />
    </metadata>
    <network>
    <!-- <session-timeout>20</session-timeout>
    -->
    <paging enabled="true" pageSize="10" />
    <throttle-inbound policy="ERROR" max-frequency="500"/>
    <throttle-outbound policy="REPLACE"
    max-frequency="500"/>
    </network>
    <server>
    <hibernate-entity>boha.db.BohaUser />
    <update-conflict-mode>PROPERTY/>
    <delete-conflict-mode>OBJECT/>
    <fill-configuration>
    <use-query-cache>false/>
    <allow-hql-queries>true/>
    </fill-configuration>
    </server>
    </properties>
    </destination>
    <!-- End of Hibernate destination -->
    <destination id="Establishment" channels="my-rtmp">
    <adapter ref="java-adapter" />
    <properties>
    <source>flex.data.assemblers.HibernateAssembler</source>
    <scope>application</scope>
    <metadata>
    <identity property="id"/>
    <many-to-one property="owner"
    destination="Owner" lazy="true" />
    <many-to-one property="province"
    destination="Province" lazy="true" />
    </metadata>
    <network>
    <paging enabled="true" pageSize="10" />
    <throttle-inbound policy="ERROR" max-frequency="500"/>
    <throttle-outbound policy="REPLACE"
    max-frequency="500"/>
    </network>
    <server>
    <hibernate-entity>boha.db.Establishment</hibernate-entity>
    <update-conflict-mode>PROPERTY</update-conflict-mode>
    <delete-conflict-mode>OBJECT</delete-conflict-mode>
    <fill-configuration>
    <use-query-cache>false</use-query-cache>
    <allow-hql-queries>true</allow-hql-queries>
    </fill-configuration>
    </server>
    </properties>
    </destination>
    <!-- End of Hibernate destination -->
    <destination id="UserRole" channels="my-rtmp">
    <adapter ref="java-adapter" />
    <properties>
    <source>flex.data.assemblers.HibernateAssembler</source>
    <scope>application</scope>
    <metadata>
    <identity property="id"/>
    </metadata>
    <network>
    <paging enabled="true" pageSize="10" />
    <throttle-inbound policy="ERROR" max-frequency="500"/>
    <throttle-outbound policy="REPLACE"
    max-frequency="500"/>
    </network>
    <server>
    <hibernate-entity>boha.db.UserRole</hibernate-entity>
    <update-conflict-mode>PROPERTY</update-conflict-mode>
    <delete-conflict-mode>OBJECT</delete-conflict-mode>
    <fill-configuration>
    <use-query-cache>false</use-query-cache>
    <allow-hql-queries>true</allow-hql-queries>
    </fill-configuration>
    </server>
    </properties>
    </destination>
    <!-- End of Hibernate destination -->
    Output of integrated JRun4 startup
    9/18 12:52:26 info No JDBC data sources have been configured
    for this server (see jrun-resources.xml)
    09/18 12:52:26 info JRun Web Server listening on *:8700
    09/18 12:52:26 info Deploying web application "Flex Default
    Web Application" from:
    file:/C:/aaa-fds/jrun4/servers/default/default-war/
    09/18 12:52:26 user JSPServlet: init
    09/18 12:52:27 info Deploying web application "Boha Online
    Reservations" from: file:/C:/aaa-fds/jrun4/servers/default/flex/
    09/18 12:52:28 user JSPServlet: init
    09/18 12:52:29 user FlexMxmlServlet: init
    09/18 12:52:30 user FlexMxmlServlet: Starting Adobe Flex Web
    Tier Compiler
    09/18 12:52:30 user FlexMxmlServlet: Adobe Flex Web Tier
    Compiler Build: 143451
    09/18 12:52:30 user MessageBrokerServlet: init
    09/18 12:52:38 error Could not pre-load servlet:
    MessageBrokerServlet
    flex.messaging.config.ConfigurationException: Unused tags in
    <properties> found. Please fix them before continuing:
    '/server/delete-conflict-mode' in destination with id:
    'UserRole' from file: data-management-config.xml
    '/server/update-conflict-mode' in destination with id:
    'UserRole' from file: data-management-config.xml
    '/server/fill-configuration' in destination with id:
    'UserRole' from file: data-management-config.xml
    '/server/hibernate-entity' in destination with id:
    'UserRole' from file: data-management-config.xml
    '/server/delete-conflict-mode' in destination with id:
    'Establishment' from file: data-management-config.xml
    '/server/update-conflict-mode' in destination with id:
    'Establishment' from file: data-management-config.xml
    '/server/fill-configuration' in destination with id:
    'Establishment' from file: data-management-config.xml
    '/server/hibernate-entity' in destination with id:
    'Establishment' from file: data-management-config.xml
    '/server/delete-conflict-mode' in destination with id:
    'BohaUser' from file: data-management-config.xml
    '/server/update-conflict-mode' in destination with id:
    'BohaUser' from file: data-management-config.xml
    '/server/fill-configuration' in destination with id:
    'BohaUser' from file: data-management-config.xml
    '/server/hibernate-entity' in destination with id:
    'BohaUser' from file: data-management-config.xml
    at
    flex.messaging.config.MessagingConfiguration.reportUnusedProperties(MessagingConfiguratio n.java:432)
    at
    flex.messaging.MessageBrokerServlet.init(MessageBrokerServlet.java:110)
    at
    jrun.servlet.WebApplicationService.loadServlet(WebApplicationService.java:1200)
    at
    jrun.servlet.WebApplicationService.preloadServlets(WebApplicationService.java:791)
    at
    jrun.servlet.WebApplicationService.postStart(WebApplicationService.java:293)
    at
    jrun.deployment.DeployerService.initModules(DeployerService.java:711)
    at
    jrun.deployment.DeployerService.createWatchedDeployment(DeployerService.java:242)
    at
    jrun.deployment.DeployerService.deploy(DeployerService.java:430)
    at
    jrun.deployment.DeployerService.checkWatchedDirectories(DeployerService.java:179)
    at
    jrun.deployment.DeployerService.run(DeployerService.java:891)
    at
    jrunx.scheduler.SchedulerService.invokeRunnable(SchedulerService.java:230)
    at
    jrunx.scheduler.ThreadPool$ThreadThrottle.invokeRunnable(ThreadPool.java:428)
    at jrunx.scheduler.WorkerThread.run(WorkerThread.java:66)
    09/18 12:52:39 user FlexInternalServlet: init
    09/18 12:52:39 info Deploying web application "Flex Admin Web
    Application" from:
    file:/C:/aaa-fds/jrun4/servers/default/flex-admin/
    09/18 12:52:39 user JSPServlet: init
    09/18 12:52:40 user MessageBrokerServlet: init
    09/18 12:52:40 info Deploying web application "Flex Data
    Services Samples" from:
    file:/C:/aaa-fds/jrun4/servers/default/samples/
    09/18 12:52:41 user JSPServlet: init
    09/18 12:52:43 user FlexMxmlServlet: init
    09/18 12:52:44 user FlexMxmlServlet: Starting Adobe Flex Web
    Tier Compiler
    09/18 12:52:44 user FlexMxmlServlet: Adobe Flex Web Tier
    Compiler Build: 143451
    09/18 12:52:44 user MessageBrokerServlet: init
    09/18 12:52:46 user FlexSwfServlet: init
    09/18 12:52:46 user FlexInternalServlet: init
    09/18 12:52:46 info Deploying enterprise application "JRun
    4.0 Internal J2EE Components" from:
    file:/C:/aaa-fds/jrun4/lib/jrun-comp.ear
    09/18 12:52:46 info Deploying EJB "JRunSQLInvoker" from:
    file:/C:/aaa-fds/jrun4/lib/jrun-comp.ear

    Hi,
    Has this issue been resolved?
    Thanks
    Kumaran Nallore
    FDS QA

  • Problem Configureing Oracle10g with linux fedora core5

    dear forum members,
    when i try to configure oracle 10g in linux fedora core5 with the followning commnad
    # /etc/init.d/oracle-xe configure
    I get the follwoing error message
    Starting Oracle Net Listener...Done
    Configuring Database...grep: /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/config/log/*.log: No such file or directory
    Done
    /bin/chmod: cannot access `/usr/lib/oracle/xe/oradata/XE': No such file or directory
    /bin/chmod: cannot access `/usr/lib/oracle/xe/oradata/XE': No such file or directory
    I also set ORACLE_HOME environment variable before the configure commnad.
    yours truely
    Raja C
    please give me suggestion to configure the oracle10g.

    I was having horrible troubles installing Oracle XE on FC5 until I realized one thing -- I had upgraded packages.
    You have to do the installs just as you want them off the CDs, then install Oracle XE, then upgrade your other packages. I'm not sure which one, but one of the upgrade packages breaks the XE install.
    You would also have trouble with linking ntcontab if you were doing an oracle 10gR2 install with the upgraded set. I haven't figured out why yet but I spent all weekend on it ;)

  • Problem in jdbc with Apache

    i wanne make my ResultSet Scrool
    when i make it
    causes Apache server to fail
    but when i use the same code in console application
    it gave me my result well
    when i make resultset in my jsp code forward only
    it run but not gave me valid date
    i see that the problem is in Apache
    thanx for help

    post ur code..

  • Problems configuring XSQL with Tomcat

    Having a lot of trouble getting this to work with tomcat standalone, apache with tomcat, and even apache with resin. (I have successfully gotten this to work with resin as both web and appserver.)
    I have tried to be meticulous in following the directions, but one thing that is throwing me is that I can't find the web.xml file in my xdk distribution (neither in xdk8i nor xdk9i); I've attempted to create the .xsql extension-to-servlet mapping myself in Tomcat's web.xml file, but maybe I got this wrong.
    The main symptom is that my xsql pages are basically being returned to me in the browser. Any help would be appreciated.

    Bacically you need to create yourself, and here is an example:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
    "http://java.sun.com/j2ee/dtds/web-app_2.2.dtd">
    <web-app>
    <servlet>
    <servlet-name>
    WebCounter
    </servlet-name>
    <servlet-class>
    FAQAnswerServlet
    </servlet-class>
    </servlet>
    <servlet>
    <servlet-name>
    oraclexsql
    </servlet-name>
    <servlet-class>
    oracle.xml.xsql.XSQLServlet
    </servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>
    oraclexsql
    </servlet-name>
    <url-pattern>
    *.xsql
    </url-pattern>
    </servlet-mapping>
    </web-app>
    null

  • Configuring OC4j with Apache HTTPD server

    I want to use OC4j as servlet container and Apache Server as a
    Http server handling all static requests. Now as per the OC4j
    documentation I created a OC4j.conf file and included the same
    in the main httpd.conf file.
    However I could not get my servlets running.I get the page not
    found error.Can you suggest a way out.

    Hi,
    Try this step.
    Comment the following statements from your Jserv.conf file in
    <oracle_home>/Apache/Jserv/conf :-
    ApJServMount /servlets /root
    ApJServMount /servlet /root
    Still not working, reply.
    Regards,
    Yoga

  • Problems with Apache and custom JSPs

    Hi
    We've made an application on top of IFS, using JWS in our test envirnment. Just before making some stress tests, I'd like to try it using Apache. We're currently having two problems:
    1) I switch to the apache configuration running ifsconfig and not selecting JWS. When I try to access the ifs using http://host/ifs/files, everything goes well except that the "logout" icon doesn't appear. I did a little research and found out that the link goes to /ifs/webui/images/logout.gif. This gives an error in mod_jserv.log, like this one:
    [07/06/2001 22:54:20:315] (ERROR) ajp12: Servlet Error: ClassNotFoundException: webui
    It seems it's trying to find a "webui" class, since in ifs.properties every url that begins with /ifs goes to jserv.
    I don't know if this is a know problem or what should I've check...
    2) This one is more important. We're using some custom JSPs, which we use to edit the properties of some types of documents. Basically, when the user clicks over a file one of our JSP appears. These JSPs call a bean to do some processing, passing the HttpRequest as a parameter. The problem is that when using JWS we get the "path" request variable like in path=/%3A29464
    However, when using Apache we get path=/ifs/files/%3A29464 ( and afterwards we get an exception because the ifsSession.getPublicObject method doesn't work).
    Any hints on this? One way could be to check if the path begins with /ifs/files, but that's not really nice.. and besides I could have the same problem in some other parts.
    It's kind of urgent....
    Thanks
    Ramiro
    null

    Hi,
    The answer to your path problem is that you can make use of API to find out the current path so that it works both with Apache and with JWS. Follow the steps
    1. import the oracle.ifs.adk.http package in your custom jsps
    <%@ page import = "oracle.ifs.adk.http.*" %>
    2. Then within your jsp use the method
    getIfsPathFromJSPRedirect
    <%= oracle.ifs.adk.http.HttpUtils.getIfsPathFromJSPRedirect(request) %>
    This will give you the current path of the object on which you clicked on and which initiates the custom jsp.
    You can look at the CMS application which has made use of this API. URL is
    http://otn.oracle.com/sample_code/products/ifs/sample_code_index.htm
    Choose, sample applicatin -> Content Management system.
    Hope this helps
    Rajesh
    null

  • Right problem with apache and tomcat

    Bonjour;
    I use a user login "apache" to stop/start Apache and tomcat. Because never launching apache et tomcat as root.
    But I have the following problem with apache (file error.log) :
    [Tue May  6 17:26:22 2003] [error] Connection "warpConnection" cannot connect
    [Tue May  6 17:26:22 2003] [error] Cannot open connection "warpConnection"
    [Tue May  6 17:27:01 2003] [error] Re-Trying to deploy connections
    As root the error msg does'nt exists (lost)
    Best regards;
    A+;

    Run it from the shell to see whats wrong:
    # httpd

  • Problems configuring HP Laserjet M1213nf MFP with Mac via AirPrint

    Hello,
    I have a HP Laserjet M1213nf MFP printer, connected to a Dlink DSL-2730U ADSL router. I am having problems configuring the printer with my Macbook running OSX Yosemite. I can see the printers name in nearby printers but when I try to add the printer, the mac gives me an error saying, "unable to communicate with the printer at this time". The network settings on the printer are configure for iPv4 and iPv6 addresses. 
    Previously, I had the ADSL DSL-2750U model router, and the printer was connected fine. I did not face any issues then. I have been facing problems since I changed my router so the problem should be in the router. I have the IP for the printer reserved in the DHCP reservation list on the router settings using the mac address of the printer.
    Can someone please help me out here? Is there something I am probably missing.
    Rgds
    ~n~

    I talked to the DLink Support. They asked me to disable an option called "MultiAP Isolation" and Voila, the printer is working fine. I can add it to all my devices on the wireless network. I looked up google. Apparently, this isolation feature present in some routers, prevent wifi clients to interact with other devices connected to the wired network and also with each other. Thats why only my desktop which was also connected wired was only able to access the printer and not the laptops connected wirelessly. 
    Problem solved. Thanks for all your help on this one.
    Cheers!

  • Problems with mobile projects with apache flex 4.8 and an overlay of the latest air sdk

    Using flash builder 4.7 beta, apache flex 4.8 and an overlay of the latest air sdk, i got resolution problems while testing the mobile app (windows version on windows 7) with the air (ipad)emulator. That means the emulator is much bigger than my screen (logicaly seen the resolution of my screen and also like this in earlier version), but the app is much smaller than the emulator. As I have no design view with apache flex 4.8, I don't know where to start searching. Can anyone give me some input?
    Gert

    Hi Crill,
    I don't see any error on creating new projects and running the same.
    Where did you get the installer from?
    What is the framework linkage type? You can check this in project properties -> flex build path. It should be Merged into code for Apache SDK.
    thanks,
    Sudhir

Maybe you are looking for

  • How to achieve BC4J stateful management in a web app?

    I have a web application developed with JSP, Struts as the view / controller layer and BC4J as the model layer. I am not using the complete ADF framework. Just plain struts, JSP and BC4J. What I want to do is to have one struts action to set a query

  • Maint. provision in Billing

    Dear All, Our customer have special requirement for maintain Maint. provision at the billing document level. And accounting entries as per below, I tried with creation of new condition type and Accounting key but it's not working. If possible, please

  • Can Cloud Control 12c be on the Exadata client network?

    Hi, there, We’re trying to configure our brand new X3 machine but we’re having a problem with connecting our Cloud Control OMS to it (the install of the agents fails because it can't connect to the hostname we provided on the management interface). W

  • VSOM Not Showing Disk Usage for Media Servers

    I wanted to try and figure out why my Operations Manager is not synchronizing the disk usage of the media servers storage partition. Currently I am running a fully virtualized environment on a Cisco UCS-B series chassis with version VSM 7.5.1 (Redhat

  • Php-apc upgrade problems

    Hey everybody. I run a server with php-apc. Current version in the repo is 3.1.10 But my version in phpinfo is 3.1.9. I do a pacman -Syu daily, the package wasnt upgraded with that command. So i tried pacman -S php-apc. Then it found the new package