unknown

Unknown Exception on trying to initialize the web service stub created by Axis C++

Hi, I am trying out the sample calculator program given in the folder of axis c++. I am mainly interested in the client side. So I used the wsdl to create the stubs and my main is pretty much the same as given in the sample. However on executing the call Calculator ws (endpoint) I get an unknown exception "First-chance exception at 0...

Php mail(), how to get undelivered address list ?

Hi, I'm getting single emails, for each undelivered address that mail() send couldn't reach. Since this can be a painfull process, to keep copy pasting every single address, I'm wondering if it's possible to access a LOG or something ? Some notes: - I've got this app running on a GoDaddy server (I know it sucks); Thanks for your atenti...

IIS7 log files reporting mass errors from weird user agent: Mozilla/4.0+(compatible;)

I'm getting a ton of weird log entries reporting: cs-uri-stem: /ErrorInvalidURL.aspx (my custom 404 page) cs-uri-query: aspxerrorpath=/Portals/0/Skins/MyCustomSkin/ErrorInvalidURL.aspx (seems to be coming from my skin folder) I did some queries with LogParser and the majority of these errors are coming from the user agent: Mozilla/4....

[PHP] - String lookup into unknown charset html content

Hi there guys, I'm using strpos to lookup for string into web page bodies. 50% it fails, although the search string is present. I have tried to strtolower both search string and searched content, same results. Probabily the problem arises when dealing with different charsets... Assuming: - search string charset is unknown - searched con...

Unknown return type for a C function.

I am writing a library for C, and one function can return either a string (char *), an integer or a double. Next to that, the length of the string is unknown. I really don't know how to deal with this problem. I thought about using pointers as arguments to the function but that is really messy. Can anyone give me a solution, and maybe s...

QDBus problem: getting org.freedesktop.DBus.Error.UnknownMethod, but method exists

I'm programming C++ on Ubuntu, using QDBus and I've got the following code snippet: this->m_cRemoteInterface = new QDBusInterface("org.my.service", "/data", "org.freedesktop.DBus.Properties.Get"); QDBusReply<uint64_t> cResult = m_cRemoteInterface->call("property1"); The code throws the following error: org.freedesktop.DBus.Erro...

UIDatePicker is not working with MonoTouch. Gives error "Unknown char: ."

I have been trying to use the UIDatePicker, both trying to make my own projects and also trying to use tutorials from Wrox. The problem is as soon as i have a UIDatePicker in my project, the xib file generates the error "Unknown char: .". It doesn't matter which SDK version or minimum OS version I choose in the solutions build options. ...

Use of anonymous function shows up as unknown type

When I attempt to use an anonymous function in PHP (As an available callback), there are no syntactical errors or the like but when I attempt to execute the callback, it errors out outputting that the function must be named. gettype returns a null value. Anyone have any experience with this? http://pastie.org/1088386 ...

Nesting appSettings with the file attribute

I'm trying to pull off an inheritance chain of appSetting sections (VS2010 C#) Given this, Base.config <appSettings> <add key="basekey" value="basevalue"/> </appSettings> Derived.config <appSettings file="Base.config"> <add key="derivedkey" value="derivedvalue" /> </appSettings> App.config <configuration> <appSetting...

How to use UITableView when total number of sections and rows are unknown (and potentially large)

Normally to use UITableView, the number of sections and rows per section are known. But what if they aren't? I want to implement a lazy search, so that I actually search for the next match when new data needs to be displayed. Something on the lines of: db.prepareSearch(query) and then call something like db.nextSearchResult() when it ...