473,499 Members | 1,862 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

how to convert SafeArray to array ?

in my script file , i need call a method of a atl com
module(implemented in vc++), which returan an safearray. i don't know
how to convert it into array in jscript. i have tried serveral ways to
get each item but failed at last. could anyone help me?

Jan 24 '06 #1
10 11074
VK

thinktwice wrote:
in my script file , i need call a method of a atl com
module(implemented in vc++), which returan an safearray. i don't know
how to convert it into array in jscript. i have tried serveral ways to
get each item but failed at last. could anyone help me?


SafeArray is Microsoft specific, so you cannot handle it by JavaScript,
only by JScript (IE).

JScript has VBArray object wrapper for safe arrays.

var arr = (new VBArray(mySafeArray)).toArray();

arr now contains mySefeArray converted into standard JavaScript jagged
sparse array.

Jan 24 '06 #2
this is definition of the method
[ propget...]
get_mySafeArray(VARIANT *pval);

i tried
new VBArray(mySafeArray()) but failed

Jan 24 '06 #3
VK

thinktwice wrote:
this is definition of the method
[ propget...]
get_mySafeArray(VARIANT *pval);

i tried
new VBArray(mySafeArray()) but failed


On what side (client or server) did you try? VBArray has sense only on
client side and only in the context of JScript.

Also it is IE-exclusive. Your server side should return instead
standard JavaScript array or JSON object (if AJAX) to easy handle it on
client side.

Jan 24 '06 #4
hi, VK. thanks for your reply.
i do use Jscript now.

try{
var arr = (new VBArray(myobj.mySafeArray)).toArray();
}
catch(e)
{
e.errorno;//0x800A1395
}

Jan 24 '06 #5
here is the code in server side
STDMETHOD(mySafeArray)(VARIANT *pVal)
{
CComSafeArray<long> arr;
i = 5;
while(i-- > 0)
{
hr = arr.Add(i);
}
CComVariant vtRet;
LPSAFEARRAY pCopy;
if (arr.m_psa != NULL)
{
HRESULT hRes = ::SafeArrayCopy(arr.m_psa, &pCopy);
if (SUCCEEDED(hRes) && pCopy != NULL)
{
::SafeArrayGetVartype(arr.m_psa, &(vtRet.vt));
vtRet.vt |= VT_ARRAY;
vtRet.parray = pCopy;
}
else
{
vtRet.vt = VT_ERROR;
vtRet.scode = hRes;
}
}
return vtRet.Detach(pVal);
}

Jan 24 '06 #6
VK

thinktwice wrote:
here is the code in server side
STDMETHOD(mySafeArray)(VARIANT *pVal)
{
CComSafeArray<long> arr;
i = 5;
while(i-- > 0)
{
hr = arr.Add(i);
}
CComVariant vtRet;
LPSAFEARRAY pCopy;
if (arr.m_psa != NULL)
{
HRESULT hRes = ::SafeArrayCopy(arr.m_psa, &pCopy);
if (SUCCEEDED(hRes) && pCopy != NULL)
{
::SafeArrayGetVartype(arr.m_psa, &(vtRet.vt));
vtRet.vt |= VT_ARRAY;
vtRet.parray = pCopy;
}
else
{
vtRet.vt = VT_ERROR;
vtRet.scode = hRes;
}
}
return vtRet.Detach(pVal);
}


Truthfully I am not a VBArray expert as I almost never had to use it.
But in any case it's *VB*Array (Visual Basic Array)

Therefore your only options are:
1) Use VBScript on client side instead of JScript (this naturally
exclude all browsers by IE)
2) Use VBScript helper together with JScript - so safe array would come
first to VBScript which understand safe array format - and convert it
later to JavaScript array (this naturally exclude all browsers but IE)
3) Change your server-side procedure so it would return JavaScript
array. I don't see really any problems with the latter (?)

Jan 24 '06 #7
thanks VK. i just wonder why the debug window could show the array
content correctly. if it could achieve this, i guess i would get the
content out of the safearray too.
again thank you for taking time to answer my question .:)

Jan 24 '06 #8
VK

thinktwice wrote:
i just wonder why the debug window could show the array
content correctly.


I guess because any data type (known or unknown) is still internally a
sequence of characters / bytes. System may do not know how to handle
it, but still can display it as some text. (?)

Jan 24 '06 #9
thinktwice wrote:
i do use Jscript now.

try{
var arr = (new VBArray(myobj.mySafeArray)).toArray();
}
catch(e)
{
e.errorno;//0x800A1395
}


There is no `errorno' property, the Error object property indicating the
numeric value associated with an error in JScript is `number'.[1] And
using it in this way does exactly nothing but evaluating the value of the
property. Furthermore, this will break in JScript/IE before version 5.

Think twice.
PointedEars
___________
[1]
<URL:http://msdn.microsoft.com/library/en-us/jscript7/html/jspronumber.asp>
Jan 24 '06 #10
Thomas 'PointedEars' Lahn said the following on 1/24/2006 6:49 AM:
Furthermore, this will break in JScript/IE before version 5.
IE4, IE5.0 and IE5.5 (to me) have fallen into the same category as NN4.
They are old enough that its time to move on and forget them.

Think twice.


Three times :)

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Jan 24 '06 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
10296
by: Roland Moschel | last post by:
Hi there ! I have some Problems to get a SafeArray out of a COM Server written in (Unmanaged) C++. From (unmanaged) Visual Basic , everything is ok , but unfortunately in C# I get an...
6
17263
by: Petar Popara | last post by:
I need some help converting byte into Array: int bufferLen = Convert.ToInt32(file.Length); byte buffer = new byte; int len = sr.Read(buffer, 0, bufferLen); ArrayList a = new ArrayList(len);...
5
6914
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...
1
6002
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...
5
6331
by: Maxim | last post by:
Hi all, I'm calling a COM Interface method that returnes SafeArray wrapped into variant. Is it possible to convert it to managed array? Because working with SAFEARRAY directly is a bit...
1
2813
by: Christian Schmidt | last post by:
Hi all, I need to implement an unmanaged function that gets a SafeArray and hands it over to a managed function having the managed array-type. Using MarshalAs I can call unmanaged functions having...
2
4110
by: Simply_Red | last post by:
I'm using VC6. i have a DLL written in VC6 and used by VB6( and VBA Excel), i use SafeArray as parameter, the array is created(declared), in VB and C++ fill it. now i need VC++ to get an array...
4
6532
by: Steven Blair | last post by:
I have some C++ code which creates a SafeArray and passes it to my C# dll using COM: SAFEARRAY *psaOut = SafeArrayCreateVector(VT_BSTR, 0, 3); VARIANT pVarOut; VariantInit(&pVarOut);...
0
3199
skeptics
by: skeptics | last post by:
Trying to pass a SafeArray that i get form Request.BinaryRead 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#...
0
7134
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,...
1
6901
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...
0
5479
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,...
1
4920
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...
0
4605
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3105
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...
0
3101
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1429
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 ...
0
307
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.