RE: Difference between "build solution" and "rebuild solution" in Microsoft...
Build means compile and link only the source files that have changed since the last build, while Rebuild means compile and link all source files regardless of whether they changed or not. Build is the...
View ArticleRE: Difference between "build solution" and "rebuild solution" in Microsoft...
Thanks. Suppose I change one copybook that is used by seven different programs, and then do "Build", Will it re-compile those seven programs?
View ArticleRE: Difference between "build solution" and "rebuild solution" in Microsoft...
Yes, it keeps a list of dependencies for each program including copybooks so if the timestamp on a copybook is newer than the last time it was built then it will build all programs that reference that...
View ArticleDifference between "build solution" and "rebuild solution" in Microsoft...
I'd like to understand the distinction.
View ArticleRE: In MS Visual Studio, way to see all bookmarks in my program?
View -->Bookmark Window or Ctrl+K, Ctrl+W should do this.
View ArticleIn MS Visual Studio, way to see all bookmarks in my program?
Is there some kind of window I can open up to see a list of all the bookmarks in my program, with their line numbers? If so, how do I get to it (a) via menu, and (b) via keyboard-shortcut?
View ArticleRegarding exposing webservice
Hi,I have created a webservice and hosted in Enterprise server. Example like this:IP: 172.20.111.###:3001Implementation package: http://tempuri.org/wmapservI am to use the service using the Client...
View ArticleRE: Regarding exposing webservice
You have this question posted in the Visual COBOL forum of the community site although it appears to be related to Net Express.Are you using Net Express to create the service or Visual COBOL SOA?When...
View ArticleRE: Regarding exposing webservice
Hi Chris, Thanks. I hosted my webservice in enterprise server using NEt express in my development machine. I want to access that service from another machine in the same network. I am trying the below...
View ArticleRE: Regarding exposing webservice
What does "It is not working" mean? You have to describe the symptoms for anyone to be able to offer any advice.The blog post you cite shows an example of calling a particular SOAP web service. It...
View ArticleRE: DB2 in visual cobol
I do not understand the question.Visual COBOL provides access to DB2 databases using a number of different methods depending on your requirements.If you are creating a native application then you can...
View ArticleDB2 in visual cobol
I have installed DB2 in visual cobol. Do you know which server I can use when I create a database ?. Is it a download file from IBM or Microfocus ?./Thanks Hans
View ArticleHas anyone used embedded SQL with Postgresql in COBOL?
I am new to SQL. Postgresql has a .NET data provider called Npgsql and with it I can do selects, inserts, updates and deletes from my .NET code. We would also like to use embedded SQL calls if...
View ArticleRE: Has anyone used embedded SQL with Postgresql in COBOL?
Have you set up your ADO DSN using the ADO Connection Editor? Look at Start-->All Programs-->Micro Focus Visual COBOL-->Data Tools-->Data Connections-->ADO Connection Editor.If you can...
View ArticleRE: Regarding exposing webservice
Hi Michael,I am trying to access the web service using the below code.<%Set oXmlHTTP = CreateObject("MSXML2.ServerXMLHTTP")oXmlHTTP.setOption(2) = 13056oXmlHTTP.Open "POST",...
View ArticleRE: Regarding exposing webservice
Well, for one thing, you don't have a SOAPAction header. So that's not a valid SOAP request. I don't think the value of the SOAPAction header matters for ES, but I believe it needs to appear. So you...
View ArticleRE: Has anyone used embedded SQL with Postgresql in COBOL?
The data provider is not displayed in the list on the Provider tab in the ADO Connection Editor because it's not actually installed on the machine. You copy a set of files into your project directory...
View ArticleRE: Has anyone used embedded SQL with Postgresql in COBOL?
It might be possible to use OpenESQL with embedded SQL for this provider by either using a format 6 CONNECT statement or by opening a connection object directly and then using the EXEC ADO BIND...
View ArticleRE: How do I define a Nullable DateTime variable in Visual COBOL ?
What are you using to access your database in Visual COBOL?If you are using OpenESQL for embedded SQL support for ADO.NET then you would simply set your null indicator variable to -1 to indicate that a...
View ArticleRE: How do I define a Nullable DateTime variable in Visual COBOL ?
I can't use the above code because I'm not coding embedded SQL.I'm using the npgsql .NET data provider that comes with Postgresql. Npgsql.dll includes a Parameters class for passing values to...
View Article