Calling .NET Assembly from JavaScript...

A

arc

I have a requirement to call .NET assembly (Custom component) from thin
client Page (ASPX).
This Assembly talks only TCP/IP with an external server and hence cannot
interact over HTTP.
That's the reason I am trying to make a call from the Client Script so that
the information could be captured from screen, sent to the Assembly
and is fired by the Client Script itself because the Assembly as such is
dumb

Is there a way to perform this? Or should it be done only by a Thick Windows
Client?
Here is a sample code within which I would like to make a call to this
Assembly.

<%@ Register TagPrefix="UITemplate" TagName="TTop" Src="include/top.ascx" %>
<%@ Page language="c#" Codebehind="UpdateProfile.aspx.cs"
AutoEventWireup="false" Inherits="XXX.UpdateProfile" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML dir="ltr">
<HEAD>
<title>XXX</title>
<meta content="Microsoft Visual Studio 7.0" name="GENERATOR">
<meta content="C#" name="CODE_LANGUAGE">
<meta content="JavaScript" name="vs_defaultClientScript">
<meta content="http://schemas.microsoft.com/intellisense/ie5"
name="vs_targetSchema">
<script language="javascript">
function validateProfile()
{
//////Call to Assembly - ServerConnector
}
</HEAD>
</HTML>

Regards,
Arc
 
S

Steve B. [Labo.Net]

The only way I see is to build a COM component with Dotnet, and embed it
into the page.
Note that security zones may need to be changed, or assembly strongly named
and signed

Steve
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,756
Messages
2,569,534
Members
45,007
Latest member
OrderFitnessKetoCapsules

Latest Threads

Top