Programmable Command Formats (PCFs) is an IBM technology used for communicating with IBM MQ queue managers.
Questions tagged [pcf]
264 questions
2
votes
1 answer
IBM MQ list queues with username/password
I'm pretty new to IBM MQ, but I have looked at samples from IBM and written a tool in Java that can list queue names. I'm using PCFAgent:
PCFAgent agent = new PCFAgent(hostname, port, channelName);
PCFParameter[] parameters = { new…

boffman
- 433
- 1
- 5
- 13
2
votes
0 answers
Unable to attach remote debugger to app in PCF
I have multiple applications running in PCF and can remote debug in to all but one of them. I use the same configuration making sure that
JBP_CONFIG_DEBUG: {enabled: true}
is properly set and picked up by the app.
I run cf ssh -N -T -L…

Travis
- 21
- 3
2
votes
1 answer
Unable to read property key value from GIT repository using Config Server Services in Steeltoe
I am not able read property value from git in steeltoe for dot net core 2.1 application.
From my client application, I want to read properties file which is present in Git repository for different environment properties files like…

Sumit Manna
- 541
- 1
- 5
- 16
2
votes
3 answers
Restart all applications in PCF space
We have tons of services hosted in Pivotal Cloud Foundry(PCF). What is the best way to restart all micro-services in given space via scripts? Other challenge we have is we want to start services in order and introduce some delay between each service…

spicet
- 541
- 4
- 9
2
votes
2 answers
How to deploy Angular application on Cloud Foundry using route with path like http://myapp/mycontextpath?
I'm trying to deploy my Angular (6) application on CloudFoundry.
I want to map my app on a route like http://myapp.domain.com/mycontextpath , so WITH A PATH.
To do so, I deploy my app (CF PUSH) using a yml file like:
---
[...]
buildpack:…

jurevert
- 848
- 8
- 11
2
votes
0 answers
concourse: cf-resource sso login options
How to configure cf resource with sso options ?
Is there any way that we can pass the passcode url to obtain the token through cf resource and pass it as an --sso-passcode for login?
- name: cf
type: cf
source:
api: ((cloud_foundry_api))
…

Barath
- 5,093
- 1
- 17
- 42
2
votes
3 answers
Pivotal Cloud Foundry - Why is restart required after bind-service
The entry in VCAP_SERVICES seems to be getting added as soon as as cf bind-service command is called. If that is the case why is Restart required

Chandralekha R Menon
- 21
- 2
2
votes
0 answers
PCF filtering on OpenGL
I'm reading the docs for ARB_shadow and they hint that OpenGL is free to implement PCF (Percentage Closer Filtering) in the texture samplers but they can't talk about it in the spec.
First they say:
How is bilinear or trilinear filtering…

Ayub
- 73
- 1
- 7
2
votes
2 answers
Depth of the IBM MQ
Can you please help me, I am trying to find the ibm mq depth with PCFAgent over SSL channel.
Security.setProperty("ssl.SocketFactory.provider", "com.ibm.jsse2.SSLSocketFactoryImpl");
Security.setProperty("ssl.ServerSocketFactory.provider",…

Prakash
- 51
- 2
2
votes
1 answer
How do I add a QueueManager to a Cluster as Partial Repository using PCF?
I am using WebSphere MQ 8.0.
I want add two Queue Managers, say QM1 and QM2, to a cluster programatically using Programmable Command Format (PCF) in Java.
I am able to add QM1 to the cluster as a full repository using the following…

A j
- 1,069
- 2
- 16
- 29
2
votes
2 answers
How to write PCF command to get channel status with a condition?
Is there a way to write a PCF program to get channel status for Cluster Sender/Receiver channels which are in "Running" status?
I have something like this which gives me channel status of only one channel!
// send the request and collect the…

sijo0703
- 557
- 1
- 8
- 33
2
votes
2 answers
Usage of UserCredentials with MongoClient is no longer supported
I am trying to deploy my spring boot app to cloud foundry. However I am receiving the below error.
2016-02-19T16:54:29.57+0000 [App/0] ERR Caused by: org.springframework.dao.InvalidDataAccessApiUsageException: Usage of 'UserCredentials' with…

Dave
- 76
- 1
- 8
2
votes
2 answers
How to send a PCF Message under syncpoint?
I have the following code to get queue information, which throws a 2232 error when done as part of a transaction:
Dim specificQMConnProperties As Hashtable = CType(queueManagerConnectionProperties.Clone(),…

simonalexander2005
- 4,338
- 4
- 48
- 92
1
vote
2 answers
Guidewire - Adding numeric validation for Phone Number text field in PCF
I am looking to add validation to a Guidewire PCF field that checks to ensure that only numeric values are used in a Phone Number text field.

Mattr42
- 93
- 9
1
vote
1 answer
Set threshold and back-out queue programatically for IBM MQ
Is there a way to set the back-out threshold and back-out queue in Java? I don't have access to MQ Console to manually set these as I am using Testcontainers. So each test run should set these property on the queue. Currently I am using JMS to send…

Saddam Hussain I H
- 180
- 8