Looking for some help on importing a relational database into Neo4j. The only thing I've found is importing CSV files - is there any other way or is that due to having to get the tabular data into...
Type: Posts; User: macdoug1; Keyword(s):
Looking for some help on importing a relational database into Neo4j. The only thing I've found is importing CSV files - is there any other way or is that due to having to get the tabular data into...
I'm working with a client that has a need for us to gzip the payload of the response then use MTOM as an attachment. I've got the example working that is in the Spring WS for MTOM but not sure I see...
I would like to know if you have support for MTOM response messages in a Spring-ws? If so, can you point me to an example or some documentation on how that would get setup? I'm using the latest...
So if I wanted to do polling of things like IM with someone does the Spring framework support that currently or is that to come?
I got it working! Thanks for your help. I really like this method over using the SpringFactory class. Anyway again thanks and I can't wait to see the future of this piece of Spring.
So in the web.xml do I need to include the ContextLoaderServlet? Tomcat5.5
<listener>
<listener-class>org.springframework.web.context.ContextLoaderServlet</listener-class>
</listener>
The...
I'm using the examples that Jeremy provided to configure my project to talk to BlazeDS. My problem with some of the examples is that they don't explain where the applicationContext.xml fits in and if...
In the examples from Jeremy on this config setup I see this: web-application-config.xml file. Is this file taking the place of the applicationContext.xml? I'm not really sure what the purpose of this...
I looked at your post and tried what you had there and now it can't create the bean for dataSource in my dataAccessContext.xml. Do I need to remove the stuff I had in the web.xml? or am I missing...
Having an issue getting JNDI working with Tomcat. I've configured my web.xml inside my project with this;
<resource-ref>
<description>MySql</description>...
It appears that I really needed to use the queryForList(String arg, Object arg1); create a hashmap and pass them in as an object.
Having an issue with iBatis. I can't seem to figure out what the issue is here. I thought it might be that the fields defined in the TO were strings but it didn't seem to matter when I changed them....
I have an XML String that I want to print out to a URL. I've tired using the PrintWriter function that was used previously but this is inside of the method @Override
protected ModelAndView...
I'm getting this exception when I deploy the service to glassfish: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'defaultHandlerMapping' defined in...
thanks! I did what you said last night and found it. I just woke up after poking around trying to find out how that worked and you are right. Thanks for your response though. I really need to take a...
I can't seem to figure out where this is happening. I was hoping that someone with not so tired eyes might see it.
SEVERE: Context initialization failed...
Thanks! I need to get away from this for awhile. I'm starting to miss the obvious.
I had to include that jar in the classpath of the service in order to get by that error. I don't understand my self why, but I guess it is needed for something. Anyway I posted a new issue with the...
I can't seem to figure out how this works. I've been to the iBatis website and downloaded the documentation and I can't find anything that describes how this type of resultMap works. Anyway I'm...
I'm not using servlets for this service do I still need it? Meaning because I'm forced to run this inside Tomcat do I need to have that jar file in the class path regardless of whether I use it or...
Does this help any? I don't know what it means.
2007-03-27 12:08:43 StandardContext[/MT]Error configuring application listener of class org.springframework.web.context.ContextLoaderListener...
No ... I couldn't get it working as I mentioned before. So I left it and finished coding some other classes and now I'm back trying to start it up to see where I left off and now it won't start.
Mar 27, 2007 11:08:27 AM org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on http-8080
Mar 27, 2007 11:08:27 AM org.apache.catalina.startup.Catalina load
INFO:...
Does anyone know what causes this: SEVERE: Error listenerStart
I've search on it and got one link which I tried but didn't seem to help. Any ideas?
Well... I've got an application that is running inside of Tomcat as you already know and it has no UI. All I do is perform certain functions every 5-10mins on db tables to set data on them in a...