nwsWebPort {nws} | R Documentation |
Get the web port of the NWS server associated with nwsServer or managedServerInfo object.
## S4 method for signature 'nwsServer': nwsWebPort(.Object) ## S4 method for signature 'managedServerInfo': nwsWebPort(.Object)
.Object |
an object of class nwsServer or managedServerInfo . |
a double representing the web port associated with the object.
## Not run: # create an nwsServer and get it's web port si <- managedServerInfo() nwsWebPort(si) # create a connection to the server and verify that you get the same web port nwsWebPort(nwsServer(serverInfo=si)) ## End(Not run)