AC#.NETからの戻り値を使用して、COM+としてコンポーネントビルドを作成しました

StackOverflow https://stackoverflow.com/questions/4593763

質問

これまでのところ、C#.NET 4でコンポーネントを作成し、System.EnterPriseServicesを使用して、それを見えるようにしました。 C#でビジネス方法を開発したいのですが、Classic ASP(VBScript)からアクセスする必要があります。

これまでのところ、すべてが正常に機能します(expted関数の過負荷:))。今、私は戻りコードでより多くの有効性を得るためにテストクラスを作成しました。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.EnterpriseServices;
using System.Management;

namespace iController
{
  /// <summary>
  /// The tools class provides additional functions for general use in out of context to other classes of the iController.
  /// </summary>
  public class tools :ServicedComponent
  {

    #region publich methods

    public bool TestBoolean()
    {
      return true;
    }

    public string TestString()
    {
      return "this is a string";
    }

    public int TestInteger()
    {
      return 32;
    }

    public double TestDouble()
    {
      return 32.32;
    }

    public float TestFloat()
    {
      float ret = 2 ^ 16;
      return ret;
    }

    public string[] TestArray()
    {
      string[] ret = {"0","1"};
      return ret;
    }

    public int[][] TestJaggedArray()
    {
      int[][] jaggedArray = new int[3][];
      jaggedArray[0] = new int[] { 1, 3, 5, 7, 9 };
      jaggedArray[1] = new int[] { 0, 2, 4, 6 };
      jaggedArray[2] = new int[] { 11, 22 };
      return jaggedArray;
    }

    public Dictionary<string, string> TestDictionary()
    {
      Dictionary<string, string> ret = new Dictionary<string,string>();
      ret.Add("test1","val1");
      ret.Add("test2","val2");
      return ret;
    }

    #endregion

  }
}

次に、cscript.exeを使用して実行するために簡単なvbscriptファイルを作成しました。

Dim oTools : Set oTools = CreateObject("iController.tools")

WScript.StdOut.WriteLine TypeName(oTools.TestBoolean()) & " - " & oTools.TestBoolean()
WScript.StdOut.WriteLine TypeName(oTools.TestString()) & " - " & oTools.TestString()
WScript.StdOut.WriteLine TypeName(oTools.TestInteger()) & " - " & oTools.TestInteger()
WScript.StdOut.WriteLine TypeName(oTools.TestDouble()) & " - " & oTools.TestDouble()
WScript.StdOut.WriteLine TypeName(oTools.TestFloat()) & " - " & oTools.TestFloat()

test = oTools.TestArray()
WScript.StdOut.WriteLine TypeName(test)
WScript.StdOut.WriteLine UBound(test)

For i = 0 To UBound(test)
  WScript.StdOut.WriteLine test(i)
Next

For Each item IN test
  WScript.StdOut.WriteLine item
Next

test = oTools.TestJaggedArray()
WScript.StdOut.WriteLine TypeName(test)
For Each item IN test
  WScript.StdOut.WriteLine test & " - " & test.Item(item)
Next

test = oTools.TestDictionary()
WScript.StdOut.WriteLine TypeName(test)
For Each item IN test
  WScript.StdOut.WriteLine test & " - " & test.Item(item)
Next

うまくいくもの:

string, int, foat, double

配列、JaggedArray、または辞書に関しては、タイプの不一致が得られます。 vartypeは辞書の13オブジェクトです。たとえば、このdictはscripting.dictionaryとは異なるようです。

CodeProject.comとStackoverFlowを一日中チェックしましたが、StackoverFlowのスレッドが存在するヒントは見つかりませんでした。

だから誰もが同じ問題を抱えていて、私を助けたり、私が続けることができるいくつかのヒントを与えたりすることができますか?

役に立ちましたか?

解決

  1. レッスン:.NETにマーシャラを処理させてください:)

    public object[] Read()    {      var retVal = new object[] {1,2,3};      return retVal;    }
    

これは、VBScriptからアクセスできる配列です。手がかりは、オブジェクトである必要があるということです。

今、私はギザギザのアレイと辞書のソリューションに取り組みます...

他のヒント

配列をcomに渡す:すべての管理された配列タイプは、管理されたコードから管理されていないコードに渡すことができます。管理されたタイプとそれに適用される属性に応じて、配列には安全な配列またはCスタイルの配列としてアクセスできます

この記事をご覧ください。http://msdn.microsoft.com/en-us/library/z6cfh6e6(v=vs.80).aspx

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top