C Broussard

Greenhorn
+ Follow
since Jun 18, 2004
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by C Broussard

I have fixed the issue. When I deleted the webservice classes generated from the wsdl file I missed one of the stub classes. So when it regenerated the classes it didn't rebuild that class since it was already in the location.

if anybody searches on this error hopefully this'll help them save a couple hours.

www.binaryfrost.com
18 years ago
I was hoping somebody could provide some input to this exception. I've built a webservice and am getting an exception on the response back then it's trying to deserialize the xml back into java.



Everything seems to work until the client gets the response back and it tries to convert it back.

Anybody have any ideas?

Thanks,

Chris
18 years ago
i just started using hostik.

www.binaryfrost.com
18 years ago
JSP
google for imagemagick

www.binaryfrost.com
18 years ago
in web.xml

<error-page>
<error-code>404</error-code>
<location>/index.html</location>
</error-page>


www.binaryfrost.com
18 years ago
JSP
i use eclipse w/ the myeclipseide.com plugin.. eclipse is free, and my eclipse is like 30/year for a subscription.. well worth it..

www.binaryfrost.com
18 years ago
JSP
i usually just do "\r\n"

not sure if switching works it.. you can write a quick static main and test it though...

public class test{

public static void main(String[] args){
System.out.print(" 1) this is a \r\n test ");
System.out.print(" 2) this is a \n\r test ");
System.out.print(" 3) this is a \n test ");
System.out.print(" 4) this is a \r test ");

}
}

just compile and run.


www.binaryfrost.com
18 years ago
i've never ran across a machine that didn't have one installed


www.binaryfrost.com
18 years ago
if you're running jboss they have a note on their download page

NOTE: EJB 3.0 can be installed by choosing "Run Installer" or by downloading and running jboss-4.0.3SP1-installer.jar.

hope that helps,

www.binaryfrost.com
if you're talking about the output.log file, what operating system are you running... if it's linux or a unix, i'd probably put it w/ the rest of the log files in /var/log.

if it's windows... noooooooo idea.

www.binaryfrost.com
18 years ago
JSP
well what you're talking about is checked & unchecked exceptions.

unchecked exceptions should extend RuntimeException (they flow all the way up to the top of the stack unless you specifically catch it and do something w/ it) this is what the springframework uses.


checked exceptions are caught and handled with.

it is always preferred to do catch them and keep the original message

}catch(Exception e){
throw new BusinessLogicException(e);
}

... safe rule of thumb is to have business logic exceptions checked, and handled for whatever reason or however.. and system problems (sql, dataccess, etc unchecked).

hope that helps


www.binaryfrost.com
18 years ago
When you say locally chain constructors, are you talking about overriding constructor signatures?


like

public class someobject{
int someobject_value = 0;
public someobject(){
someobject(1);
}
public someobject(int i){
someobject_value = i;
}
}


if this is what you're talking about then yes, this is perfectly
acceptable.

hope that helped.

www.binaryfrost.com
18 years ago
in your development j2ee container, you already have an ear deployed as /context ... so you need to remove this ear before you deploy the new one.

hope this helps.. also if you need more help you'll need to most likely to provide the ide & the j2ee container you're muck'n with.


www.binaryfrost.com
18 years ago
JSP
just for clarification you mean System.getProperty("") equivalent for jsp or something else?

I'm not sure if one exists, but you could easily code up a customtag for that worst case.

www.binaryfrost.com
18 years ago
JSP
obviously adwords is a massive application... there's many faucets... are you talking about the user administration side, the AI that matches up ads to page content, or the javascript implementation to display the ads?

www.binaryfrost.com
18 years ago
JSP