Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: cra
  • Content: Threads
  • Order by date
  1. cra

    Possible VC++ bug concerning static functions vs. non-static variables

    Hi all, what do you think of the following? Example 1 compiles: class MyClass { public: static void func(); private: bool itsFlag; }; void MyClass::func() { int i = itsFlag ? 0 : 1; } Example 2 does not compile: class MyClass { public: static void func(); private: bool itsFlag; }...
  2. cra

    How 2 allow untrusted servercertificates with javax.net.ssl.SSLSocket?

    Hi, I want to use SSL simply to crypt data. It is *not* important to me to validate the identity of the server. So how do I convince javax.net.ssl.SSLSocketFactory and SSLSocket to accept *any* server certificate when I open a connection in my Java client? I created the server certificate...
  3. cra

    Hi, does anyone know how to over

    Hi, does anyone know how to overcome the following restriction in the Win32 API under Win2K/XP? "Windows NT 5.0 and later: An application cannot force a window to the foreground while the user is working with another window. Instead, SetForegroundWindow will activate the window (see...
  4. cra

    Possible to delay msg delivering in JMS?

    Hi, I use JMS inside J2EE via a message-driven bean in a container-managed transaction. I use Borland Enterprise Server 5.0.1 that uses the SonicMQ JMS implementation. Now I came across the following problem: When the transaction is set to rollback-only in the onMessage() function, SonicMQ...
  5. cra

    Q_CAT:1447 Semaphore appears stuck

    Hello, does anybody know what might be the cause for the spurious error message "Q_CAT:1447 Semaphore appears stuck" issued by TMQFORWARD? We run Tuxedo 6.5 (yes, I know... :-) with 10 TMQFORWARDs (polling @ 1 second interval) and each of them (sometimes also a TMS_QM) sometimes...

Part and Inventory Search

Back
Top