Questions tagged [wildfly-8]

WildFly 8 is a release in a series of JBoss open-source application server offerings and an implementation of the Java Enterprise Edition 7 Platform specifications.

About

WildFly 8 was the first release of JBoss open-source application server offerings to bear the brand "WildFly". WildFly 8 is designed to be an exceptionally fast, lightweight and powerful implementation of the Java Enterprise Edition 7 Platform specifications. The state-of-the-art architecture built on the Modular Service Container enables services on-demand when your application requires them.

Links

1036 questions
4
votes
1 answer

Auto identify mime types in wildfly10

To suppport all UTF-8 characters we have added in Servlet filter servletResponse.setContentType("text/html; charset=" + "UTF-8"); servletRequest.setCharacterEncoding(servletResponse.getCharacterEncoding()); because of this it sets the content type…
happy
  • 2,550
  • 17
  • 64
  • 109
4
votes
1 answer

How to group different cache in a cluster

Assume there are four instances of WildFly 8 running on two machines within the same network. Let's name them A, B, C and D. A, B runs on machine1 and C, D on machine2. In case of UDP clustering it's working fine with multicast address. Using TCP I…
johnsi george
  • 208
  • 3
  • 12
4
votes
0 answers

Resteasy file upload minimal file size at 16KB

Background I have a simple html form:
Solano
  • 550
  • 2
  • 9
4
votes
1 answer

Change static contents (html,css,JS) without server restart Wildfly 8

Static contents such as HTML, CSS, JavaScript changes does not effect on page refresh. It needs a server - restart for the changes to apply. But interestingly, only for the first two times the changes are applied on page reload. But from the third…
Bala Krishnan
  • 374
  • 3
  • 18
4
votes
2 answers

Wildfly CLI add/update system property batch and if-else issues

I tested several variations of adding a system property in Wildfly (version 8.2.1) standalone.xml via the Wildfly Maven Plugin. Basically, it adds a system property if it does not exists, and changes its value if it does. Ideally, I want a CLI…
jersey-city-ninja
  • 1,038
  • 11
  • 23
4
votes
1 answer

SSL redirection from Apache to Wildfly

I have two projects running on Wildfly-8 and I have two SSL certificates for each of them and one IP. I figured out that I should have one IP for one SSL certificate. But I needed to use these two SSL for one IP. I couldn't find a way to do it…
xxlali
  • 996
  • 2
  • 15
  • 43
4
votes
1 answer

How to configure WildFly 8.2.0 logging to show JUST the application on debug level

Sorry for this very basic question, but I spent a lot of time and research on that and can't get it to work :-/ What I want: Show all loggings on INFO level, but my application on DEBUG level. My setup and understanding so far is: In my WildFly I…
olkoza
  • 715
  • 2
  • 17
  • 35
4
votes
1 answer

What is default value for http parameters MAX_COUNT wildfly?

We have upgraded jboss to wildfly , in older version we were facing some issue like this Maximum number of parameter passed in a post. In older version of jboss we got this error message 2015-02-10 20:04:34,582 ERROR…
prem
  • 843
  • 1
  • 8
  • 21
4
votes
1 answer

java.lang.ClassNotFoundException: javax.net.ssl.SSLSocketFactory When using rest easy with JAVA 8 on WildFly8.2.0

I am using rest easy for getting and posting the data from a third party URL, When I am calling the get service using the below code I am getting the ClassNotFoundException "javax.net.ssl.SSLSocketFactory" final ClientRequest request =…
Sreenath Reddy
  • 390
  • 8
  • 29
4
votes
1 answer

JSF svg use xlink

I have to following code in html5 and i want to embed it in my jsf 2 application but the tag simply doesn´t work: Anybody an idea?
perotom
  • 851
  • 13
  • 33
4
votes
0 answers

Wildfly/JBoss deployment startup order

We use a service orientated architecture approach where we have some core services used by other services. On startup, our services usually load up a cache of data from the core services so that it's available when a request comes in or scheduled…
Jon Onstott
  • 13,499
  • 16
  • 80
  • 133
4
votes
1 answer

How can i run wildfly 8 in port 80

How can i run wildfly 8.2.1 in port 80? I can run wildfly in different ports by changing the offset as below. But unable…
Vipin CP
  • 3,642
  • 3
  • 33
  • 55
4
votes
4 answers

how to download war files from wildfly 8

Wildfly 8: Where are the deployed war files located on the server file system? How do I download them? I tried using the JBoss CLI as well as the Web Interface.
anon
  • 1,071
  • 2
  • 8
  • 19
4
votes
2 answers

How to add module to Wildfly using CLI

I'm trying to create a Wildfly docker image with a postgres datasource. When I build the dockerfile it always fails with Permission Denied when I try to install the postgres module. My dockerfile looks look this: FROM wildflyext/wildfly-camel RUN…
Magick
  • 4,603
  • 22
  • 66
  • 103
4
votes
1 answer

How to get open HTTP connections count in Wildfly 8.2.0 using JMX?

I need to get some metrics from Wildfly/Undertow, specifically open/max HTTP connections and used threads and correlate it with open database connection count, which I am able to read using…
Felix
  • 3,999
  • 3
  • 42
  • 66