javax.sip.message.Request.setRequestURI()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(3.3k)|赞(0)|评价(0)|浏览(313)

本文整理了Java中javax.sip.message.Request.setRequestURI方法的一些代码示例,展示了Request.setRequestURI的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Request.setRequestURI方法的具体详情如下:
包路径:javax.sip.message.Request
类名称:Request
方法名:setRequestURI

Request.setRequestURI介绍

暂无

代码示例

代码示例来源:origin: org.mobicents.servlet.sip/sip-servlets-impl

  1. public void setRequestURI(URI uri) {
  2. checkReadOnly();
  3. Request request = (Request) message;
  4. URIImpl uriImpl = (URIImpl) uri;
  5. javax.sip.address.URI wrappedUri = uriImpl.getURI();
  6. request.setRequestURI(wrappedUri);
  7. //TODO look through all contacts of the user and change them depending of if STUN is enabled
  8. //and the request is aimed to the local network or outside
  9. }

代码示例来源:origin: org.mobicents.servlet.sip/sip-servlets-impl

  1. private void checkRequestURIForNonCompliantAgents(MobicentsProxyBranch finalBranch, Request request) throws ServletParseException {
  2. URI requestURI = request.getRequestURI();
  3. if(request.getRequestURI() instanceof javax.sip.address.SipURI && ((Parameters)requestURI).getParameter(MessageDispatcher.RR_PARAM_PROXY_APP) != null && requestURI instanceof SipURI) {
  4. final String host = ((SipURI) requestURI).getHost();
  5. final int port = ((SipURI) requestURI).getPort();
  6. final String transport = JainSipUtils.findTransport(request);
  7. boolean isAnotherDomain = StaticServiceHolder.sipStandardService.getSipApplicationDispatcher().isExternal(host, port, transport);
  8. if(!isAnotherDomain) {
  9. if(logger.isDebugEnabled()) {
  10. logger.debug("Non Compliant Agent targeting Mobicents directly, Changing the request URI from " + requestURI + " to " + finalBranch.getTargetURI() + " to avoid going in a loop");
  11. }
  12. request.setRequestURI(
  13. ((URIImpl)(StaticServiceHolder.sipStandardService.getSipApplicationDispatcher().getSipFactory().createURI(
  14. finalBranch.getTargetURI()))).getURI());
  15. }
  16. }
  17. }
  18. }

代码示例来源:origin: org.mobicents.examples/restcomm-slee-example-sip11-b2b-sbb

  1. private void forwardRequest(RequestEvent event, DialogActivity out)
  2. throws SipException {
  3. final Request incomingRequest = event.getRequest();
  4. if (tracer.isInfoEnabled()) {
  5. tracer.info("Forwarding request " + incomingRequest.getMethod()
  6. + " to dialog " + out);
  7. }
  8. // Copies the request, setting the appropriate headers for the dialog.
  9. Request outgoingRequest = out.createRequest(incomingRequest);
  10. outgoingRequest.setRequestURI(out.getRemoteParty().getURI());
  11. // Send the request on the dialog activity
  12. final ClientTransaction ct = out.sendRequest(outgoingRequest);
  13. // Record an association with the original server transaction,
  14. // so we can retrieve it when forwarding the response.
  15. out.associateServerTransaction(ct, event.getServerTransaction());
  16. }

代码示例来源:origin: org.mobicents.servlet.sip/sip-servlets-impl

  1. logger.debug("Routing the request externally " + sipServletRequest );
  2. request.setRequestURI(SipFactoryImpl.addressFactory.createURI(routes[0]));
  3. try {
  4. forwardRequestStatefully(sipServletRequest, null, sipRouteModifier);

代码示例来源:origin: org.mobicents.servlet.sip/sip-servlets-impl

  1. throw new IllegalArgumentException("Unexpected exception happened on setting method " + method, e);
  2. request.setRequestURI(requestUri);
  3. ((MessageExt)request).setApplicationData(null);
  4. logger.debug("setting request uri to " + sipUri);
  5. request.setRequestURI(sipUri);
  6. logger.debug("setting request uri to " + sipUri);
  7. request.setRequestURI(sipUri);

代码示例来源:origin: org.mobicents.servlet.sip/sip-servlets-impl

  1. clonedRequest.setRequestURI(((URIImpl)destination).getURI());

相关文章