Forum Discussion

Carl_Rosevear_1's avatar
Carl_Rosevear_1
Icon for Nimbostratus rankNimbostratus
Jun 08, 2009

Loading WSDL: LocallLB.Pool.wsdl

So, when I use PyControl in one of my CGIs, it gracefully says "Loading WSDL: LocallLB.Pool.wsdl" when I create the BIGIP object.... problem is I can't seem to make that output not show up in my web CGI. Not the end of the world but I'm trying to make this nice and clean and I can't figure out how to make it not report. So, I've just munged my HTML code around it to make it show "Loading WSDL: LocallLB.Pool.wsdl" in a semi-convenient location on the page. Any idea how I can make it only report to log or something like that? Other that that, its working great for me at the moment. Thanks!

 

 

-_Carl

 

  • And yes, I can think or a number of other things like putting it in comment tags or something... but I was just wondering if there is a way to make it silent, redirect and output from the particualr class / function call, etc.
  • That message should almost certainly print to one of the logs in your web server, as it is destined for standard output. From the sounds of it my guess is that you're not instantiating the LocalLB.Pool object on server startup. If not, I'd strongly suggest doing this so you can simply pass that object around as needed in the CGIs. It'll be WAY faster this way too (if you're not doing it already).

     

     

    -Matt