Comments in flow services

Hi…

Is there anyway to get the comments in a flow service?

I need to list all services in a package and get their comments.

Any ideias???

Thanks.

PackageDoc or WmDoc have been available as free implementations for listing services and their comments. Haven’t looked for them on Empower yet.

I have searched for it and was not able to find it.

Anyoune can help?

WmDoc - I have installed this package in the environment and just wanted to check whether it has any performance impact if we deploy. Just want to know whether it creates html on-fly or it stores as static page once package deployed. I am not able to see any documentation on this package. Please do let me know if any one have details about the same.

Where can i see an example or tutorial of how to use WMDOC?
thx

whit this Java Services i get teh comments of a service/document/node/element in the IS

String Elemento = null;
NSNode node = null;
Namespace ns = Namespace.current();
String comment = null;
IData[] nodos = null;

IDataCursor pipelineCursor = pipeline.getCursor();
	String elemento = IDataUtil.getString(pipelineCursor, "elemento");
	if (elemento == null) {
		throw new ServiceException("No se ingreso la variable elemento");
	}
	Elemento = elemento;
pipelineCursor.destroy();

node = ns.getNode(Elemento);
if (node == null) {
	throw new ServiceException("Namespace del Elemento desconocido: " + elemento);
}

comment = node.getComment();

IDataCursor pipelineCursor_1 = pipeline.getCursor();
IDataUtil.put( pipelineCursor_1, "comment", comment );
pipelineCursor_1.destroy();
1 Like