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 Chriss Miller 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: randall2nd
  • Content: Threads
  • Order by date
  1. randall2nd

    Identify what digital certificate is wanted by the webservice

    I have been tasked to programmatically determine what certificate a webservice is looking for. The site does have a web page to connect to. When connecting to that web page a dialog box pops up, "Choose a digital certificate", with some of the certificates from the personal store to choose...
  2. randall2nd

    How do I get the Job Id for a URL submitted report?

    I am submitting jobs to the Report Server to generate a report. This is working fine. However, some the reports can take a while. I would like to be able to check on whether or not the report has finished. I can use the showjobs "function" and get a list of all the jobs with their Job Id and...
  3. randall2nd

    How to get around Report Server Logon page?

    How to get around Report Server Logon page? I am trying to kick off a report in a trigger. I cannot use the event driven publishing, due to OS versions. So, I am trying to submit a job using UTL_HTTP. The report server has been setup to accept a job through a web page, I tested it and it...
  4. randall2nd

    How can I read a file that is on a seperate machine?

    The short of it. Currently we are running an oracle 8i(8.1.7) database on one machine(222.222.222.001) oracle report server on a second macine(222.222.222.002). When the report server generates a report it gets saved to /tmp/reports on the second machine. Which works great so that they can be...
  5. randall2nd

    Size limit on return param from java wrapped stored proc?

    Ok, Here is what I am trying to do: I have Java app that is being called through an Oracle stored procedure wrapper CREATE OR REPLACE FUNCTION TEST_STR( ARG IN VARCHAR2 ) RETURN VARCHAR2 AS LANGUAGE JAVA NAME 'testapp.longstring(java.lang.String) return java.lang.String'; now this app simply...
  6. randall2nd

    Best way to get data into an XML format???

    The short of it: I need to take data from an Oracle 8i database and create an XML document on a Unix OS. What is the best way (apps, language, process, etc...) to do this? The long of it: There is a debate about what the best way to get data from the Oracle 8.1.74 database into an XML format...
  7. randall2nd

    Add project description for "Build Comment Web Pages.."

    I am using Microsoft Visual Studio .NET 2003, and buildiing a solution with 3 projects all in C#. I have gone through my code and added the XML comments for all the bits and pieces, and in every place I can think of. Howver I can not seem to find the correct place to add them so that after I...
  8. randall2nd

    How do I create a Web Server

    I need to create an application that will act like a Web Server. I need it to be able to capture all traffic, process the traffic, and return a response. I just need something to hit up against on my local machine, but I need to be able to view and manipulate the data as it is processed by the...
  9. randall2nd

    How do I identify if a folder is local or network in C#

    I need to be able to Identify if a given folder resides on a mapped network drive or the local machine. I know in VB there is the "Scripting.FileSystemObject" that has a "Drive.DriveType" object that provides exactly what I am looking for. Is there an equivalent in C#...
  10. randall2nd

    Drag and Drop Files

    I am new to C# and .NET. I have created an app that will list files in a listview control for specified directories. I need to be able to do drag and drop file opens. Exactly like Windows Explorer. For example: If a text file (abc.txt) is in the listview, I need to be able to grab that entry...
  11. randall2nd

    get file list and information using .NET

    I am new to C# and .NET and I am tring to display a listing of files and some information on each file from a specified directory. I need the file name, create date, modified date, and owner name. The first three are easy, its the last that I have no clue how to get within the .NET frame work...
  12. randall2nd

    Add "Open In New Window" to Right Click action?

    I am a newbie to flash, and like 500 other newbies I want to know about the menu that displays when a users right clicks on a flash movie. (the one with about macromedia) However I do not want to get rid of it, I just want to know how to emulate the options that are displayed when a user right...
  13. randall2nd

    Getting Netscape "Error: too many literals"

    I am trying to build some dynamic drop down menus, I load the javascript arrays first. Then when a user makes a selection the next ones in line are populated. In IE 6.0 everything works fine, but in Netscape 7.0 the error "Error: too many literals" appears in the JavaScript console. I...
  14. randall2nd

    OnPostError for TQuery not being executed, Why?

    I am using Delphi 5 on Windows 2000. The database(paradox) has a constraint not allowing duplicate records and requires some fields to have a value. I have a TDBGrid and TDBMemo connected to a TDatasource that is connected to a TQuery. A TDBNavigator is used to add, update, delete, scroll...
  15. randall2nd

    Simple Question "How do I deploy an ODBC application"

    I know it seems like too simple of a question but I am obviously very new at this. I am using PB 7.0 on Windows 2000 I am connecting to 2 diffrent ODBC sources: Adaptive Server Anywhere Microsoft Access both exist on the local machine (no network connection) I have built the executable...
  16. randall2nd

    APP.exe has generated errors and will be closed by windows

    EVERY time I try to run my executable I am getting the error APP.exe has generated errors and will be closed by windows. You will need to restart the program. An error log is being created. It will run and perform as expected inside Powerbuilder, but when I build the executable and then try to...
  17. randall2nd

    How do I open a SQL Anywhere ".db" file?

    I have been tasked to create an application that will access a "mydata.db" file. I am using Delphi 7 on Windows 2000. What I know about the file: It was being used in a Powerbuilder 6.0 desktop application When I open it in word pad it references "WATCOM International...
  18. randall2nd

    How do I connect to a Web Server LDAP from a Client machine?

    How do I connect to a Web Server LDAP from a Client machine? I am using Delphi 7 and using the indy components. I am currently using the indy componets TidHTTP and TidSSLIOHandlerSocket to post to a web page from a client machine(Windows 2000). This part works fine. They are talking about...
  19. randall2nd

    How do I Set/Read cookies with Client side App

    With a client side application I need to set and read a cookie that a web page will then be able to read. I have a client side application built in Delphi 7 that makes a post to a web server. I got that working. Now I have been tasked with a sort of single sign on. If the user opens the...
  20. randall2nd

    Send file to server using HTTPS

    I have recently been assigned to a project that was written in Delphi 5 and uses ICS(FPiette) components. The application currently sends a file to the server using FTP. I have been tasked to try and do this using HTTPS. The application will be migrated to Delphi 7, where I am told that I...

Part and Inventory Search

Back
Top