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

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

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

Request.getContent介绍

暂无

代码示例

代码示例来源:origin: org.apache.camel/camel-sip

  1. private void processPublish(RequestEvent requestEvent,
  2. ServerTransaction serverTransactionId) {
  3. try {
  4. Request request = requestEvent.getRequest();
  5. LOG.debug("SipPresenceAgentListener: Received a Publish request, sending OK");
  6. LOG.debug("SipPresenceAgentListener request: {}", request);
  7. EventHeader eventHeader = (EventHeader) requestEvent.getRequest().getHeader(EventHeader.NAME);
  8. Response response = sipPresenceAgent.getConfiguration().getMessageFactory().createResponse(202, request);
  9. sipPresenceAgent.getProvider().sendResponse(response);
  10. // Send notification to subscriber
  11. sendNotification(eventHeader, false, request.getContent());
  12. } catch (Exception e) {
  13. LOG.error("Exception thrown during publish/notify processing in the Sip Presence Agent Listener", e);
  14. }
  15. }

代码示例来源:origin: org.apache.camel/camel-sip

  1. dispatchExchange(notify.getContent());

代码示例来源:origin: org.apache.camel/camel-sip

  1. sendNotification(eventHeader, isInitial, request.getContent());

代码示例来源:origin: org.jitsi/jain-sip-ri-ossonly

  1. authorization = this.getAuthorization(reoriginatedRequest
  2. .getMethod(), uri.toString(),
  3. (reoriginatedRequest.getContent() == null) ? "" : new String(
  4. reoriginatedRequest.getRawContent()), authHeader, credHash);
  5. } else {
  6. (reoriginatedRequest.getContent() == null) ? "" : new String(
  7. reoriginatedRequest.getRawContent()), authHeader, userCreds);

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

  1. private void initialMediaSessionSetup(ServerTransaction serverTransaction)
  2. throws MsControlException {
  3. // create media session
  4. MediaSession session = msRaSbbInterface.createMediaSession();
  5. ActivityContextInterface mediaSessionACI = mscRaAciFactory
  6. .getActivityContextInterface(session);
  7. SbbLocalObject sbbLocalObject = sbbContext.getSbbLocalObject();
  8. mediaSessionACI.attach(sbbLocalObject);
  9. // store the media session aci in a cmp shortcut
  10. setMediaSessionACI(mediaSessionACI);
  11. tracer.info("Created media session: " + session);
  12. // create network connection
  13. NetworkConnection connection = session
  14. .createNetworkConnection(NetworkConnection.BASIC);
  15. ActivityContextInterface connectionACI = mscRaAciFactory
  16. .getActivityContextInterface(connection);
  17. connectionACI.attach(sbbLocalObject);
  18. // store the network connection aci in a cmp shortcut
  19. setNetworkConnectionACI(connectionACI);
  20. tracer.info("Created network connection: " + connection);
  21. // process the received sdp
  22. SdpPortManager sdpManager = connection.getSdpPortManager();
  23. tracer.info("Created SDP Manager, sending client sdp...");
  24. sdpManager.processSdpOffer((byte[]) serverTransaction.getRequest()
  25. .getContent());
  26. }

代码示例来源:origin: org.mobicents.examples/mobicents-slee-example-mscontrol-demo-sbb

  1. private void initialMediaSessionSetup(ServerTransaction serverTransaction)
  2. throws MsControlException {
  3. // create media session
  4. MediaSession session = msRaSbbInterface.createMediaSession();
  5. ActivityContextInterface mediaSessionACI = mscRaAciFactory
  6. .getActivityContextInterface(session);
  7. SbbLocalObject sbbLocalObject = sbbContext.getSbbLocalObject();
  8. mediaSessionACI.attach(sbbLocalObject);
  9. // store the media session aci in a cmp shortcut
  10. setMediaSessionACI(mediaSessionACI);
  11. tracer.info("Created media session: " + session);
  12. // create network connection
  13. NetworkConnection connection = session
  14. .createNetworkConnection(NetworkConnection.BASIC);
  15. ActivityContextInterface connectionACI = mscRaAciFactory
  16. .getActivityContextInterface(connection);
  17. connectionACI.attach(sbbLocalObject);
  18. // store the network connection aci in a cmp shortcut
  19. setNetworkConnectionACI(connectionACI);
  20. tracer.info("Created network connection: " + connection);
  21. // process the received sdp
  22. SdpPortManager sdpManager = connection.getSdpPortManager();
  23. tracer.info("Created SDP Manager, sending client sdp...");
  24. sdpManager.processSdpOffer((byte[]) serverTransaction.getRequest()
  25. .getContent());
  26. }

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

  1. Request dialogRequest=
  2. dialog.createRequest(clonedRequest.getMethod());
  3. Object content=clonedRequest.getContent();
  4. if (content!=null) {
  5. ContentTypeHeader contentTypeHeader= (ContentTypeHeader)

相关文章