| bio | website | |
|---|---|---|
| location | Nigeria | |
| age | 21 | |
| visits | member for | 2 years, 3 months |
| seen | May 11 at 21:12 | |
| stats | profile views | 39 |
Software developer, predominantly Java; a bit of C# too. Student, lover of the open source ideology, Oracle Certified Master Java SE Developer, willing to learn, fun to be with, very open to corrections :)
|
Apr 20 |
asked | NullPointer From Inside AppEngine |
|
Apr 17 |
comment |
How to redirect in web.xml Same result. Question updated. |
|
Apr 17 |
revised |
How to redirect in web.xml added 666 characters in body |
|
Apr 17 |
comment |
How to redirect in web.xml relative addressing, e.g <link href="d.css" rel="stylesheet" />
The reason why I mapped it that way is that I want my users to be able to just type my_domain/mobile in their browser instead of my_domain/mobile/index.jsp |
|
Apr 17 |
comment |
How to redirect in web.xml<servlet-mapping>
<servlet-name>MobileIndex</servlet-name>
<url-pattern>/mobile</url-pattern>
</servlet-mapping>
Where MobileIndex is also declared in web.xml as the servlet name pointed at the /mobile/index.jsp file.
When dis didnt work, I even pointed MobileIndex at another JSP whose only purpose was to do a response.sendRedirect("/mobile/index.jsp"); but dat didnt work either. I then changed d redirecting JSP 2 a standard servlet s accomplish d same purpose but it also didnt work as expected. They all redirected but my CSS & JS files stil couldnt b located. |
|
Apr 16 |
comment |
How to implement EndCursors in GAE/J - JDO Cool. I understand what you mean. But now given that I have more than 40,000 entities (and increasing rapidly), I'm not sure it'll be efficient to read all up (in ascending order) until I reach the bottom 20 and then save the cursor. Both runtime and cost efficiency would be affected and I don't know if it'll be possible to pull 100,000 entities (just to obtain a cursor for reuse) in the 30-second timeframe imposed by AppEngine. Or am I missing something? |
|
Apr 16 |
asked | How to redirect in web.xml |
|
Apr 15 |
revised |
How to implement EndCursors in GAE/J - JDO added 208 characters in body |
|
Apr 15 |
comment |
How to implement EndCursors in GAE/J - JDO Imagine there are 1000 entities in the store ordered by timestamp. Then I fetched the first 20. After then, 7 new entities got created. How do I retrieve just those new 7 in a query? Manipulating the ORDER obviously won't solve this. |
|
Apr 14 |
asked | How to implement EndCursors in GAE/J - JDO |
|
Apr 13 |
comment |
Is there any way to download Text Search to localhost dev server? your toolbelt lacks some very important tools |
|
Apr 13 |
comment |
Delete Indexed Full-Text Search in Google App Engine I guess I'm just gonna go with the renaming thing. |
|
Apr 10 |
awarded | Popular Question |
|
Apr 9 |
comment |
Dialog Box not inheriting Main WIndow's metro style (Elysium SDK) I was hoping there'll be a way around this without going through the hassle. I guess WPF (or Elysium) is not yet as mature as I thought. Thanks for the help! |
|
Apr 6 |
comment |
How do I get an animated gif to work in WPF? Hi guys, I'm new in the C#ville, how do I change the actual gif file in the control dynamically and have the new gif painted on screen? |
|
Apr 6 |
comment |
How do I get an animated gif to work in WPF? Hi guys, I'm new in the C#ville, how do I change the actual gif file in the control directly and have the new gif painted on screen? |
|
Apr 6 |
asked | Dialog Box not inheriting Main WIndow's metro style (Elysium SDK) |
|
Mar 30 |
comment |
Problems Serializing Object Thats brilliant then; you mean I can serialize a dictionary with the Binary serializer, right? Who care's about XML anyway? I just need to get my object persisted and retrieved. |
|
Mar 30 |
comment |
Problems Serializing Object serialization of a Dictionary<> is not supported by .net Are you kidding me??? I even found out that it can't serialize references specified as interface types! WTH??? Now I think its accurate to say that .NET is the worst platform I've ever programmed on! I'll never use it for anything asides WindowsPhone again! Java excels by far! |
|
Mar 30 |
comment |
Problems Serializing Object The error says it had problems reflecting the object, I think the reflection implementation in the .NET platform should be independent of the XmlSerializer. Are you sure its only the XmlSerializer that can't persist Dictionary or all serializers? |