WebWork was a Java-based web application framework developed by OpenSymphony that merged into the current Struts 2 framework.

learn more… | top users | synonyms

-2
votes
0answers
18 views

Form submission and local variables in webwork [closed]

Webwork does not properly translate my form data in to class variable in my java class. The project i am working is pretty old one > i am working on page which submits a form and as we make changes to ...
0
votes
1answer
118 views

Blackberry webworks, <input type=“time”> focus issue

I am using BlackBerry WebWorks SDK 2.3.1.5 to compile a jquery based application and running on Blackberry JDE7.0 simulator Following is the HTML code for a datetimepicker, datepicker and timepicker ...
0
votes
0answers
33 views

How to get substring in webwork

I'm a newbie with Webwork and I'm not able to get a substring from a variable. Here is my code in jsp and what I need to do is to get a substring fro "longString" to compare with "ABC". The substring ...
0
votes
2answers
99 views

Data Validation: Inheritance and lists

I am used WebWork and I am not able to validate my data properly. The main two things I don't know how to do are: -Validate a field with the validator of its super class. Example: Say we have class ...
1
vote
1answer
128 views

excel export from jira webwork plugin

I write my own webwork plugin for Jira 3.12, which make a report for version progress of some projects. I can't use standart jira report plugin, because customer want two-step parameters choise (some ...
0
votes
2answers
176 views

json string can't be posted as plain string through jquery ajax?

I want to post a json string as plain string to a action ,then convert the string to List using gson, but the string is still treated as json object by jquery/webwork, I'm using jquery ...
0
votes
0answers
458 views

How to post List<Map> to struts2/webwork action through jquery ajax?

I want to post values to List, the instance field of webwork/struts2 action, but received values by action are ognl.NoConversionPossible, what's wrong with it? I have coded setter/getter in the ...
0
votes
0answers
114 views

how to find the webwork framework version

I am starting to work on a 10 year old project which uses opensymphony's webwork. Since the people who worked on that project are no longer around i am stuck with in for now. Also there is no ...
2
votes
2answers
486 views

Getting values in my Java class from velocity (Jira plugin webwork module )

I am creating a Jira plugin which provides a version tab panel. In the velocity of this version tab panel i am providing a select list . the code of select list is as below ...
1
vote
1answer
57 views

Tracking down the caller of a method [called through an invocation]

How would go about tracing down a method invocation from webwork.util.InjectionUtils in OpenSymphony Webworks? (I realize that this is an outdated project, but I'm still required to use it) I'm ...
0
votes
2answers
3k views

How do i fix “Origin null is not allowed by Access-Control-Allow-Origin” error in Javascript (jquery) with webworks?

I am trying to create a webworks app and trying to use jquery to post to a REST api - I get the following error "Origin null is not allowed by Access-Control-Allow-Origin" The javascript tries to ...
0
votes
2answers
792 views

Which is easier: Blackberry Webworks SDK or Adobe AIR for Playbook Tablet for CRUD/WCF developement? [closed]

I want to create a 1.0 application that uses WCF calls with the Blackberry Playbook Tablet. Which technology is easier to make a CRUD application using WCF: Webworks, or Playbook? The WCF service is ...
2
votes
3answers
990 views

Stripes for Java Web Dev, is it worth learning ? Is it easier ? how it compared to Struts?

I am tired of Java web, and started to learn Ruby on Rails because of that, but I just found this Framework and it looks promessing... But I am not in the mood to study more Java, so I would like to ...
0
votes
2answers
1k views

Multiple Submit Buttons problem in Struts2

Trying to work with multiple submit buttons within a single form in struts2 application but not able to work. here is the jsp code i am using <tr> <td class="button"><input ...
0
votes
1answer
868 views

struts 2 action class instance variable initialization

I am currently working a existing project.It's using Struts 2 + Spring 2.5. There is one action class, let's call it ActionA.java, inside which, there is a instance variable which is a service ...
1
vote
1answer
193 views

where web framework webwork?, is it still being released periodically?

I interested using webwork 2, after great experience on struts 1.2 on previous project. But after I checked on link text the latest release is 2007, and the few documentation tutorial status "is in ...
1
vote
2answers
630 views

Webwork actions, the lifecycle of variables declared in the action class

I'm using the webwork framework (JIRA plugin development) and was wondering about the lifecycle of the variables in the action class. I have a few private variables in the action class that are set ...
1
vote
1answer
294 views

FreeMarker, WebWork Problem

I have a web application written using freemarker, webwork and java. Now when user clicks on "getReport", java code returns the string variable (named "otchet") which contains the whole report in ...
7
votes
1answer
2k views

Atlassian JIRA Plugin Development: How to make variables available to velocity templates

FAIR WARNING: this question is going to be pretty tough to answer unless you have experience with JIRA and have access to their source (enterprise users). Greetings all, I am writing a plugin which ...
0
votes
1answer
385 views

How to get selected items in OpenSymphony WebWork select

I inherited somebody else's code, and it uses OpenSymphony WebWorks, which I've never encountered before. I'm trying to "cargo cult" a small fix to it. It includes the following in a JSP: ...
0
votes
1answer
396 views

How can I change my context root in WebWork?

I am currently working on a huge web application consisting of JSPs. Also i use WebWork framework. Until now the context root of my application was "/". Now I want to change that to "nstat". How ...
1
vote
3answers
424 views

Configure velocity to render an object with something other than toString?

Is there a way to configure Velocity to use something other than toString() to convert an object to a string in a template? For example, suppose I'm using a simple date class with a format() method, ...