Unsolved
This post is more than 5 years old
409 Posts
0
8765
September 9th, 2008 14:00
Testing your XAM integration
Hi there
If you need to connect to an XSystem to test your XAM integration, EMC Centera Engineering has provided a public Centera cluster accessible on the internet.
To use it you will need to download a Profile Entry Authorisation (PEA) file which you specify in the connection string when connecting to the XSystem.
You can get the PEA file at and you can use it in you connection strting like so
"snia-xam://centera_vim!128.221.200.60?pathnametopeafile.pea"
If you have any problems connecting please reply to this post.
Please read our Public Cluster Usage policy here http://community.emc.com/docs/DOC-1038 before using.
No Events found!


digeno
3 Posts
0
September 13th, 2008 17:00
Hello,
I´m obtaining an
org.snia.xam.ConnectException: xam/connection failed
error with this java code (WinXP+ Eclipse 3.4 + jre 1.5 + Centera_SDK_XAM1.0_WinDev8\lib32 + Centera_SDK_VIM1.0_WinDev8\lib32 )
// Connect to the archive system
String xri = "snia-xam://centeravim!128.221.200.60/?c:/xamconnect.pea";_
XAMLibrary xam = XAMLibraryObj.getLibrary();
xam.setProperty( XAMLibrary.XAMLOG_LEVEL, XAMLibrary.XAM_LOG_ALL );_
xam.setProperty( XAMLibrary.XAMLOG_PATH, "C:/temp/xam.log" );_
XSystem sys = xam.connect(xri);
Thank you for your help,
Greetings
David
mckeown_paul
409 Posts
0
September 15th, 2008 08:00
Hi David
Can I check your connect string
"snia-xam://centera_vim!128.221.200.60/?c:/xamconnect.pea"
I suspect it should be
"snia-xam://centera_vim!128.221.200.60?c:\xamconnect.pea"
possibly
"snia-xam://centera_vim!128.221.200.60?c:
xamconnect.pea"
if you need to "escape" the single \
Let me know how you got on
Paul
digeno
3 Posts
0
September 15th, 2008 09:00
Hello!
the problem was the port for that IP ( https://community.emc.com/docs/DOC-1038)
128.221.200.60:3218
this works!
String xri = "snia-xam://centera_vim!128.221.200.60:3218/?c:/xamconnect.pea";
thanks!
mckeown_paul
409 Posts
0
September 17th, 2008 03:00
Hi I'm glad you got it to work, but there should be no need to specify the port no to use as that is fixed and supplied by the VIM.
As long as it's working for you that's the main thing.
Paul