Re: [PB .Net] Object browser is empty
If your license is a network served license that won't be a problem. If your license is a file, you should be able to save that off before you uninstall. Your license is tied to your computer name and...
View Articlehow to setup powerbuilder on a remote windows 2008 vm?
We have two developers, each located on different parts of the planet, who have been accessing our PowerBuilder via GoToMyPC at different times of the day. Recently, our company was acquired and this...
View ArticleRe: Powerbuilder Classic calling webservice and get message "can not be...
I will check with them about the wsdl. The wsdl is also located here: https://service2.ultipro.com/services/LoginService Another question. The Login service is supposed to return a Token that I pass...
View ArticleRe: Powerbuilder Classic calling webservice and get message "can not be...
I get the same error from the WSDL utility going directly against that wsdl. You might grab a copy of SOAPUI and try calling the service directly from that. If that works, it would appear the the...
View ArticlePB objects not sync'ing to TFS after forced get
All - Wierd problem. In spite of doing multiple force "get specific" from TFS, at directory level and object level, objects in pbl's are still showing up with the "+" sign next to them, demanding to be...
View ArticleRe: faultcode and faultstring of a soap webservice through a wcf client...
I received this suggestion for a .Net developer c# - Configuring the .NET WCF UTF-8 deserializer to modify/discard non-shortest form chars instead of throwing an except… Is it possible to override .Net...
View ArticleRe: how to setup powerbuilder on a remote windows 2008 vm?
I thought the whole point of serving up a license was that it got released after being used. How does this differ from assigning a license to each machine then? In other words: what's the benefit of...
View ArticleRe: PB objects not sync'ing to TFS after forced get
Right you are Bruce, however see my latest steps above. Not sure where to go if it won't read new entries added. Thx.
View ArticleRe: Serious Bug Powerbuilder 12.5.2 build 5609 with Inheritance
I thought the same, but apparently not. It was developed in PB10. My guess is that it was corrupted in the migration to PB12 and only caused a problem when edited. The export/import will have cleared...
View ArticleRe: PB objects not sync'ing to TFS after forced get
It sounds like you need to check out the PBG files from TFS using Team Explorer, then fix them on the disk so they have all the correct objects in them, them check them back in then follow my somewhat...
View ArticleRe: PB objects not sync'ing to TFS after forced get
Ok! Happy to report we are in business. The steps were as follows: On pbl with partially sync'd objects, and two non-sync'd objects: added both non-sync'd objs to the .pbg, then did "add to source...
View ArticleRe: PB objects not sync'ing to TFS after forced get
Glad to hear you've managed to get it all working again! TFS is slightly strange sometimes, and PowerBuilder can have problems with PBG files no matter what source control system you are using. I've...
View ArticleRe: PB12.5.2 on Windows 8 Issue
One of the major problems with built-in PB functions is that they return no (or very little) useful information when an error occurs. In this case I suggest you use the file API functions to open /...
View ArticleIssues Generating Dynamic RichText Datawindow using SyntaxFromSQL
Hi, I am running into issues/crashing when attempting to generate a dynamic richtext datawindow using the SyntaxFromSQL function. I am using PowerBuilder 12.5 Build 2551. Below is the code I am using...
View ArticleRe: Issues Generating Dynamic RichText Datawindow using SyntaxFromSQL
Karen, Try using the following code: string sql_syntax,present,presentation_str,dwsyntax_str,errinteger errorssql_syntax = "SELECT * from department"present = "richtext"presentation_str =...
View ArticleRe: how to setup powerbuilder on a remote windows 2008 vm?
Hi Bruce. I'm not sure if I understood exactly what you say, but the license server can be located in a different machine! Then when launching the ide for the first time you are asked to provide a...
View ArticleRe: Procedure has already been executed [PB 11.5]
Just to be crystal clear.... you should have: DECLARE C PROCEDURE FOR proc1; EXECUTE C; CLOSE C; The symptoms you report would occur on the 2nd attempt to run this code without the close.
View ArticleRe: Procedure has already been executed [PB 11.5]
Hi David and thanx for your reply. I run this once though
View ArticleRe: Procedure has already been executed [PB 11.5]
Yes it is needed !!! Like for example destroying objects when you create them This is a safer way to code when allocating memory for PowerBuilder objects HTH,Jacob
View ArticleRe: Procedure has already been executed [PB 11.5]
Ok, I think we have misunderstood your problem. The first time through this code you declare the procedure, execute the procedure and the error occurs. Is that right?
View Article