Sunny Gibbony

Ranch Hand
+ Follow
since May 14, 2008
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Sunny Gibbony

Originally posted by Eric Pascarello:
margin-top or maring-bottom

Eric



Eric,

I forgot to mention that the divs are side by side using the float: left attribute. Would that change your response?
I would like to know how to add spacing between two divs that are under a parent div.

To help visualize, you would have one big box. Inside that are two smaller boxes (divs) that I have and now I would like to add some space between the two child divs.



Thanks
Yes that is correct.

it was trying to use java 1.3 instead of java 1.5!
16 years ago
Yes there are alot of perivous posts about this. It looks like maybe the JVM is older than the compiler. What is the command/process to check the version of the JVM or JRE?
16 years ago
I am getting this error when I run my master.bat file. I've checked the jdk class path and it looks fine. Has anyone seen this before?


run specialties load .bat BEGIN...
Exception in thread "main" java.lang.UnsupportedClassVersionError: example/SpecialLoader (Unsupported major.minor version 49.0)
at java.lang.ClassLoader.defineClass0(Native Method)
at java.lang.ClassLoader.defineClass(Unknown Source)
at java.security.SecureClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.access$100(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClassInternal(Unknown Source)
run specialties load .bat COMPLETED

run zone inspection load .bat BEGIN...
Exception in thread "main" java.lang.UnsupportedClassVersionError: example/InspectionLoader (Unsupported major.minor version 49.0)
at java.lang.ClassLoader.defineClass0(Native Method)
at java.lang.ClassLoader.defineClass(Unknown Source)
at java.security.SecureClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.defineClass(Unknown Source)
at java.net.URLClassLoader.access$100(Unknown Source)
at java.net.URLClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClassInternal(Unknown Source)
run zone inspection load .bat COMPLETED

run all .bat files COMPLETED
Press 'Enter' to exit...
16 years ago
I am working on a previous system that has jboss but it's not installed on the default location like C:\ or root.

Is there a key file that all Jboss versions come with so I can do a search for it or even if there's a registry entity that I could search for?
16 years ago
Hello, just wanted to verify how this method works.

Is the size array 'byte' is 4096 slots big?




private String slurp (InputStream in) {
try {
StringBuffer out = new StringBuffer();
byte[] b = new byte[4096];
for (int n; (n = in.read(b)) != -1 ;) {
out.append(new String(b, 0, n));
}
return out.toString();

}
catch(Exception e) {
e.printStackTrace();
return null;
}
}
[edit]Disable smilies CR[/edit]
[ June 15, 2008: Message edited by: Campbell Ritchie ]
16 years ago
I started out using Netbeans with Jboss (includes Tomcat) and it's able to hot deploy. But I am also using EJBs in my app.
When adding a Jboss Application Server using the built in Netbeans Add Sever button. Is there a way to change the default port number from 8080 to 8180 I saw the port number through the add jboss wizard but it wouldn't let me change it.
now i just noticed this posting has a yellow folder next to it.
16 years ago
I just wanted to know, for example in the Struts forum there are two postings with yellow folders. What does that mean and what makes a posting elgible to receive a yellow folder?

Thanks
16 years ago
HI

Originally posted by Paul Sturrock:
Not an ORM question. I'll move this...



So where did the post get moved to? Just curious.

Ashlon
16 years ago
Yes this is very helpful! Thanks for your knowledge.

I think my issue was that I was looking at the wrong struts-config file as the project has many sub components with their own config file.
16 years ago
Struts in Action
Manning
ISBN 1-930110-50-2
16 years ago