I have one C# Application written using .net framework4.0.It is working good.Now i want to integrate this C# code with my OFBIZ 9 version.Is this possible to integrate C# with OFBIZ. In my C# Application, I have forms for user interaction and also business logic for accessing word document(OOXML).for example, Getting particular paragraph in the Word Document depending upon user login. I don't know is this possible to integrate C# with OFBIZ?.
Please anybody having Idea or experience share with me...
I am eagerly waiting for your reply...
Thanks & Regards,
P.SARAVANAN.
Please take a look at this PDF: http://www.opensourcestrategies.com/ofbiz/OFBIZ_SOAP_RMI_Tutorial.pdf
To summarize: All the Ofbiz services can be exported to be available to be called from outside Ofbiz using RMI OR SOAP. Attached PDF has some nice examples on this. This way you can call any Ofbiz service from C# or any other platform remotely.
Related
Using HPE UFT, we can record the UI actions and generate the VBScripts automatically.
Is there a way, that I can generate the C# code for the UI
interaction with the same auto generate option?
Is that possible in UFT?
Please advice. Thanks.
Note: I am experienced in C# and have zero knowledge in VBScript.
LeanFT is the tool in HPE's functional testing family that supports C#1, currently2 it does not support recording but a quick search found a (non-HPE) product that converts UFT to LeanFT.
Footnotes:
as well as Java and JavaScript
True as of May 2017, I expect this will change in the future
I'm trying to create a wpf application such as a movies library because i would like to manage and sort out my movies with a pretty interface.
I'd like to create a library with all my movies getting information from the web, but i don't know how very well.
I thought to get the information from a web site, for example imdb, but i don't know if it's legally to capture html from page to get the nested information.
It's my first desktop application and I would also like to know if it is necessary to create a database within the project and then create a setup project with specified script for deploy it.
Sorry for the confusion but i would like to know too much things :)
Thanks a lot in advance.
The legality of web scraping is a grey area. See my question, "Legality of Web Scraping vs Normal Use" and the corresponding answers for some insight.
Even if the legality is not a problem, web scraping is a flimsy approach because the webpage structure may change without notice, making your application suddenly useless until you update it to the new format. You are much better off using some sort of web API (if the site providing the information offers it).
Whether you need a database or not depends entirely on what your application will be doing and how you design it - it's not something any of us can tell you.
Same goes for the setup project - in fact I wouldn't worry about that until you actually have a working application. Take it step by step and keep the scope within control.
Yes I did not think about api.
It's a great idea, maybe use "themoviedb".
But if i create an application based on it, that has to show all the movies that you have stored on your hdd and get , for example, the posters, the description and the ranking, i have to create a database according to you?
Thanks a lot.
I have been developing a php web system for my project and I have completed the PHP v system however, my lecturer refuse to mark it and say that I should use C# with web matrix instead of php and MySQL with dreamweaver. Now That i have completed the assignment but in a different format I would like to ask if there is any way to do changes to the scripts instead of redoing the whole project.
Another thing is that in my PHP system, I have pages like:
login.php > login_now.php > home.php
where login_now.php is the processor page.
Does C# allows me to have a processor page similar to this as well?
If don't mind can someone advice me on what I should do? Thanks so much...I am lost.
Your only option is to rewrite the application from the ground up. The migration assistant mentioned by Luxspes is virtually useless as it was written for .NET v 1.1 (Web Forms), whereas the Web Pages framework runs on v 4.0.
You can use "processor" pages in Web Pages in the same way as you have in PHP, but my preference would be house the processing logic in the same page as the form and then redirect on success using the Post - Redirect - Get pattern (PRG), regardless of whether I was using PHP or ASP.NET.
If what to you need is to make it run on .NET, you could use PHP .NET Compiler: Phalanger: http://www.php-compiler.net/
If you want to actually translate the code you could use this: http://www.asp.net/downloads/archived-v11/migration-assistants/php-to-aspnet
I want to develop a Facebook app like a dictionary tool available in browser addons using .net. when an user selected a word, we have to show the meaning of that word. is it possible in c#?. somebody pls help me.
Yes, it is possible. You can convert C# code to lingua franca of the web -- JavaScript with Script#.
i'm trying to do a download manager just for learning cos i'm new in windows programming,
could someone tell me how to monitor most common web browsers,
i'd like to implement something like:
http://www.iwisoft.com/videodownloader/video-downloader-features.php
everytime you visit a web page in common browsers detects all video files in the web page and allow you to download or not the file, any idea how to do that without building an app for every browser, which is the best language to do it c#/vc++/managed/unmanaged,
i'm learning and using a mix of all to do other parts like download files, add rules to firewall or modify the registry
thanks a lot
I don't really know a neat way of doing this, but you could try the following :
Enumerate the name of the current window using GetForegroundWindow.
Check if the name you get using GetWindowText matches the usual name of the browser.
If it is a browser, moniter the clipboard and check for hyperlinks
then do your download stuff.
I program in C++ and assembly, but I wouldn't be able to advice you on the programming language since I don't have any experience with C#. But since you are new, I would suggest starting out with basic stuff. As pointed out in your comment, this is not something that can be achieved easily.