synchronize
2 TopicsAuto-discovery of virtual servers in other route domains
Gentlemen, I'm doing an implementation of GTM module synchronization, but in different sites using different domain route and are not the route domain 0. I wonder what the solution to make this timing since the GTM module does not synchronize with Route Domain other than 0. I wonder if there is some explanatory material on Auto-discovery of virtual servers in other domains route, and how it works. Thank you ! ;) Moises Tavares445Views0likes11Commentssynchronize_to_group_v2() Common::InvalidArgument
Hello, I am trying to synchronize a group using synchronize_to_group_v2(), but everytime I run it I get the following: Exception caught in System::urn:iControl:System/ConfigSync::synchronize_to_group_v2() Common::InvalidArgument org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:222) org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:129) org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1087) org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown Source) org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanEndElement(Unknown Source) org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source) org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source) org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source) org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source) org.apache.xerces.parsers.XMLParser.parse(Unknown Source) org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source) org.apache.xerces.jaxp.SAXParserImpl$JAXPSAXParser.parse(Unknown Source) org.apache.xerces.jaxp.SAXParserImpl.parse(Unknown Source) org.apache.axis.encoding.DeserializationContext.parse(DeserializationContext.java:227) org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:696) org.apache.axis.Message.getSOAPEnvelope(Message.java:435) org.apache.axis.handlers.soap.MustUnderstandChecker.invoke(MustUnderstandChecker.java:62) org.apache.axis.client.AxisClient.invoke(AxisClient.java:206) org.apache.axis.client.Call.invokeEngine(Call.java:2784) org.apache.axis.client.Call.invoke(Call.java:2767) org.apache.axis.client.Call.invoke(Call.java:2443) org.apache.axis.client.Call.invoke(Call.java:2366) org.apache.axis.client.Call.invoke(Call.java:1812) iControl.SystemConfigSyncBindingStub.synchronize_to_group_v2(SystemConfigSyncBindingStub.java:1328) Here is my code private void syncToGroup(SystemConfigSyncBindingStub bindingStub){ try { bindingStub.synchronize_to_group_v2(this.getGroup(), this.getDevice() , this.isForce()); } catch (RemoteException e) { e.printStackTrace(); } catch (Exception e) { e.printStackTrace(); } } I am able to successfully use synchronize_from_group(). Any help is much appreciated.251Views0likes4Comments