This week's book giveaway is in the Agile and Other Processes forum.
We're giving away four copies of Darcy DeClute's Scrum Master Certification Guide: The Definitive Resource for Passing the CSM and PSM Exams and have Darcy DeClute on-line!
See this thread for details.

Nikola Stefanovic

Greenhorn
+ Follow
since Jul 15, 2011
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Nikola Stefanovic

No, I don't use database. I need just decompress zip file on server side and copy to folders for later use.
12 years ago
Hi,

I'm implement web service in java. Client will send one big zip file as byte array. What is maximum size for that file? What is best way to solve transfer big files? What is consequences if I just put that byte array in service method?

For example:

// data represent zip file as byte array
// and callMethod is web service method

callMethod(byte[] data)
12 years ago

Hi,

I have to implement web service and i'm using Eclipse Java EE IDE for Web developers (Indigo release), JAX-WS and Apache CXF 2.4. My web service must support collecting files from client (zip archiva) then process that files and send result to server over network, which will not be implement on same machine. Relation client-web service is easy and i already implemented, but problem is relation web service-server. Is it possible to implement web service to work like client, i.e after processing files to communicate with server program on other machine and work as client? I'm a newbie in this and sorry if i'm asking you stupid questions Smile

Cheers;
12 years ago