Tagged Questions

6
votes
3answers
324 views

Can JScript.NET be used to script a .NET application?

Since MS appears to have killed Managed JavaScript in the latest DLR for both server-side (ASP.NET Futures) and client-side (Silverlight), has anyone successfully used non-obsolete APIs to allow …
0
votes
3answers
99 views

Help with Javascript to JScript Conversion

Background: I have data that I'm encrypting with javascript on the client side that needs to be decrypted on the server side. As far as I can tell, the javascript AES library I'm using does not …
1
vote
3answers
41 views

Why is there a conflict between variables and functions of the same name in JScript?

I have a variable named age and a function named AGE. Ignore the problem I am having with JScript beign case insensitive at the moment, i.e. age(dob) and AGE(dob) both work... Why does JScript try …
0
votes
2answers
93 views

Using JScript.NET to create WCF services?

Hi! I am trying to create a WCF service in JScript.NET. (I know, I should do it in C# or VB.NET, but humour me, please.) Has anyone done this before? I can create .asmx web services, but I'm not sure …
1
vote
4answers
456 views

Autoproxy configuration script parsing in .Net/C#

Hi, In order for my application (.Net 1.1) to use the system configured proxy server (trough a proxy.pac script) I was using an interop calls to WinHTTP function WinHttpGetProxyForUrl, passing the …
0
votes
1answer
74 views

Includes and persistent storage in CustomRules.js of Fiddler

I've been using Fiddler for a few days now, extending CustomRules.js with my own logic. However, the file is becoming quite heavy (it's fairly heavy to begin with). I'm not very familiar with .NET or …
4
votes
3answers
235 views

Sharing JavaScript code between .NET desktop and browser

I have a set of core, complicated JavaScript data structures/classes that I'd like to be able to use both in the browser as JavaScript and run on the desktop with .NET 3.5. Is it possible to compile …
2
votes
2answers
379 views

.Net Scripting Engine (C#) - Is there some sort of “header file” or “dll references file” for .Net languages?

I'm making a small scripting engine in C# and I was wondering, is there some sort of #compiler directives or some sort of other header-like file I can compile with my script files to define what …
0
votes
1answer
587 views

When creating a JavascriptConverter, how to return an array?

I'm trying to write a custom JavascriptConverter for use with a WebService I'm writing. I have to write a custom converter, because Microsoft.JScript.JSObject doesn't support IDictionary, so it gets …
0
votes
2answers
81 views

JScript.Net compiler error

Hi, I do the following: I create a .js file containing print("Hello World!"); I save it as hello.js I open the Visual Studio 2008 Command Prompt jsc + Enter jsc \out:hello.exe C:\path\to\my\file.js …