vote up 1 vote down star

Hi,

I have a web service and an outsource company will use my service. I don't want to open my service to the internet. I want to give only wsdl file to the outsource company. They use Delphi. Is this possible importing a wsdl file in Delphi offline?

flag

80% accept rate

3 Answers

vote up 4 vote down check

Yes is possible, Delphi can import a WSDL file stored locally.

In Delphi Win32 Go to File->New->Others->Delphi projects->WebServices->WSDL Importer

Then you get a dialog that prompts you for the location of the WSDL file. From the WSDL, Delphi generates a unit with interfaces for the classes and objects exposed by the webservice. after that creates the file with the name of the service with the extension '.pas'.

In Delphi .Net Go to

Project->Add Web Reference Select the file to import and press "Add reference"

Bye.

link|flag
very good answer, thank you – mrok Sep 3 at 7:57
vote up 0 vote down

Sure!
Just provide them with the wsdl as a file. The WSDL Importer can import from a URL or from a file.

link|flag
vote up -1 vote down

may be this can help you

link|flag
-1 for simply citing a link with no summary/explanation – Argalatyr Sep 3 at 13:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.