---
sourceDocument: Yokohama API Reference
sourceDocumentLink: https://www.servicenow.com/docs/r/yokohama/api-reference

 Release :

    - yokohama

ft:locale :

    - en-US

ft:publication_title :

    - Yokohama API Reference

ft:clusterId :

    - crapiref

bundleId :

    - crapiref

workflow :

    - Creator


---

# Override a SOAP endpoint

# Override a SOAP endpoint {#ariaid-title1}

* Release version: Yokohama
* 
* Updated January 30, 2025
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 minute to read

The SOAP endpoint address where the SOAP message is posted is consistent with the
endpoint of the WSDL.

In some cases, however, the WSDL may reference an incorrect endpoint URL. If this happens, it
is necessary to over-ride the generated URL by creating the property
com.glide.soap_address_base_url to contain the new URL. You may have to add
the property manually as this is not an base system property.  
For instance, a generated SOAP endpoint may look like this:

    https://instance.service-now.com/incident.do?SOAP

You can specify a property to define the endpoint such that it goes through a proxy by setting the property:

    com.glide.soap_address_base_url = "https://myproxy.mycompany.com/service-now/"

This will result in the endpoint being generated to appear as:

    https://myproxy.mycompany.com/service-now/incident.do?SOAP


