Hi
I gave up this and used a 3rd party sms gateway that was able to post to our webserver using http
Best regards
Per-Jarle
Type: Posts; User: pers; Keyword(s):
Hi
I gave up this and used a 3rd party sms gateway that was able to post to our webserver using http
Best regards
Per-Jarle
Hello all
I am trying to make a google map containing markers for all our reference sites.
My controller returns a ModelAndView containing a List of all the coordinates
/**
Coordinate...
Noone that knows a sollution on this one?
Hello
I am having a problem which probably have an easy sollution.
public class OrderCommand {
private Long productId;
private int quantity;
private String action;
private...
And if i put the attribute tabindex="-1" in addition, the field will be unawailable both from tabs and mouseklicks :)
Hello
I found out that i could use a "readonly" field instead.
This makes it cleaner since i can avoid hidden fields.
The drawback is that when using the tab key, it will stop at the readonly...
Hello
In one of my forms, i have a textfield for zipcode and a disabled textfield for city.
When the user writes a zipcode, there is an Ajax script which does the lookup to find the right city....
Hello
I am strugling to find the right place to put my business logic.
Example:
I have a form registerCustomerContact.jsp
Country: _____________V (Dropdown)
Company:_____________V...
Excellent :)
Thank you very much for your help
Best regards
Per-Jarle
Can i use that method directly from the onSubmit method and then pass the locale as parameter to the service method?
Since it's a static method, how can i be sure that the locale it return is the...
I'm not sure if i understand what you mean
Can you give me a short example?
Best regards
Per-Jarle
For instance when signing up for the application...
The user register himself at the signup page:
User register itself at the signup page (SimpleFormController)
The SignUpController...
Hello
I am using Spring MVC in my web application.
The architecture for the application is quite straight forward with the following layers:
web front (Web MVC)
Service layer
Repository
Hello
I have a problem when using one-to-many-relations where i have cascade-persist and cascade-merge
I'm not sure if this is a Hibernate og Spring related problem, so i have also posted this on...
Hello
I am working with a system that will talk to an external system by sending and receiving sms messages.
We have a SMPP connection to our mobile service operator.
I plan to use an open...
Hello
I went for a sollution with two queries instead of one.
Thanks for helping me
/Per-Jarle:)
Hello
I tried to follow what they said on the page you tipped me about, but i get a ClassCastException.
I definately think this is close to the sollution.
When debugging in Eclipse, Eclipse is...
Hello
I need some help with a case
Superclass specified as mapped-superclass in orm.xml:
public class SMS {
private String message;
public void setMessage(String message){
Hello
When traversing and logging out all parameters for the request, i found that the id was set to null in the get-request when rendering the form.
So problem is solved, but thanks for your...
Hello, and thanks for your answer :)
It makes sense that formBackingObject is called both on rendering and submitting.
I got that documentet in my log when adding the request method to my log...
hello
When using spring:bind tag on a pre-initiated object (customer), do i have to bind all the values for that object? :confused:
I have a Customer object which i load from the repository in...
Hello
I'm new to the Spring MVC, but i've managed to come quite far in my workflow.
Now i'm facing a problem which i don't see the sollution for.
I have created a controller and view for a...
Hello
I am looking for a sollution on how to add items to a collection.
Example:
public class Order {
private List<OrderLine> orderLines = new ArrayList<OrderLine>();
Hello
I'm working on an application which i forsee will have some problems.
I'm using Hibernate's JPA implementation for persistence and Spring for configuring.
The server side of the...
Hello all
I wonder what the best approach for doing the following is.
public class OrderLine implements Serializable {
private int id;
private Product product;