Re: Need to call a web service from PowerBuilder Classic 12.5
To add to what Chris said. Try catching this exception... catch (System.Reflection.TargetInvocationException ti) MessageBox('ERROR', ti.InnerException.Message) Hth,Mark
View ArticleRe: Need to call a web service from PowerBuilder Classic 12.5
Hi Mark; Ron is using PB Classic so the code would be more like ... TRY // <WS code here> CATCH ( runtimeerror lo_ex ) MessageBox ("WS Runtime Error", lo_ex.text) END TRY Regards ... Chris
View ArticleRe: Unexpected behavior/errors after changing dbparm
Hi, If the orginal dbparm is :ori_dbparm = (Database='xxxxxx',Provider='SQLNCLI10',Identity='@@IDENTITY')To set it back after you have set DisableBind=1 You should put it back like this :Sqlca.dbparm =...
View ArticleRe: Need to call a web service from PowerBuilder Classic 12.5
My bad. Didn't notice the Classic plumbing.
View ArticleRe: Installing an application without the ".msi" file
Hi, Jacob. In fact our customer here doesn't allow us to run any .msi file in his environment, so we have to do it all manually. I guess they have some security issues there. The error I get is nothing...
View ArticleRe: Installing an application without the ".msi" file
Thank you, Roland. Our customer doesn't allow us tu run theses files...
View ArticleRe: Installing an application without the ".msi" file
Hi, Bob. I'll take a look at orca.exe. The errors are not very specific, really. It relates do memory errors.
View ArticleRe: Installing an application without the ".msi" file
Thank you, Terry, I will take a good look at this material!
View ArticleRe: Need to call a web service from PowerBuilder Classic 12.5
No problem ... I have the same issue some times - especially early in the AM. Solution: more COFFEE! LOL
View ArticleRe: Installing an application without the ".msi" file
Hi, Marco. I've checked your hints. I could read all DLLs inside the msi file.Does the MSI file make any changes in the Windows register that we should know?I've noticed also that there are some DLL...
View ArticleRe: unable to connect pb 12.5 to oracle 11gR2
my enterprise manager is showing as below
View ArticleRe: Installing an application without the ".msi" file
Hi Deise, We have successfully installed our applications on PCs without using an installation program or msi file. Here are the steps we take to do this: 1. Create a folder for the application.2....
View ArticleRe: unable to connect pb 12.5 to oracle 11gR2
For Jacob and David.Can I connect any of you via teamviewer u take a look what I might be doing wrongly?
View ArticleRe: unable to connect pb 12.5 to oracle 11gR2
Hi Joseph, I'm sorry but this is probably contrary to our SAP rules (I'm a SAP employee ) but if you create a SAP incident through the Service Marketplace (service.sap.com) , anyone from SAP AGS can...
View ArticleRe: unable to connect pb 12.5 to oracle 11gR2
Hi Joseph, In your tsnames.ora file, try with the domain name to host and service nameORCL = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = joseph-hp.domain_name.com)(PORT =...
View ArticleRe: Installing an application without the ".msi" file
You could have the application open event create registry keys with their default values if they do not exist. Then the install would just be a matter of copying files to a folder. You can even create...
View ArticleRe: unable to connect pb 12.5 to oracle 11gR2
Check your sqlnet.ora file. You might want to have the following entry: "NAMES.DIRECTORY_PATH=(TNSNAMES, EZCONNECT)" See ORA-12154: TNS:could not resolve the connect identifier sp...
View ArticleRe: PB 12.5.2 Publishing Issues
Update: Ended up ripping out 4.0 framework, and re-installing to no avail. I did find that PB would finally install but only after sitting there for hours upon hours doing nothing, with a...
View Article