Tim
|
Registered User
|
|
|
1d |
comment |
Unit testing ModalWindow’s content refresh fails while the actual functionality works as expected - what am I doing wrong? Hmm, just to eliminate any variables, have you tried UnitTesting the unaltered ModalWindow? |
|
Dec 1 |
comment |
Framework to expose a web service as a website With web site I mean generate a web site with input fields for the user to interact with the WSDL, and see the results on a web page. Starting to get further and further with Enunciate, and it seems to fit the requirements pretty nicely. Thanks for mentioning Metro, I'll look into that as well.. |
|
Dec 1 |
comment |
Framework to expose a web service as a website Thanks for replying here.. I'm going to try a bit harder again, this time using Ant instead of Maven. Turns out the maven archetype returns a different codebase from the enunciate download package, so I'm trying again with that aswell.. (So far I've been able to compile, will let you know what comes up next..) |
|
Dec 1 |
revised |
Framework to expose a web service as a website Updated question to include preliminary Enunciate findings |
|
Nov 30 |
answered | How to limit upload file size in Wicket |
|
Nov 30 |
revised |
Framework to expose a web service as a website fixed typo |
|
Nov 30 |
asked | Framework to expose a web service as a website |
|
Nov 30 |
comment |
displaying html text within a wicket element The book recommends a similar approach in filtering out any scripting before storing / displaying the input.. Other than that I can't recommend anything unfortunately.. |
|
Nov 30 |
accepted | displaying html text within a wicket element |
|
Nov 29 |
answered | The buttons are working but they are interacting with the compiler not the gui? |
|
Nov 29 |
comment |
Hibernate, aliases Why? The whole point of using Hibernate is to have it manage your ORM mapping.. Worrying about the aliases used without any explanation looks a little OCD.. ;) |
|
Nov 28 |
comment |
Preventing NaN from being persisted by Hibernate Have you looked into using Hibernate Validator's @NotNull annotation? (This might not be an option if you only want pure JPA) |
|
Nov 28 |
comment |
Unit testing ModalWindow’s content refresh fails while the actual functionality works as expected - what am I doing wrong? Ah ok, sorry I missed that.. Have you tried going around the test setup by keeping your modalwindowpanel as it is, and adding it to a MyTestPage extends WebPage? The WicketTester().startPanel does not seem to work from what you're telling me/us.. |
|
Nov 27 |
comment |
Java - is there an Inbuilt function for concatenating the Strings in a String[]? I'm all for the Apache solution, and as such it's a valuable contribution, but it's not what was asked.. it might be overkill to include a dependency for four lines of code.. |
|
Nov 27 |
comment |
Problematic Wicket RuntimeException Yup.. You were getting the "no get method defined" problem because it was assuming a ComponentPropertyModel (iirc) and was trying to read it's models from there, finding no get method for "DocumentUpload".. You can accept your own answer as an answer.. |
|
Nov 27 |
answered | Unit testing ModalWindow’s content refresh fails while the actual functionality works as expected - what am I doing wrong? |
|
Nov 27 |
answered | displaying html text within a wicket element |
|
Nov 27 |
comment |
Java - is there an Inbuilt function for concatenating the Strings in a String[]? OP is specifically asking for an "inbuilt function" [sic] |
|
Nov 24 |
comment |
Log4J: Strategies for creating Logger instances +1 For mentioning SLF4J |
|
Nov 11 |
comment |
Howto automate documentation of a REST API (Jersey Implementation) Enunciate.codehaus.org pulls the documentation from the Javadocs: it's open source and works with Jersey, so maybe you could look into that? |
|
Nov 8 |
awarded | ● Necromancer |
|
Nov 6 |
comment |
Child not finding parent pom in flat structured multi module maven build. Parent uses version 1-0, whereas the the child refers to 1.0.. (notice the difference between the dash and the dot) Or is this another typo? |
|
Nov 2 |
revised |
Hibernate foreign key mapping? Removed false word/line breaks |
|
Nov 2 |
answered | Hibernate foreign key mapping? |
|
Oct 23 |
comment |
What is the purpose of using a distinct class for each tab in Wicket? Ah no problem, it's nice to see you came back to mention this.. And granted, my answer wasn't the most detailed one.. msparer does a better job of explaining the issue to someone new to Wicket.. |
|
Oct 23 |
revised |
What is the purpose of using a distinct class for each tab in Wicket? deleted 4 characters in body |
|
Oct 21 |
revised |
Java Web Service project deployment edited tags |
|
Oct 21 |
answered | Java coding best-practices for reusing part of a query to count |
|
Oct 20 |
comment |
Java packages autoimports This looks related: dev.eclipse.org/viewcvs/index.cgi/… |
|
Oct 20 |
answered | XML Data is sorted |
|
Oct 17 |
comment |
What is the purpose of using a distinct class for each tab in Wicket? Yeah well as your tests show, you could use the same class a few times, but I'm not sure that's a very typical usecase.. Add in some more components and maybe a few form elements, and you'll see reusing the same class isnt that usefull if you want your tabs to be different.. |
|
Oct 16 |
answered | What is the purpose of using a distinct class for each tab in Wicket? |
|
Oct 16 |
comment |
Java: Finding matches between Strings I'm scared as to how you're going to (re)use this.. Are you sure you don't want to use any of the readily available software designed to align two sequences? en.wikipedia.org/wiki/Sequence_alignment_software/… |
|
Oct 14 |
comment |
How to mapping foreign key as just ID (a long) rather than the entity with Hibernate annotations. Fixed.. (15 chars) |
|
Oct 14 |
revised |
How to mapping foreign key as just ID (a long) rather than the entity with Hibernate annotations. Corrected mistakes indicated in comment.. Should have ran it through a compiler first, since it's late |
|
Oct 14 |
answered | How to mapping foreign key as just ID (a long) rather than the entity with Hibernate annotations. |
|
Oct 14 |
answered | Can I update the HTML files using Wicket and Eclipse without recompiling the classes? |
|
Oct 14 |
answered | Page Expiration in Java(Wicket) |
|
Oct 13 |
comment |
How to rate a connect four game situation in java With a highly optimized program like Fhourstones(homepages.cwi.nl/~tromp/c4/fhour.html) it would still take you around 10 minutes to solve the game from start to finish.. Performance for 8+ moves is better, but still not all that fast, especially when using a sub-optimal algorithm. |
|
Oct 9 |
revised |
Perl recursion techniques? edited tags |
|
Oct 3 |
answered | Wicket Dynamic Image URL |
|
Oct 3 |
comment |
Wicket Dynamic Image URL ListInitializer is just my implementation.. I'll expand my example into an own answer.. |
|
Oct 3 |
comment |
Wicket Dynamic Image URL And to complement this: Using an IInitializer implementing class and getSharedResources().putClassAlias(ListInitializer.class, "list"); new ListInitializer().init(this); you should be able to get around prepending the whole classpath for you image url. |
|
Oct 1 |
comment |
Catching webservice exception with CXF: NoClassDefFoundError: SOAPFaultBuilder Thanks, adding the cxf dependency did the trick! Never got around to adding cxf as a dependency, as the code seemed to work without it.. Silly me. |
|
Sep 30 |
comment |
Looking for a college project With a background in XMPP, have you looked into Google Wave yet? |
|
Sep 30 |
comment |
Catching webservice exception with CXF: NoClassDefFoundError: SOAPFaultBuilder Hmm interesting (well spotted!).. I'll look into this first thing tomorrow morning! |
|
Sep 30 |
comment |
Catching webservice exception with CXF: NoClassDefFoundError: SOAPFaultBuilder No luck it seems: still the same stacktrace.. Is there anything I need to exclude using Maven perhaps? |
|
Sep 30 |
comment |
Catching webservice exception with CXF: NoClassDefFoundError: SOAPFaultBuilder Hmm, thanks. I missed that note, and have now added com.sun.xml.bind jaxb-impl & jaxb-xjc in maven.. But so far no luck / change.. I'll work in this some more.. |
|
Sep 30 |
revised |
Catching webservice exception with CXF: NoClassDefFoundError: SOAPFaultBuilder Editted title to more strongly indicate CXF link |
|
Sep 29 |
revised |
Catching webservice exception with CXF: NoClassDefFoundError: SOAPFaultBuilder Title fix |
