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

    Dynamically Loaded Controls

    Hi, I have a page that has some controls loaded dynamically at runtime in PlaceHolders and some controls that are loaded in the Designer View. However, the dynamically loaded controls are rendered at the top of the page and the static controls are at the bottom. Is there a way to have the...
  2. fatcodeguy

    DataSet & Table Relations

    Hi, I've queried 2 tables (inner joined) from the database via a DataAdapter and filled a DataSet. The data that's currently in the DataSet is then a single DataTable with all the information. Instead, I was wondering if there's a way of storing the information in the DataSet as 2 DataTables...
  3. fatcodeguy

    DataTable ColumnName Mappings

    Hi, I have one application using an XML file to store information, and another that uses a database. Now we're going to use the database for the XML application as well, but instead of changing the XML app's data access procedures (for now), we're going to write an interim tool that takes the...
  4. fatcodeguy

    Web Services Error: There was an error generating the XML document

    Hi, I have a web service that returns an object (User), which consists of other user defined objects (UserAttribute). If i consume the web service in a web form within the same package as the web service, the app works perfectly. If i consume the web service from another web app, i get a...
  5. fatcodeguy

    Binding Text Box to a File

    Hi, How do i bind a TextBox to a file, so that whenever the content of the file changes, the Text property of the TextBox changes as well. Thanks!!
  6. fatcodeguy

    Multithreading Synchronization Options

    Hi, I'm trying to resolve some synchronization issues with a multithreaded application I have and I've run into several solutions, and i'm unsure what to do. For startes, I have several threads that will access a single Queue. So I have the following: SyncLock _resourceProcessQueue.SyncRoot...
  7. fatcodeguy

    Drop Table Access for Table Owner

    Hi, I have a user (with CONNECT and RESOURCE roles) that creates a set of tables. If I revoke CONNECT and RESOURCE, and grant instead only CREATE SESSION and ALTER SESSION, the user can still drop a table he created (but not create new ones). Is there a way to avoid this? Thanks!
  8. fatcodeguy

    Axis & .NET Services - Access Denied

    Hi, I have an app running in a Tomcat/Axis environment. I want the app to call a .NET Web Service. I've done everything i need to create the service stub and so on, The problem is when i call the page that accesses the web service, i get an Access Denied error: (401)Access Denied...
  9. fatcodeguy

    Consume .NET Web Service from J2EE App

    Hi, Does anyone know how to configure a JDeveloper project to consume a .NET web service running on a remote server? All help is much appreciated. Thanks!!
  10. fatcodeguy

    Accessing .NET Web Services from Java

    Hi, I have a series of .NET web services developed in VB and I was wondering if I could access them from a Java web app my group is developing. How can this be accomplished? Thanks!!
  11. fatcodeguy

    Browser settings

    Hi, I have a web app that uses Windows Integrated Authentication so i need to verify that the user is running IE and that the Windows Integrated Authentication check box is set. How can i do this? If the setting is not on, is there a way to activate it? Thanks!!
  12. fatcodeguy

    Connecting to Active Directory with user credentials

    Hi, I'm writing an app (or webservice) that will use Active Directory to authenticate a user. When a user goes to web app, i want it to get his credentials, connect to Active Directory as that user, and get some attributes. Any idea how to do this? I know how to connect to AD and get the...
  13. fatcodeguy

    User Info from Active Directory

    Hi, I have an web form that connects to Active Directory and get gets all the attributes associated with that user, and displays them. The problem is, this only works from a browser on the local machine. If a user on another machine tries it, it's as though the search yields no results. Any...
  14. fatcodeguy

    Active Directory Authentication & User Details

    Hi, I'm writing a VB.NET Web application that will authenticate a user and get their details from Active Directory. I have a version that works, but only if the user is working from the machine where the application is running. Here's my code and Web config Can someone help me please? All help...
  15. fatcodeguy

    Active Directory and Signle Sign On

    Hi, I'm trying to write a web application that gets authenticated by a user's network login (via Active Directory), so he only has to login once. How do I go about this? My understanding of the process is that when a user logs in, the user's username/password is set to a Kerberos...
  16. fatcodeguy

    Identify Hanging Sessions

    Hi, Is there a way to identify is a session is hanging/locked up. I had a script for 8i but the views seem to have changed. Thanks for the help!!
  17. fatcodeguy

    Java LDAP

    Hello, Is there a way to communicate with Active Directory in Java? Does a Java LDAP API of some kind exist? Thanks!!
  18. fatcodeguy

    Java LDAP Api

    Hi, Is there a way to communicate with Active Directory in Java? Does a Java LDAP API of some kind exist? Thanks!!
  19. fatcodeguy

    Dynamic Class Selection

    Hi, I'm wondering if this is at all possible. Based on an input, a String named after a Class, I want to instantiate an object as that class. All objects are subclasses of an abstract class I defined, which extends Threads. So now I do the following Thread myThread = null; if...
  20. fatcodeguy

    Tiles & Nested Definitions

    Hi, I have a tile definition called from each page <login:notPresent name="pagedefinition" scope="application"> <!-- Insert the body of the document using the default template tile --> <tiles:definition id="pagedefinition" page="/tiles/baseTile.jsp" scope="application"> <tiles:put...

Part and Inventory Search

Back
Top