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

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

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

Request.getMethod介绍

暂无

代码示例

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

  1. public void processRequest(RequestEvent requestEvent) {
  2. Request request = requestEvent.getRequest();
  3. ServerTransaction serverTransactionId = requestEvent.getServerTransaction();
  4. LOG.debug("Request: {}", request.getMethod());
  5. LOG.debug("Server Transaction Id: {}", serverTransactionId);
  6. if (request.getMethod().equals(Request.SUBSCRIBE)) {
  7. processSubscribe(requestEvent, serverTransactionId);
  8. } else if (request.getMethod().equals(Request.PUBLISH)) {
  9. processPublish(requestEvent, serverTransactionId);
  10. } else {
  11. LOG.debug("Received expected request with method: {}. No further processing done", request.getMethod());
  12. }
  13. }

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

  1. final String method = request.getMethod();
  2. AtomicLong requestsStatsMethod = null;
  3. if(processed) {

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

  1. public void processRequest(RequestEvent requestReceivedEvent) {
  2. Request request = requestReceivedEvent.getRequest();
  3. ServerTransaction serverTransactionId = requestReceivedEvent
  4. .getServerTransaction();
  5. String viaBranch = ((ViaHeader)(request.getHeaders(ViaHeader.NAME).next())).getParameter("branch");
  6. LOG.debug("Request: {}", request.getMethod());
  7. LOG.debug("Server Transaction Id: {}", serverTransactionId);
  8. LOG.debug("Received From Branch: {}", viaBranch);
  9. if (request.getMethod().equals(Request.NOTIFY)) {
  10. processNotify(requestReceivedEvent, serverTransactionId);
  11. }
  12. }

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

  1. public final String getMethod() {
  2. if(method == null) {
  3. method = message instanceof Request ? ((Request) message).getMethod()
  4. : ((CSeqHeader) message.getHeader(CSeqHeader.NAME)).getMethod();
  5. }
  6. return method;
  7. }

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

  1. /**
  2. * {@inheritDoc}
  3. */
  4. public void pushPath(Address uri) {
  5. checkReadOnly();
  6. if(!Request.REGISTER.equalsIgnoreCase(((Request)message).getMethod())) {
  7. throw new IllegalStateException("Cannot push a Path on a non REGISTER request !");
  8. }
  9. if(uri.getURI() instanceof TelURL) {
  10. throw new IllegalArgumentException("Cannot push a TelUrl as a path !");
  11. }
  12. if (logger.isDebugEnabled())
  13. logger.debug("Pushing path into message of value [" + uri + "]");
  14. try {
  15. javax.sip.header.Header p = SipFactoryImpl.headerFactory
  16. .createHeader(PathHeader.NAME, uri.toString());
  17. this.message.addFirst(p);
  18. } catch (Exception e) {
  19. logger.error("Error while pushing path [" + uri + "]");
  20. throw new IllegalArgumentException("Error pushing path ", e);
  21. }
  22. }

代码示例来源:origin: org.mobicents.examples/converged-demo-callcontrol-sbb

  1. public void execute(RequestEvent event) {
  2. Request request = event.getRequest();
  3. final String calleeCallId = ((CallIdHeader) request
  4. .getHeader(CallIdHeader.NAME)).getCallId();
  5. String method = request.getMethod();
  6. if (Request.BYE.equals(method)) {
  7. handleBye(calleeCallId, request);
  8. }
  9. }
  10. }

代码示例来源:origin: org.mobicents.examples/converged-demo-callcontrol-sbb

  1. public void execute(RequestEvent event) {
  2. Request request = event.getRequest();
  3. final String calleeCallId = ((CallIdHeader) request
  4. .getHeader(CallIdHeader.NAME)).getCallId();
  5. String method = request.getMethod();
  6. if (Request.BYE.equals(method)) {
  7. handleBye(calleeCallId, request);
  8. }
  9. }

代码示例来源:origin: org.mobicents.examples/converged-demo-callcontrol-sbb

  1. public void execute(RequestEvent event) {
  2. Request request = event.getRequest();
  3. final String calleeCallId = ((CallIdHeader) request
  4. .getHeader(CallIdHeader.NAME)).getCallId();
  5. String method = request.getMethod();
  6. if (Request.BYE.equals(method)) {
  7. handleBye(calleeCallId, request);
  8. }
  9. }
  10. }

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

  1. Request request = (Request) this.message;
  2. String method = request.getMethod();
  3. if (method.equals(Request.REGISTER)) {
  4. return ModifiableRule.ContactNotSystem;

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

  1. final long localCseq = cseq;
  2. final long remoteCSeq = ((CSeqHeader) request.getHeader(CSeqHeader.NAME)).getSeqNumber();
  3. final String method = request.getMethod();
  4. final boolean isAck = Request.ACK.equalsIgnoreCase(method);
  5. final boolean isPrackCancel= Request.PRACK.equalsIgnoreCase(method) || Request.CANCEL.equalsIgnoreCase(method);

代码示例来源:origin: org.mobicents.examples/converged-demo-callcontrol-sbb

  1. public void execute(RequestEvent event) {
  2. Request request = event.getRequest();
  3. final String method = request.getMethod();
  4. if (method.equals(Request.BYE)) {
  5. final String callId = ((CallIdHeader) request
  6. .getHeader(CallIdHeader.NAME)).getCallId();
  7. Dialog dialog = getPeerDialog(callId);
  8. try {
  9. sipUtils.sendOk(request);
  10. sendRequest(dialog, Request.BYE);
  11. } catch (ParseException e1) {
  12. // TODO Auto-generated catch block
  13. e1.printStackTrace();
  14. } catch (SipException e1) {
  15. // TODO Auto-generated catch block
  16. e1.printStackTrace();
  17. }
  18. setState(new UATerminationState(), callId);
  19. }
  20. }
  21. }

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

  1. String A2 = request.getMethod().toUpperCase() + ":" + uri.toString();
  2. byte mdbytes[] = messageDigest.digest(A1.getBytes());
  3. String HA1 = toHexString(mdbytes);

代码示例来源:origin: org.mobicents.examples/call-controller2-forwarding-sbb

  1. private void onNonInviteEvent(javax.sip.RequestEvent event,
  2. CallForwardingSbbActivityContextInterface localAci) {
  3. localAci.detach(this.getSbbLocalObject());
  4. // get proxy child SBB
  5. ChildRelation proxyRelation = getJainSipProxySbb();
  6. if (!proxyRelation.isEmpty()) {
  7. // we have a child so we are processing this call,
  8. // attach the proxy so it can have a chance to cancel the invite
  9. localAci.attach((SbbLocalObject) proxyRelation.iterator().next());
  10. log.info("########## Processing request "+event.getRequest().getMethod()+" for user "+event.getRequest().getRequestURI());
  11. }
  12. }
  13. private LocationService locationService = new LocationService();

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

  1. String A2 = request.getMethod().toUpperCase() + ":" + uri.toString();
  2. String HA1 = hashedPassword;

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

  1. private boolean controlCongestion(Request request, SipServletRequestImpl sipServletRequest, Dialog dialog, RouteHeader routeHeader, SipProvider sipProvider) {
  2. if(rejectSipMessages || memoryToHigh) {
  3. String method = request.getMethod();
  4. boolean goodMethod = method.equals(Request.ACK) || method.equals(Request.PRACK) || method.equals(Request.BYE) || method.equals(Request.CANCEL) || method.equals(Request.UPDATE) || method.equals(Request.INFO);
  5. if(logger.isDebugEnabled()) {

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

  1. public SipServletRequest createCancel() {
  2. checkReadOnly();
  3. if (!((Request) message).getMethod().equals(Request.INVITE)) {
  4. throw new IllegalStateException(
  5. "Cannot create CANCEL for non invite " + message);
  6. }
  7. if (super.getTransaction() == null
  8. || super.getTransaction() instanceof ServerTransaction)
  9. throw new IllegalStateException("No client transaction found! " + super.getTransaction());
  10. if(RoutingState.FINAL_RESPONSE_SENT.equals(routingState) || lastFinalResponse != null) {
  11. if(lastFinalResponse != null) {
  12. throw new IllegalStateException("final response already sent : " + lastFinalResponse);
  13. } else {
  14. throw new IllegalStateException("final response already sent!");
  15. }
  16. }
  17. try {
  18. Request cancelRequest = ((ClientTransaction) getTransaction())
  19. .createCancel();
  20. SipServletRequestImpl newRequest = (SipServletRequestImpl) sipFactoryImpl.getMobicentsSipServletMessageFactory().createSipServletRequest(
  21. cancelRequest, getSipSession(),
  22. null, getTransaction().getDialog(), false);
  23. newRequest.inviteTransactionToCancel = super.getTransaction();
  24. return newRequest;
  25. } catch (SipException ex) {
  26. throw new IllegalStateException("Could not create cancel", ex);
  27. }
  28. }

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

  1. ViaHeader viaHeader = (ViaHeader) request.getHeader(ViaHeader.NAME);
  2. if(!request.getMethod().equals(Request.CANCEL) && viaHeader == null) {

代码示例来源: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. throw new IllegalStateException("the transaction state is such that it doesn't allow a PRACK to be sent now, or this response is provisional only, or a PRACK has already been generated");
  2. if(!Request.INVITE.equals(getTransaction().getRequest().getMethod())) {
  3. throw new Rel100Exception(Rel100Exception.NOT_INVITE);

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

  1. throw new SipException(" Error - AUTOMATIC_DIALOG_SUPPORT is on");
  2. if (!SIPTransactionStack.isDialogCreated(transaction.getRequest().getMethod()))
  3. throw new SipException("Dialog cannot be created for this method "
  4. + transaction.getRequest().getMethod());

相关文章