[JBoss JIRA] Created: (JBBUILD-381) Look into build.sh issue on linux.
by Paul Gier (JIRA)
Look into build.sh issue on linux.
----------------------------------
Key: JBBUILD-381
URL: http://jira.jboss.com/jira/browse/JBBUILD-381
Project: JBoss Build System
Issue Type: Feature Request
Components: JBossBuild
Reporter: Paul Gier
Assigned To: Paul Gier
Copied and pasted from email:
This is a long outstanding issue that affects anybody who is running
build/build.sh on linux. I believe it has been introduced by seperate
thirdparty downloads for the testsuite
The workarround that I've been using is:
rm -rf thirdparty/*
ant -f build/build.xml
Note, I run ant - not build.sh
This binds the build to my local Ant installation, which works but is of
course no good.
> It seems there is something wrong in the build: When I run
> rm -rf thirdparty/
> svn update .
> build/build.sh main I get:
>
> +++
>
> BUILD FAILED
> /home/jfclere/jbossas_head/build/build.xml:898: The following
> error
> occurred while executing this line:
> /home/jfclere/jbossas_head/testsuite/build-thirdparty.xml:39:
> Could not
> create type build due to Duplicate build
>
> Total time: 6 minutes 8 seconds
> +++
>
> A second build/build.sh main seems to work after that.
>
> Any hints?
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 1 month
[JBoss JIRA] Created: (EJBTHREE-965) EJB3 deployer config misleading
by Laszlo Borsos (JIRA)
EJB3 deployer config misleading
-------------------------------
Key: EJBTHREE-965
URL: http://jira.jboss.com/jira/browse/EJBTHREE-965
Project: EJB 3.0
Issue Type: Feature Request
Components: Documentation
Affects Versions: AS 4.2.0 GA, AS 4.2.0 CR2, AS 4.2.0 CR1
Environment: Win XP, Java 6
Reporter: Laszlo Borsos
Priority: Minor
The original ejb3.delpoyer/META-INF/jboss-service.xml contains a short InvokerLocator URL, which works fine from localhost and my home network, but not from the internet. I had serious difficulty figuring out that I have to change it completely and put an invoker tag inside the Configuration attribute to describe server bind address and client connection parameters separately.
I was trying to change firewall settings and bind addresses here and there, being in a dead end street for a long time. Please save others from this frustration, either by documentation or other defaults to this xml.
Another thing, which may be a minor bug: when the invoker is misconfigured, the client never times out.
JBoss is the best, keep up the good work!
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 1 month
[JBoss JIRA] Deleted: (JBAS-4495) Error handling in property editors for null values
by Adrian Brock (JIRA)
[ http://jira.jboss.com/jira/browse/JBAS-4495?page=all ]
Adrian Brock deleted JBAS-4495:
-------------------------------
> Error handling in property editors for null values
> --------------------------------------------------
>
> Key: JBAS-4495
> URL: http://jira.jboss.com/jira/browse/JBAS-4495
> Project: JBoss Application Server
> Issue Type: Sub-task
> Security Level: Public(Everyone can see)
> Reporter: Adrian Brock
>
> As per the parent task, the error handling for the DateEditor is not handling null values correctly.
> public void setValue(Object value)
> {
> if (value instanceof Date)
> {
> text = null;
> super.setValue(value);
> }
> else
> {
> throw new IllegalArgumentException("setValue() expected java.util.Date value, got "
> + value.getClass().getName());
> }
> }
> There needs to be an initial
> if (value == null)
> throw new IllegalArgumentException("Null value for setValue() expected java.util.Date");
> or alternatively (since the javadocs don't disallow null values)
> if (value == null)
> return null;
> The other property editors need checking for the same problem.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 1 month
[JBoss JIRA] Deleted: (JBAS-4494) Error handling in property editors for null values
by Adrian Brock (JIRA)
[ http://jira.jboss.com/jira/browse/JBAS-4494?page=all ]
Adrian Brock deleted JBAS-4494:
-------------------------------
> Error handling in property editors for null values
> --------------------------------------------------
>
> Key: JBAS-4494
> URL: http://jira.jboss.com/jira/browse/JBAS-4494
> Project: JBoss Application Server
> Issue Type: Sub-task
> Security Level: Public(Everyone can see)
> Reporter: Adrian Brock
>
> As per the parent task, the error handling for the DateEditor is not handling null values correctly.
> public void setValue(Object value)
> {
> if (value instanceof Date)
> {
> text = null;
> super.setValue(value);
> }
> else
> {
> throw new IllegalArgumentException("setValue() expected java.util.Date value, got "
> + value.getClass().getName());
> }
> }
> There needs to be an initial
> if (value == null)
> throw new IllegalArgumentException("Null value for setValue() expected java.util.Date");
> or alternatively (since the javadocs don't disallow null values)
> if (value == null)
> return null;
> The other property editors need checking for the same problem.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 1 month
[JBoss JIRA] Created: (JBAS-4495) Error handling in property editors for null values
by Adrian Brock (JIRA)
Error handling in property editors for null values
--------------------------------------------------
Key: JBAS-4495
URL: http://jira.jboss.com/jira/browse/JBAS-4495
Project: JBoss Application Server
Issue Type: Sub-task
Security Level: Public (Everyone can see)
Reporter: Adrian Brock
As per the parent task, the error handling for the DateEditor is not handling null values correctly.
public void setValue(Object value)
{
if (value instanceof Date)
{
text = null;
super.setValue(value);
}
else
{
throw new IllegalArgumentException("setValue() expected java.util.Date value, got "
+ value.getClass().getName());
}
}
There needs to be an initial
if (value == null)
throw new IllegalArgumentException("Null value for setValue() expected java.util.Date");
or alternatively (since the javadocs don't disallow null values)
if (value == null)
return null;
The other property editors need checking for the same problem.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
19 years, 1 month