Search results for query: *

  • Users: vagueante
  • Content: Threads
  • Order by date
  1. vagueante

    My.Computer.Network.DownloadFile fromk iSeries IFS shared folder

    Hi, I have a problem when i use My.Computer.Network.DownloadFile from a iseries share path My.Computer.Network.DownloadFile(iseriesPathFile, "c:\file.ext", "user", "pwd", False, 1000, True) If i use the windows explorer I can copy from and to that folder, but first i have to put my user and...
  2. vagueante

    Windows service : iSeries CWB4016 cwbDQ_Read code error 6017

    Hi, I have a windows service that i connecto to a iSeries Dataqueue, i can write and read from it. The purpose of this service it's to keep reading the dataqueue and when it has some data i run a WS and read/write data in a iSeries DB2 with the DB2 provider. I can do all these things in a Win...
  3. vagueante

    Change SOAP Header before call WS

    Hi, I need to change the soap header when i invoke a webservice, that does not have this properties in the wsdl, but i have a sample of the soap message of what the WS, not .net, is waiting to validate. I need to put the headersoap as shown bellow <soapenv:Header>...
  4. vagueante

    iteract through a class properties

    Whats the best way to iteract through a class to get all the properties names? So far i have this code Dim classInstance As New ServiceReference1.draftClaimEntryDefinition For Each PropertyItem As PropertyInfo In classInstance.GetType().GetProperties() Dim strPropName As...
  5. vagueante

    Resolved Class with class properties: aObject reference not set to an instance...

    Hi, I have a class in which some of the fields are also classes. I can put values in the "normal" properties, but in the others when o try to assign values it gives the: "Object reference not set to an instance of an object" But the code compiles fine. dados_Defenicao = New...
  6. vagueante

    Windows application: Send information to WS with only wsdl and xsd as start point

    In a windows application I'm trying to connect to a webservice, and all i have is a wsdl file (i used service reference, and after import the namespace i can instantiate it), a XML file ( i suposed is in soap format, the first line starts with <soapenv:Envelope ), and an xsd file that validates...
  7. vagueante

    Connect to webservice using https

    Hi, I've already conected to several webservices (http) with no problem. Now i have to connect to an https webservice, i have the wsdl file and the user and password. When i try to add a new web reference, it just asks the webservice link, and does not have a place to put the user and...
  8. vagueante

    list users in domain network drives

    Hi, I need to get a list of each domain user mapped network drives, so i can save in his profile and later reconnect them it in his profile. With WMI, i've managed to get several information, but couldn't get this one. Is there a way of doing this in vb.net, maybe using WMI? Thanxs
  9. vagueante

    Fisrt run of the day, my notifyicon app can't show forms

    Fisrt run of the day, my notifyicon app can't show form, after staring To resume: My app use a notifiicon to run hidden from everyone : In the winlogon, it runs my app, that has to run without the user being able to see it except for the notifyicon, and has to show some alert form with...
  10. vagueante

    Sub Main() not running

    Hi, I've added a sub main to my project, but no matter where i put it, it never runs. I've tried in the main form with : Shared Sub Main() with and without the shared word In a module and in a class. In vb.net 2003 it worked, so that must be some configuration that i'm missing or doing...
  11. vagueante

    Work with temp folder

    Hi, I hava a form app, that runs hidden, with just a notify icon, the goal is control worker schedule and alert them for some things they have to do. My problem is,when i open a form (with TopMost = True), it works if the user is admin of the machine or domain admin, if the user is "regular"...
Back
Top