Hi all !
I'm trying to push my app not in developpement, and i get the following error :
stream_socket_client() [function.stream-socket-client]: unable to connect to ssl://gateway.push.apple.com:2195
To push i use :
$serverId=1;
$name="NameOfMyApp";
$apnsHost = 'gateway.push.apple.com';
$apnsPort = 2195;
$apnsCert = 'ck.p...
How to import it in Flex?
import caurina.transitions.Tweener;
It says: 1120: Access of undefined property Tweener.
When I do something like: Tweener.addTween(...
Thanks,
...
Hi,
I'm writing a module in GWT. It uses a WYSIWYG editor. It was running smoothly until I tried using RichText from GWT instead of WYSIWYG editor. Since it did not workout as expected, I rolled back to the old code (i.e. WYSIWYG). But now, when I run the compiled html file in a browser, I get an error
Error: a is null Source File: ht...
Hi,
After having spent hours trying to solve a little problem of mine, I come to you for an ultimate try to fix it.
I'm trying to link a UILabel with an IBOulet created in my class. That's something so basic you ask yourself why I need help ?
Everytime I build my application, it crashes on the label screen saying "this class is not ke...
When using the latest Release version (4.0.4.2) of Umbraco, the tinymce3 control fails to show/load in the backoffice of umbraco.
Instead a JavaScript error is shown:
--- ERROR CONTENT ---
Message: Invalid argument.
Line: 1
Char: 14609
Code: 0
URI: http://example.com/umbraco/plugins/tinymce3/tinymce3tinymceCompress.aspx?rnd=5c8e3f37-f...
I got the following error in Delphi 2007. What does it mean?
[DCC Error] uMyUnit.pas(9614): F2084 Internal Error: AV21B66E31-R0000000F-0
I did some recently added code removing, line insertions/deletions, changing compiler options, but nothing worked.
I was able to solve this by switching the 'Typed pointer @ operation' option off. In...
Hi! I have this code:
try{
File f = new File("/data/cizip.zip");
if(f.exists()){
ZipFile zf = new ZipFile(f); //this always throws an error
/*some of my codes here*/
}
catch(IOException e){
AlertDialog.Builder abd = new AlertDialog.Builder(this);
abd.setMessage(e.getMessage());
abd.show();
}
the line ZipFile zf = new Zi...
I recently inherited control of our TFS server. I am trying to create a new TFS project and get an error. Any help or clues to how to solve this would be greatly appreciated.
Here is the exception message that is logged.
---begin Exception entry---
Time: 2010-06-22 11:09:47Z
Module: Initializer
Event Description: TF30207: Initializat...
I'm getting this weird runtime crash when instantiating QVAriantAnimation or QPropertyAnimation. It appears this happens when the program doesn't link appropriately the class. But I have double checked my simple project and can't see anything wrong.
#include <QtCore/QVariantAnimation>
#include <QtCore/QEasingCurve>
class MyAnimacion : ...
I've separated a project into two builds and given each of them a plist file. Everything works fine, but I keep getting this build warning:
Warning: The Copy Bundle Resources build phase contains this target's Info.plist file 'MyApp-Info.plist'
I get this when I try to build MyApp. Building for the second target gives the same error (w...
I wrote a wrapper for SFML that would allow me to replace the renderer for my game if I needed to. It worked. Then I refactored and while it still compiles, I now get "unable to initialize application 0xc000005" when running the compiled executable.
What would cause such an error? Google was unhelpful. I'm using Windows XP.
...
Appparantly I'm the only one on the Internet experiencing this problem because I can find ZERO other reports of anyone else encountering it. Unfortunately I've been dealing with it for months and I don't know what else to do.
sometimes when I attempt to delete a folder from visual studio 2010, I get the error "unable to delete folder 'X...
I use outlook express as a newsreader. Sometimes I want to get the entire server holdings of a particular newsgroup. Trouble is, OE seems to snag when it was able to read a message headr but for some reason it can't retrieve the body. It snags with
Outlook Express could not download the requested message. It is likely that the messag...
I have installed: rhodes 2.0.0 beta 11, ruby 1.8, gem 1.3.7, and OpenSUSE 11.2. The only way i can get the app to compile is by using Android SDK 1.5. when I delete 1.5 and install 2.2 it says: No required platform (API level 3) found, can't proceed. any ideas? I would rather use an updated version of the SDK.
...
I am trying to extend the TextItem class in Flex 4 but I keep getting the following error:
Could not resolve <custom:txtIdNumber> to a component implementation.
My txtIdNumber.as is as follows
package custom {
import spark.components.TextInput;
public class txtIdNumber extends TextInput {
public function txtIdNumber...
I have a macro which runs fine on my machine but when I try to run it on another machine it gives the following error.
Microsoft Visual Basic
Run-time Error -2147417848 (80010108)
Automation Error
The Object invoked has disconnected from its clients.
...
Firebug is giving me the following error:
ActiveXObject is not defined
[Break on this error] var xmlhttp = new ActiveXObject("MSXML2.XmlHttp");
I've read that ActiveX is a Microsoft framework and its mostly used in IE. All of the internal web pages at the place I work were designed and built specifically for IE 6, but now they want m...
I was going over a Joel Pobar's Dodge Common Performance Pitfalls to Craft Speedy Applications article on Reflection and I was looking at a particular piece of code that isn't compiling (slightly modified to narrow down to the specific error, because his example had more errors):
MethodInfo writeLine = typeof(Console).GetMethod("WriteLi...
I am trying to use response.redirect on a button click event server side but it gives me http 400 bad request error. I was not getting this error before but I just moved the projectto vs 2010 framework 4.0 and I started getting this error.
This is what I am writing:
protected void bOrganizationAddID_Click(object sender, EventArgs e)
...
Here is the situation, i have two tables tblProduct and tblCategory, what i am trying to do is populate a gridview, i have LinqDataSource binded to the grid and the correct association made inside the .dbml (tblProduct.CategoryID to tblCategory.ID).
To show the fields from tblCategory instead of the tblProduct.CategoryID in the GridView...