Hmmm, running "real" example / test results in a new post, but w/o message.
FacebookOperations fbOps = new FacebookTemplate("<some token>");
FacebookPost post = new...
Type: Posts; User: alesj; Keyword(s):
Hmmm, running "real" example / test results in a new post, but w/o message.
FacebookOperations fbOps = new FacebookTemplate("<some token>");
FacebookPost post = new...
I've also added the 'privacy' part from this api docs:
* http://developers.facebook.com/docs/reference/api/post
Following the rules based on what the user configures:
*...
I've simplified post to updateStatus a bit,
so it actually gets the post-id info as part of the initial post' response.
*...
I've been playing a bit with the Social+Facebook source code, trying to use it on GAE.
As GAE doesn't allow for new threads, default request factory work -- it's multithreaded.
So, I've extended...
OK, wrong groupId + artifactId. :-)
Works like a charm now.
Ah, thanks.
I tried those, but looks like I missed something.
I'll try again.
I'm having trouble finding the right Maven repository to pull Spring-Social 1.0.0.M1.
Hint(s) appreciated. :-)
And JBoss can't?
"However JBoss can use any other servlet container if it is JBoss-ified".
or even better:
"However JBoss can use any other servlet container if it can be run as a standalone...
To correct a few mistakes. ;-)
Everything else is a normal JAR, with a simple services/pojos -beans.xml file descriptors.
What is proprietary about MC's lookup?
It's all POJOs, user should...
I'm using JaxRpcPortProxyFactoryBean to access my webservice. Whole service URL is secured with BASIC auth - that means that access to .wsdl is also secured.
But even if you set username and...
What's the easiest way to get your command bean bound with uppercase name params from request?
ex.
My class MCommand has confirmationID field. With normal getter and setter -...
Any new solutions?
Since I also get the following exception:
ERROR [Service] Server returned HTTP response code: 401 for URL: http://x.y.net/g/services/weatherservice.wsdl...
Is there any good solution to this question posted on http://blogs.codehaus.org/people/jboner/archives/000826_spring_and_aspectwerkz_a_happy_marriage.html
Rgds, Ales
I get an exception when trying to initialize this context:
<!-- ========================= GENERAL DEFINITIONS ========================= -->
<!-- Configurer that replaces ${...}...
:oops:
Layzly searched the forum ... didn't know how exactly too look.
Hoping one who faced similar problem would jump right in :D .
Thanx.
How do you do this inside xml context?
<bean id="configuration" factory-bean="&sessionFactory" factory-method="getConfiguration"/>
Here xml parser crashes: ...
Hi!
BeanPropertyAccessStrategy
AbstractValueModel
ActionState
Flow
They all directly use LinkedHashSet from Java1.4.
Shouldn't they use CollectionFactory.createLinkedSetIfPossible() as in...
It is the same in TSS article: http://www.theserverside.com/articles/article.tss?l=SpringWebFlow
<subflow-state id="enterPassengerInformation" flow="passenger">
<attribute-mapper>
...
Would you (after this weekend :) ) recommend using C3P0 over DBCP?
Ales
ps: thanx also for that 'SessionFactoryUtils change' post reply
Just being curious.
Why the change from
if (!allowCreate) {
throw new IllegalStateException("No Hibernate session bound to thread, " +
"and configuration does not allow creation...
Juergen, can you please share the C3PO data source bean configuration (<bean id="dataSource" ...>)?
Ales
EhCache uses only one CacheManager instance - singleton. So you will always get the same instance, no matter wher you use it.
But at the moment ehcache doesn't count instance requests, which is not...
Adding your reply at Hibernate :D
- http://forum.hibernate.org/viewtopic.php?t=942454
I think you have the same problem (the topic title is almost the same):
- http://forum.springframework.org/viewtopic.php?t=5410
1) Should each method within the DAOs call this.closeIfNecessary?
I would use HibernateTransactionManger to handle my session.
2) Or should this be happening in the controllers?
Defenitely...