Having the exact same problem. Have you found a solution for this?
Type: Posts; User: YuvalRon; Keyword(s):
Having the exact same problem. Have you found a solution for this?
I have an aspect that bears some performance penalty. Therefore I would like to let the deployer of the app decide whether to use it or not. A placeholder can obviously be defined, but where should...
In Spring MongoDB is it possible to upsert a collection in bulk, i.e without iterating it and saving every item separately?
Thanks Craig.
Another related issue - the picture. I understand that Page.getPicture() is deprecated, but right now there is no other method. Is getPicture() supposed to work? It is always null....
Thanks Craig
https://jira.springsource.org/browse/SOCIALFB-103
Would be great if you can add this soon.
Yuval
How is it possible to retrieve the "About" part of a page (not the description)?
There is no Page.getAbout()
Yuval
Thanks Craig, sorry for the long delay, I finally had the time to refactor back and use the new 1.1.0 snapshot - it looks like it's working well.
Yuval
Thanks Marten, indeed the #anchor is not sent to the server, which is why I switched to another framework, history.js, which supports history without hashing it in #. Of course, this is still a...
Hi Craig,
In the meantime, I've figured out some workaround for this by extending OAuth2ConnectionFactory and FacebookServiceProvider:
public class FacebookServiceProviderNS extends...
I am developing Single-Page Application. Browser bar URLs are representing an internal state in the application that can be shared or bookmarked.
To achieve this, I use hasher.js, which routes...
Thanks Craig. I will follow this, although i'm pretty certain that I will have to find a way to resolve or workaround this quite soon.
Regarding the namespace argument, does it have to be a...
When I try to publish an action through FacebookTemplate
this.facebook.openGraphOperations().publishAction("myaction", "myobject", this.getObjectUrl(myObject));
I get the following...
Solved. Still think there is a lack of documentation on MongoTemplate, especially examples that can save time.
Hello
I seem to be having a difficulty finding a proper example of a MongoTemplate.group(..) operation usage.
I have a collection that I would like to group by 2 fields and return one of them...
Thanks for the tip. I did use facebook.fetchConnections(..) to implement that. I think there are other objects that don't have a search option too.
To narrow the question, I am looking for a page search option, but I don't see that there is a search method defined for it like in other operations such as users, groups and events. Why is there a...
I am new to Spring Social. I am looking for a Facebook operation that performs a graph search (for example https://graph.facebook.com/search?q=platform&type=page) but can't seem to find one. Is it...
Hi Martin
I made a sample project with the same configuration - much simpler - and it did reproduce! I run it on STS 2.3.2 and it works, 2.7.1 doesn't.
Please let me know how to send you the...
Hi
I have a web app that is combined of a chain of project dependencies using Maven 2. The app uses Hibernate 3.5.6. So far I have used STS 2.3.2 and everything worked perfectly.
However, when...
Hello
Normally when you authenticate a user, a session context is created and holds the logged user.
But what if you merely want to authenticate the user in order to carry out a single specific...
Thank you Marten, even though I need that value upon start time (rather than a specific session) i'll look into that possibility.
That's not what I meant :]
I want to read the default session timeout value, the one you would normally define in web.xml:
<session-config>
<session-timeout>60</session-timeout> ...
So if I want to implement a session expiration warning mechanism, I have no other way but to provide a hard coded timeout value?
Btw I noticed that you can see it in debug under StandardContext...
Suppose I want to programmatically access the default session timeout value in my tc server (or any app server for that matter) as set in my web.xml
Does Spring provide a way for me to do it?
Thank you Enrico, that solved the problem!
I wasn't aware of the fact that internal calls are not being advised, and indeed that method was public non-static but called internally. So I had to...