Tagged Questions
`BSTR` stands for "Basic String". It is a size-prefixed, fixed-length, null-terminated, unicode character array used heavily in Microsoft's COM and OLE technologies for marshalling strings, especially between languages.
7
votes
1answer
59 views
Static code analysis for detecting passing a wchar_t* to BSTR
Since a BSTR is only a typedef for wchar_t* our code base has several (many?) places where string literals are passed to a method expecting a BSTR this can mess up with marshallers or anyone who tries ...
7
votes
5answers
246 views
Why are C#/.Net strings length-prefixed and null terminated?
After reading What's the rationale for null terminated strings? and some similar questions I have found that in C#/.Net strings are, internally, both length-prefixed and null terminated like in ...
6
votes
3answers
176 views
How to display values from a VARIANT with a SAFEARRAY of BSTRs
I am working on a COM Object library with function that returns a VARIANT with a SAFEARRAY of BSTRs. How can I display the values from this VARIANT instance and save it inside a TStringList? I tried ...
5
votes
2answers
257 views
Who owns returned BSTR?
Suppose a method from a COM interface returns BSTR value. Am I right in my opinion that I must free it?
The code example at http://msdn.microsoft.com/en-us/library/aa365382(VS.85).aspx does not do ...
5
votes
1answer
2k views
COM, VARIANT containing BSTR. Who allocates?
OK, so I couldn't really think of an apropos title that summarizes this.
The IPrintPipelinePropertyBag interface has the method AddProperty which aptly enough "adds a property to a property bag."
...
4
votes
3answers
2k views
C++: Convert wchar_t* to BSTR?
I'm trying to convert a wchar_t * to BSTR.
#include <iostream>
#include <atlstr.h>
using namespace std;
int main()
{
wchar_t* pwsz = L"foo";
BSTR bstr(pwsz);
cout ...
4
votes
5answers
1k views
Can I free memory passed to SysAllocString?
When allocating a new BSTR with SysAllocString via a wchar_t* on the heap, should I then free the original wchar_t* on the heap?
So is this the right way?
wchar_t *hs = new wchar_t[20];
// load some ...
4
votes
3answers
4k views
How to convert _bstr_t to CString
I have a _bstr_t variable bstrErr and I am having a CString variable csError. How do I set the value which come in bstrErr to csError?
4
votes
3answers
12k views
How to convert char * to BSTR?
How can I pass a char * from C dll to VB
Here is sample code:
void Cfunc(char *buffer,int len)
{
BSTR buf_bstr = SysAllocString((BSTR)buffer);
VBptr.VBfunc(buf_bstr,len);
}
This function is ...
3
votes
1answer
56 views
COM fail to properly marshal a BSTR from a managed server to native client
I'm struggling with a scenario where I have a managed interface exposed through COM and consumed by a native client. I've managed to isolate the problem and it basically boils down to a string being ...
3
votes
1answer
2k views
How to best convert CString to BSTR to pass it as an “in” parameter into a COM method?
I need to convert a CString instance into a properly allocated BSTR and pass that BSTR into a COM method. To have code that compiles and works indentically for both ANSI and Unicode I use ...
3
votes
2answers
1k views
Memory leak for CComBSTR
I have read that the following code causes memory leak. But did not understand why.
CComBSTR str;
pFoo->get_Bar(&str);
pFoo->get_Baf(&str);
How does it cause a leak when we are not ...
3
votes
2answers
1k views
_bstr_t to UTF-8 possible?
I have a _bstr_t string which contains Japanese text. I want to convert this string to a UTF-8 string which is defined as a char *.
Can I convert the _bstr_t string to char * (UTF-8) string without ...
3
votes
6answers
2k views
Is there a faster way of getting a char* from a _variant_t than (const char*)(_bstr_t)
Here's the code I want to speed up. It's getting a value from an ADO recordset and converting it to a char*. But this is slow. Can I skip the creation of the _bstr_t?
...
3
votes
5answers
6k views
How do you efficiently copy BSTR to wchar_t[]?
I have a BSTR object that I would like to convert to copy to a wchar__t object. The tricky thing is the length of the BSTR object could be anywhere from a few kilobytes to a few hundred kilobytes. Is ...
2
votes
1answer
63 views
Python String to BSTR
I am Using the iTunes COM interface on windows 7.
The method iTunes.CurrentTrack.AddArtworkFromFile(path) requires path to be of type BSTR.
I understand from some research that BSTR is a C++/Visual ...
2
votes
3answers
57 views
Is WCHAR in COM interfaces a good thing?
Is WCHAR in COM interfaces a good thing ?
I've been searching the internet for an answer to this question with no results.
Basically should char* / wchar* be used in COM or should i use BSTR instead ...
2
votes
3answers
650 views
Why doesn't COM use a static empty BSTR?
When allocating an empty BSTR, either by SysAllocString(L"") or by SysAllocStringLen(str, 0) you always get a new BSTR (at least by the test I made). BSTRs aren't typically shared (like Java/.NET ...
2
votes
2answers
1k views
MS VC++ Convert a byte array to a BSTR?
I have a string that starts out in a .Net application, is encrypted and stored in AD. It's then picked up by a native C++ app and decrypted to produce an array of bytes
e.g "ABCDEF" becomes ...
2
votes
2answers
921 views
Where is using null BSTR documented?
It's at least common practice to treat null BSTR (null WCHAR* pointer) as an empty string and design all the code manipulating BSTRs accordingly. Answers to this question say the same.
Where is this ...
2
votes
5answers
1k views
send a COM object with a BSTR value type in a MSMQ message
I'm trying to send a COM object over a MSMQ message in C++. This is my object :
class ATL_NO_VTABLE CAnalisis :
public CComObjectRootEx,
public CComCoClass,
public ISupportErrorInfo,
...
2
votes
3answers
732 views
Pass an element from C type string array to a COM object as BSTR? (in C++)
I am writing a C++ DLL that is called by an external program.
1.) I take an array of strings (as char *var) as an argument from this program.
2.) I want to iterate through this array and call a COM ...
2
votes
2answers
2k views
Should there be a difference between an empty BSTR and a NULL BSTR?
When maintaining a COM interface should an empty BSTR be treated the same way as NULL?
In other words should these two function calls produce the same result?
// Empty BSTR
CComBSTR empty(L""); // ...
1
vote
1answer
20 views
Mangled LPCTSTR string returned from a function
I have two projects, A and B
Project A is compiled with:
1. Standard Windows Libraries
2. Multi-byte character set
3. NO common language support
Project B is compiled with:
1. MFC as a ...
1
vote
1answer
71 views
How does it convert _bstr_t to BSTR when passing as an argument?
Taking a simple example:
_bstr_t smartString(L"MyString");
Process(smartString); // takes BSTR.
Initially I thought _bstr_t has a BSTR operator converting from _bstr_t to BSTR, but looking at msdn ...
1
vote
2answers
123 views
Passing a string in VBScript to a COM Function which expects a BSTR*
I calling a third-party COM function in my VBScript. The method signature is as follows:
HRESULT ParseXML ([in] BSTR *textIn,[in] VARIANT_BOOL *aValidateIn,[out, retval] MSXML2.IXMLDOMDocument2 ...
1
vote
3answers
224 views
how to use BSTR*
I have an out value as BSTR* for an interface in C++ COM dll.And I am returning this to a C# .Net client.
In my C++ function I have to assign different values according to diff condition.
For example
...
1
vote
3answers
244 views
Are BSTR UTF-16 Encoded?
I'm in the process of trying to learn Unicode? For me the most difficult part is the Encoding. Can BSTRs (Basic String) content code points U+10000 or higher? If no, then what's the encoding for ...
1
vote
1answer
157 views
BSTR, how to make your own?
I need to interface a Linux app to a server that uses bstr data. Can I "roll" my own code to make a bstr? I know the basics of a bstr, that it has a header with the byte size minus the null terminator ...
1
vote
4answers
126 views
ComBSTR assignment
I'm confused about COM string assignments. Which of the following string assignment is correct. Why?
CComBSTR str;
.
.
Obj->str = L"" //Option1
OR should it be
Obj->str = CComBSTR(L"") ...
1
vote
2answers
449 views
Why use CComBSTR instead of just passing a WCHAR*?
I'm new to COM. What exactly is the advantage of replacing:
L"String"
with
CComBSTR(L"String")
I can see a changelist in the COM part of my .NET application where all strings are replaced in ...
1
vote
2answers
998 views
VBScript “Type Mismatch” issue with “[in, out] BSTR * ” parameter
I'm working with third-party COM object that has some of its methods passing values back as BSTR pointer. Since VBscript supports only Variant type attempts to use in a way like ...
1
vote
2answers
837 views
Convert LPCOLESTR to BSTR?
Any ideas on how to make a BSTR out of an LPCOLESTR? Silly thing to get hung up on..
1
vote
5answers
2k views
Which is better code for converting BSTR parameters to ANSI in C/C++?
So far I've discovered I can convert incoming BSTRs to ANSI in two (of many?) ways, and I'm curious to know whether one is "better" than the other with respect to speed / efficiency etc.
The way I've ...
0
votes
1answer
25 views
Convert from Wstring to CComBstr
Please suggest me methods for converting from wstring to CComBstr.
I tried to convert like following but it is failing
CComBSTR BstrAddress(strID); // strID is wstring type
I am getting error as ...
0
votes
2answers
116 views
Error in using the BSTR data type
My firebreath plugin project has a wrapper class of an active X control.
One of the method takes a BSTR data type variable as input, but when I try to call the method and pass a BSTR, i get an error.
...
0
votes
2answers
120 views
How to check if a _bstr_t contains (similar to str.find) a string
I am new to _bstr_t's and still trying to get the hang of it. I was trying to check whether a particular string x is contained anywhere within the bstring. Something I would normally do like;
String ...
0
votes
1answer
60 views
ATL how to Convert BSTR* str to registry key.SetValue(LPCTSTR str type
It's been years since I have done C++ let alone ATL code
I have this method that needs surgical help :(
This is for a mobile app so I don't want to use CString and MFC
I need to convert the BSTR* ...
0
votes
1answer
78 views
C++, COM and passing strings
I am debugging some other programmer's source code of a Windows Media Player plugin. This plugin causes WMP to crash sometimes, and sometimes it takes really long time to open plugin settings window. ...
0
votes
3answers
133 views
Converting bstr_t to double
How to do the transform bstr_t to double in c++?
I was thinking to convert to *char, then *char to double?
0
votes
1answer
82 views
how to test if CComBSTR is empty
How to test if a CComBSTR is an empty string? (with no 'text' value, can be "" or can be null)
my ideas:
test if CComBSTR::ByteLength() returns 0
test if CComBSTR::GetStreamSize() returns 0
test if ...
0
votes
1answer
75 views
Does a BSTR passed by reference need re-allocation in the calling function?
BSTR newID_x = SysAllocString(L"newID");
BSTR newX_x = SysAllocString(L"newX");
functionA(&newID_x);
//Func A does some operation on newID_x, we have that value in newID_x now
...
0
votes
1answer
54 views
VarBstrFromI4 changes the value of some other BSTR in the program
BSTR length;
BSTR checkLength = SysAllocString(TEXT("document.getElementsByTagName('tspan').length.toString()"));
HRESULT h = gWebView->stringByEvaluatingJavaScriptFromString(checkLength, ...
0
votes
2answers
328 views
Pass BSTR from C++ DLL function to VB6 application
I have this code in my VB6 app:
Private Declare Function FileGetParentFolder Lib "Z-FileIO.dll" _
(ByVal path As String) As String
Output.AddItem FileGetParentFolder(FileText.Text)
Output is a ...
0
votes
1answer
144 views
c++ dtor to free _bstr_t memory
A simple question but I am not sure what it is done in C++.
When I have a class that have _bstr_t member.
I would like to know if does member are freed when the object is deleted:
class A {
...
0
votes
2answers
144 views
Language for non-unicode programs change ini reading
I've a non-unicode application which is using unicode versions of the ini reading functions like GetPrivateProfileSectionW and GetPrivateProfileStringW. The program is working well when "Language for ...
0
votes
1answer
224 views
converting a char* to BSTR* which contains special characters
I'm trying to convert a char* to a BSTR*, and my char* has special characters in it from being encrypted. I have tried several approaches found on the web, but back in the calling vb code, I always ...
0
votes
1answer
640 views
Marshalling ref IntPtr to BSTR * in C#
I am trying to call a function which allocates memory for the string and then does something with the string. Here is the basic example which illustrates the problem:
C++:
STDMETHODIMP ...
0
votes
1answer
338 views
How to pass string array as BSTR* to web service proxy
In VS2005 I have generated a web reference to a web service that takes a 1-dimensional array of strings ("inputArray") as an input parameter.
The proxy function generated for this web service call ...
0
votes
2answers
220 views
ICertRequest2::Submit CSR data Compatability ASCII to BSTR
I have my certrequest as a PEM base64 data. See data below.
1) My understanding is that this is an ASCII data type and not in
UNICODE format. Please clarify.
-----BEGIN NEW CERTIFICATE REQUEST-----
...