Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
5answers
1k views

C/C++ line number

In the sake of debugging purposes, can I get the line number in C/C++ compilers? (standard way or specific ways for certain compilers) e.g if(!Logical) printf("Not logical value at line number ...
6
votes
4answers
2k views

Dynamically generate classes at runtime in php?

Here's what I want to do: $clsName = substr(md5(rand()),0,10); //generate a random name $cls = new $clsName(); //create a new instance function __autoload($class_name) { //define that instance ...
5
votes
2answers
712 views

Render ASPX page at runtime from database

Assuming the code below: public class DynamicAspxHandler : IHttpHandler { bool IHttpHandler.IsReusable { get { return false; } } void IHttpHandler.ProcessRequest(HttpContext httpContext) { ...
4
votes
1answer
170 views

How safe is an AppDomain sandboxed with SecurityPermissionFlag.Execution?

I have a plug-in vector established using System.AddIn that accepts the body of a pre-defined method, munges the method body into boilerplate code, generates the assembly and executes the method. The ...
4
votes
3answers
1k views

Options for dynamic compilation in Java 5

Are there any options other than Janino for on-the-fly compiliation and execution of Java code in v5? I know v6 has the Compiler API, but I need to work with the v5 VM. I essentially need to take a ...
3
votes
1answer
330 views

'Rectangle' does not exist in the namespace 'System.Drawing'

Using .NET 2.0. System.Drawing is in my References list. Here is my using statement: using System.Drawing; Here is the code: private static Rectangle rScreen; Here is the error on this line: ...
3
votes
8answers
670 views

dynamic code compilation

I'm working on a program that renders iterated fractal systems. I wanted to add the functionality where someone could define their own iteration process, and compile that code so that it would run ...
2
votes
2answers
168 views

An OCaml program for checking if OCaml code compiles

I would like to write an OCaml module having a compile function which will take a string containing an OCaml program and output the outcome of compilation as either Correct or Error, and in the Error ...
2
votes
1answer
257 views

How to dynamically load aspx code from a database?

I have content like this stored in a database <p>This a sample text. <%= Html.ActionLink("test", "myaction", "mycontroller") %></p> The content is part of my data repository, that ...
2
votes
3answers
755 views

Specify Output Path for Dynamic Compilation

My dynamic compilation in Java 6 is working perfectly. However, I would like to change the output path. I have tried tons of things (I'll spare you) to no avail. Anyway, here's the working code ...
1
vote
1answer
76 views

Compiled a class, but where is it?

I'm not an expert in Java and I'm pretty new to the whole concept of compiling and running dynamic generated code, which is so simple in other languages, expecially script languages like Javascript ...
1
vote
2answers
171 views

C# Scripting and Security

In my game (that is also written in C#) I want to include some kind of customization support. Speed is a great concern as I plan to offload major parts of the gameplay to scripts. As a result I choose ...
1
vote
1answer
63 views

Are there any AppDomain/“Dynamically compiled Code” limits?

I'm planning to write a game, where the user has to write his own C# code to play it. Since I can't trust the user submitted code I want to create an AppDomain for each user. Each user can write ...
1
vote
1answer
186 views

visual studio 2010 c# run-time compilation of winforms

I have the following problem, will try to describe it shortly. In my program there is to be a possibility to compile a winform to an .exe by clicking on a button. Now I tried to do it with ...
1
vote
0answers
196 views

Sharing data accross appdomains, running linq queries on both sides, and beyond

To start from the beginning, I'm working on an utility to parse and review logs from a third-party application, with an explicit requirement for extreme flexibility. In order to achieve that, I'm ...
1
vote
1answer
253 views

Java - Dynamic Compilation without JDK

im aware that j2se 6 has introduced the JavaCompiler API; however, it's cumbersome to use and require a JDK not JRE. Is it possible to do dynamic compilation without a JDK? (im very interested in ...
1
vote
1answer
777 views

Dynamic Java Compilation: BeanShell, Janino, JavaCompiler?

I am about to start developing a small Java desktop app. The app is just an engine for which the user provides Java classes to do the work (translating input to output). I would like the user to ...
1
vote
3answers
235 views

Is there a high level language with an interpreter, dynamic compiler and static compiler(e.g. like the c++ compiler) along with a multimedia library?

The interpreter and dynamic compiler would be for testing/prototyping and when im done testing i use the static compiler.
1
vote
1answer
209 views

VBCodeProvider not honoring OptionInfer in providerOptions?

I'm trying to dynamically compile some VB code in my C# project and I'm running into an issue with the VBCodeProvider. It doesn't seem to be honoring the OptionInfer flag that I'm putting in the ...
1
vote
1answer
172 views

How can I access the classes loaded by Java Web Start when dynamically compiling code?

I am dynamically compiling code in my client application. When I start the application with Java Web Start I get an exception. The exception only occurs when it is run through Java Web Start. //The ...
0
votes
0answers
9 views

How to know when asp.net dynamic compliation has completed

When using asp.net dynamic compilation, how do I know when the site has finished compiling? Is there a process I can see that terminates? My understanding is that you may receive a response from the ...
0
votes
0answers
169 views

MEF and MVC 3 - how to load embedded views dynamically from mef container?

I'm building an MVC 3 application where MEF is used. The main idea is to have plug-in mechanism where models, controllers and views are loaded dynamically during runtime from mef container. Each ...
0
votes
1answer
80 views

enable auto recompilation in grails vaadin project

I have a grails vaadin project. the auto recompilation feature used to work well until I began to use internationalization, since then I have to restart the server to recompile any change. Any Idea ? ...
0
votes
1answer
444 views

Access Denied while deleting the assembly created by a CodeDomProvider compile?

If you use the CodeDomProvider class in .NET after the compilation is complete you can't delete the output assembly. I want to be able to delete the output assembly. File.Delete returns an access ...
0
votes
1answer
104 views

Use JDK6 to dynamic compile src but after switching to JDK environment still get a null from ToolProvider.getSystemJavaCompiler();

I'm using JDK6 to compile the input src from UI and to run immediately. But the problem is that by default my app is using the jre not jdk, so: JavaCompiler compiler = ...
0
votes
1answer
154 views

How to dynamically compile Java classes in Google App Engine

In answers to this question, I learned that it is not possible to invoke the Java Compiler in javax.tools from a GAE app. Does this limitation still apply? If so, what are my options for compiling ...
0
votes
2answers
150 views

ASP.NET Dynamic Compilation Failing

I have an ASP.NET project set to utilize dynamic compilation - it has been set for almost a year now and no large changes to the project have been made. Randomly today, the pages have stopped ...
0
votes
1answer
115 views

Dynamic ASP.NET application compilation

My web application (ASP.NET v3.5 / C#) dynamically creates other asp.net applications (creates aspx, aspx.cs, classes, web.config, project.csproj file etc.). The thing is even after I configure the ...
0
votes
1answer
535 views

“This project cannot be viewed in object browser” on VS2008 - ASP.NET C# v4.0

I have an application that compiles some code dynamically, and creates an assembly as well. I use the CodeDomProvider class with the CompilerParameters class in order to compile the files. I add ...
0
votes
0answers
153 views

Web SITE publishing, dynamic compilation, smoke & mirrors

When you publish a web SITE in Visual Studio, in the dialog box that follows, you are given an option to "Allow this precompiled site to be updatable". According to MSDN, checking this option ...
0
votes
3answers
187 views

How can i create a partial class at runtime?

How can i create a partial class at runtime? Example: I have a class public partial class A { } I want to create partial of my A class at runtime from an XML file. because I don't compile my ...
-3
votes
1answer
95 views

How to create .dll from C# code [closed]

I want to create a .dll from a C# code. How can I do this? Assume that I have a text box and a button in my application. The application should create .dll from a C# code typed in a text box whenever ...