http « Message « Spring Q&A





1. Advice spring mvc http message converter    stackoverflow.com

I am trying to advice spring http message converter but, I can't get it to work.

@Pointcut("within(org.springframework.http.converter.xml.MarshallingHttpMessageConverter)")
public void converterPointcut() {
}

@Pointcut("execution(* *(..))")
public void converterMethodPointcut() {
}

@Around("converterPointcut() && converterMethodPointcut()")
public Object aroundConverter(ProceedingJoinPoint iJoinPoint) {
   ...

2. Sending SMS messages via HTTP Interface    forum.springsource.org

Sending SMS messages via HTTP Interface Hello, I need to make a HTTP POST request to a SMS gateway server to send a message from my web application. Depending on the ...

3. Render an XML page and send out HTTP message with XML, using @Requestbody @Responseb    forum.springsource.org

Render an XML page and send out HTTP message with XML, using @Requestbody @Responseb Hi, I am using Marshaller/UnMarshaller and @RequestBody and @ResponseBody to render HTTP messages. Both request and response ...

4. Did the Http response message get sent??    forum.springsource.org

Did the Http response message get sent?? Following REST in Spring Roo with Hibernate 3 Annotations: - I need the Controller to return a View AND an HTTP Response message to ...