Search results for query: *

  1. T

    Question Retrieving data using a supplied WSDL

    Is there a way of outputting the XML generated by the vb servicereference program?
  2. T

    Question running a.exe program from the command prompt

    In that case you are right. It should be a console app. I wasn't aware that a console app functioned in the way you describe. My vb app is a GUI app with no GUI functionality ie it uses myappliation_startup event to do its processing and quit before any form is loaded. Given your reply, this...
  3. T

    Question running a.exe program from the command prompt

    Thanks for the suggestions. Much appreciated. As soon as my program is called by the third party code (which i dont have access to) control is passed back to the calling prog (third party code) to continue its processing before my program has finished doing its thing. It seems nothing that i put...
  4. T

    Question running a.exe program from the command prompt

    Hello forum Is there a way in vb to make the prog wait before returning control to the calling prog until its completed its processing? When I run my vb.net program from the command prompt, the cursor returns immediately before the program has finished processing its stuff. The program does...
  5. T

    Question Retrieving data using a supplied WSDL

    All working now. I did spend about 30 mins posting my code example and WSDL code with full axplanation and a thank you to the forum but the quick reply deleted most of it as it must only allow limited space. If I get chance later I will try again.
  6. T

    Question Retrieving data using a supplied WSDL

    Thanks. I got it after a bit of trial and errror. It's actually ShipPortTypeClient. I think my code should now work but I'm getting a 'Server returned an invalid SOAP Fault' error. Looking at other forums, It seems there may be a fault with the WCF implementation of the returned SOAP fault code...
  7. T

    Question Retrieving data using a supplied WSDL

    I've changed it from Web Service to Service Reference and it now doesn't like Dim MyService As webservice.ShipService = New webservice.ShipService Its as though shipservice is inherent which is fine but then I can't do myresult = MyService.createShipment(myrequest) as Myservice is not...
  8. T

    Question Retrieving data using a supplied WSDL

    Thanks, I think I'm getting somewhere. There are two classes with properties and sub classes/properties that I can set. Looks like i need to extract the property details from the test xml input file and populate each of the properties independently. Looks promising. I thought it was too simple...
  9. T

    Question Retrieving data using a supplied WSDL

    Thanks for the reply. I guess the property should be defined in the WSDL but I don't know enough about WSDL construction to know where to look.
  10. T

    Question Retrieving data using a supplied WSDL

    Hello forum This is my first post and I hope you guys can help. I am a vb.net programmer but I'm new to web services. I've been given a WSDL from a third party which contains many function calls but I'm only interested in one. The 'CreateShipment' takes one input parameter (WSDL message...
Back
Top