is there a way to view the console output as we are running an iphone App on the device?
If not directly, is there an app on the App store which lets you view the log after the App has finished running?
Hi,
Is there any configuration for JBoss Application Server's Log configuration
where in the logs get deleted automatically if the log size exceeds some threshold or if it is older than a certain date ?
Is there a resteasy version that runs on jdk 5 enviroment? I tried to compile my code in java 5 but it didnot work saying version problem. Is there a solution here?
type Exception report
message
description The server encountered an
internal error () that prevented it
from fulfilling this request.
exception
…
Hi, I have a site thats served in 2 flavours, English and French. Here's some code
app/views/user/register.html.erb
-----------------
<% form_for .....>
<%= f.text_field :first_name %>
<% end %>
app/models/user.rb
------------------
class User < ActiveRecord::Base
validates_presence_of :first_name…
I get ' top tweets ' from twitter as an RSS feed in xml format .
There is a guid field in that xml format.
There is a long 11 digit number at the end of guid field , is it unique for every tweet ?
php
$to = "jijodasgupta@gmail.com";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";
if (mail($to, $subject, $body)) {
echo("pMessage successfully sent!/p");
} else {
echo("pMessage delivery failed.../p");
}
wrote a basic php sendmail code that but it gives me the following error
Warning: mail() [function.mail]:…
Attachment_fu plugin is kind of old, but I have to modify an old app and I can't use another plugin like paperclip etc. So here's the code without further ado
Submissions table structure
---------------------------
| content_type | varchar(255) | YES | | NULL
| filename | varchar(255) | YES | …
Microsoft's FxCop tool uses the introspection API. This introspection API could be used to develop new code analysis tools. But the introspection api is not documented well. Additionally, I was not able to figure out any blogs which explains this API in breadth and depth of it. The knowledge gained by understanding the…
Hi,
When a seam application on JBOSS using java 1,5 is deployed in Unix platform, I am getting this error.
errorjava.lang.NoClassDefFoundError
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:141)
at java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(GraphicsEnvi
ronment.java:62)…
Can someone point me out to some C# code examples or provide some code, where a Dictionary has been used as a property for a Class.
The examples I have seen so far don't cover all the aspects viz how to declare the dictionary as property, add, remove, and retrieve the elements from the dictionary.
Hello all,
I have a dialog in which the edit box is disabled but the text should be displayed in red instead of the default grey. I tried the following:
void CMyEdit::OnEnable(BOOL bEnable)
{
CEdit::OnEnable(bEnable);
if (bEnable)
{
m_BackGroundColor = kRGBWhite;
}
else
{
m_BackGroundColor =…
Can a flex module have styles different from the main application which loads the modules? Meaning... can I have a main set of styles for the application, and separate styles for each module.. with each of them rendering their own styles without disturbing the other at runtime?
My specific case:
The main…
I want to create a webpage with transparent background, a table and some text. I have seen posts related to this, but due to my lack of familiarity with css, I somehow cant get my code to work. I just want a transparent background, while this code is making everything transparent. Can someone kindly help.…
Where can I get the url for the eclipse profilert plugin ?
I want to update it directly to my eclipse rather than downloading and installing
I need it for Eclipse 3.2 and Eclipse Galileo
Hi All,
I am trying to integrate restful_authentication plugings into my rails 3 application. I integrated this in windows, but while trying to integrate it to ubuntu I am facing an error "uninitialized constant OpenSSL::Digest::SHA1"
I googled for the solution but still unsuccessful. I am unable to…
I am writing an iPhone app which will start with asking the user to register with a login/passwd. These should be :
Saved securely locally
Send securely to a remote web-server
What do I need to achieve the above? Say, for local storage, shall I save them in a file or database? Shall I encrypt it?…
Hi
After scouring the web I have edited my question from the one below to what it is now.
Ok I seem to understand that I don't need all the capabilities of excel right now. I think i am satisfied having a data grid to display data. Basically i am working on Struts 2 and I wat my jsp page to have an…
The following javascript snippet is supposed to do the following:
As the user clicks on the map, initialize headMarker and draw a circle (polygon) around it
As the user clicks inside the circle, initialize tailMarker and draw the path between these two markers
1 is happening as expected. But as…
Hey guys, my doubt is pretty simple to understand.
I have a sql procedure that generates a util file as its output depending on the input parameters that are passed to it.
I have to pass these parameters from an html page from 3 text boxes.There will also be a button ,on clicking which, the…
My app asks the user to fill in and save a form locally. I want him to be reminded 48 hrs after the app has been closed that he has a pending form.
Is push notification the only way out? Does it cost money to use a provisioning service?