vote up 0 vote down star

Do you know how can I call an ASP.NET .dll file from a PHP scritp?
Thanks!

flag

2 Answers

vote up 1 vote down check

You use the DOTNET extension.

First off, you need to be running this on Windows. If you are on linux, then I would look at using something like Facebooks Thrift.

If you are on windows and depending on which build of windows you are using you may need to uncomment the com extension in your php.ini

<?php
 $stack = new DOTNET("mscorlib", "System.Collections.Stack");
 $stack->Push(".Net");
 $stack->Push("Hello ");
 echo $stack->Pop() . $stack->Pop();
?>

Here are a list of Windows Specific functions

link|flag
This is definitly the way to go. Avoid COM as much as you can. – FlySwat Nov 22 '08 at 4:49
Great!, any Linux suggestions? – ramayac Nov 22 '08 at 5:15
If you have two boxs, one running windows (containing your .net methods) the other a linux one for PHP. Then the easiest is probably exposing the methods you need using a webservice. Dotnet does make it really easy to do that. And php now has awesome SOAP support. – chews Nov 22 '08 at 22:31
vote up 0 vote down

I believe you need put the .NET assembly in a COM wrapper, then calls it with PHP

See Here

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.