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. urielk

    ATL Wrapper around C code

    Hi, I have a I/O driver that needs COM automation, I created an ATL wrapper around the original C code. The linker has problems: "ATL requires C++ compilation (use a .cpp suffix)" This seams trivial but if I compile with CPP all the ENUMs and other basic types as unions might not...
  2. urielk

    Flash + WebServices + Authenticate

    Does anybody knows how to invoke a WebService that requires Authentication? Actually I am trying to invoke a method on a WebService developed in .Net that requires a custom SoapHeader but can't find a way to do this in Flash. To consume the method in c# client is pretty easy: // instantiate...
  3. urielk

    How to navigate if the data comes from a query?

    Problem to solve: Build a query on the fly, add the returning DataSet to the CrystalViewer::ReportSource on runtime and allow the toolbar or treeview to navigate the pages. Symptoms: The report is created as expected BUT the toolbar/treeview don't work at all. If I press the treeview or...
  4. urielk

    MSMQ: Recive works but BeginReceive doesn't

    Firts the Installation detais: I installed the MSMQ Server and client in two W2K machines in my domain. I explored the active directory and the objects look fine. The only issue was when installing the client it couldn't find the Domain Controller Server automatic... but I entered the computer...
  5. urielk

    How to handle a "post" from a Flash object

    I need to capture an XML string from a Falsh Movie in my ASP.NET project. The flash movie has a submit button and it posts a result string to a specific URL the parameters... How do I listen to the post from the Flash Movie?
  6. urielk

    How to do out of process calls

    I need to port code that uses an Activex control. It has the requirement to run in its own process. In the past I created an ActiveX EXE to hold the control and if I needed multiple instances each ActiveX was running out-of proc. With Dot Net I am not allowed to reference EXEs only DLLs and I...
  7. urielk

    Beginner: Concatenate queries

    This must be a very common task for you SQL programmers: My users can belong to two groups... so I created a Table Users and Groups. Users have two Group Ids (Foreighn keys) in a relationship with the Group Primary key, described next: Table Users PK UserId FK GrpId1 Fk GrpId2 UserName...
  8. urielk

    Boxing COM objects... how does VB.NET resolve it?

    I added to my project refernces an AciveX control, the enviroment created the wrapper as expected. But when I try to use it, the compiler requires to cast the objects, example: MyActiveXObj myObj = (MyActiveXObj)TheControl.MyObj; but it fails at run time with invalid casting exception. To...
  9. urielk

    Do I need Cursors or there is a simpler method

    I have two tables, mapped with a 3rd table in a one to many relationship TableA: AId AName TableB: BId BName TableB2A (just a map): CId --just to have its own PKId AId BId My Query returns all the rows in the relationship using an INNER JOIN: SELECT TableA.*, TableB2A.BId FROM TableA INNER...
  10. urielk

    How to pass parameters from ASP to the XSL

    I would like to transform my XML file base on dynamic information. In the XSL file I included the param line: <xsl:param name=&quot;AdminPriv&quot;>0</xsl:param> The Transformation will show/hide table-rows according to the admin privilege... In my ASP code I tried: set xsl =...
  11. urielk

    MTS in a Workgroup

    I am new to this, maybe my questions are obvious and I have and Arch problem. How can I install the componets? In the NT box I want to run the DLLs and in the Win2K the ASPs... I opened the component service console in Win2K and when I try to open the COM+ folder in the Remote machine I get...
  12. urielk

    MTS in a Workgroup

    Thanks Ronald, You gave me a good clue where to start... I don't have the best infrastructure, I have a Win2000 Professional and a NT Workstation in the same workgroup. Do I need MTS in both computers? I assume yes... I turn off authentication for the system application in both computers but...
  13. urielk

    Distributed Objects in NT and Win2K

    Is it possible to have remote objects running in a NT box and MTS in a Win2K server? are there any incompatibilities?
  14. urielk

    MTS in a Workgroup

    Can I Develop distributed MTS objects in a Workgroup... without a domain controler?, MTS complains about security when I try to install a package in the remote computer.

Part and Inventory Search

Back
Top