rcreswick

2,566
Reputation
141 views

Registered User

Name rcreswick
Member for 1 year
Seen Nov 13 at 23:12
Website
Location Seattle, WA
Age 29
I work in software development, prototyping, and artificial intelligence research in Seattle, WA.
Nov
15
awarded  Nice Question
Nov
13
accepted Buliding a WAR that uses Axis2 + Rampart for Tomcat
Nov
13
answered Buliding a WAR that uses Axis2 + Rampart for Tomcat
Nov
12
comment Buliding a WAR that uses Axis2 + Rampart for Tomcat
There is no static WSDL on the server-side. The client-side uses java2wsdl to get the WSDL, which is then used as input to wsdl2java to create the classes needed for the client. As far as I know, the server-side axis stuff auto-generates WSDL from the service classes at runtime. I'm trying to make an aar right now, and drop that into an axis+rampart install that's in tomcat. I'll give your EAR suggestion a shot if the aar approach doesn't work. Thanks!
Nov
11
asked Buliding a WAR that uses Axis2 + Rampart for Tomcat
Nov
11
comment Does Apache Rampart work with maven?
I'm having similar problems... our project doesn't copy the mar files into the war's lib directory, which prevents jetty:run-war from working.
Nov
6
comment java.lang.NoClassDefFoundError: sun/awt/X11GraphicsEnvironment issuses faced while running our applet based app on linux
Great examples! I didn't know about that flag -- thanks for the informative post.
Nov
6
comment Is there a type-safe Java implementation of ‘reduce’?
I think there is going to be a companion library for Google Collections that provides functional language tools like this, but for now, this is the best answer I've found.
Nov
6
comment Using maven to build/deploy/use projects with JNI.
To clarify for anyone reading this: the CodeHaus link describes a method that does not require setting LD_LIBRARY_PATH, or any other environment variables. The resulting jar contains all the compiled libraries, and calling code doesn't need to know anything about JNI.
Nov
6
comment Using maven to build/deploy/use projects with JNI.
Thanks! (I know, this is very, very late) The codehaus link works great.
Nov
6
revised Project design / FS layout for large django projects
fixed underscores around init
Nov
6
comment What are the java platform defaults?
Thanks, That, combined with this list: mgrand.home.mindspring.com/java-system-properties… is the best I've found.
Nov
6
comment Implementing IntelliSense-like behavior in custom editors for domain-specific languages
This was a work project, and I was pulled off to work on another project, so my efforts on this (sortof) died off. Other than that, I think you (Alex) and I are interested in different aspects of 'intellisense'. Rather than working on the actual user interface, I was more concerned with the design behind a general-purpose auto-complete system. (The UI would come later.)
Oct
21
awarded  Popular Question
Oct
9
awarded  Nice Question
Oct
9
awarded  Popular Question
Sep
9
comment Best way to incorporate spell checkers with a build process
ah, very good point!
Sep
8
accepted Unmarshaling xml with html entities using JAXB
Sep
8
accepted How do you enable anti aliasing in arbitrary Java apps?
Sep
8
accepted Are there any static analysis tools for Python?
Sep
8
asked What are the java platform defaults?
Aug
29
awarded  Yearling
Aug
20
awarded  Nice Answer
Jul
28
awarded  Popular Question
Jul
24
comment Text detection / location libraries
not a captcha-breaker, I swear! :) Some use cases: identifying place names from google street view images (to pair pictures of a company with search results), license plate identification, finding (and reading) signs for visually-impaired pedestrians, etc...
Jul
14
awarded  Taxonomist
Jul
6
awarded  Notable Question
Jul
2
awarded  Popular Question
Jun
24
comment Unmarshaling xml with html entities using JAXB
w3.org returned an error code when JAXB tried to retrieve the DTD directly -- even though the url worked in a browser. I surmised that w3.org is blocking access to dtds/etc based on user agents to stop people from accessing their servers from APIs. (w3.org posted a plea for people to stop writing apps that do that a year or so ago: w3.org/blog/systeam/… ) I'm not sure what you mean by "what happened with a remove DTD document?".
Jun
23
comment Unmarshaling xml with html entities using JAXB
Since Jaxb abstracts away from the XML parser, I think it should provide some means to fix things that need to be managed at the parser level (maybe just by using dependency injection to supply a different parser). Then again, I was giving JAXB invalid input -- so what did I expect? ;)
Jun
23
answered Unmarshaling xml with html entities using JAXB
Jun
23
revised Unmarshaling xml with html entities using JAXB
added 251 characters in body
Jun
22
asked Unmarshaling xml with html entities using JAXB
Jun
22
comment Running Eclipse Junit Plugin tests with Junit 4.4 or newer — why aren’t tests detected?
ah, I (finally) figured out how to make this community editable... I don't have time to evaluate the suggestions below anymore, so if someone can, at least they can put that info into the question proper now (and if needed, I can award the accepted answer--I'm not sure how community questions work wrt. accepted answers)
Jun
22
revised Running Eclipse Junit Plugin tests with Junit 4.4 or newer — why aren’t tests detected?
made a community wiki question.