• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Does MultiAction Controller work with Https?

 
Ranch Hand
Posts: 80
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Can someone tell me whether the multi action controller works with https ?

I have a scenario where i need to invoke the multiaction controller by explicitly building the url and send the data via https

Regards,
Suhas
 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am not sure why you cant do it if you can do it with normal controller, after all MultiActionController allows you to aggregate multiple actions into one controller.
 
Suhas Bilaye
Ranch Hand
Posts: 80
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I tried to invoke multi action controller by using a GWT RequestBuilder class using an http request the url was "http://localhost:8080/GWTApp/loginActivity.rpc?method=create&username=Sai" , It worked. But when I just replaced the http to https it doesn't invoke the server's create method. Are there any jars tht i need to include or something. I am using Spring 2.5.6. Is the issue related to the sping version.

Regards,
Suhas
 
Suhas Bilaye
Ranch Hand
Posts: 80
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I tried to include spring security jars and did the necessary configuration in the spring-servlet.xml but still it does not work
 
reply
    Bookmark Topic Watch Topic
  • New Topic