U dont need to synchronized unless you have access to not immutable variables for your endpoint which seems to not be the case.
By default each endPoint is a singleton bean.
Secondly your...
Type: Posts; User: mada; Keyword(s):
U dont need to synchronized unless you have access to not immutable variables for your endpoint which seems to not be the case.
By default each endPoint is a singleton bean.
Secondly your...
You cann add an interceptor to do the xslt transformation. We have tried it. It is a pain to write/debug...
A more easy way to do it is to create a new webservice for the new version.
Precise...
No clean is done at all in this code in AxiomSoapMessageFactory and my experience too :(
You can open a Jira for that.
You can easily extend the culprit AxiomSoapMessageFactory and add a...
You can use DocBook along with your rest api like the Spring & Hibernate Project but it will be written by hand & will reflect your Api as well.
This solution supports template & full customization.
If your question is about to test everything without having to have a j2ee server deployed, see Javacrumbs
Firts, you have to know that youi are int the wrong forum section
Here is your answer :
@RequestMapping(value="/car/{carId}", method = RequestMethod.Get)
public Car...
Spring WS & streaming attachment doesnt work.If im wrong im still waiting for a proof of concept with a file of 100mo without outOfMemory, not in request ANd response.
IN request i can dot it.
I...
of course they are insecure if it is send through http not https.
But if you are on a private network & it is not a super important authentification like for bank stuff, why not.
if you want to see...
AUthentification are sent normally through the soap:headers using ws-security oasis (google it ther is ton of doucmentation).
It is in the headers because it is transversal, not specifing to an...
To avoid transforming back and forth you may need just CDATA feature in XML.
its is a classic example of resistance to change in the IT field & the final consequence: being stuck with old apis with olds bugs that might be already corrected in the new ones.
Take up your...
There is a JIRA for that.
Any body has idea to manage this process of creating java classes from schemas?
Yes - here is the code needed for your case in your pom.xml:
<plugin>
...
<oxm:jaxb2-marshaller id="jaxbmarshaller" contextPath="PACKAGE1:package2:package3" />
I know it is ugly. I have open a JIRA about that a month ago.
The older old school solution is
<bean...
1. I dont know. You should dig on the code and had a breakpoint to understand what happens.
If it seems to be a bug search on spring jira about that or on google.
2. Yes. if your interceptor are...
Here its is discussion only about java stuff.
I dont know .NEt but they should have something like pooling connexion, open once & use all the time. Google is your friend
Ok super quick replay because i dont have my project bewlo my eyes.
Full answer tomorrow.
I have almost the same configuration & i have multiple objectFactory & no problem of communs xsd imports....
Consider using debug logs server or client side to the the full request sent.
If you dont know or cant do that, consider using Wireshark and copy and paste you full request and compare it with the...
1-do you really need NOT soap stuff & why not ?
2-do you really need Spring Ws for simple Xml message transfer ? Why dont use Rest service for that ? See Spring mvc Rest done by Arjen too (author...
first i think you should considere the drawbacks of a stateful webservices.
I'm 99% sure that there is not such thing in spring ws already ready to use.
I will not recommand to store them on...
after a google search the answer is here
Keep dreaming :) And how can Spring know which packages is part of your project and not ?
yeah that is what i wanna say. And you maybe through this problem leave the super verbose Ant stuff & switch to the new Maven World :)
Well actually, spring ws streaming is like the
One piece
everyone want to find it but nobody has ever seen it:).
Even if it is working, your NEED to use AxiomSoapMessageFactory. It will may be...
No it is "old school" :).
Just on line is enough tio detect them :
<context:component-scan
base-package="fr.yourCOmpany.endpoint,fr.yourCOmpany2.endpoint" />