Iron is a extensible web framework for Rust.
Questions tagged [iron]
120 questions
2
votes
1 answer
Cannot read property 'addEventListener' of null using Polymer iron-form example
I'm using Polymer to create a form based on the iron-form template here: https://github.com/PolymerElements/iron-form/blob/master/demo/index.html using the formGet form. My code is:
2
votes
1 answer
Meteor GoogleMaps.load() not working on iOS with Iron
I'm trying to load a simple map with a marker on a page with Meteor. I'm using the GoogleMaps package and Iron.
The map is showing up correctly in my browser but when I try it out with iOS Simulator (iPhone 6 / iOS 8.3) it just never loads : it's…

Laurent
- 2,284
- 2
- 21
- 41
2
votes
1 answer
Iron Handler: Missing Lifetime Specifiers
I'm trying to implement an Iron handler that contains a reference to another struct. That struct holds the data and does all operations on the data.
[package]
name = "testcrate"
version = "0.1.0"
authors = ["me"]
[dependencies]
iron = "^0.2"
This…

Danilo Bargen
- 18,626
- 15
- 91
- 127
2
votes
0 answers
Polymer iron list with firebase collection/document
Is there a way to combine polymer firebase-collection with iron-list?
I'm able to show my data with firebase-collection, but I also want to use iron-list to style my elements...

Warri
- 217
- 1
- 3
- 14
2
votes
1 answer
How to schedule a task to run regularly in iron.io
I have a worker which is up and running without errors. I would like to schedule tasks to run every morning at 9.30 using the CLI. Documentation is a little confusing when it comes to scheduling regular tasks using CLI. What I would try is joining…

Koba
- 1,514
- 4
- 27
- 48
2
votes
1 answer
IronPython reloading modules (UMD, runfile)
I'm working on some code with IronPython 2.7.0.40 on .NET 4.0.30319.18444. While in the IronPython console, if I make any changes to my modules, they will not take affect (unless I close, open a new console, switch back into the proper directory…

Mat
- 275
- 3
- 12
2
votes
1 answer
mime-types issue with ironworker upload
I am trying to upload a worker and remotely build it in my .worker file. I get this error message.
You have already activated mime-types 2.0, but your Gemfile requires
mime-types 1.25. Using bundle exec may solve this.
I have tried uninstalling…

Stephen Nguyen
- 5,357
- 5
- 24
- 28
2
votes
2 answers
IronMq + Laravel4: How make it working
I have a problem concerning the fact that my queues are received by IronMQ but not fire off.
Like i ask in this question:
https://stackoverflow.com/questions/19200285/laravel4-ironmq-queue-are-not-executed
But i see that inside my Iron dashboard,…

FrancescoMussi
- 20,760
- 39
- 126
- 178
2
votes
0 answers
Passing data to queued Mail object in Laravel 4, using Iron.io
I am trying to set up a queued email in Laravel 4 using the Iron.io driver. I would like to pass some details to the email's Subject and From attributes but they seem to not be making it into the queue request and their presence causes the email to…

NightMICU
- 9,000
- 30
- 89
- 121
2
votes
0 answers
Packing a Laravel4 or Symfony2 command in a phar archive
I'm looking into using IronWorker to run a number of scheduled tasks.
(http://dev.iron.io/worker/)
For this to work I need to be able to package everything I need, before sending it to Iron. And when I do, I need to be able to say 'php ' to actually…

Dieter
- 1,690
- 2
- 15
- 28
2
votes
2 answers
Inheritance within iron workers when using the iron_worker_ruby gem
I'm considering using IronWorker a project so that I can scale it easily (high traffic expected, with lots of background jobs).
In order to stay DRY, I'm trying to define workers using inheritance but I keep getting the following…

Dorian
- 2,571
- 23
- 33
1
vote
1 answer
iron pdf license not working Although it appears activated in the localhost check
Iron pdf license does not work when i deploy my project on aws
when i used check license in localhost it returns true
private async Task> GetReportPdf(long id)
{
try
{
var command = await…

Basma Ebraheim
- 111
- 7
1
vote
1 answer
Using NLTK Library in Iron Python
I am trying to use NLTK library and importing it using Iron Python. I am not able to get that done and an error is reported saying that the library is not found. Please do let me know what could be the problem. I am a beginner in python and looking…

user902807
- 61
- 1
- 5
1
vote
1 answer
IronPDF dependency on System.Drawing.Common
Based on the many SO questions related to this, it seems System.Drawing.Common is not supported in Azure App Service or Funtion Apps.
However, the IronPDF documentation suggests that it should work anywhere on Azure unless SVG graphics is being…

Raihan Iqbal
- 407
- 3
- 16
1
vote
1 answer
"Microsoft.Scripting.Math.BigInteger" has been removed from "MMicrosoft.Dynamic.dll" in IronPython 2.7.11
I have a plan to upgrade Iron Python of my project from V2.3.7 to 2.7.11.
When I am replacing the new IronPython package, I found that "Microsoft.Scripting.Math.BigInteger" has been removed from Microsoft.Dynamic.dll and it makes my code…

Jack Le
- 11
- 2