Connect Install Problem - Restarting Connect Services forever and ever

Hi,
I have installed Connect Server on my server. I was using the Embeded MSDE for the install. Everything seems to go fine during the install and first time config as usual.
But, when login to use and meeting the services are restarts during i meeting. I dont know What wrong on my Adobe Connect Pro Server .
Could everyone who used to have this issue help me please,
also I have checked log files below:
[06-06 23:59:53] main (i) Adobe Breeze Server                 [connect_600_r305]
[06-06 23:59:53] main (i) Copyright (c) 2001-2006 Adobe Macromedia Software LLC and its licensors.
[06-06 23:59:53] main (i) All rights reserved.
[06-06 23:59:53] main (i) -------------------------------------------------------------
[06-06 23:59:53] main (i) Loading imports...
[06-06 23:59:53] main (i) Starting JRun...
[06-06 23:59:56] main (i) Configuration successful.
[06-06 23:59:56] brze (i) Starting database...
[06-06 23:59:58] brze (c) Exception occurred in startup.
[06-06 23:59:58] brze (c) <status code="invalid"><invalid field="date-end" type="date" subcode="format"/></status>
[06-06 23:59:58] brze (c) com.macromedia.airspeed.StatusException$Invalid$Format: <status code="invalid"><invalid field="date-end" type="date" subcode="format"/></status>
[06-06 23:59:58] brze (c)  at com.macromedia.airspeed.Row.getDate(Row.java:92)
[06-06 23:59:58] brze (c)  at com.macromedia.airspeed.db.DBConnection.setParams(DBConnection.java:624)
[06-06 23:59:58] brze (c)  at com.macromedia.airspeed.db.DBConnection.update(DBConnection.java:442)
[06-06 23:59:58] brze (c)  at com.macromedia.airspeed.Context.update(Context.java:646)
[06-06 23:59:58] brze (c)  at com.macromedia.breeze.meeting.RoomAssetManager.endSession(RoomAssetManager.java:479)
[06-06 23:59:58] brze (c)  at com.macromedia.breeze.meeting.RoomAssetManager.access$2(RoomAssetManager.java:24)
[06-06 23:59:58] brze (c)  at com.macromedia.breeze.meeting.RoomAssetManager$SessionEndByHost.execute(RoomAssetManager. java:142)
[06-06 23:59:58] brze (c)  at com.macromedia.airspeed.ActionHandler.executeOrQueue(ActionHandler.java:128)
[06-06 23:59:58] brze (c)  at com.macromedia.airspeed.ActionDispatcher.dispatch(ActionDispatcher.java:177)
[06-06 23:59:58] brze (c)  at com.macromedia.airspeed.Context.dispatch(Context.java:967)
[06-06 23:59:58] brze (c)  at com.macromedia.airspeed.rtmp.RTMPHandler.init(RTMPHandler.java:470)
[06-06 23:59:58] brze (c)  at com.macromedia.airspeed.main.Main.run(Main.java:393)
and this is my ACP version :
6.3,40
    Connect 6.0 SP3 r. 40/c. 374632/b. Thur Sep 4 14:46:11 2008 (beet patch 156)
      Presenter r. 582
      FMS r. Dynamo_HotFix Serv_2_0_2_r61c
      patch:
             RegisterMeetingHandler.ase
             openmeetingversioncheck.swf
             openmeeting.swf
             CorePodsCollection.swf
             Application.xml
             components.swf
             viewer.swf
             meeting.swf
            FMSCore.exe (Dynamo_HotFix Serv_2_0_2_r61e)
            FMSAdmin.exe (Dynamo_HotFix Serv_2_0_2_r61e)
            FMSMaster.exe (Dynamo_HotFix Serv_2_0_2_r61e)
            FMSEdge.exe (Dynamo_HotFix Serv_2_0_2_r61e)
Thanks in advanced

Mitch,
How have things gone since your install? Also I'm puzzled as Fedora IS Red Hat, just a variant "flavor". It shouldn't cause the kind of problem that you related. Any news or dicoveries since then? I'm getting ready to install on my goDaddy server and it IS Fedora Core 10.
Thanks
Bobkatzz

Similar Messages

  • Problem with web service proxy and connections.xml

    JDev 11.1.14
    Hello
    I'm trying to create a web service proxy that takes advantage of the connections.xml so that the endpoints can be changed without recompiling the code (as described here http://download.oracle.com/docs/cd/E17904_01/web.1111/b31974/web_services.htm#ADFFD548 - 13.2.2 How to Create a New Web Service Connection)
    I created the web service proxy using the Jdev wizard and a test client. The access to the web service works as expected.
    The client test code is :
    package model;
    import ch.mit.trac.ws.proxy.*;
    import ch.mit.trac.ws.root.Currency;
    import javax.naming.NamingException;
    public class wsTest {
      public wsTest() {
        super();
      public void testIt() throws NamingException {
        CurrencyConvertor currencyConvertor = new CurrencyConvertor();
        CurrencyConvertorSoap currencyConvertorSoap = currencyConvertor.getCurrencyConvertorSoap();
        Double res = currencyConvertorSoap.conversionRate(Currency.CHF, Currency.USD);
        System.out.println("Hello");
        System.out.println(res);
      public static void main(String [] args) throws NamingException {
        wsTest tt = new wsTest();
        tt.testIt();
    }I then create a connection as described in the docs.
    I now have a connections.xml as follows:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <References xmlns="http://xmlns.oracle.com/adf/jndi">
       <Reference name="CurrencyConvertor" className="oracle.adf.model.connection.webservice.impl.WebServiceConnectionImpl" xmlns="">
          <Factory className="oracle.adf.model.connection.webservice.api.WebServiceConnectionFactory"/>
          <RefAddresses>
             <XmlRefAddr addrType="WebServiceConnection">
                <Contents>
                   <wsconnection description="file:/C:/JDeveloper/mywork/WebServiceTest/Model/src/ch/mit/trac/ws/proxy/CurrencyConvertor.wsdl" service="{http://www.webserviceX.NET/}CurrencyConvertor">
                      <model name="{http://www.webserviceX.NET/}CurrencyConvertor" xmlns="http://oracle.com/ws/model">
                         <service name="{http://www.webserviceX.NET/}CurrencyConvertor">
                            <port name="CurrencyConvertorHttpPost" binding="{http://www.webserviceX.NET/}CurrencyConvertorHttpPost">
                               <operation name="ConversionRate">
                                  <output name=""/>
                                  <input name=""/>
                               </operation>
                            </port>
                            <port name="CurrencyConvertorHttpGet" binding="{http://www.webserviceX.NET/}CurrencyConvertorHttpGet">
                               <operation name="ConversionRate">
                                  <output name=""/>
                                  <input name=""/>
                               </operation>
                            </port>
                            <port name="CurrencyConvertorSoap12" binding="{http://www.webserviceX.NET/}CurrencyConvertorSoap12">
                               <soap addressUrl="http://www.webservicex.com/CurrencyConvertor.asmx" xmlns="http://schemas.xmlsoap.org/wsdl/soap/"/>
                               <operation name="ConversionRate">
                                  <soap soapAction="http://www.webserviceX.NET/ConversionRate" xmlns="http://schemas.xmlsoap.org/wsdl/soap/"/>
                                  <output name=""/>
                                  <input name=""/>
                               </operation>
                            </port>
                            <port name="CurrencyConvertorSoap" binding="{http://www.webserviceX.NET/}CurrencyConvertorSoap">
                               <soap addressUrl="http://www.webservicex.com/CurrencyConvertor.asmx" xmlns="http://schemas.xmlsoap.org/wsdl/soap/"/>
                               <operation name="ConversionRate">
                                  <soap soapAction="http://www.webserviceX.NET/ConversionRate" xmlns="http://schemas.xmlsoap.org/wsdl/soap/"/>
                                  <output name=""/>
                                  <input name=""/>
                               </operation>
                            </port>
                         </service>
                      </model>
                   </wsconnection>
                </Contents>
             </XmlRefAddr>
          </RefAddresses>So far so good.
    I then created a new jspx page with a button that calls a method in a request scoped bean.
    The method is supposed to use the connections.xml to get the web service proxy in order to call the web service.
    The bean code is as follows :
    package ch.mit.test;
    import javax.faces.event.ActionEvent;
    import ch.mit.trac.ws.proxy.*;
    import ch.mit.trac.ws.root.Currency;
    import javax.naming.Context;
    import javax.naming.NamingException;
    import oracle.adf.model.connection.webservice.api.WebServiceConnection;
    import oracle.adf.share.ADFContext;
    public class test {
      public test() {
      public void testIt() throws NamingException {
        Context ctx;
        ctx = ADFContext.getCurrent().getConnectionsContext();
        WebServiceConnection wsc;
        wsc = (WebServiceConnection) ctx.lookup("CurrencyConvertor");
        CurrencyConvertor currencyConvertor = wsc.getJaxWSPort(CurrencyConvertor.class);   -- NPE here
        CurrencyConvertorSoap currencyConvertorSoap = currencyConvertor.getCurrencyConvertorSoap();
        Double res = currencyConvertorSoap.conversionRate(Currency.CHF, Currency.USD);
        System.out.println("Hello");
        System.out.println(res);
      public void testws(ActionEvent actionEvent) {
        try {
          testIt();
        } catch (NamingException e) {
    }When running the application and clicking on the button I keep getting the following error at the line marked NPE Here above:
    <LifecycleImpl> <_handleException> ADF_FACES-60098:Le cycle de vie Faces reçoit des exceptions non traitées en phase INVOKE_APPLICATION 5
    javax.faces.el.EvaluationException: java.lang.NullPointerException
         at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:58)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1256)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
         at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:475)
         at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:756)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._invokeApplication(LifecycleImpl.java:765)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:305)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:185)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.share.http.ServletADFFilter.doFilter(ServletADFFilter.java:62)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:106)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:446)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:271)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:177)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused by: java.lang.NullPointerException
         at java.lang.Class.isAssignableFrom(Native Method)
         at oracle.j2ee.ws.common.jaxws.runtime.GenericJavaType.create(GenericJavaType.java:97)
         at oracle.j2ee.ws.common.jaxws.runtime.GenericJavaType.create(GenericJavaType.java:118)
         at oracle.j2ee.ws.common.jaxws.runtime.OperationMappingModeler.processParameters(OperationMappingModeler.java:268)
         at oracle.j2ee.ws.common.jaxws.runtime.OperationMappingModeler.processMethod(OperationMappingModeler.java:155)
         at oracle.j2ee.ws.common.jaxws.runtime.ServiceEndpointRuntimeModeler.buildRuntimeModel(ServiceEndpointRuntimeModeler.java:114)
         at oracle.j2ee.ws.client.jaxws.WsClientProxyFactory.getRuntimeMetadata(WsClientProxyFactory.java:69)
         at oracle.j2ee.ws.client.jaxws.WsClientProxyFactory.createProxy(WsClientProxyFactory.java:126)
         at oracle.j2ee.ws.client.jaxws.WsClientProxyFactory.createProxy(WsClientProxyFactory.java:106)
         at oracle.j2ee.ws.common.jaxws.ServiceDelegateImpl.getPort(ServiceDelegateImpl.java:219)
         at oracle.j2ee.ws.common.jaxws.ServiceDelegateImpl.getPort(ServiceDelegateImpl.java:249)
         at oracle.adf.model.connection.webservice.impl.WebServiceConnectionImpl.getJaxWSPort(WebServiceConnectionImpl.java:399)
         at ch.mit.test.test.testIt(test.java:27)
         at ch.mit.test.test.testws(test.java:41)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(Unknown Source)
         at com.sun.el.MethodExpressionImpl.invoke(Unknown Source)
         at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
         ... 44 moreCan anybody help as to what the problem is...
    (the WSDL is at http://www.webservicex.com/CurrencyConvertor.asmx?WSDL)
    Regards
    Paul

    Hi Frank
    The page is ADF bound, I've added the page source and the adfc-config source below :
    Page
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1">
          <af:form id="f1">
            <af:commandButton text="commandButton 1" id="cb1"
                              actionListener="#{test.testws}"/>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>adfc-config
    <?xml version="1.0" encoding="windows-1252" ?>
    <adfc-config xmlns="http://xmlns.oracle.com/adf/controller" version="1.2">
      <view id="view1">
        <page>/view1.jspx</page>
      </view>
      <managed-bean id="__4">
        <managed-bean-name id="__3">test</managed-bean-name>
        <managed-bean-class id="__2">ch.mit.test.test</managed-bean-class>
        <managed-bean-scope id="__1">request</managed-bean-scope>
      </managed-bean>
    </adfc-config>It seems to be the same sort of problem as in Re: Error in ADF Web Service Connection
    Regards
    Paul

  • Configuration (Instance) alias problems - restart all services or just data engines?

    I have 2005, 2008 (not R2) and 2012 instances installed on a workstation.  I disabled 2005 (turned all the services off) and only need to have 2008 and 2012 instances running.
    When adding new aliases or changing the existing aliases for 2008 and 2012, what services do you need to restart.
    The alias I setup for 2012 works as expected but the other for 2008 simply brings up the 2012 instance when I make a connection in the 2012 SSMS.

    I think i figured it out.  I was not confident that my 2008 instance was listening on the port i THOUGHT it was.
    So I checked
    USE master
    GO
    xp_readerrorlog 0, 1, N'Server is listening on' 
    GO
    Sure enough...it was NOT 1433, so I set my alias to use the port my 2008 instance was listening on and bamo...I can connect with that alias.

  • Installing Problem: Adobe Anchor Service CS4 Error: Error 2.

    Hello all,
    I use a 32bit Windows Seven system, and I've got a problem during the install process (Adobe Anchor Service CS4
    Error:
    Error 2. )
    I used to have After Effects (installed with the same installer i'm trying to use now), then, I've formatted my PC, and since then, wasn't able to install it again.
    I've tried resetting my pc, closing all aps, like the program suggests, downloaded the Support Advisor, tried both ways he told (even though the problem in the link wasn't the same as mine) and it still havent installed.
    Does anyone knows how to solve it?
    Thanks

    There is a piece of Adobe software that removes all traces of a previous installation, making re-installation go much smoother. 
    Unfortunately, I don't remember its name.  But someone will, and they might even have a link to it.

  • Install Problems with 8.1.7 and 9.2.01

    I tried to install 8.1.7 and 9.2.0.1 on a notebook with Win2000 Pro SP4 German (512 MB RAM, 1500 MB swap-file) and I failed in both cases.
    I downloaded both install kits from OTN, unpacked to disk etc. (9.2.0.1 consists of 3 Zips, I unpacked to 3 folders called Disk1, Disk2, Disk3).
    I have J2RE 1.4.2-06 (the latest available from Sun) installed on this notebook.
    - 8.1.7:
    Installer starts but crashes when I clicked on "Install" !!!
    Very disappointing ...
    What to do now ???
    - 9.2.0.1:
    Clicking on setup.exe in Disk1 folder: nothing happens !!!
    Very disappointing ...
    Ok, opening folder autorun and clicking an autorun.exe: whow, oracle installer is starting!
    I did a standard installation with "Personal Edition" and "Universal Database".
    Everything seems to work well...
    After about 1h and heavy disk access it looks like the installation process is hanging! Nothing happens anymore!
    Last message is "Erstellen von Clone-DB (Creating Clone-DB)" with progress bar hanging at 93%.
    I did this 3 times in the meantime, deinstalling evrything, cleaning the registry (because Oracle Installer seems not to be able to realy clean the registry! Very disappointing ...), but the problem is still remaining: every time installation is hanging at exactly this point (93%).
    Overall very disappointing compared to a MS SQL-Server installation on the same notebook, which needs no more than 15 minutes and works on the first run!!!
    What the hell is going on with that stupid oracle installer on windows ??? Is oracle not able to produce a working install kit for windows ???
    Any help would be highly appriciated !!!
    Hans

    Hans,
    It is a known problem on Windows 98, Windows and Windows 2000 if you are using Intel Pentium 4 processor with Sun JRE and Symantec JIT. I had the same problem with Windows 98. Oracle has a patch. Please see Note:131299.1 on metalink for details.

  • TS4036 My iphone 4s cloud appears to work - I sign in and it verifies okay but tries tp access storage forever and ever.

    My iphone 4s hasn't been backed up to icloud for many days. I sign in. my account is verified but it then attempts to access storage for ever and ever.  This is a very recent problem... has been working fine until this week. Does anyone have a solution? Thanks.

    If you get the error "Backup not successful" and you've tried deleting the last backup and trying to back up manually without luck, try the following test:   Go to...
    Settings>iCloud>Storage & Backup>manage Storage, tap your device name in the Backups section, then look under Backup options.  Turn off all apps from backup and then do a manual backup.  If that doesn't work, then this post will not help.  If the backup works, then go back to the app list and turn some on and try another backup.  If successful, keep repeating these steps.  If it fails at some point, then try to zero in on the one app that seems to make the backup fail.  (I had this problem and found one app failing, probably due to a corrupt data file.)
    This process will take time, but if a backup works with no app data being used but clearly fails with the original settings, then somewhere in the mix of apps is a "bad" one.

  • Outlook Connecter Install Problems

    Hi there,
    I have just set up a trial for the Calander Server and it is working a treat through the web interface but I am having problems with the Outlook Connector.
    The problem seems to spring from the fact that I am not using (and do not intend to use) the Sun Messaging Server for email. My setup is:
    Sun Calendar Server (machine 1)
    Sun Directory Server (machine 2)
    Exim Based IMAP / SMTP server (machine 3+ as it is scaled and redundant)
    When you use the connector deployment software it asks you for your incoming and outgoing mail servers and LDAP/Address/Calendar servers.
    So, I add the Exim mail platform in for the incoming and outgoing mail servers and the Dirctory or Calendar server to the others as appropriate.
    When I then try to install the connecter I get the error "Logon information for new mailboxes is invalid" .. even though they are the same as I have made the two users match exactly for testing. I can see the system trying to log on via IMAP and failing for no obvious reasons as the IMAP login works perfectly well.
    Any ideas? How can I get the outlook connector working without using the Sun Messaging Server? Will I need to install the messaging server and not use it to install the connector (seems like a lot of hassle).
    Thanks
    Josh

    Well, I think I've tried all of the above. Initially, I uninstalled the Office2013 preview and installed the released version. This is where it crashed. I have since performed a fresh install of Windows 8 Enterprise along with Office 2013. Now, when I create
    my IMAP account (to a personal self-managed email account on a Linux server) there are two fundamental problems:
    1. Even though I can see all of my IMAP folders when I use the IMAP folder tool in Outlook, no matter what I do, I can not get the folder listings in the Outlook sidebar to match my subscribed folders. I have an extensive list of folders I use to store my
    mail, and it flat-out is inaccessible to me. I get: inbox, drafts, sent, trash, drafts, Junk E-mail5(this computer only),
    October 2012, October 2012.lock, outbox,spam, Trash, Trash, Trash, Search Folders   (bold/italics are folders actually known to be on my server) Note that the drafts and trash folders show up multiple
    times. This is not what my subscribed folder list says I should see there.
    2. Outlook will not automatically sync my IMAP inbox. When I start Outlook, it syncs my Exchange Account and Outlook.com account just fine. Nada on the IMAP. I can even tell OUtlook to send/receive and it still does not update. If I click on the first trash
    folder I get a message telling me that Trash is syncing, and if I then switch to my IMAP inbox, it starts to sync and seems to work after that.
    I'm pretty clearly convinced that MS broke IMAP big time. It always had its quirks in the past, but this one is busted.

  • Connection pooling problem in web service call

    Hi,
    I want to create some REST web services which will be called frequently by other applications (making calls at each 4-5 seconds).
    During the day there can be several instances active (20-30) which will use those web services. In conclusion there will be many database calls.
    What's the best solution to avoid seeing JDBC connection failure in weblogic console and to use connection pooling properly?
    1. Use createRootApplicationModule and after that call release
    2. Get the datasource instance and after that do whatever business (get VOs, methods etc.)
    ...or there is another solution?
    Thanks.
    Edited by: DorinS on 03.11.2011 12:02

    Hi,
    If the POJO you use to expose the service stays in memory then you don't need to close the AM reference. However, what you really want to do is to use JDBC Datasources with your AM configuration so the server manages a pool of database connections the AM then reaches out to
    Frank

  • Install problems - Red Hat 5.2 and Oracle 8.0.5.1

    I am trying to install Oracle 8.0.5.1 on 200Mhz/48Meg Intel Pentium system with RedHat 5.2
    As I'm rather new to Linux, I decided to find a thorough description of the installation procedure and have used the one on:
    http://jordan.fortwayne.com/oracle/rh5x.html
    However, when I get to the point where I should start ORAINST, the system tells me it cannot find the file.
    What can I do?
    null

    Hi there,
    teh file orainst is very much in the directory. All you have to do is.
    1. set the PATH=$PATH:. in your .profile. This will ensure that can execute the files from the current directory.
    2. cd to /mnt/cdrom/orainst
    3. execute teh command orainst.
    If you have still problem I am glad to assist you.
    I have done my installation in RH5.2 , its fine, but RH6.1, I have problem
    thanks
    siva
    [email protected]
    null

  • Solo Safe Mode - How to Disable It Forever and Ever?

    The little red line over the Solo button keeps reappearing, often without my notice, so when I go to bounce some other track, say, a kick, there's a ukelele, say, playing along. Is there some easy way to disable this "feature" of Logic Pro 8?

    My apologies, one of the big problems with this forum is simply the very broad spectrum of user levels it covers. Those of us who've been using logic since days of yore are so familiar with the environment that it's just second nature to us. But in the last few releases Apple have been trying to minimise user interaction with it in order to make the program more user-friendly. I might add that I believe this to be a mistake as the environment is probably the most powerful MIDI programming tool of any DAW. But I digress.
    The environment is an essential part of Logic's inner workings. Every track you work with on the arrange is assigned to an object in the environment. In the case of audio tracks they are assigned to audio objects. The channel strips you see in the mixer page are in fact slightly tweaked representations of these objects.
    To access the environment, go to the window menu and select environment. It should by default come up with the mixer page. Each one of the channel strips in this window is an audio object. If you can't see one called 'prelisten' anywhere in the window then you need to create one. Select one of the audio objects by clicking on its label underneath (eg 'Audio 1'). Now hold down alt and drag it to an empty area to create a duplicate. With the duplicate still selected (it turns light grey) look in the inspector box on the left for a parameter called 'Channel'. Click to the right of this for the pull down menu. Select the submenu audio then scroll all the way down until you find audio 256. You have now created a new prelisten. But you will have to manually make it solo-safe now. Hold down control and click on the solo button.
    I would also recommend you rename the new object as prelisten, by choosing the text tool from the toolbox in the upper right and clicking on the object label. Also I would suggest that with the object selected, you uncheck the box on the left next to the parameter 'icon'. This makes it impossible to access the object from the arrange window, which should prevent any accidental deletion in the future. I have no idea why apple didn't take this last step in the first place.
    Hope that all made sense. Good luck with your first foray into the environment!

  • Completely Disable iMessage Forever and Ever and Always?

    Ok, this is getting silly. iMessage has got to to be the most buggy system on the planet, right? Maps were bad, but unlike iMessage, at least maps got better.
    I switched *back* to an iPhone (my technology ADD sent me through Android and Windows phones...but I love the iPhone so I'm home). And, of course, iMessage is dropping messages left and right for me. I've turned it off on my iPhone, but now people think they've sent me messages but they never show up, even as SMS. Typical iMessage nonsense that's been going on for years now.
    Is there some way, a backdoor, a hack - ANYTHING - that allows me to instruct Apple Servers: HEY, I NEVER, EVER, EVER, EVER WANT iMessage. Ever again. Just Go Away Forever. You're trying to be too smart, which makes you dumb and buggy! Send me SMS (I've got Telegram/WhatsApp/GoogleVoice accounts for wifi comms). THANKS!

    Thanks guys.
    Lots of good info here.
    I know about turning the facebook app to wifi, etc. I'm more worried about the apps I normally don't think about, doing something unexpectedly crazy. Like some new game downloading/uploading a crap load of data because I forget to click a single button in the settings menu. That's why I keep cellular off unless I need it.
    It's just disappointing that while it's off I can't get voice messages (due to iOS8's visual voice mail) or picture messages.
    It seems strange that imessage can handle standard text over wifi but a picture over wifi is just too complicated. But whatever.

  • Some records stays in Event Polling Table forever and ever

    I have configured Event Polling Table at Oracle BI. It works fine and the entry cache are purged. But some records stays in EPT table for ever. Records without misstat1 are inserted by me (trigger). Records with OTHER=misstat1 are inserted by BI Server. There is no delete or error statement in log file for this timestamp. Other timestamps are deleted by BI Server.
    +++Administrator:fffe0000:fffe0012:----2008/09/22 22:17:58
    -------------------- Sending query to database named misstat1_db (id: <<127983>>):
    insert into
         BI_EPT("UPDATETYPE", "UPDATETIME", "DBNAME", "CATALOGNAME", "SCHEMANAME", "TABLENAME", "OTHER") values (1, TIMESTAMP '2008-09-22 22:08:24', '', '', '', 'MV_E_DENIK_KP', 'misstat1')
    UPDATETYPE     UPDATETIME     DBNAME     CATALOGNAME     SCHEMANAME     TABLENAME          OTHER
    1     22. 9. 2008 22:08:24                                                                    MV_E_DENIK_KP           misstat1
    1     22. 9. 2008 22:08:24                                                                    MV_E_HIM                           misstat1
    1     22. 9. 2008 22:28:19                                                                    MV_ODY_OSCI_VYROCI     misstat1
    1     22. 9. 2008 22:28:19                                                                    MV_ZPC_CERP           misstat1
    1     22. 9. 2008 22:08:24                                                                    MV_E_DENIK_KP     
    1     22. 9. 2008 22:08:24                                                                    MV_E_HIM     
    1     22. 9. 2008 22:28:19                                                                    MV_ZPC_CERP     
    1     22. 9. 2008 22:28:19                                                                    MV_ODY_OSCI_VYROCI     

    UpdateTime needs to be unique, but you can't put a unique constraint on it. As you probably know, the server will insert a nearly identical record (it will just put text in the OTHER field but everything else will be the same). Then it deletes both records. However, in your case it looks like there are some identical timestamps that are not just duplicates from the server's insert. If you make sure you don't have any identical timestamps in UpdateTime, I think it will work correctly if everything else is configured correctly.

  • How often to restart UCCX services?

    Hi,
    Is there Cisco documentation on how often services should be restarted, or the entire cluster be restarted? The reason why I ask is that we have services running for 588 days since the deployment of our UCCX cluster. I have restarted various services here and there to resolve certain issues, but have not restarted the whole cluster and I think it's due time. I'm a little nervous about it, to be quite honest. Any insight?
    Thank you very much.

    Hi Sergio,
    I would again stand by the fact that a reboot is not necessary until a problem has been identified and the root cause is known to be resolved by the reboot.
    Well, if you ask me the procedure to reboot a cluster in a HA environment, then
    (Assuming your UCCX Version is 8.x and above)
    ++ Reboot Node 1
    ++ Wait for all the services to come up. You can monitor by the CLI "utils service list".
    ++ Once they are STARTED, reboot node 2.
    ++ Wait for the all the services to come up
    ++ Check for the services under Cisco Unified CCX Serviceability -- Tools -- Control Center Network Services
    ++ Also good idea, to check the replication from Cisco Unified CCX Serviceability -- Tools -- Datastore Control Center -- Replication Servers. The status for both the nodes should be 'Connected' and 'Active'
    Also, a good idea would be to use the release notes of the UCCX version that you are running on and find if there are any known issues which involved a reboot as the solution.
    Regards,
    Arundeep

  • Trying to install software update, phone stopped responding and gives error code 9

    While trying to update software on my iPhone 4, it stopped during installation and gave error code 9, now it says the phone must be restored but will not complete the installation and still gives error code 9, very frustrating.  I tried on 3 different computers, same results.

    reset preferences -
    after effects:  http://helpx.adobe.com/after-effects/using/preferences.html
    flash:  http://helpx.adobe.com/flash/kb/re-create-preferences-flash-professional.html
    illustrator:  http://helpx.adobe.com/illustrator/using/setting-preferences.html
    indesign:  https://forums.adobe.com/thread/526990
    photoshop:  https://forums.adobe.com/thread/375776
    if that fails to solve the problem, restart in safe mode and test.  if ae works, you have a conflicting non-essential program.  you can use your activity monitor to find it.
    if restarting in safe mode fails, uninstall, clean (Do a clean install) and reinstall ae.

  • Problems building w/ Snow Leopard and iPhone SDK 3.0 Snow Leopard

    Suddenly having problems building and codesigning after upgrading to Snow Leopard and iPhone SDK 3.0 Snow Leopard.
    Profile set to Distribution, Device 2.2.1 Distribution, as has worked in the past.
    The build fails with this error:
    Command <com.apple.tools.product-pkg-utility> failed with exit code -1
    The below section is highlighted in Build Results.
    ProcessingProductPackaging /Users/harvey/Documents/iPhoneApp_Work/Listening-Hiragana/iPhone_Comprehension_timerharvey/entitlements.plist "/Users/harvey/Documents/iPhoneApp_Work/Listening-Hiragana/iPhone_Comprehension_timer_harvey/build/iPhoneComprehension.build/Distribution-iphoneos/Kana Listening.build/iPhone_Comprehension.xcent"
    cd /Users/harvey/Documents/iPhoneApp_Work/Listening-Hiragana/iPhone_Comprehension_timerharvey
    setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/u sr/bin:/bin:/usr/sbin:/sbin"
    <com.apple.tools.product-pkg-utility> /Users/harvey/Documents/iPhoneApp_Work/Listening-Hiragana/iPhone_Comprehension_timerharvey/entitlements.plist -entitlements -format xml -o "/Users/harvey/Documents/iPhoneApp_Work/Listening-Hiragana/iPhone_Comprehension_timer_harvey/build/iPhoneComprehension.build/Distribution-iphoneos/Kana Listening.build/iPhone_Comprehension.xcent"
    Any ideas? This is really strange.
    The same error occurs when trying to build for Device - 3.0, and any other version it seems.
    This is especially frustrating as I'm simply trying to update an app that I released before I upgraded.
    I will love whoever helps me forever and ever.
    saikyo

    Found the new SDK on the CD. Now I am running XCode 3.2.
    I'm talking to myself now for the benefit of future readers.
    On the Dev Center I see the note:
    "Important: You will need to re-install the iPhone SDK for Snow Leopard if you plan on developing iPhone applications after upgrading your Mac to Snow Leopard and installing Xcode 3.2."
    So I'm going to download and install the iPhone SDK 3.0 (Snow Leopard) from the SDK downloads area on the Dev Center page. This seems weird to me as it's 3.0... but I'm running 3.2 now... I guess this will just update my 3.2?
    I also notice that when I run XCode 3.2 I don't have Simulator as an option anymore in my profiles.
    Going to go ahead with the update now and see how it goes.

Maybe you are looking for