Fatal bug with shared JDBC Session Persistence

We are attempting to launch a three-tier site with two clusters, one at the
          web layer (JSP/servlet/images) and a separate cluster at the app server
          layer (EJBs). We are running WebLogic server 4.5.1 Service Pack 8 on Solaris
          2.7. In production we use Solaris JDK 1.2.1.04, and in development we use
          JavaSoft JDK 1.2.2. We are able to duplicate this problem with both JDKs. We
          are using the WebLogic kona/oracle driver for session persistence because
          the Oracle JDBC driver would not work for this purpose - we are using the
          Oracle OCI driver for our EJB persistence in a separate pool in the app
          server cluster.
          We attempted to configure our web cluster to work with in-memory session
          replication. We found the performance of the WebLogic proxy to be abysmal -
          causing a 5x to 10x performance degredation over shared JDBC persistence. We
          were running the proxy on WebLogic, which we were advised would be slow. Its
          performance is beyond slow, it is completely unusable and should NEVER be a
          recommended or even supported configuration. We do not wish to purchase
          separate licenses for iPlanet, refuse to run IIS in a production setting,
          and cannot use Apache until WebLogic 5.1, so we are stuck with shared JDBC
          persistence until we can upgrade to 5.1.
          Using JDBC session persistence with a shared persistent store amongst all
          the clustered web servers results in our users getting brand-new sessions
          populated with data from OTHER USERS' SESSIONS. This is very easy to
          replicate using the provided test JSP and java class. This behavior results
          in new users coming to the site and finding themselves logged in as other
          users.
          The test.jsp file simply accesses the session, prints out some information,
          and then adds a few values to the session. The JSP prints out the value of
          session.isNew(), the session's ID, and the number of values in the session
          space. If you hit this jsp with a new browser window, the session should be
          new, and the number of values should be zero.
          The test Java class hits a URL with this test.jsp file repeatedly, and
          checks to make sure that the session is empty. It keeps a counter of the
          number of hits which resulted in non-empty sessions and the total number of
          hits. Because this java class does not maintain cookie data of any kind and
          merely opens new HTTP connections, it should always receive a brand-new,
          non-empty session.
          When we set the JDBC session persistence property
          weblogic.httpd.session.persistentStoreShared=true and run the test, we see
          periodically see the test.jsp file receiving a brand-new (session.isNew() =
          true), yet non-empty (session.getValueNames().length != 0) session. This is
          extremely bad behavior and makes the shared JDBC session persistence setting
          worthless. We were able to duplicate this behavior with both a single server
          and multiple servers in a cluster.
          If we set weblogic.httpd.session.persistentStoreShared=false, then this test
          works fine. This also means that we cannot cluster web servers.
          To run the test, simply start a WebLogic instance using the provided
          properties file, put the jsp in the document-root somewhere, and then run
          SessionTest.java, providing the URL of the test JSP as the only command-line
          argument. You will need to modify the properties file to have the proper
          database settings and document-root. The java class will display a running
          tally of the number of hits, and the number of hits that result in
          non-empty, illegal sessions, with a total at the end.
          So, we are now in a position where we are completely unable to launch our
          site in a clustered, no-single-point-of-failure configuration. Obviously,
          clustering was one of the main reasons to choose WebLogic, and we are
          extremely distressed that we are unable to get this configuration to work.
          Any help would be appreciated.
          [web.standalone.properties]
          [SessionTest.java]
          [test.jsp]
          

I hope this is not too far fetched, but we are expieriencing a similar
          problem with jms (messages are mixed up between queues). This happens only
          if we are using message persistence in an oracle db (everything works ok
          when we are not using persistent messages). Could it be that there is a
          serious bug in the jdbc code/oracle driver code or connection handling
          (regarding multi threading)? This would explain that, whenever you use
          persistence with oracle databases, messages/sessions (or other) are mixed
          up.
          - Falk
          "Grant Kushida" <[email protected]> wrote in message
          news:[email protected]...
          > We are attempting to launch a three-tier site with two clusters, one at
          the
          > web layer (JSP/servlet/images) and a separate cluster at the app server
          > layer (EJBs). We are running WebLogic server 4.5.1 Service Pack 8 on
          Solaris
          > 2.7. In production we use Solaris JDK 1.2.1.04, and in development we use
          > JavaSoft JDK 1.2.2. We are able to duplicate this problem with both JDKs.
          We
          > are using the WebLogic kona/oracle driver for session persistence because
          > the Oracle JDBC driver would not work for this purpose - we are using the
          > Oracle OCI driver for our EJB persistence in a separate pool in the app
          > server cluster.
          >
          > We attempted to configure our web cluster to work with in-memory session
          > replication. We found the performance of the WebLogic proxy to be
          abysmal -
          > causing a 5x to 10x performance degredation over shared JDBC persistence.
          We
          > were running the proxy on WebLogic, which we were advised would be slow.
          Its
          > performance is beyond slow, it is completely unusable and should NEVER be
          a
          > recommended or even supported configuration. We do not wish to purchase
          > separate licenses for iPlanet, refuse to run IIS in a production setting,
          > and cannot use Apache until WebLogic 5.1, so we are stuck with shared JDBC
          > persistence until we can upgrade to 5.1.
          >
          > Using JDBC session persistence with a shared persistent store amongst all
          > the clustered web servers results in our users getting brand-new sessions
          > populated with data from OTHER USERS' SESSIONS. This is very easy to
          > replicate using the provided test JSP and java class. This behavior
          results
          > in new users coming to the site and finding themselves logged in as other
          > users.
          >
          > The test.jsp file simply accesses the session, prints out some
          information,
          > and then adds a few values to the session. The JSP prints out the value of
          > session.isNew(), the session's ID, and the number of values in the session
          > space. If you hit this jsp with a new browser window, the session should
          be
          > new, and the number of values should be zero.
          >
          > The test Java class hits a URL with this test.jsp file repeatedly, and
          > checks to make sure that the session is empty. It keeps a counter of the
          > number of hits which resulted in non-empty sessions and the total number
          of
          > hits. Because this java class does not maintain cookie data of any kind
          and
          > merely opens new HTTP connections, it should always receive a brand-new,
          > non-empty session.
          >
          > When we set the JDBC session persistence property
          > weblogic.httpd.session.persistentStoreShared=true and run the test, we see
          > periodically see the test.jsp file receiving a brand-new (session.isNew()
          =
          > true), yet non-empty (session.getValueNames().length != 0) session. This
          is
          > extremely bad behavior and makes the shared JDBC session persistence
          setting
          > worthless. We were able to duplicate this behavior with both a single
          server
          > and multiple servers in a cluster.
          >
          > If we set weblogic.httpd.session.persistentStoreShared=false, then this
          test
          > works fine. This also means that we cannot cluster web servers.
          >
          > To run the test, simply start a WebLogic instance using the provided
          > properties file, put the jsp in the document-root somewhere, and then run
          > SessionTest.java, providing the URL of the test JSP as the only
          command-line
          > argument. You will need to modify the properties file to have the proper
          > database settings and document-root. The java class will display a running
          > tally of the number of hits, and the number of hits that result in
          > non-empty, illegal sessions, with a total at the end.
          >
          > So, we are now in a position where we are completely unable to launch our
          > site in a clustered, no-single-point-of-failure configuration. Obviously,
          > clustering was one of the main reasons to choose WebLogic, and we are
          > extremely distressed that we are unable to get this configuration to work.
          > Any help would be appreciated.
          >
          >
          >
          >
          

Similar Messages

  • Session Persistence JDBC

    Hi
              I have read about the scope of session only for one web application.
              When I need to share the session between more than one web application, I
              think about use JDBC session persistence.
              Do you know if is it possible ?
              Thanks
              

    It's possible, please refer to
              http://www.weblogic.com/docs51/admindocs/http.html#sessionjdbc for details.
              Alex Rojkov
              http://www.ObjectReflection.com
              [email protected]
              We are coming soon...
              "Jin Group" <[email protected]> wrote in message
              news:[email protected]..
              > Hi
              > I have read about the scope of session only for one web application.
              > When I need to share the session between more than one web application, I
              > think about use JDBC session persistence.
              > Do you know if is it possible ?
              >
              > Thanks
              >
              >
              >
              >
              

  • General Design With Database and Session Bean Question

    I have an application I am developing where users connect to individual databases located on a server. When they login an admin table is accessed which shows what databases they have permissions to. I am then storing the connection to the database in a backing bean. Hoping to use this connection throughout the session. Is this a good practice to have a users connection left open over the session? I can't create a database pool for each individual database and each user for that database.
    If I can store that database connection in a session bean. How do I access that connection from another bean. Or from another java class? I am using Glassfish for my application server with JSF1.2. I have looked at resource injection but have not had any luck with sharing the session bean information.
    Sorry if this is a trivial question. I have been a Java developer for years. But just starting developing webapps using JSF.
    Thanks

    JuCobb2 wrote:
    I am then storing the connection to the database in a backing bean. Hoping to use this connection throughout the session. Is this a good practice to have a users connection left open over the session? No it is not. Why should you do so? Always keep the lifetime of connection, statement and resultset as short as possible.

  • The fatal bug of curve 8520

    Hi 
    Engineers of RIM ,
    I think I find a fatal bug with curve 8520 and os 5.0 . Everyone konw bb can synchronize date and time  with base stations , it is very usefull , but lots of stations don't support time synchronizing in china , the problem is that my bb can't make any  telephone call when it  can't synchronize time with base stations ,because it display "sos"...
    I set   >option>date&time>set time ------->manual , but it can't fix my bb .
    So I wonder if I could stop the time syc process manually , maybe that will solve this problem ,can you tell me the name of this process ?
    By the way ,  There is not only me in this trouble but also  my some friends .
    Sorry for my broken English,I wish you can know what I mean , thanks !

    oped009, Greetings, and welcome to the BlackBerry.com Community Support Forums.
    1. what do you mean by 'base stations?'
    2. This is a user-to-user community support forum. We are not RIM employees, but volunteers who enjoy assisting other users. RIM personnel rarely comment on queries posted here. You would have noticed this in the EULA and message upon registration.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • [svn] 939: Bug: BLZ-67 - Should turn off session persistence in the Tomcat server we ship.

    Revision: 939
    Author: [email protected]
    Date: 2008-03-26 13:35:44 -0700 (Wed, 26 Mar 2008)
    Log Message:
    Bug: BLZ-67 - Should turn off session persistence in the Tomcat server we ship.
    QA: No
    Doc: No
    Checkintests: Pass
    Details - Turning off session persistence in the version of Tomcat that ships with BlazeDS. We don't store much in the session so session persistence doesn't make much sense for us. Users should feel free to turn this back on if they feel they need it.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-67
    Modified Paths:
    blazeds/branches/3.0.x/servers/apache-tomcat-6.0.14/conf/context.xml

    Hi, thank you for your replies, I found out few things about my servlet, and its portability
    and i have few questions, although i marked this topic as answered i guess its ok to post
    I am using javax.servlet.context.tempdir to store my files in that servletcontext temporary directory. But i dont know how to give hyperlink
    of the modified files to the user for them to download the modified files.
    What i am using to get the tempdir i will paste
    File baseurl = (File)this.getServletContext().getAttribute("javax.servlet.context.tempdir");
    System.out.println(baseurl);
    baseurl = new File(baseurl.getAbsolutePath()+File.separator+"temp"+File.separator+"files");
    baseurl.mkdirs();so i am storing my files in that temp/files folder and the servlet processes them and modifies them, then how to present them as
    links to the user for download ?
    and as the servlet is multithreaded by nature, if my servlet gets 2 different requests with same file names, i guess one of them will be overwritten
    And i want to create unique directory for each request made to the servlet , so file names dont clash.
    one another thing is that i want my servlet to be executed by my <form action> only, I dont want the user to simply type url and trigger the servlet
    Reply A.S.A.P. please..
    Thanks and regards,
    Mihir Pandya

  • Bi publisher with new public session not working. Bug?

    Hello,
    I've got a problem with a bi publisher report I want to open from a url. I have a page 1 which is public, and I want to give the user following url to download the document:
       MYURL/pls/apex/f?p=MYAPP:1::PRINT_REPORT=MYREPORT:::MYVAR:1
    This gives me an empty page.
    When I first generate a new session by just going to page 1:
       MYURL/pls/apex/f?p=MYAPP:1 (which generates MYURL/pls/apex/f?p=MYAPP:1:1855219487679317)
    And then use the original url with the new session, it downloads the document:
       MYURL/pls/apex/f?p=MYAPP:1:1855219487679317:PRINT_REPORT=MYREPORT:::MYVAR:1
    Is this a know problem and is there a workaround?
    Regards, Jan

    Jan,
    This appears to be a bug. As a workaround, you can provide users with a link to a different public page and have that page do a before-header branch to your page 1, specifying the PRINT_REPORT=MYREPORT request value and the session item names/values in the branch definition. For example the link your users could use (to public page 2) might be:
    ..f?p=MYAPP:2
    Scott

  • JDBC 8.1.6.0.1 Bug with grouping function

    Hi,
    I found a bug in the JDBC 8.1.6.0.1 driver, concerning the new grouping functionality of Oracle 8.1.6. Look at the following code fragment:
    String cSelect = "SELECT DACO_VU_NAME AS DIM1, ' ' AS DIM2, TO_CHAR(DACO_VERKAUFSDATUM,'yyyymm') AS DIM_DATE, GROUPING(DACO_VU_NAME) AS DIM1GROUP, GROUPING(' ') AS DIM2GROUP, GROUPING(TO_CHAR(DACO_VERKAUFSDATUM,'yyyymm')) AS DIM_DATEGROUP, sum(DACO_BRUTTOBETRAG_TX) AS VALUE FROM DATENCONTAINER GROUP BY CUBE (DACO_VU_NAME, '-', TO_CHAR(DACO_VERKAUFSDATUM,'yyyymm') ) ORDER BY 1,2,3";
    try {
    System.out.println("SELECT: " + cSelect);
    Statement stmt = conn.createStatement();
    ResultSet rset = stmt.executeQuery(cSelect);
    while (rset.next()) {
    String cTest1 = rset.getString("DIM1");
    String cTest2 = rset.getString("DIM2");
    String cTest3 = rset.getString("DIM_DATE");
    String cChar1 = rset.getString("DIM1GROUP");
    String cChar2 = rset.getString("DIM2GROUP");
    String cChar3 = rset.getString("DIM_DATEGROUP");
    System.out.println(cTest1 + "\t" + cTest2 + "\t" + cTest3 + "\t" + cChar1 + "\t" + cChar2 + "\t" + cChar3);
    }When I compile this with the mentioned JDBC version and run it with java 1.2.2 (JDeveloper 3.1), i get the following output:
    Ahrend GmbH & Co. KG 200003 0 0 0
    Ahrend GmbH & Co. KG 200003 1 0 0
    Ahrend GmbH & Co. KG 200004 0 0 0
    Ahrend GmbH & Co. KG 200004 1 0 0
    Ahrend GmbH & Co. KG null 0 0 1
    Ahrend GmbH & Co. KG null 1 0 1
    null 200003 0 1 0
    null 200003 1 1 0
    null 200004 0 1 0
    null 200004 1 1 0
    null null 0 1 1
    null null 1 1 1As you can see, the grouping columns are mixed up. In this example, everywhere a normal row shows a "null" value, a corresponding grouping row should show a "1", but as you can see, for the last 6 rows, the ones are not in the first, but in the second grouping row.
    When I compile the example with the Oracle 8.1.5 JDBC driver, I get the following, correct, output:
    Ahrend GmbH & Co. KG 200003 0 0 0
    Ahrend GmbH & Co. KG 200004 0 0 0
    Ahrend GmbH & Co. KG null 0 0 1
    Ahrend GmbH & Co. KG 200003 0 1 0
    Ahrend GmbH & Co. KG 200004 0 1 0
    Ahrend GmbH & Co. KG null 0 1 1
    null 200003 1 0 0
    null 200004 1 0 0
    null null 1 0 1
    null 200003 1 1 0
    null 200004 1 1 0
    null null 1 1 1The special thing about this example is, that I use a constant row for grouping (row 2). If you use a normal database row, everything works fine with 8.1.6.0.1, but nevertheless, this should be a bug.
    Any comments on this are highly appreciated, since I need the JDK 1.2 for the application and I didn't find a working Oracle 1.2 JDBC version.
    Thanks,
    Thorsten.

    Patches can be obtained from an Oracle Support Services technical analyst.
    null

  • File sharing bug with windows in mountain lion

    File Sharing Bug with Windows
    Hi,
    there are some windows in our firm and we're sharing the files using File Sharing. The problem is that the windowses can see the files not only the ones in public folder, but also whole disk, like Desktop, Library etc. When i installed Lion, it was happened again for one time. But then it fixed in a way which i don't know. After Mountain Lion, this problem occurs again.
    So, why can it be happened and how do i fix it? please help me.
    thank you.
    tanyildiz

    not any guess?

  • [svn:bz-4.0.0_fixes] 23961: Bug#3200562: New Flex Session Id generated while disconnect with streaming amf channel

    Revision: 23961
    Revision: 23961
    Author:   [email protected]
    Date:     2012-06-15 04:42:44 -0700 (Fri, 15 Jun 2012)
    Log Message:
    Bug#3200562: New Flex Session Id generated while disconnect with streaming amf channel
    While invalidating session, make sure a new one does not get created.
    Modified Paths:
        blazeds/branches/4.0.0_fixes/modules/core/src/flex/messaging/endpoints/BaseStreamingHTTPE ndpoint.java
    Property Changed:
        blazeds/branches/4.0.0_fixes/modules/

    You're trying to do this directly in ActionScript without using Flex, correct?
    The mxmlc compiler for Flex adds some registerClassAlias calls to map types between the client and the server. This will be missing if try to use the messaging code outside of a Flex app.
    Take a look at the mx.utils.RpcClassAliasInitializer class in rpc.swc. This has a static registerClassAliases method that will do the class registration for you. You should just need to call this before running your messaging code.
    -Alex

  • [svn:bz-4.6.x] 23962: Bug#3200562: New Flex Session Id generated while disconnect with streaming amf channel

    Revision: 23962
    Revision: 23962
    Author:   [email protected]
    Date:     2012-06-15 04:57:45 -0700 (Fri, 15 Jun 2012)
    Log Message:
    Bug#3200562: New Flex Session Id generated while disconnect with streaming amf channel
    While invalidating session, make sure a new one does not get created.
    Modified Paths:
        blazeds/branches/4.6.x/modules/core/src/flex/messaging/endpoints/BaseStreamingHTTPEndpoin t.java

    I thought the same that those devices simply are too old. However I would like to know what causes this capabilities change. We want to get rid of the old H/W, but at the moment it looks as if we would need to revert back to the 4402 in order to get those things working again.
    I have not enough information, but those devices are some kind of handhelds. Their MAC OUI belongs to Newport Electronics.
    Regards,
    Patrick

  • [svn:bz-trunk] 23960: Bug#3200562: New Flex Session Id generated while disconnect with streaming amf channel

    Revision: 23960
    Revision: 23960
    Author:   [email protected]
    Date:     2012-06-15 04:15:18 -0700 (Fri, 15 Jun 2012)
    Log Message:
    Bug#3200562: New Flex Session Id generated while disconnect with streaming amf channel
    While invalidating session, make sure a new one does not get created.
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/endpoints/BaseStreamingHTTPEndpoint.java

  • [svn:bz-trunk] 23948: Bug##3200562: New Flex Session Id generated while disconnect with streaming amf channel

    Revision: 23948
    Revision: 23948
    Author:   [email protected]
    Date:     2012-06-13 06:11:35 -0700 (Wed, 13 Jun 2012)
    Log Message:
    Bug##3200562: New Flex Session Id generated while disconnect with streaming amf channel
    On session time out, Flex Client is invalidated on the server side. It also results in Flex Session getting invalidated. In order to complete the client-server streaming connection handshake, the client ends up sending a CLOSE command. On the server side, for any work to be done, the MB first needs to creates a Flex Session (if none exists). After doing the necessary cleanup, the newly created Flex Session will also be invalidated. No stray Flex Sessions will left dangling...
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/endpoints/BaseStreamingHTTPEndpoint.java

  • Bug in Oracle JDBC Drivers with {ts ?}

    Oracle fails to set bind variables correctly when using the {ts ?} in an insert. It works ok if you use {d ?}.
    Ex:
    String st = "INSERT INTO BL(NM,TSTAMP) VALUES (?,{ts ?} )";
    System.out.println(dbConn.nativeSQL(st));
    java.sql.PreparedStatement stmt = dbConnn.prepareStatement(st);
    stmt.setString(1,"test");
    stmt.setString(2,"2000-08-18 09:33:45");
    int xx = stmt.executeUpdate();
    Oracle Reports:
    INSERT INTO BL (NM,TSTAMP) VALUES (:1,TO_DATE (?, 'YYYY-MM-DD HH24:MI:SS'))
    ConnectionPoolManager failed:java.sql.SQLException: ORA-00911: invalid character
    Notice the ? doesn't change to :2.
    Whoops.
    Also when does Oracle plan to implement {fn }
    scalars. There are work arounds but they are not portable. If not soon we will switch our suggested database for our clients.
    null

    Horea
    In the ejb-jar.xml, in the method a cursor is closed, set <trans-attribute>
    to "Never".
    <assembly-descriptor>
    <container-transaction>
    <method>
    <ejb-name></ejb-name>
    <method-name></method-name>
    </method>
    <trans-attribute>Never</trans-attribute>
    </container-transaction>
    </assembly-descriptor>
    Deepak
    Horea Raducan wrote:
    Is there a known bug in Oracle JDBC thin driver version 8.1.6 that would
    prevent it from closing the open cursors ?
    Thank you,
    Horea

  • JDBC Sessions in SunOne WebServer and

    Has anyone in here worked with JDBC sessions in SunOne Webserver 6.1 ( with ASE 12.5.x / JDBC JConnect 5.x of course )?
    In SunOne 6.1 webserver, you can specifically tell it to use JDBC for session persistence:
         http://docs.sun.com/source/817-1833-10/pwasessn.html
    ... by using "com.iplanet.server.http.session.JdbcStore" as the "session-data-store" property. It also goes on to allow you to specify the actual column names that are used, etc...
    According to the URL above, the columns are:
    create table sessions
    SessionID VARCHAR(100),
    AccessTime NUMERIC(9),
    TimeOut NUMERIC(9),
    Value VARBINARY(4096)
    2) What indexes are required here ??
    e.g. I presume you'll need to have a unique index on the SessionID column, and perhaps an index on AccessTime ( for the repear to delete expired sessions )
    3) Any working example sun-web.xml using JdbcStore ??
    Thanks,
    John

    2) What indexes are required here ??
    e.g. I presume you'll need to have a unique index on
    the SessionID column, and perhaps an index on
    AccessTime ( for the repear to delete expired
    sessions )You are correct on both accounts. Those are the only needed indexes as none of the other columns are used ias selection criterion.
    >
    >
    3) Any working example sun-web.xml using JdbcStore
    ??Unfortunately, our collection of samples does not include one, but I do know of customers using this Store.

  • Are Session Persistence And Clustering Inter-related?

    Hi,
              I'm attempting to set up session persistence (via jdbc) on WL 4.03. I have
              configured weblogic.properties according to the admin guide, and I've
              written a very simple test servlet. However, whenever I attempt to save a
              value with session.putValue(), the following exception is thrown:
              "java.rmi.RemoteException: javax.ejb.FinderException: Refresh:
              ClusteredSession:
              308978692445-1/-1094565652488309727/-1062731518/4/7011/7011/7012/7012 not
              found"
              The WL instance I am using is not part of a cluster. Is clustering
              required for session persistence? If not, should I be using something other
              than the normal HttpSession class?
              Thanks,
              John
              

    Please disregard. The problem was due to an error in the definition of the
              WL_SERVLET_SESSIONS table.
              

Maybe you are looking for

  • Itunes update 11.0.2.26 running slow

    I updated to 11.0.2.26 and now itunes is running very very slow.  I went to apps to updates apps and its sits there for what seems to be an hour trying to access iTunes Store with no luck.  When I hook my iPhone 5 up my computer recognizes the phone

  • Outlook cached mode, shared calendars, permissions and sync errors

    We have the following environment - Exchange 2010 SP2, no public folder DB; Outlook 2010 sp1 cached mode. under very specific circumstances, but unfortunately a common circumstance, we're getting sync errors - 15:59:56 Synchronizer Version 14.0.6126

  • FREETALK Connect•Me

    using FREETALK® Connect•Me with skype offer, I have a telephon number with skype and no landline connection (only broadband). My question is this: Can I receive call (to my skype number) and call without landline connection only using skype account w

  • Birthday reminders

    Hi, Is it possible to send a group of people an email (automaticly) as one them cellebrates his/her birthday? Thanks Jan

  • Photoshop Elements 10 Edit Screen won't load

    Photoshop Elements 10  Edit Screen won't load.  It was working fine, then I responded to an Adobe Update. It stopped working. I re-installed Photoshop Elements 10 for MAC from the purchased Disc. The organizer works but not the editor. The organizer