-
Hi,
as I've understood it, "undocked" ToolWindows close automatically when another component gets the focus.
However, IMHO, it should *not* close automatically if this other component is a dialog which has been opened from inside the ToolWindow.
E.g. when I open a file browser dialog from inside my ToolWindow, the ToolWindow should stay open (which it doesn't at the moment).
2009-08-12 13:14:05 UTC in MyDoggy - My Java Docking Framework
-
It is common practice to make the WSDL of a WebService available under the service address + "?wsdl".
But
http://localhost:8080/uddi/services/inquiry?wsdl
does not return the WSDL. It produces some error message instead.
Same applies to
http://localhost:8000/uddi/services/publication?wsdl
http://localhost:8000/uddi/services/security?wsdl
etc.
It is very important for us that the...
2009-06-04 13:01:30 UTC in OpenUDDI
-
com.ibm.wsdl.MessageImpl.getOrderedParts(null)
returns wrong result when a Message Part has been added, removed and then a Part with the same name is added again.
Part part = ...; // name="PartA"
message.addPart(part);
message.removePart("PartA");
Part anotherPartObj = ..; // name="PartA"
message.addPart(anotherPartObj);
message.getOrderedParts(null) returns
[anotherPartObj...
2008-09-04 10:33:41 UTC in Web Services Description Language for Ja