Questions tagged [pivotal-web-services]

92 questions
1
vote
1 answer

PWS - Unable to connect UAA to database

I am having an issue on Pivotal Web Services where I am unable to get a connection to the Postgres SQL database for UAA. I have the service defined and bound to the application, but am putting the credentials in manually (Not sure if param…
1
vote
1 answer

Deploy nodejs issue on CF/BlueMix

When I try to deploy the following repo to CF/BlueMix I got errors for the "devDependencies": Error: Cannot find module 'webpack' If I add webpack to the dep I got error Error: Cannot find module 'postcss-cssnext' and continue for other dev…
user6124024
1
vote
1 answer

Placeholders within UAA_CONFIG_YAML environment variable

I'm trying to set the SMTP settings within the UAA_CONFIG_YAML section of the manifest. smtp: host: ${vcap.services.smtpdev.credentials.hostname:localhost} port: 2525 user: ${vcap.services.smtpdev.credentials.username:user} password:…
miclip
  • 11
  • 1
1
vote
0 answers

Why pivotal returns only 404 for every application after I installed WildFly?

Every application that I run on pivotal server is now giving me a 404 although before installing WildFly (+executing standalone.bat) I didn't have any problem using the spring applications. Some applications weren't modified and after this update…
Marian Iconaru
  • 199
  • 4
  • 12
1
vote
1 answer

JHipster with elasticsearch on cloudfoundry

Has anyone successfully used elasticsearch (searchly) through the Pivotal Web Services market place for a Jhipster generated application? I have correctly bound the searchly service to my application, but keep getting the following error: Failed to…
1
vote
0 answers

Cloud Foundry Maven Plugin proxy with authentication

I am trying to deploy to Pivotal Web Services using the Cloud Foundry maven plugin. I can deploy very easily with no network proxy in use, but when behind the network proxy I am unsure how to configure the plugin and I was not able to find a good…
Matthew Fontana
  • 3,790
  • 2
  • 30
  • 50
1
vote
0 answers

Hibernate Search won't index my data on Pivotal Web Services

I have a Spring Boot application integrating Hibernate Search to index my JPA entities and everything works fine locally. I have the following component to create the index when the application starts: @Component class SearchIndexBuilder implements…
Sebastien
  • 3,583
  • 4
  • 43
  • 82
1
vote
1 answer

Change request_timeout_in_seconds in Pivotal Web Services

We have deployed an application on run.pivotal.io. The default value for request_timeout_in_seconds is 900 seconds which is 15 minutes and too short for our use case. How can we change…
vsp
  • 919
  • 7
  • 14
1
vote
1 answer

Pivotal Web Services Spring Error

When I upload my Spring application to Pivotal Web Services, I get the two errors: ERR Caused by: org.springframework.beans.BeanInstantiationException: Failed to…
Tometoyou
  • 7,792
  • 12
  • 62
  • 108
1
vote
1 answer

Problems with samsung Pivotal web services and volley, Android application

I have a pivotal service but when accessing the developed Android application that serves but when I use the application on a Samsung, it doesn't work, the following error is out: java.net.UnknownHostException: host == null
1
vote
0 answers

How does one run and debug a WAR with Spring STS?

I'm new to Spring, but over the past month have built a nice Spring Boot app using STS 3.7 and the latest Spring Boot. Now, I have an older Spring project (I think it goes back to Spring 2.0, but it may be 2.5) and I am trying to work on it using…
Jim Archer
  • 1,337
  • 5
  • 30
  • 43
1
vote
1 answer

Unable to push my app to Pivotal Web Services using cf push

Here is my manifest.yml --- applications: - name: multi memory: 128M host: multi instances: 1 path: H:/Computer Science/Web Technology/Node.js/multi/ command: node app.js I have also created the .cfignore file with node_modules/ in…
Cyclotron3x3
  • 2,188
  • 23
  • 40
0
votes
1 answer

How to Store Certificate Files Securely in Spring Cloud Config Server?

I have a .pfx file that I use for communicating with a web service. I load it from classpath in development environment like this: application.yml my-config: certificate: classpath:/certificate/dev/mycertificate.pfx Service.java SSLContext…
0
votes
1 answer

java.lang.IllegalArgumentException: /home/vcap/app/file.jks (No such file or directory)

I am trying to deploy Springboot java application into PCF, We have 2-3 files which our application needs at run time like cert file. I have those files under resources folder but getting error file not found exception. Can anyone suggest me where…
0
votes
1 answer

CloudFoundry CLI - Get bound Credentials

Is there a way to get bound credentials from PCF CLI? For instance, I want to get database credentials. More Details: When you use services like Redis, cloudSQL, etc, in manifest.yml file, pcf binds those services and generates credentials, and the…