Search:

Type: Posts; User: dutchman_mn; Keyword(s):

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. My assumption in that you have some overlap. The...

    My assumption in that you have some overlap. The following is a pom.xml I have been using successfully on a project.

    <dependencies>
    <dependency>
    <groupId>com.google.android</groupId>...
  2. Mmmmm.... Everything looks good. What does...

    Mmmmm.... Everything looks good.

    What does your dependency entry look like in your pom.xml?
  3. Replies
    2
    Views
    845

    Do you have the maven tools plugin within Eclipse?

    Do you have the maven tools plugin within Eclipse?
  4. For smartphones, I would start with a...

    For smartphones, I would start with a Webkit-based browser and see if that meets your needs.

    Perry Hoekstra
  5. From a mobile perspective, Spring can help you...

    From a mobile perspective, Spring can help you detect that the browser is mobile-based and redirect the user to your mobile-optimized portion of your web application.

    Now, developing your mobile...
  6. My first question would be, did you resolve the...

    My first question would be, did you resolve the NullPointerException?

    07-09 09:17:37.398: WARN/dalvikvm(7247): threadid=3: thread exiting with uncaught exception (group=0x4001e390)
    07-09...
  7. Take a look at the thread: "Examples to make...

    Take a look at the thread: "Examples to make RestTemplate work with JSON?" in this forum. It was one of the first posts in this forum, it will be a page or two back.

    Perry
  8. Yes, on the topic of the message converter, I...

    Yes, on the topic of the message converter, I knew that but at the time I was starting to grasp at straws. I had read the same thing you did on @Root and did not put it in. As you did, I should...
  9. No, I have not.

    No, I have not.
  10. Replies
    6
    Views
    3,739

    I agree, it is not very RESTful but you are...

    I agree, it is not very RESTful but you are correct, the API would look something like your example. One of the responsibilities of an architect/developer is to make compromises when necessary in...
  11. Replies
    6
    Views
    3,739

    No, the link was an example of a workaround where...

    No, the link was an example of a workaround where PUT/DELETE are not available. You override the meaning of POST by placing "action" commands within your post such as "add" for PUT and "delete" for...
  12. Issue using SimpleXmlHttpMessageConverter

    I am attempting to use the SimpleXmlHttpMessageConverter to render an XML response to a Java object like this:



    HttpComponentsClientHttpRequestFactory requestFactory = new...
  13. Replies
    6
    Views
    3,739

    Get a different server? Whether the server...

    Get a different server? Whether the server supports PUT/DELETE or not cannot be solved by a REST client framework. There are a number of work-arounds, all rather ugly but they involve such things...
  14. I guess without knowing who told you and what...

    I guess without knowing who told you and what they told you, it is tough to figure out if what they told you is correct. Can you safely use SSL and the Spring REST client on your mobile application?...
  15. Re: Spring Android - Deserializing JSON objects causing issues when there is inheri

    Not knowing what is coming through in the JSON response but looking at your code, you don't reference BaseBall at all. What is the purpose of BaseBall, compatibility with the backend service?
  16. Re: Getting a "out of START_OBJECT token" deserialization issue‏

    Catch the runtime RestClientException



    try {
    ResponseEntity<Request[]> responseEntity = restTemplate.exchange(url, HttpMethod.GET, createHttpRequestEntity(), Request[].class);
    }
    catch...
  17. Re: Getting a "out of START_OBJECT token" deserialization issue‏

    "My hunch is the POJO is incorrectly defined."

    Yes, and unfortunately, the "out of START_OBJECT token" seems to be a catch-all for any deserialization issues.

    If you have control over the JSON...
  18. Re: Using resttemplate JSON with android hangs

    Can you pipe the request/response through TCPMon to see what is actually moving through?

    Based on what little information you have given, my first guess is the JSON response is badly formed and...
  19. Replies
    11
    Views
    3,716

    Re: Performance problems with HTTPS

    Yes, I know. I was actually using an internal Tomcat server to connect to. Like you, I was using "https://myserver/foo" as a stand-in for the real URL.
  20. Replies
    11
    Views
    3,716

    Re: Performance problems with HTTPS

    Hmmmmm ....

    I seem to be getting a:



    org.springframework.web.client.ResourceAccessException: I/O error: No peer certificate; nested exception is javax.net.ssl.SSLPeerUnverifiedException: No...
  21. Replies
    11
    Views
    3,716

    Re: Performance problems with HTTPS

    How are you connecting? Are you using RestTemplate.exchange with an HTTPS URI or some other mechanism?
  22. Replies
    6
    Views
    2,557

    Re: RestTemplate + Spring Security

    You mean encryption as in HTTPS or data storage encryption?
  23. Re: Blackberry interface for existing Spring MVC app

    I don't understand, what are you looking for that http://www.springsource.org/spring-mobile does not provide or the Greenhouse example application?
  24. Re: Blackberry interface for existing Spring MVC app

    Spring MVC is not available for either Android or Blackberry. As a matter of fact, there is no cross-platform framework that will allow a developer to create a single app and allow it to run on...
  25. Replies
    2
    Views
    1,297

    Re: Problem using Android RestTemplate

    What is the URI when you run it in the emulator? It cannot be "localhost".
Results 1 to 25 of 51
Page 1 of 3 1 2 3