Forum Post: Re: Pasoe Web Transport: Determining Handler Url In Handler Class

  • Thread starter Thread starter Peter Judge
  • Start date Start date
Status
Not open for further replies.
P

Peter Judge

Guest
PathParameterNames will give you a list of the substitution tokens that you've set up in the handler URI So if you have a handler for /Customers/{CustNum}/Orders/{ONum} then the PathParameterNames will return you CustNum,ONum. The ContextNames property contains a list of all the available context/variables, which includes those used for the param names (which are prefixed by URI_). So in the absence of any others, you'll get URI_CUSTNUM,URI_ONUM in the above example.

Continue reading...
 
Status
Not open for further replies.
Back
Top