Questions tagged [pcf]

Programmable Command Formats (PCFs) is an IBM technology used for communicating with IBM MQ queue managers.

264 questions
3
votes
2 answers

deploying angular2 application in pcf

I am trying to deploy my angular2 application to pivotal cloud foundry and I followed the instructions found here but I am keep getting Loading..., there are no errors found in developer console. /d/gitmyworkspace/mywork/pcfdeploy/src $ npm install…
user1653027
  • 789
  • 1
  • 16
  • 38
3
votes
1 answer

How to know which parameter is incorrect in MQ PCF command?

I am using MQ PCF command in Java to create MQ queues and updating their parameters. Following is the code I am using. PCFMessageAgent agent = new PCFMessageAgent(queueManager); agent.setCheckResponses(false); PCFMessage[] responses; PCFMessage…
A j
  • 1,069
  • 2
  • 16
  • 29
2
votes
1 answer

MQ PCF: How do I determine the associated Managed Queue for a Durable Subscription?

I am using the PCF API (for WMQ 7) with Java. When I list the queues, I can see n queues named something like this: SYSTEM.MANAGED.DURABLE.4F32A40D034A0020 and then for my specific topic, I can see that there are n subscriptions that I printed to…
Nicholas
  • 15,916
  • 4
  • 42
  • 66
2
votes
1 answer

Which permissions are required for PCFAgent enquiries?

I'm using a little application I wrote to enquire about the state of some queues on a QM. The enquiry itself is done using the PCFAgent/PCFMessageAgent java classes. My question is: which (least) privileges must be granted to allow a certain MCA…
CAFxX
  • 28,060
  • 6
  • 41
  • 66
2
votes
0 answers

Make a new ComponentFramework.PropertyTypes.Dataset using JSON from Web API call

I'm trying to make a PCF that shows data from an API call. The API returns a JSON. Is there a way to convert this JSON to a ComponentFramework.PropertyTypes.Dataset? The Dataset has features like paging for example.
Thuy
  • 1,493
  • 1
  • 11
  • 11
2
votes
1 answer

Spring integration jdbc poller thread hangs or polls in consistently

We have a very simple application where we have one spring integration inbound jdbc poller which polls data from db table and put those records in direct channel. From that channel we have service activator which takes those records and put it in…
2
votes
0 answers

Scaling of Spring Batch application in PCF without Spring Cloud Dataflow and other cloud services disabled

I have read a lot of articles about Spring Batch scaling in cloud platforms, I have also followed Michael Minella's video on high performance batch processing in youtube (https://www.youtube.com/watch?v=J6IPlfm7N6w). My usecase is that I would be…
2
votes
0 answers

Retrieve PCF Oauth token and use it to trigger API in PCF Tasks

I am trying to retrieve cf oauth token and use it to trigger another API via PCF Tasks scheduler . I am able to trigger API with no authentication , But when I try to parameterize oauth token I am getting an error that '''[ERR] bash: cf: command not…
2
votes
1 answer

How to add truststore and keystore to a springboot app in PCF(Pivotal Cloud Foundry)

Is there any way to add truststore and keystore in PCF: Application deployed to unix box can have truststore and keystore can be externalized by keeping them in separate location and adding that location as vm arguments. But How to externalize the…
Avinash Jethy
  • 803
  • 2
  • 10
  • 25
2
votes
1 answer

How to load changed environment variable in spring boot application running in PCF without restarting application?

We have a spring boot application running in PCF and it reads the PCF environment variables(CF_INSTANCE_INDEX, CF_INSTANCE_ADDR,..) from an application. Based on those variables, we are trying to implement the logic for a scheduler. While running…
achyutdev
  • 185
  • 2
  • 10
2
votes
0 answers

Java jar reference picking up wrong package with same directory

I have a reference: lmg.pm.cl.rules.Activity Which is meant to reference an imported .jar file. However the exact same path exists four levels up, but without the Activity class. This is the incorrect directory, but is the one intelliJ is picking…
notAChance
  • 1,360
  • 4
  • 15
  • 47
2
votes
1 answer

Does Pivotal Cloud Foundry support MariaDB?

I am currently self-learning on the basics of cloud foundry and i was wondering if Pivotal Cloud Foundry supports MariaDB or can PCF only link to similar databases such as MySQL or PostgreSQL?
Yong2Quan
  • 51
  • 5
2
votes
0 answers

Migrating Spring XML based app from Jboss to Tomcat to deploy in pcf

I am migrating a Spring XML based app from Jboss to Tomcat to deploy in pcf. But while configuring JTA for Tomcat I'm getting this error - java.lang.IllegalArgumentException: id to load is required for loading And I have added all the…
Ali Nasim
  • 111
  • 5
2
votes
1 answer

"Authenticating... Credentials were rejected, please try again" in Git Bash

I already followed URLs like https://github.com/cloudfoundry/cli/issues/171 Pivotal Cloud Foundry login issue But things did not solved for me yet. $ cf login -a https://api.run.pivotal.io --skip-ssl-validation API endpoint:…
PAA
  • 1
  • 46
  • 174
  • 282
2
votes
0 answers

Spring Boot / PCF / SAML / OKTA :: SAML 2.0 with Okta works fine with localhost, but fails with pcf route URL

I have created a simple spring boot app with saml sso, using okta as the provider with the following details: Single Sign On URL: http://localhost:8080/saml/SSO Recipient URL: http://localhost:8080/saml/SSO Destination URL: …
snmaddula
  • 1,111
  • 1
  • 7
  • 21
1
2
3
17 18