1

Microsoft provided a solution that allows one to easily manage and retrieve symbol files for his code using symbol server.

We are use both c# and Java, and I was wondering if there is a way to setup something similar to Symbol Server for Java, and is it possible to make it the same server.

Thank You!

borod108
  • 586
  • 4
  • 16

1 Answers1

2

I believe you're talking about repository managers and source code artifacts. If so - there are two common options - Nexus and Artifactory. You can read about the difference between them here. I never used Artifactory, but I can guarantee that with Nexus and Maven configured you can easily retrieve code or other artifacts from a central repository.

Vic
  • 19,436
  • 10
  • 75
  • 91
  • Thank you, I will read the reference and if it answers the question I will mark the answer as accepted. – borod108 Dec 16 '12 at 13:28
  • Hi, Actually I do not see how these tools will solve my problem. When if I set a Microsoft Symbol Server, I can easily set it up as http server and when I need to debug from a clients machine, i just give the symserver path to the debugger and it automatically gets the right symbols for the specific build. I do not see how I can use the tools you mentioned to do that, it seems they require a lot of manual work to achieve that every time. – borod108 Dec 17 '12 at 09:23
  • Did you ever had chance to work with Maven and java? If configured properly the IDE will automatically download sources or whatever you need from the repositories specified. – Vic Dec 17 '12 at 10:34