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!

Recent content by fatcodeguy

  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

    OK, I figured it out. I have to set the DataRelation object Nested property to True :)
  3. fatcodeguy

    DataSet & Table Relations

    Thanks. So I've created the two tables (TAB_DEFINITION, MODULE) from 2 queries and I'd like to join them via a common TAB_ID column and then write the DataSet to an XML. However, the data relation doesn't seem to be working properly. '... 'ds is a DataSet Dim dc1 As...
  4. 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...
  5. 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...
  6. fatcodeguy

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

    Nevermind, I've figured it out. Instead of using the <XmlIncludeAttribute(GetType(UserAttribute))> attribute on the User class, i used it on the web method, and for a UserAttribute ARRAY, not object) <WebMethod() ,XmlIncludeAttribute(GetType(UserAttribute()))> Get... Thanks anyway!!
  7. 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...
  8. 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!!
  9. 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...
  10. fatcodeguy

    Drop Table Access for Table Owner

    Hi Unfortunately something in the application prevents us from granting access to another user and user that user instead, so i'll have to use a trigger (but i think i'll use a SCHEMA trigger instead). Thanks!!
  11. fatcodeguy

    Drop Table Access for Table Owner

    Well, here's the entire scenario. I have an application that creates & populates a database upon installation (via a user APP_USER with RESOURCE and CONNECT roles). However, after the installation, APP_USER does not require create table/drop table rights anymore (only...
  12. 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!
  13. 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...
  14. fatcodeguy

    Consume .NET Web Service from J2EE App

    Thanks Sem. I think my question was unclear however (or badly worded =D ) I have a .NET web service already created. I have a J2EE app we're developing using JDeveloper. What steps do i need to consume the .NET service. You mention getting a description through uddi and building a stub. How do...
  15. 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!!

Part and Inventory Search

Back
Top