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 strongm 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. nastoski

    Creating custom SoapHeader for authentication on AXIS Web service

    Hi, Recently I have started a project where one of the main tasks is to create a client for AXIS Web service. Our vendor has provided wsdl and some API programmer documentation. Let me just add that our client environment is .NET 2.0. According to the documentation each operation (web service...
  2. nastoski

    Socket based TCPServer as window service problem

    Hi all, I'm trying to make a simple TCP server (windows service) that listens a particular port and receive simple request. My TCP server is: using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.ServiceProcess; using...
  3. nastoski

    DateDiff and 180 Days ago

    Hi, maybe you can try with this one ... WHERE DATEDIFF(DAY, update_dt, GETDATE()) > 180 Hope this help Regards, Igor
  4. nastoski

    Web service session problem

    i found some solution which didn't work for me :( namespace Client { /// <summary> /// Summary description for Class1. /// </summary> class Class1 { /// <summary> /// The main entry point for the application. /// </summary> [STAThread]...
  5. nastoski

    Web service session problem

    Dear all, I’m trying to figure out how session variables work in web services, but obviously I found myself in trouble. I would appreciate your help. I create a web service with following Global.asax and Service.asmx files //Global.asax … protected void Session_Start(Object sender, EventArgs...
  6. nastoski

    Loading XML formated string in DataSet

    Thanks, you help me a lot. regards Igor
  7. nastoski

    Loading XML formated string in DataSet

    Hi all, i have a problem loading a XML formated string into a DataSet. Actually i can not find a way to do that except maybe writing a string into a file and then reading from it and populating the dataset, but that can be resource consumption. String is...
  8. nastoski

    releasing of pointer memory in unmanaged code

    Dear All, i'm facing a problem with releasing of pointer mamory. Let me explain. From a .NET environment I need to call custom API functions in a WIN32 dll written in C/C++. In order to do this I am writing a managed wrapper class using managed extensions for C++. I use the IJW approach by...
  9. nastoski

    Problem with type conversion when DllImport

    Dear all, While importing C++ dll in my C# application I’m experiencing following problem with last parameter sessionID I’m experiencing a problem while doing [DllImport("ClientLib.dll", EntryPoint="APIconnect", CallingConvention=CallingConvention.ThisCall)] public static extern int APIconnect...
  10. nastoski

    calling C++ dll from C#

    Hi Thanks for your quick response. Could you please give me the example for my case. Thanks
  11. nastoski

    calling C++ dll from C#

    Dear all, When trying to import C++ dll in C# I found a problem that can not solve. When calling dll method I get an error: Unable to find an entry point named ‘add’ in DLL ‘cppdll.dll’ This is the example of the code: DLL code in C++ (VS 2005) cppdll.h class __declspec(dllexport) Adder {...
  12. nastoski

    COM+ subscription and Firing events problem

    Dear all, I’m experiencing one problem with COM+ application for a quite long time. Let me describe what is going on. We have installed windows service that reads data from table. It reads periodically until end row is reached, then wait configurable amount of time (our case 3 min) and then...
  13. nastoski

    Problem opening xls file when exporting Datagrid in Excel

    Hello, I have a problem. Any ideas?? "I have used : Response.AddHeader("content-disposition", "attachment; filename=myfile.xls") This opens the file download dialog box with open and save options I have expected. The save button works great, the problem is when I click, Open, excel...
  14. nastoski

    Using the RegEx mehod to insert string values ino array elemens.

    I think that only problem is that instead CMHarray(0) = strMHS; you should use CMHarray[0] = strMHS;
  15. nastoski

    Debugging COM+ problem

    Hi, I have a problem debugging COM+ component. COM+ application (BTCom) and client application(BalanceTransfer) that call COM+ component are in the same solution. Settings are: Solution Property Pages: Multiple Startup Projects->check Projects Action Balance Transfer...
  16. nastoski

    Debugging COM+ problem

    Hi, I have a problem debugging COM+ component. COM+ application (BTCom) and client application(BalanceTransfer) that call COM+ component are in the same solution. Settings are: Solution Property Pages: Multiple Startup Projects->check Projects Action Balance Transfer...
  17. nastoski

    problem starting windows service that shuts down COM+ component

    Hi all, I have one problem..I have made a windows service that can read Application log and notify me via SMS about specific error..That works just fine. Then I tried to upgrade the application in a way that when error occure the application would automaticaly shutdown specific COM+ componet...
  18. nastoski

    Setting columns width of DataGrid

    Thanks, I will check this out and let you know.. Igor!
  19. nastoski

    Setting columns width of DataGrid

    Dear All, How can I change the width of columns in DataGrid. I'm using following code for DataGrid: DataSet ds; ds = managerService.ReturnDataSet("select * from transactions"); tranDataGrid.DataSource = ds; tranDataGrid.DataMember = "transactions"...
  20. nastoski

    Event Filtering Criteria

    Hi! I have a trouble with syntax of Filter Criteria for my components. I would like to filter events with double parameter "value".. Subscription.set_Value("FilterCriteria", "value<0.0"); Error occure...Can anyone help me.. thanks, Igor!

Part and Inventory Search

Back
Top