vikram Kesav wrote:Where this text ("And now... Some Services") come from, how i can track it and change it if i want.
That behavior is non-standard and specific to WebSphere.
SOAP web services typically do not respond to HTTP GET requests from browsers - they only respond to a SOAP request that is in the body of an HTTP POST request as it is issued by a SOAP service consumer.
If i append text "?wsdl" in my web service url, i get all wsdl document copy on my browser 
That is just an established convention for publishing the web service contract. If the web service endpoint is deployed at
http://www.example.com/services/endpoint then often the web services contract (WSDL) can be retrieved at
http://www.example.com/services/endpoint?wsdl with an HTTP GET (i.e. a browser can do it). The actual WSDL is often generated by environment hosting the endpoint, though a static copy could be just as easily be stored somewhere else.