Recent

Author Topic: Raudus - tool for building web applications - now supports Lazarus  (Read 71652 times)

teos

  • Full Member
  • ***
  • Posts: 157
Re: Raudus - tool for building web applications - now supports Lazarus
« Reply #30 on: August 27, 2012, 09:53:10 pm »
 
That keeps us all in the dark about when Raudus will become commercial and how about a price?
Do you have a clue about the costs and on when commercial version will be needed?
Quote
We are thinking of it now. But the price will not be higher than similar products have. What price and licensing model wil be acceptable to you?

First I wonder what are similar products to your thought?

I'm not going to say the price of the product or in this case price and license to the salesman. :-)
I don't know Raudus better than from a few samples, jus because of the unclear license and price.

igor.klopov

  • New Member
  • *
  • Posts: 11
Re: Raudus - tool for building web applications - now supports Lazarus
« Reply #31 on: August 28, 2012, 07:46:36 am »
First I wonder what are similar products to your thought?

I'm not going to say the price of the product or in this case price and license to the salesman. :-)
I don't know Raudus better than from a few samples
You are right. You should know Raudus and other web frameworks better before advising the price to salesman.
« Last Edit: August 28, 2012, 08:15:31 am by igor.klopov »

teos

  • Full Member
  • ***
  • Posts: 157
Re: Raudus - tool for building web applications - now supports Lazarus
« Reply #32 on: August 28, 2012, 01:32:24 pm »
Igor, Sorry if I seem offensive. My goal with my question was to have clear what Raudus costs and what the license is before I spend large effords on coding with it.

But I have no clue of a price. Just wondered if you have one.

I dont think that the remark that I should familiarize with other frameworks gives anyone a better answer. Sorry.. ;)

teos

  • Full Member
  • ***
  • Posts: 157
Re: Raudus - tool for building web applications - now supports Lazarus
« Reply #33 on: September 01, 2012, 09:19:16 pm »
I have 2 questions: which lazarus is supported at the moment and does Raudus have a Treeview component or is one planned?

childem

  • New Member
  • *
  • Posts: 26
Re: Raudus - tool for building web applications - now supports Lazarus
« Reply #34 on: September 02, 2012, 05:26:11 pm »
why all the examples I compiled gave a Console with the text "localhost:88" in it but not other form or other action at all??

otorres

  • Jr. Member
  • **
  • Posts: 94
Re: Raudus - tool for building web applications - now supports Lazarus
« Reply #35 on: September 02, 2012, 06:35:36 pm »
The console is a web server embebed, is necesary to debug applecation, change to CGI for publish the project.

mica

  • Full Member
  • ***
  • Posts: 196
Re: Raudus - tool for building web applications - now supports Lazarus
« Reply #36 on: September 02, 2012, 06:55:41 pm »
why all the examples I compiled gave a Console with the text "localhost:88" in it but not other form or other action at all??

open your webbroser and connect to localhost:88 or 127.0.0.1:88
and you will see the application

childem

  • New Member
  • *
  • Posts: 26
Re: Raudus - tool for building web applications - now supports Lazarus
« Reply #37 on: September 02, 2012, 07:37:24 pm »
thank you, mica and otorres!
by the way, how can I find a typical situation for such applications?
What is the great meaning to use this mechanism?

mica

  • Full Member
  • ***
  • Posts: 196
Re: Raudus - tool for building web applications - now supports Lazarus
« Reply #38 on: September 02, 2012, 08:02:21 pm »
easy deployment of applications
easy programming of webservices

.You dont need to change or update all the client exes/bins,just change the webservice.

barko

  • New Member
  • *
  • Posts: 45
Re: Raudus - tool for building web applications - now supports Lazarus
« Reply #39 on: September 15, 2012, 11:22:35 am »
Heya All! :) Long time no see. Anyway, I have situation and I need some help or more informations if any of you have some... here are steps:

1) create blank raudus application for apache 2.2 under Windows Lazarus
2) compile, it works ok
3) create blank raudus application for apache 2.2. under Linux Lazarus
4) can't compile, this is output from lazarus IDE:


Code: [Select]
Options changed, recompiling clean with -B
Hint: Start of reading config file /etc/fpc.cfg
Hint: End of reading config file /etc/fpc.cfg
Free Pascal Compiler version 2.6.0 [2012/05/17] for i386
Copyright (c) 1993-2011 by Florian Klaempfl and others
Target OS: Linux for i386
Compiling /tmp/project1.lpr
Compiling unit1.pas
unit1.pas(8,57) Hint: Unit "RaApplication" not used in Unit1
unit1.pas(8,65) Hint: Unit "RaBase" not used in Unit1
Error: Variables cannot be exported with a different name on this target, add the name to the declaration using the "export" directive (variable name: apache_module, declared export name: U_RAAPPLICATIONAPACHE22_APACHE_MODULE)

So i copy "U_RAAPPLICATIONAPACHE22_APACHE_MODULE" to exports apache_module name. And compile again. Now I have this:

Code: [Select]
unit1.pas(8,57) Hint: Unit "RaApplication" not used in Unit1
unit1.pas(8,65) Hint: Unit "RaBase" not used in Unit1
/usr/bin/ld: warning: link.res contains output sections; did you forget -T?
/usr/bin/ld: cannot find -lapr-1.dll
/usr/bin/ld: cannot find -lhttpd.dll
project1.lpr(20,1) Error: Error while linking
project1.lpr(20,1) Fatal: There were 1 errors compiling module, stopping

Here I am lost. Any clues? :) Thanks in advance!
« Last Edit: September 15, 2012, 11:25:26 am by barko »

Goodman H__

  • Full Member
  • ***
  • Posts: 130
Re: Raudus - tool for building web applications - now supports Lazarus
« Reply #40 on: October 30, 2012, 02:39:52 pm »
I just downloaded and intalled Raudus 0.92 for Laz1.02.When I install the package,it complained that->ppu source: RaudusFPC.pas not found.
Yeah I knew the source is not available.But what's the issue?
Thanks for the help in advance.

Regards,
« Last Edit: October 30, 2012, 03:52:17 pm by Goodman H__ »
fpc:2.6.1 Lazarus:1.1 SVN39277
OS:win 7

Leledumbo

  • Hero Member
  • *****
  • Posts: 8746
  • Programming + Glam Metal + Tae Kwon Do = Me
Re: Raudus - tool for building web applications - now supports Lazarus
« Reply #41 on: October 30, 2012, 04:45:43 pm »
Quote
I just downloaded and intalled Raudus 0.92 for Laz1.02.When I install the package,it complained that->ppu source: RaudusFPC.pas not found.
Yeah I knew the source is not available.But what's the issue?
Do you use 2.6.0 compiler (which I suppose is what Raudus compiled with)?

Goodman H__

  • Full Member
  • ***
  • Posts: 130
Re: Raudus - tool for building web applications - now supports Lazarus
« Reply #42 on: October 31, 2012, 01:37:33 am »
Thanks...
Yes,fpc2.6.0 +Laz IDE 1.02 +Raudus 0.9.2 which was mentioned in the Raudus website.
fpc:2.6.1 Lazarus:1.1 SVN39277
OS:win 7

igor.klopov

  • New Member
  • *
  • Posts: 11
Re: Raudus - tool for building web applications - now supports Lazarus
« Reply #43 on: May 11, 2013, 08:51:14 pm »
Hello again!

Indeed there was a problem while installing Raudus for Lazarus. Raudus required exact Lazarus version. Moreover, if you rebuild Lazarus, Raudus became incompatible with your Lazarus (you got "wrong checksum" and "can not find RaCreatorFPC" errors).

The problem is solved. New utility "welding" is introduced. The utility scans and parses Raudus PPUs and Lazarus PPUs, patches Raudus PPUs, and rebinds Raudus foreign links to Lazarus declarations. It also patches checksum bytes in Raudus PPUs to make them equal to Lazarus checksums.

Hence, the only restriction to use Raudus is FreePascal 2.6.0 or 2.6.2 (in other words PPU 134 or PPU 135). Raudus supports any Lazarus deviation - you can make Raudus compatible with any Lazarus build (including dev snapshot) - just run "welding".

The blog post:
http://www.raudus.com/blog/
The manual to install in Lazarus:
http://raudus.wikispaces.com/Install+in+Lazarus
« Last Edit: May 11, 2013, 09:06:01 pm by igor.klopov »

xinyiman

  • Hero Member
  • *****
  • Posts: 2256
    • Lazarus and Free Pascal italian community
Re: Raudus - tool for building web applications - now supports Lazarus
« Reply #44 on: October 26, 2013, 02:16:10 pm »
Taking of evidence on 'raudus use as an apache module arrival at this point. Where do you find the missing libraries?

/usr/bin/ld: can not find -lapr-1.dll
/usr/bin/ld: can not find trovare -lhttpd.dll
Win10, Ubuntu and Mac
Lazarus: 2.1.0
FPC: 3.3.1

 

TinyPortal © 2005-2018