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 SkipVought 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: *

  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

    The project was included aswell, sorry for not making that clear. I have a library project and exe project in the same solution with the exe set as startup project. I don't understand how I cannot step into the library code. For some reason the object in the dll isn't getting initialised properly
  5. 9727604

    Custom Control problem

    Yeah i've already added the Dll to the main application and referenced it. The main application builds fine so it can definitely 'see' the control in the dll. I tried putting a break point in the main application at the point where the control is instantiated i.e. this.inputPanel = new...
  6. 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...
  7. 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
  8. 9727604

    Dataset Row

    I decided to use a stored procedure to solve my problem. I concatenated the strings using the pl/sql CONCAT function. I tried this method and it works. The only thing is you can only use CONCAT with two strings at a time which is a bit of a balls and can get real tricky when the table contains...
  9. 9727604

    Dataset Row

    What I want to implement is a security check to check the integrity of the data in the database. I want to ensure that if someone got access to the database and changed some of the information in a table then I would know. Basically i'm implementing a keyed hash function. I want to hash the row...
  10. 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...
  11. 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...
  12. 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...
  13. 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.
  14. 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...
  15. 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...
  16. 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...
  17. 9727604

    JDBC DataSource Problem

    I have added the appropriate jar files to my classpath and tnow the error seems to have migrated to the DataSource as opposed to the Initial Context. I now get a different error (Stack trace below). Any Ideas? com.ibm.websphere.naming.CannotInstantiateObjectException: Exception occurred wh ile...
  18. 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...
  19. 9727604

    Java PL/SQL Encryption

    Thanks. Is it really slow encrypting in PL/SQL though?
  20. 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...

Part and Inventory Search

Back
Top