Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CLARION TO ASP.NET APPLICATION

Status
Not open for further replies.

Igor1234

Programmer
Apr 5, 2011
6
HR
Hi everyone,
I have a Clarion application that needs to send some information to ASP.NET application in form like this
I was trying with the use of NetTalk Post method, BUT NetTalk is ABC based while the original application isn't.
And using an option like calling internet explorer for every parameter will result in opening 10 internet explorer windows.

Any suggestions on how to do this?
 
Hi!

Why would sending the parameters open 10 IE windows? Aren't the paramaters chained together? What are you using to call IE - ShellExecute or the IE ActiveX Control?

I must admit that I am a novice in Web programming but there are other options ::

- Capesoft's File Explorer in which you can access the DOM objects and set the value directly.
- vuSendKeys from which can send keystrokes to populate the web page.

More specific information on your requirements will help me understand better.

Regards
 
Hi!

Check NetTalk can be used in Clarion (Legacy) Template applications.

Why can't you just use NetTalk and call the URL one after another with all the parameters. You can process the returned HTML page.

I use NetWebClient class and use the FETCH(URL) method to fetch the page. On the PageReceived method (after Parent Call), I process the PAGE property for the contents of the returned page. The PAGELEN property contains the size of the PAGE in bytes.

Regards
 

Thank You for all the help,
I have managed to compile the application without errors.
I have imported the application from the net talk example, in project i have included net c60netx.lib, the clarion version is 6.3.

But when i try to call that procedure the application crashes.
With exception error message to microsoft.


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top