Hi,
GT 4.0 and GT 4.2 are not compatible. Newer WSRF, WS-N, and WS-Adressing
specifications are used in 4.2.
In the factoryEndpoint element you'll have to use different namespaces
and replace ReferenceProperties by ReferenceParameters.
Please check the User section in Gram4 migration guide for changes:
http://www.globus.org/toolkit/docs/4.2/4.2.0/execution/gram4/mig/gram4-migrating-gt40.html#id2533869
Martin
omid boroumand wrote:
Hi,
I install GT 4.2.0 and want that submit a multijob to globus with
this instruction :
[EMAIL PROTECTED]:~> globusrun-ws -submit -f multijob.xml -J
but i see this error :
---
[EMAIL PROTECTED]:~> globusrun-ws -submit -f multijob.xml -J
globusrun-ws: Error loading rsl
globus_soap_message_module: Found
{http://schemas.xmlsoap.org/ws/2004/03/addressing}Address element when
expected {http://www.w3.org/2005/08/addressing}Address.
---
my job description is :
------------------------
<multiJob>
<executable>/bin/echo</executable>
<job>
<factoryEndpoint
xmlns:gram="http://www.globus.org/namespaces/2004/10/gram/job"
xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
<wsa:Address>https://omid:8443/wsrf/services/ManagedJobFactoryService</wsa:Address>
<wsa:ReferenceProperties>
<gram:ResourceID>Fork</gram:ResourceID>
</wsa:ReferenceProperties>
</factoryEndpoint>
<argument>Testing </argument>
<argument>1...2...3</argument>
<stdout>${GLOBUS_USER_HOME}/stdout_multi_j1</stdout>
<stderr>${GLOBUS_USER_HOME}/stderr_multi_j1</stderr>
</job>
<job>
<factoryEndpoint
xmlns:gram="http://www.globus.org/namespaces/2004/10/gram/job"
xmlns:wsa="http://schemas.xmlsoap.org/ws/2004/03/addressing">
<wsa:Address>
https://Mehdi:8443/wsrf/services/Managed
</wsa:Address>
<wsa:ReferenceProperties>
<gram:ResourceID>Fork</gram:ResourceID>
</wsa:ReferenceProperties>
</factoryEndpoint>
<argument>Hi There!</argument>
<argument>Dear John!</argument>
<stdout>${GLOBUS_USER_HOME}/stdout_multi_j2</stdout>
<stderr>${GLOBUS_USER_HOME}/stderr_multi_j2</stderr>
</job>
</multiJob>
----------------------------------------
do you help me to solve this error?
thankyou .