Version 7 of the JBoss Application Server
1
vote
0answers
19 views
JAX-WS web-service defined by WSDL with abstract global elements
Here is a WSDL containing abstract global element named paramName:
<wsdl:definitions name="AdapterSessionManagerService" targetNamespace="http://companyname.org/" ...
0
votes
0answers
5 views
JBoss 7 deployment - file/folder filter/exclusion
I have a web app that make use of two javascript frameworks (extjs and arcgis_js api).
They are a lot greater than my app (exploded war folder):
my app ~4Mb
extjs+arcgis ~100Mb
They are not ...
0
votes
1answer
11 views
How can I log the origin of my Hibernate queries?
I'm trying to gather some statistics on my hibernate/JPA usage. I've deployed Jboss-AS 7.1.1.Final with Hibernate-4.1.8, which is used in a JSF2 project.
I know I can get overall stats via ...
0
votes
0answers
11 views
JBoss salted DatabaseServerLoginModule on AS 7.1
I'm trying to set up a secure login for my application.
To achieve this I wanted to salt my hash and maybe use an iteration count.
The official forums don't seem to answer that so I was wondering how ...
0
votes
0answers
49 views
Received error response from long request web service
We have the following problem.
There is an application with web services (client) on Apache CXF and under JBoss AS7.
There are 3 scenarios:
I am sending a request through our application with a ...
0
votes
1answer
16 views
Missing Web Application directory in JBoss 7.1.1
When I deploy my application from Eclipse IDE to JBoss 7.1.1 application server, I found myapp.war directory under <JBOSS_HOME\standalone\deployments>directory.
But when I deploy myppa.war ...
0
votes
0answers
16 views
Jboss 7 can't find jar files which under deployments\project\WEB-INF\lib folder, ClassNotFoundException throwed
I experienced some weird situation. when i run my web project on Jboss 7.1.1 final *(spring 3.1.1, spring MVC 3.1.1, hibernate 4.1, using maven dependency), everything is running ok. but when i add ...
-2
votes
1answer
35 views
PHP, Android Jboss Architecture? [closed]
I'm developing an Android application,In fact i use PHP files to communicate with MYSQL database.
all that is under eclipse.
I start with creating an Android project, then i create an Activity and a ...
0
votes
0answers
32 views
how to bootstrap Spring in a JbossWS-CXF web service deployed in jboss AS 7.2
TLDR at the bottom:
As per the JBossWS-cxf user guide, for a web service, the web.xml should contain the following
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
...
0
votes
1answer
22 views
JBoss deployment credetials via maven
gCurrently trying to make deployment of my web-project (EAR packed) into jboss, and met next problem:
settings.xml:
<settings>
...
<servers>
<server>
...
1
vote
1answer
43 views
SOAP webservice: Multiple references to the same object in SOAP result
I'm building a SOAP service to be used in JBoss 7.1. Until now I'm only using annotations and no XML files of generated files. Both server and client work fine for POJO's.
However, I have objects ...
0
votes
0answers
7 views
Default post body encoding in jboss 7
How could i specify default encoding for post bodies, not just uri?
I'm handling requests with content-type without charset (application/x-www-form-urlencoded), and body is in UTF-8. But jboss uses ...
0
votes
0answers
9 views
Deploying to remote JBoss7.x.x server using cargo and keybased authentication [closed]
i want to deploy to a remote jboss7.x.x server using cargo and keybased authentication.I have tried looking for any references online but failed.
could you have tried this before? ;) i would really ...
0
votes
1answer
18 views
Access EJB from different WAR in JBoss AS via injection
My Project structure is as follows
JBoss AS 7.1.3.Final-redhat-4
A war VWeb.war which contains an EJB , when VWeb is deployed I get the following
...
0
votes
2answers
20 views
Persisting entities
I am just getting started with EJB development, so I created a test system that consists of the following three projects:
Actually, the HelloWorldBeanRemote interface does also exist in the EJBTest ...
0
votes
2answers
25 views
JBoss connection configuration for LDAP
I want to use JBoss AS 7.1 server's connection pooling to configure the LDAP server. I will be writing a java program to connect to LDAP server configured in the
above step and retrieve the user ...
0
votes
1answer
27 views
Migrate messaging security from Glassfish to JBoss 7
I am new to JBoss 7. I have already done Messaging Security in Glassfish for my web application. I would like to move my application to JBoss 7.
Could anyone guide me to achieve Messaging security ...
1
vote
0answers
10 views
Jboss AS7 - module deployment - java.lang.IllegalAccessError
Please let me know why do I get the below error when deploying in the Jboss AS7. This error thrown when deploying the .ear and I have used modules. However, when I deploy the ear with the libraries in ...
0
votes
0answers
32 views
missing dependency when i deploy my application with ldap config in jboss7
When I tried to configure my ldap into my ear application am getting the below error in server.log:
18:21:22,740 INFO [org.jboss.as.osgi] (MSC service thread 1-1) JBAS011907: Register module: ...
0
votes
0answers
14 views
Load the image from outside of webcontext in jsf in JBoss AS
I need to load an image that is outside of my project's webcontext to use it in primefaces imageCropper component.
I found this thread: load the image from outside of webcontext in jsf
I got really ...
0
votes
1answer
21 views
How can I map a server group to a common root?
I would like to run a JBoss 7.1.1.Final in domain mode. The server groups should be accessible separately, under a common root URL:
myserver/server-group-1/Application1
...
0
votes
0answers
14 views
JBOSS 7 Connection using IKVM
I am trying to connect jboss-as-7.1.1.Final using following :
IKVM 7.2.4630.5
JBossClient.dll (Converted from .jar using IKVMC)
.Net FrameWork 4.0
But not able to connect it as it throws the ...
0
votes
0answers
21 views
calling a javascript from a4j:jsFunction in richfaces 3.3.3
i have a javascript which i put in the extraHeaderContent:
<ui:define name="extraHeaderContent">
</script> -->
<script type="text/javascript">
function ...
2
votes
1answer
33 views
Configure JDBC driver in JBoss 7 - as a deployment OR as a module?
As mentioned in the article https://community.jboss.org/wiki/DataSourceConfigurationInAS7 JBoss 7 provides 2 main ways to configure a data source.
What is the BEST practice of configuring a data ...
0
votes
1answer
26 views
Attempted to inject an HttpServletRequest before it has been initialized
I have an ear project generated using maven javaee6 artifact and have the following dependencies:
ejb/pom.xml
-seam-security
--solder-xxx
war/pom.xml
-ejb
*Then I excluded seam-security
...
0
votes
1answer
31 views
how to change port of JAX-RS services?
I code a Java EE 6 with modular JAX-RS services on jboss 7.0, spring.
I find the web service port collision as jboss use port 8080 and the web service also use the port 8080. I want change my JAX-RS ...
0
votes
0answers
30 views
How to return a List of objects in JSON when using JAX-RS
I have it working... kind of. Except when the Json is printed out, it prints out a lot of duplicate code. I suspect it has something to do with the way its marshalled. In any case, this is my code:
...
2
votes
0answers
25 views
Unexpected ArrayIndexOutOfBoundsException in Hibernate UUIDTypeDescriptor$ToBytesTransformer.parse() method
I'm using Java 6 and hibernate-core-4.0.0.final.jar with hibernate-commons-annotations-4.0.1.Final.jar and hibernate-jpa-2.0-api-1.0.1.Final.jar
I have an entity with a java.util.UUID column as PK. ...
1
vote
1answer
46 views
Issue with ear deployment on jboss-as-7.1.1.Final
I am deploying ear on jboss-as-7, it has two ejb jars and one war file. Below is the structure of application.xml file.
<module>
<ejb>ejb1.jar</ejb>
</module>
...
0
votes
1answer
14 views
Need to integrate JBoss 7.1.1 to MyEclipse 8.6 how can i do it?
Need to integrate JBoss 7.1.1 to MyEclipse 8.5 any ideas how can i doit cause i can't see JBoss 7.x.x for this MyEclipse version. Thanks in advance!
-1
votes
1answer
32 views
Session replication on EAP JBOSS 6.0
I am working on Struts 2 framework with EAP Jboss 6. My project session variables were stored and retrieved using 'HTTP Session Map'. When I moved on to the Domain mode of Jboss with Clustering my ...
0
votes
0answers
9 views
Resource Adapters waiting for system variable to set before getting deployed. Is it a feature?
We are using JBoss 7.1.1 with activemq and have configure activemq using resource adaptor as explained here
In ra.xml I am using configuration propery ${BROKER_URL} which we set from code
...
0
votes
0answers
21 views
Issue accessing SOAP Header
I have to access the Soap Header in the WebService Request and perform a functionality based on the information in header. I am running into the below issues
I have a SOAPHandler written but when I ...
0
votes
0answers
18 views
Eclipse WTP + Maven : how to rename war file for JBoss
I have setup a Web project with Eclipse Juno, Maven and JBoss 7.
I can't succeed in renaming my war file for eclipse "live" deployment (note that doing a mvn outside eclipse produces the good war ...
0
votes
1answer
42 views
Error using primefaces 3.5 LazyDataModel in Jboss 7.1.3
First of all here's my setup:
1.) jboss7.1.3
2.) maven javaee6 generated project
3.) ear, war, ejb project format
4.) java 7
I'm trying to create a DataTable component using LazyDataModel as the ...
0
votes
1answer
47 views
Navigation Rule/Case problems
I created simple dynamic web project using Eclipse Juno, JSF and PrimeFaces (OS Debian). I deployed my application on JBoss AS 7.1 server (standalone). There are free pages: index, add and contact. My ...
1
vote
1answer
34 views
need to retrieve windows logged in user in Jboss
My application was running Jboss 4.2.3 GA and i enabled the tomcatauthentication in server.xml. I also enabled integrated windows authentication on IIS. By doing these steps, i was able to retrieve ...
0
votes
0answers
26 views
Jboss 7 root-logger level is ignored
I have the following logging configuration in Jboss 7.1.3 standalone.xml:
<subsystem xmlns="urn:jboss:domain:logging:1.1">
<console-handler name="CONSOLE">
...
1
vote
1answer
126 views
Deploying grails application on Jboss 7.1.2 with provided dependencies
I want to deploy multiple grails applications on Jboss. Because they all use same grails version (2.1.1) I want to exclude common jars from war file and provide them via Jboss module. For starters, ...
0
votes
2answers
32 views
How to execute a jar file on jboss7 startup?
I have a simple java class which displays "waiting" text on execution , in "TMSCore" java project.
package com.stock.bo;
public class example {
/**
* @param args
*/
...
0
votes
0answers
19 views
Configuring JNDI name for LDAP in JBOSS 7
can anyone give me a proper explanation of how to configure JNDI name for LDAP in jboss 7.1.I have already configured the realm and do not have any authentication or authorization issue.
I just ...
0
votes
0answers
27 views
Jboss Web (Running PHP script in jboss ) cannot find SAPI class error
I am facing a problem that i want to run php script inside jboss AS 7.1.1 for that :
i installed APR and AJP into the jboss
now its states that
ERROR ...
0
votes
0answers
37 views
How to check failed module during deployment - Maven multi module
I am deploying application to Jboss AS 7.1.1.Final using Maven multi module configuration. The 'jboss-as-maven-plugin' plugin with version 7.4.Final is used to deploy to AS using remote deployment. I ...
0
votes
0answers
36 views
Access properties in soap envelope from inbound and outbound messages using java handlers
I'm currently experimenting with web services in java and already have them working using jboss server 7.1. Now i'm trying to use handlers to intercept the messages so i can add a security layer ...
0
votes
1answer
32 views
How to get rid of Java EE application client by using another technology?
I have Java EE application client which accesses remote EJBs. The reason for its existence is because we have some legacy system which requires a permanent TCP connection opened, and this is against ...
1
vote
1answer
41 views
My web project does not work on JBoss 7 when deployed by maven
I have tried for some hours to get one of my first servlets working on my JBoss 7.1.1 instance.
I am using Maven to compile and deploy the project as an EAR modul where the WAR file is a part of. I ...
0
votes
1answer
41 views
Many To Many relationship annotation in Jboss 7.1.1 using Hibernate?
I've been trying to get the @ManyToMany association between my User class and Event class. I have had no such luck. I need an intermediary table to be created to be able to associate an Event with any ...
0
votes
0answers
17 views
Getting Proxy object instead of Bean object JNDI lookup JBOSS 7.1
I am Getting Proxy object instead of Bean object while JNDI lookup in JBoss 7.1 .
InitialContext ctx = new InitialContext();
Object ref = ...
2
votes
1answer
59 views
How to access detailed Java EE application deployment status on JBboss AS 7?
Im trying to write a small "watchdog" *.war that monitors the deployment state of my (much larger) *.ear on jboss 7.1.3
How do I get at the exact deployment state of the *.ear?
I know I can do this ...
0
votes
1answer
33 views
Parameters Process Failed when I select a
Hi I am doing something really simple but it is not working I am using jboss and jsf 2.0.
So I am trying to create a form that shows some fields according to a selection from the user of dropdown menu ...





