Search results for query: *

  1. O

    How to add an HTTP Header to call a webService ?

    Hello, I want to call a WebService that uses an Http Header from VB.Net. In SoapUI, here is the XML that allows me to check the WS answers : <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v0="http://wse.sxx-dxx.com:8081/entreprise/v0.4"> <soapenv:Header/>...
  2. O

    Question MaxReceivedMessageSize property : How to change it ?

    You're the Best ! It was indeen in the app.config file. I had to change both values MaxReceivedMessageSize and MaxBufferSize as they must be of the same value. Put them to 20,000,000. Should be OK. Thank you very much !
  3. O

    Question MaxReceivedMessageSize property : How to change it ?

    Hi all, Now that I can call the WebServices, I have a problem with one of them with returns a hudge amount of data (which is what it's supposed to do). The error is : What is the "appropriate binding element" ? I'm using a Service reference that connects to a WebService through a WSDL...
  4. O

    Question How to call a WebService (with and without a parameter) ?

    Hi Gerardo79. Thanks for your reply. It gave me the clue to the problem. I was trying to use the getAllWorkSpacesRequest and getAllWorkSpacesResponse in the code, while I simply had to find the Class that hold all the "basic" WebServices. It's now working. But could anyone explain me why...
  5. O

    Question How to call a WebService (with and without a parameter) ?

    Hello, My question may sound trivial to you, but it's been days since I try to call a WebService from a Windows Form in VB.Net. Let me give you some details. I've a WSDL (http://78.193.XX.XXX:2002/HelloWorldService?wsdl) that holds 2 Web Services : - getAllWorkSpaces (doesn't use parameter) -...
  6. O

    Question How to make an "open" localizable application ?

    Thanks for the reply. The problem is that from what I understand, this means that if someone from another country wants to translate the application in his language, he or I will have to recompile something, which I want to avoid. So, I think the easiest solution will be to use a simple text...
  7. O

    Question How to make an "open" localizable application ?

    Hello, I'm currently designing an application that must be localizable. I looked over the Net and on this forum, and I know that I must use Resources files : Default.resx Default.fr-FR.resx Default.en-US.resx ... This works if I creates those files and generate the Code. But what I need is...
  8. O

    How to read an XSD file?

    Hi all, I'd like your help and advice on how to read an XSD file with VB.NET. Here is an example of the XSD file I want to read : <?xml version="1.0"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:group name="TOTO"> <xs:choice> <xs:element name="Person"...
Back
Top