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 Shaun E 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: 9727604
  • Content: Threads
  • Order by date
  1. 9727604

    Case Insensitive Full Text Search

    Hi, I am writing a search page that searches job postings and returns results based on a keyword entered. When the following query is run I get 4 results SELECT p.postingId, p.jobTitle, p.industry, p.city, p.numPositions, p.status, p.ce, p.ae, p.cb, p.dateCreated, p.appDeadline, p.lastModified...
  2. 9727604

    FullText Search on NULL or Empty String

    Hi Guys, I'm pretty new to MySql and I have a question regarding FullText Searching. I've implemented a search that searches for jobs based on keywords. I have a table called Jobs with columns such as JobTitle, Job Description, AdditionalInformation etc and I have created a full text index on...
  3. 9727604

    How do I redirect using POST

    Hi all How can I transfer user to another server using POST. The problem is that Server.Transfer (preserves form data) works just in current server. Response.Redirect - uses GET method. However I have to open a remote server page using POST method. Using HttpWebRequest class is not a good...
  4. 9727604

    Custom Control problem

    Dear all, I have created a custom control in C# (A panel with context menu's, event handlers etc already built in) in a dll, a control library. I've added this control to my user controls in my main application (a different project). I can then drag the panel onto my main form and resize it etc...
  5. 9727604

    DPAPI

    Hi all, How secure is using the DPAPI, either machine or user store, to store encryption keys. i.e. I have encrypted sensitive data in my database using 3DES and I want to secure the key, is it safe to store the key in a config file encrypted using the DPAPI. Thanks
  6. 9727604

    Dataset Row

    Hi all, I am using a pl/sql ref cursor to read a table from a database(oracle 9i) into a Dataset. What I want to do is somehow hash each row in the table and store the digest in a security column at the end of each row. The digest can then be checked to make sure no changes have been made to...
  7. 9727604

    Database update

    Hi all, I have an oracle 9i database and from it I fill a dataset using an OracleDataAdapter. I am pulling information from credit card numbers from multiple tables, encrypting them and the I want to write the values back to the various tables. I am having a problem with my update. The code to...
  8. 9727604

    SSL

    Hi, I have implemented a Windows PKI on a a windows 2000 Server. I also have 2 windows 2000 workstations connected to the server to obtain certificates and the two workstations are in turn connected to each other. My question is can I configure SSL between the two workstations using the...
  9. 9727604

    Session Beans

    Hi, What is the difference programatically between a stateless session bean and a stateful session bean. ie just by looking at the code how would you know whether a bean is stateful or stateless. Thanks in advance.
  10. 9727604

    Session bean lifetime

    Hi, I have a session bean that performs encryption/decryption of credit card numbers and then sends the data to an entity bean to be written to the database. When the session bean is created a key is read from the database (in ejbcreate method) and used in the encryption/decryption process. I am...
  11. 9727604

    EJBs

    Hi, Is it possible to make a direct database connection from inside a CM bean? I have a bean that registers customers and stores their details in a database (Oracle 9i). The bean handles all the database access. I now want to enhance this bean and encrypt the credit card numbers using 3des and a...
  12. 9727604

    Oracle JDK

    Hi all, I am trying to write a stored procedure in pl/sql to encrypt some fields in my database(Oracle 9i). I am using a java method wrapped in pl/sql to do the encryption/decryption. The problem is that I cannot access the javax.crypto classes (secretkeyfactory etc). I have included all the JCE...
  13. 9727604

    JDBC DataSource Problem

    Hi all, I am trying to access my database using a DataSource but I am encountering a problem and have tried in vain to find a solution(code snipet and stacktrace given below). I am using websphere application server and the database is Oracle 9i. I the server running. Any help would be greatly...
  14. 9727604

    Java PL/SQL Encryption

    Hi I am just wondering if I perform encryption on data in a database using say DES written in PL/SQL, will the ciphertext decrypt to the original value if I use DES with the same key but with the decryption written in java. I would very greatly appreciate any help that anyone can offer...
  15. 9727604

    Internet connection

    Hey, I have established a VPN connection betweem my PDA (Toshiba e740 Pocket PC 2002) and windows 2000 server. However i cannot get a connection to the internet while VPN is running. Help!
  16. 9727604

    VPN proof

    Hi, I have set up a VPN connection between my PDA (Toshiba e740 pocket PC 2002) and my Windows 2000 server. I am developing applications on the PDA using Visual CE and I am using mEnable to synchronise tables with my database on the server. I need to know is there any way of proving that mEnable...

Part and Inventory Search

Back
Top