Search results for query: *

  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

    The wsdl creates a reference.vb, that does not have any method/function so i can pass the user and password required. I have a wsdl, 2 xsd, and the sample soap file. Is there a way to send it to you? Since is coorporate Ws (even if is in the test period), i wouldn't like it to be public. I've...
  4. vagueante

    Change SOAP Header before call WS

    The WSDL (Jave WS), doesn't have defined the soap headers properties. I need to add the soap headers before i invoke the WS. Is there a way of doing this? Thanks
  5. vagueante

    Change SOAP Header before call WS

    I think iv'e already created my proxy class , and i now i have to change it to include in the soap header the credentials. That's where i'm stoped at the moment. In many samples i've seen, nothimg seems similar to what i want.
  6. vagueante

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

    Hi, Thanks fou your reply I needed two xsd files, when puting them in the same directory as the wsdl, the reference.vb was complete with all the classes and functions. Now i can create the object i wanted. My problem now is the soap header, as you can see im my other post.
  7. 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>...
  8. vagueante

    iteract through a class properties

    You're right : iterate. My code only shows "first level" of the class, but some properties are also classes, which have properties bellow Partial Public Class claimMarket Inherits Object Implements System.ComponentModel.INotifyPropertyChanged Private...
  9. vagueante

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

    That's what i had in mind, put the thread as resolved/fixed. Thank you
  10. vagueante

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

    Yes, thank you. Is there a way to close the thread?
  11. 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...
  12. vagueante

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

    I was really distracted, ClaimMarket is a class, so i have to create a new instance dados_Defenicao = New ServiceReference1.draftClaimEntryDefinition dados_Defenicao.arCode = "123" Dim clClaimMarket As New claimMarket clClaimMarket.warrantyType = "Warranty data" dados_Defenicao.claimMarket =...
  13. 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...
  14. 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...
  15. vagueante

    Connect to webservice using https

    Hi, thanxs for your reply. My problem is that the webservice that i'm trying to connect i don't know where or in what language/platform is been developed. I just have the WSDL, XML sample file and 2 xsd files, user and password. My application has to be a windows application, so at the...
  16. vagueante

    Connect to webservice using https

    Why is this post moved ? It's not a ASP.net solution, but a windows application, that i have to make, that has to connect to a webservice, it has nothing to do with a web application
  17. 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...
  18. 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
  19. 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...
  20. vagueante

    Sub Main() not running

    My problem still not solved. To resume: My app use a notifiicon to run hidden from everyone : Me.WindowState = FormWindowState.Minimized Me.ShowInTaskbar = False If i choose the form as tool, it doesn't show in alt-tab, but in this case it shows in the lower left corner a little bar, that if...
Back
Top