Best method to link .Net function via php

can anyone advise me if there is any possibility to access .Net modules using php

+2


a source to share


2 answers


One thing I can suggest is

step 1 : create web service in .net which is client script enable
         or create one aspx page   
setp 2 : call the web service method or web page using jquery ajax or javascript ajax 

      



this way you can achieve the results you want

+3


a source


Pretty prana ... NET makes it easy to create WSDL-based web services that PHP can easily interact with. In my experience, you can dodge using a DLL if possible - this will block your application from running in IIS, a bit of a nasty surprise and a rewrite if you ever need to switch your PHP application to a nix based server setup.



However, depending on your needs, you may not need / need to call it with jQuery. PHP has more than adequate SOAP functionality built into the core.

0


a source







All Articles