Webservice proxy wizard is not showing under Project tab in PB2017 Build 1681
I have fixed issue. It was fixed after imported the PB extensions.
Thanks for help.
Hi Raghav;
If you are using a .Net based WS DataWindow this could be the issue. The .Net WS DW generates a .Net Assembly DLL that would then be required at run time (or even in the DW Painter under "preview") when you do a Retrieve() command. If this .Net DLL is now missing or you forgot to deploy it with your App's EXE - then, you would get this type of message.
You can check the WS DWO's source and see if this might be the case by just using the RHMB on the DWO in question and then selecting "Edit Source". A .Net WS DW will have something like the following within its source ...
webservice=(WSDL="http://localhost/
If the above is true in your DW's case but the .Net DLL cannot be located, then there could be an issue in recreating the DLL. This is typically because the PB.INI does not contain two critical entries upon initial installation, as follows:
[Data Window] // Add the following to this section
GenerateWSAssembliesOnCompile=YES
debug_ws_metadata=YES
Note that the real "working" PB.INI in your PC will typically be located, as follows:
c:\users\<YourName>\appdata\local\appeon\powerbuilder 17.0
Once you have the missing PB.INI entries added, recycle your PB IDE and then perform a "regenerate" on the WS DWO. The missing .Net DLL should now appear in the App's WorkSpace folder work area. The WS DWO should now run OK from the PB IDE. If that is the case, don't forget to "copy" this DLL to your App EXE's location for deployment.
HTH
Regards ... Chris
I am using 2017 R3 Build 1880. Now I am seeing Web service proxy wizard.
But getting DLL not found error.
Hi Raghava;
Your PB version / build is too old - especially if you are using the "Standard" edition (see your Help => About dialogue in the IDE). Web Service proxies and in fact Web Services in general were only added to the "Standard" edition of PB2017 in PB2017R2. You are on build 1681 which is before the R2 (Revision2) release. You should now be on either PB2017R3 (build 1858) or MR01 (build 1880) to see these Web Service options.
FYI ...
HTH
Regards ... Chris