Resolved.
I moved the dual repeater from C4 to C5 and put the single repeater from C5 to C4 so both dual repeaters were on the right (C3,C5) and the singles were on the left (C2,C4). Not what the documentation from IBM says but I found a drawing that shows this working config on IBM's site. Go...
I'm installing a 7031-D24 fully populated with disks on a p570. I have two single repeater cards installed in C2 and C5 and two dual repeater cards installed in C3 and C4. I have a jumper cable from C2 to C3 then a cable from C3 to a scsi card. I also have one from C4 to C5 then a cable from C4...
sorry i didn't think before i posted, the filename is asdf.class in the directory /.../foo/bar/. Eventually i'll put it all into a jar but I wanted to see if it was possible to call class values set in a servlet from a jsp page. So far no luck.
What i'm really trying to do is have a servlet...
ugh, i hate typo's. thanks ron that plus setting my CLASSPATH=webapps/site/WEB-INF/classes worked. Sadly I don't think this is going to work for me. I was hoping it init the class in the servlet and have it set for the entire session so i can call the class and values from jsp.
example...
I have a simple class asdf in package foo.bar:
package foo.bar;
public class asdf
{
private String val;
public asdf()
{
val = "";
}
public void setValue(String v)
{
val = v;
}
public String getValue()
{
return val;
}
}
I'm...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.