internal

Accessing Tomcat Internals from Servlet (or Filter)

I would like to get access to the Tomcat internal data from a servlet (or filter). In particular, I would like to read information about busy threads, from thread pool manager. So, my question is if it is possible at all (I can imagine that it could be blocked for safety reason)? If it's possible, maybe someone could give me any advice w...

C# class design without using "Internal" or "Static"?

I have a bunch of data I want to instantiate in a class, and for each variable I want to ensure a specific set of methods are also defined. IE: [TypeA] VarA [TypeB] VarB [TypeC] VarC FA1() which is a function of VarA and VarB FA2() which is a function of VarA and VarC FB1() which is a function of VarB and VarA FB2() which is a functio...

Compiler Error- only when compiling from the command line

error CS0583: Internal Compiler Error (0xc0000017 at address 7C812AFB): likely culprit is 'IMPORT'. An internal error has occurred in the compiler. To work around this problem, try simplifying or changing the program near the locations listed below. Locations at the top of the list are closer to the point at which the internal error occu...

There is any way to access directly a dll internal classes without copyright infringment?

I need to use some of the Microsoft.SqlServer.Types library internal classes. This is a .NET dll, which is easily disassembled to the language of my choice. So far I could copy its code to my application, but this probably makes my application legally unsuitable for distribution (I haven't read the MS Sql Server 2008 licensing agreement...

How Do I make a simple .htaccess internal redirect Catch All script while forwarding POST data?

I just want to catch all requests and forward them internally to my catchall page with all POST data intact Catch all page: http://www.mydomain.com/addons/redirect/catch-all.php I've tried so many combinations, but my server doesn't want to redirect internally if I specify more than catch-all.php # Internally redirect all pages to "Ca...

SQLite gurus: how can I display very detailed metadata about a file?

I have a situation where a simple query against a table is returning incorrect values in Flex, but not in other GUI front-ends to SQLite. select title from ttl where ttl.ttl = 140 // ttl is also the column name of the PK column is returning the title that belongs to the row whose PK = 1400. ttl.ttl is defined as int datatype. Again...

ruby equivalent of c#'s internal keyword?

in C# an "internal" class or method can only be called from within the assembly that it is located... i know Ruby doesn't have "assemblies" or any kind of real package like them (other than gems, but they aren't really the same thing at all), but I'm wondering if there is a way for me to limit the location that a method can be called fro...

How to limit subclassing of public abstact class to types in same assembly and thus allow protected members typed to internal types.

This question is similar to c# internal abstract class, how to hide usage outside but my motiviation is different. Here is the scenario I started with the following: internal class InternalTypeA {...} public class PublicClass { private readonly InternalTypeA _fieldA; ... } The above compiles fine. But then I decided that I ...

NSKeyedArchiver internal format

Hello I need to load NSKeyedArchiver classes to C++/CLI counterparts. Is there any way to get internal format of NSKeyedArchiver? Another option is to rewrite whole saving and opening code into pure C++ for both Mac and Windows. Thanks a lot. ...

Problem with Interfaces

I have an interface(call it as IMessage) which has a method Check(), a class implements this interface interface IMessage { bool Check(); } class NewClass : IMessage { #region IMessage Members public bool Check() { //Some logic } } That all fine. The problem is that I don't want this method(Check()) to be...

Execution flow in MVC

Hi all, I am trying to learn MVC in detail, and I am wondering whats the exact functional flow internally, in the sense of which functions(important functions) are called and what they does when the application starts and which function are called apart from the controller actions that we write in our application as we proceed. Help in...

Android internal storage - what are the limits?

1) Our Android app will store data in a built-in SQLite DB. I see the DB can throw android.database.sqlite.SQLiteFullException, but there's no exact info in API what is the limit. Could anyone tell what are the size limits for a DB in order not to get into the SQLiteFullException? I assume DB will store data in device's internal stora...

How do I set a breakpoint inside C# PresentationFramework.dll?

This might be a shot in the dark, but, how would I go about setting a breakpoint inside the following internal static method in PresentationFramework.dll? System.Windows.Documents.TextEditorTyping._ShowCursor() I've run into a very similar situation to Joe, where I am making a custom auto-complete textbox using a TextBox control and a...

C# set accessor accessible to all types in assembly, and get assessor only to derivated types. How to?

This property in a type with no access modifier (thus internal access): class SomeType { private int length; internal int Length { get { return length; } set length = value; } } } allows all types within the assembly of SomeType to use get and set accessors. Problem: how to restrict the access to set to onl...

AS3 Preloader which loads itself, not an external swf

How can I create a preloader which does this? I have seen many examples of code to load an external swf, but never something that loads itself. Thanks for the help, this is driving me crazy... ...

PHP Architecture: How do I do that?

Hi, I need some help understanding internal workings of PHP. Remember, in old days, we used to write TSR (Terminate and stay resident) routines (Pre-windows era)? Once that program is executed, it will stay in memory and can be re-executed by some hot-key (alt- or ctrl- key combination). I want to use similar concept in web server...

Accessing functions bound to event handlers with jQuery

With jQuery you can bind functions to an event triggered on a DOM object using .bind() or one of the event handler helper functions. jQuery have to store this internally somehow and I wonder if is it possible given a DOM object, to find out which events have been bound to the object, and access those functions etc. The desired return re...

XAMPP Redirecting to XAMPP directory on Internal Network

I installed XAMPP on my desktop. I set up vhosts for about 5 sites and they are all working properly from the desktop itself. The problem arises whenever I try to access these vhosts from my laptop. I changed the hosts file on the laptop to redirect the laptop dev.domain.com requests to the desktop, however, when I try to access these ...

PHP: friend classes and ungreedy caller function/class

Is there any way to get the caller function with something else than debug_backtrace()? I'm looking for a less greedy way to simulate scopes like friend or internal. Let's say I have a class A and a class B. Until now, I've been using debug_backtrace(), which is too greedy (IMHO). I thought of something like this: <?php class A...

Public and Internal members in an Internal class?

Ok, so this may be a bit of a silly question, and there's certainly the obvious answer, but I was curious if I've missed any subtleties here. Is there any difference in terms of visibility/usability between a public member declared in an internal class and an internal member declared in an internal class? i.e. between internal class F...