473,770 Members | 1,995 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Passing Classic ASP Request.BinaryR ead SafeArray to C# com interop component

skeptics
1 New Member
Trying to pass a SafeArray that i get form Request.BinaryR ead Method in classic asp to a c# com interop component. In this thread i found a solution to pass and cast a normal asp safearray in to a c# array: http://bytes.com/groups/net/114755-p...to_threadtools

but no matter what i try. i cant pass a array that i get from Request.BinaryR ead Method in to the component. i always get a error like this :
(0x80004003) Object reference not set to an instance of an object.

com
Expand|Select|Wrap|Line Numbers
  1.  
  2. namespace foo
  3. {
  4.     [Guid("AD627CAC-BC38-445b-8929-05B8315EBBCF")]
  5.     [InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
  6.     public interface Ibar
  7.     {
  8.         [DispId(1)]
  9.         string errorMessage
  10.         {
  11.             get;
  12.         }
  13.  
  14.         [DispId(2)]
  15.         void readSafeArray(object[] safearray);
  16.  
  17.     }
  18.  
  19.     [Guid("003BC37A-888A-4bcd-A384-4D398AC85564")]
  20.     [ClassInterface(ClassInterfaceType.None)]
  21.     [ProgId("foo.cfoo")]
  22.     public class cfoo : Ibar
  23.     {
  24.  
  25.         private String _errorMessage;
  26.  
  27.         public cfoo()
  28.         {
  29.  
  30.         }
  31.  
  32.         public void readSafeArray(object[] safearray)
  33.         {
  34.             Array arr = (Array)safearray;
  35.  
  36.             _errorMessage += arr.Length.ToString();
  37.         }
  38.  
  39.  
  40.         public string errorMessage
  41.         {
  42.             get
  43.             {
  44.                 return _errorMessage;
  45.             }
  46.  
  47.         }
  48.  
  49.     }
  50. }
  51.  
  52.  
  53.  
Classic ASP code

Expand|Select|Wrap|Line Numbers
  1. <% 
  2.  
  3. Dim ff 
  4. Set ff = CreateObject("foo.cfoo")
  5.  
  6. Dim sar
  7.  
  8. 'this doesn't work
  9.  
  10. sar = Request.BinaryRead(Request.totalBytes)
  11. ff.readSafeArray(sar)
  12.  
  13.  
  14. Response.Write(ff.errorMessage)
  15.  
  16. 'this works
  17.  
  18. Dim arr(2) 
  19. arr(0) = CByte(1) 
  20. arr(1) = CByte(2)
  21. arr(2) = CByte(3)
  22.  
  23. ff.readSafeArray(arr)
  24.  
  25. Response.Write(ff.errorMessage)
  26.  
  27. %> 
  28.  
  29.  
can someone point me in the right direction please

thanks
Jul 3 '09 #1
0 3224

Sign in to post your reply or Sign up for a free account.

Similar topics

6
6181
by: Patrick | last post by:
Following earlier discussions about invoking a .NET class library via ..NET-COM Interop (using regasm /tlb) at http://groups.google.com/groups?hl=en&lr=&threadm=%23Van7eSrEHA.4004%40TK2MSFTNGP10.phx.gbl&rnum=1&prev=/groups%3Fhl%3Den%26lr%3D%26selm%3D%2523Van7eSrEHA.4004%2540TK2MSFTNGP10.phx.gbl I have concluded that my .NET class library (following the suggestions. namely setting the marshall type, etc.) , I can 1) Invoke public methods...
2
11680
by: F. Nolet | last post by:
Hi, With IIS 6 - ASP : I try to upload a file of 125,000,000 bytes. To do it, I use this code : Request.BinaryRead(Request.TotalBytes) I get this error :
2
4120
by: Arpan | last post by:
Under what circumstances can Request.BinaryRead() be useful & when should it be used? Assume that the value of Request.Form("anyvalue") is "a" (without the quotes). The output of <% Response.Write(Request.BinaryRead(10)) %>
6
4981
by: Karl Stankiewicz | last post by:
Does any know how to return a recordset object from COM+ component written in C# so that it can be used as a Recordset in classic ASP? I have the frame component written i'm just not sure what object/class i should return. I tried returning SqlDataReader and ASP 3.0 found it to be ADO type data but i'm not sure how to use this return type since it's not actually an object (i tried using it as such)
0
929
by: msnews.microsoft.com | last post by:
Hello folks, We really need to create an ATL component which can transfer array of bytes to C# client. The reason we had to do that so that plain VB client would still be able to use the same component. The component is basically a kind of encryption library which takes an array of bytes from a client (C# or VB) and then manipulate that array.
5
6927
by: Tronster Hartley | last post by:
I've written an ATL 7.1 component and have a C# 1.1 client that is consuming it. The ATL component has a method with a that returns a SAFEARRAY of INTs, but my C# component chokes on it. The C# code: // Display a message box with a value from the ATL control private void GoButton_Click(object sender, System.EventArgs e) {
3
3795
by: Mark | last post by:
Hi From what I understand, you can pass arrays from classic ASP to .NET using interop, but you have to change the type of the.NET parameter to object. This seems to be because classic ASP passes a variant containing an array, and interop expects a parameter of type object if you are passing a variant (you are expected to cast it to the correct type in your code). I'd like to find a way of passing arrays so that you don't need to change...
1
6015
by: Brendan Grant | last post by:
I’ve got a C# library that I’ve built into a COM component that will be used from a VC++ 6 application and while the creation of the COM object side of things seem to be working fine, using the object fully is another matter. On the C# side of things I’ve got an object defined like so: public class PID : IPID { private string type;
17
7255
by: =?Utf-8?B?U2hhcm9u?= | last post by:
Hi Gurus, I need to transfer a jagged array of byte by reference to unmanaged function, The unmanaged code should changed the values of the array, and when the unmanaged function returns I need to show the array data to the end user. Can I do that? How?
0
9618
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9454
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10260
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10038
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8933
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7456
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5354
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5482
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4007
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.