|  |  | 
 |  |  |       SipURI requestURI = sipFactory.createAddressFactory().createSipURI(device.getDeviceId(), device.getHostAddress());
 | 
 |  |  |       // via
 | 
 |  |  |       ArrayList<ViaHeader> viaHeaders = new ArrayList<ViaHeader>();
 | 
 |  |  |       ViaHeader viaHeader = sipFactory.createHeaderFactory().createViaHeader(sipConfig.getSipIp(), sipConfig.getSipPort(),
 | 
 |  |  |             device.getTransport(), viaTag);
 | 
 |  |  |       ViaHeader viaHeader = sipFactory.createHeaderFactory().createViaHeader(sipConfig.getIp(), sipConfig.getPort(), device.getTransport(), viaTag);
 | 
 |  |  |       viaHeader.setRPort();
 | 
 |  |  |       viaHeaders.add(viaHeader);
 | 
 |  |  |       // from
 | 
 |  |  |       SipURI fromSipURI = sipFactory.createAddressFactory().createSipURI(sipConfig.getSipId(),
 | 
 |  |  |             sipConfig.getSipIp() + ":" + sipConfig.getSipPort());
 | 
 |  |  |       SipURI fromSipURI = sipFactory.createAddressFactory().createSipURI(sipConfig.getId(),
 | 
 |  |  |             sipConfig.getIp() + ":" + sipConfig.getPort());
 | 
 |  |  |       Address fromAddress = sipFactory.createAddressFactory().createAddress(fromSipURI);
 | 
 |  |  |       FromHeader fromHeader = sipFactory.createHeaderFactory().createFromHeader(fromAddress, fromTag);
 | 
 |  |  |       // to
 | 
 |  |  |       SipURI toSipURI = sipFactory.createAddressFactory().createSipURI(device.getDeviceId(), sipConfig.getSipDomain());
 | 
 |  |  |       SipURI toSipURI = sipFactory.createAddressFactory().createSipURI(device.getDeviceId(), sipConfig.getDomain());
 | 
 |  |  |       Address toAddress = sipFactory.createAddressFactory().createAddress(toSipURI);
 | 
 |  |  |       ToHeader toHeader = sipFactory.createHeaderFactory().createToHeader(toAddress, toTag);
 | 
 |  |  | 
 | 
 |  |  | 
 |  |  |       SipURI requestLine = sipFactory.createAddressFactory().createSipURI(channelId, device.getHostAddress());
 | 
 |  |  |       //via
 | 
 |  |  |       ArrayList<ViaHeader> viaHeaders = new ArrayList<ViaHeader>();
 | 
 |  |  |       ViaHeader viaHeader = sipFactory.createHeaderFactory().createViaHeader(device.getIp(), device.getPort(), device.getTransport(), viaTag);
 | 
 |  |  |       ViaHeader viaHeader = sipFactory.createHeaderFactory().createViaHeader(sipConfig.getIp(), sipConfig.getPort(), device.getTransport(), viaTag);
 | 
 |  |  |       viaHeader.setRPort();
 | 
 |  |  |       viaHeaders.add(viaHeader);
 | 
 |  |  | 
 | 
 |  |  |       //from
 | 
 |  |  |       SipURI fromSipURI = sipFactory.createAddressFactory().createSipURI(sipConfig.getSipId(),sipConfig.getSipDomain());
 | 
 |  |  |       SipURI fromSipURI = sipFactory.createAddressFactory().createSipURI(sipConfig.getId(),sipConfig.getDomain());
 | 
 |  |  |       Address fromAddress = sipFactory.createAddressFactory().createAddress(fromSipURI);
 | 
 |  |  |       FromHeader fromHeader = sipFactory.createHeaderFactory().createFromHeader(fromAddress, fromTag); //必须要有标记,否则无法创建会话,无法回应ack
 | 
 |  |  |       //to
 | 
 |  |  |       SipURI toSipURI = sipFactory.createAddressFactory().createSipURI(channelId,sipConfig.getSipDomain());  | 
 |  |  |       SipURI toSipURI = sipFactory.createAddressFactory().createSipURI(channelId,sipConfig.getDomain());  | 
 |  |  |       Address toAddress = sipFactory.createAddressFactory().createAddress(toSipURI);
 | 
 |  |  |       ToHeader toHeader = sipFactory.createHeaderFactory().createToHeader(toAddress,null);
 | 
 |  |  |       
 | 
 |  |  | 
 |  |  |       CSeqHeader cSeqHeader = sipFactory.createHeaderFactory().createCSeqHeader(1L, Request.INVITE);
 | 
 |  |  |       request = sipFactory.createMessageFactory().createRequest(requestLine, Request.INVITE, callIdHeader, cSeqHeader,fromHeader, toHeader, viaHeaders, maxForwards);
 | 
 |  |  |       
 | 
 |  |  |       Address concatAddress = sipFactory.createAddressFactory().createAddress(sipFactory.createAddressFactory().createSipURI(sipConfig.getSipId(), sipConfig.getSipIp()+":"+sipConfig.getSipPort()));
 | 
 |  |  |       // Address concatAddress = sipFactory.createAddressFactory().createAddress(sipFactory.createAddressFactory().createSipURI(sipConfig.getSipId(), device.getHost().getIp()+":"+device.getHost().getPort()));
 | 
 |  |  |       Address concatAddress = sipFactory.createAddressFactory().createAddress(sipFactory.createAddressFactory().createSipURI(sipConfig.getId(), sipConfig.getIp()+":"+sipConfig.getPort()));
 | 
 |  |  |       // Address concatAddress = sipFactory.createAddressFactory().createAddress(sipFactory.createAddressFactory().createSipURI(sipConfig.getId(), device.getHost().getIp()+":"+device.getHost().getPort()));
 | 
 |  |  |       request.addHeader(sipFactory.createHeaderFactory().createContactHeader(concatAddress));
 | 
 |  |  |       // Subject
 | 
 |  |  |       SubjectHeader subjectHeader = sipFactory.createHeaderFactory().createSubjectHeader(String.format("%s:%s,%s:%s", channelId, ssrc, sipConfig.getSipId(), 0));
 | 
 |  |  |       SubjectHeader subjectHeader = sipFactory.createHeaderFactory().createSubjectHeader(String.format("%s:%s,%s:%s", channelId, ssrc, sipConfig.getId(), 0));
 | 
 |  |  |       request.addHeader(subjectHeader);
 | 
 |  |  |       ContentTypeHeader contentTypeHeader = sipFactory.createHeaderFactory().createContentTypeHeader("APPLICATION", "SDP");
 | 
 |  |  |       request.setContent(content, contentTypeHeader);
 | 
 |  |  |       return request;
 | 
 |  |  |    }
 | 
 |  |  |    
 | 
 |  |  |    public Request createPlaybackInviteRequest(Device device, String channelId, String content, String viaTag, String fromTag, String toTag, CallIdHeader callIdHeader) throws ParseException, InvalidArgumentException, PeerUnavailableException {
 | 
 |  |  |    public Request createPlaybackInviteRequest(Device device, String channelId, String content, String viaTag, String fromTag, String toTag, CallIdHeader callIdHeader, String ssrc) throws ParseException, InvalidArgumentException, PeerUnavailableException {
 | 
 |  |  |       Request request = null;
 | 
 |  |  |       //请求行
 | 
 |  |  |       SipURI requestLine = sipFactory.createAddressFactory().createSipURI(device.getDeviceId(), device.getHostAddress());
 | 
 |  |  |       SipURI requestLine = sipFactory.createAddressFactory().createSipURI(channelId, device.getHostAddress());
 | 
 |  |  |       // via
 | 
 |  |  |       ArrayList<ViaHeader> viaHeaders = new ArrayList<ViaHeader>();
 | 
 |  |  |       ViaHeader viaHeader = sipFactory.createHeaderFactory().createViaHeader(device.getIp(), device.getPort(), device.getTransport(), viaTag);
 | 
 |  |  |       ViaHeader viaHeader = sipFactory.createHeaderFactory().createViaHeader(sipConfig.getIp(), sipConfig.getPort(), device.getTransport(), viaTag);
 | 
 |  |  |       viaHeader.setRPort();
 | 
 |  |  |       viaHeaders.add(viaHeader);
 | 
 |  |  |       //from
 | 
 |  |  |       SipURI fromSipURI = sipFactory.createAddressFactory().createSipURI(sipConfig.getSipId(),sipConfig.getSipDomain());
 | 
 |  |  |       SipURI fromSipURI = sipFactory.createAddressFactory().createSipURI(sipConfig.getId(),sipConfig.getDomain());
 | 
 |  |  |       Address fromAddress = sipFactory.createAddressFactory().createAddress(fromSipURI);
 | 
 |  |  |       FromHeader fromHeader = sipFactory.createHeaderFactory().createFromHeader(fromAddress, fromTag); //必须要有标记,否则无法创建会话,无法回应ack
 | 
 |  |  |       //to
 | 
 |  |  |       SipURI toSipURI = sipFactory.createAddressFactory().createSipURI(channelId,sipConfig.getSipDomain());  | 
 |  |  |       SipURI toSipURI = sipFactory.createAddressFactory().createSipURI(channelId, sipConfig.getDomain());
 | 
 |  |  |       Address toAddress = sipFactory.createAddressFactory().createAddress(toSipURI);
 | 
 |  |  |       ToHeader toHeader = sipFactory.createHeaderFactory().createToHeader(toAddress,null);
 | 
 |  |  |       
 | 
 |  |  | 
 |  |  |       CSeqHeader cSeqHeader = sipFactory.createHeaderFactory().createCSeqHeader(1L, Request.INVITE);
 | 
 |  |  |       request = sipFactory.createMessageFactory().createRequest(requestLine, Request.INVITE, callIdHeader, cSeqHeader,fromHeader, toHeader, viaHeaders, maxForwards);
 | 
 |  |  |       
 | 
 |  |  |       Address concatAddress = sipFactory.createAddressFactory().createAddress(sipFactory.createAddressFactory().createSipURI(sipConfig.getSipId(), sipConfig.getSipIp()+":"+sipConfig.getSipPort()));
 | 
 |  |  |       // Address concatAddress = sipFactory.createAddressFactory().createAddress(sipFactory.createAddressFactory().createSipURI(sipConfig.getSipId(), device.getHost().getIp()+":"+device.getHost().getPort()));
 | 
 |  |  |       Address concatAddress = sipFactory.createAddressFactory().createAddress(sipFactory.createAddressFactory().createSipURI(sipConfig.getId(), sipConfig.getIp()+":"+sipConfig.getPort()));
 | 
 |  |  |       // Address concatAddress = sipFactory.createAddressFactory().createAddress(sipFactory.createAddressFactory().createSipURI(sipConfig.getId(), device.getHost().getIp()+":"+device.getHost().getPort()));
 | 
 |  |  |       request.addHeader(sipFactory.createHeaderFactory().createContactHeader(concatAddress));
 | 
 |  |  | 		 | 
 |  |  |       // Subject
 | 
 |  |  |       SubjectHeader subjectHeader = sipFactory.createHeaderFactory().createSubjectHeader(String.format("%s:%s,%s:%s", channelId, ssrc, sipConfig.getId(), 0));
 | 
 |  |  |       request.addHeader(subjectHeader);
 | 
 |  |  | 
 | 
 |  |  |       ContentTypeHeader contentTypeHeader = sipFactory.createHeaderFactory().createContentTypeHeader("APPLICATION", "SDP");
 | 
 |  |  |       request.setContent(content, contentTypeHeader);
 | 
 |  |  |       return request;
 | 
 |  |  |    }
 | 
 |  |  | 
 | 
 |  |  |    public Request createByteRequest(Device device, String channelId, String viaTag, String fromTag, String toTag, String callId) throws ParseException, InvalidArgumentException, PeerUnavailableException {
 | 
 |  |  |       Request request = null;
 | 
 |  |  |       //请求行
 | 
 |  |  |       SipURI requestLine = sipFactory.createAddressFactory().createSipURI(channelId, device.getHostAddress());
 | 
 |  |  |       // via
 | 
 |  |  |       ArrayList<ViaHeader> viaHeaders = new ArrayList<ViaHeader>();
 | 
 |  |  |       ViaHeader viaHeader = sipFactory.createHeaderFactory().createViaHeader(sipConfig.getIp(), sipConfig.getPort(), device.getTransport(), viaTag);
 | 
 |  |  |       viaHeaders.add(viaHeader);
 | 
 |  |  |       //from
 | 
 |  |  |       SipURI fromSipURI = sipFactory.createAddressFactory().createSipURI(sipConfig.getId(),sipConfig.getDomain());
 | 
 |  |  |       Address fromAddress = sipFactory.createAddressFactory().createAddress(fromSipURI);
 | 
 |  |  |       FromHeader fromHeader = sipFactory.createHeaderFactory().createFromHeader(fromAddress, fromTag); //必须要有标记,否则无法创建会话,无法回应ack
 | 
 |  |  |       //to
 | 
 |  |  |       SipURI toSipURI = sipFactory.createAddressFactory().createSipURI(channelId,sipConfig.getDomain());
 | 
 |  |  |       Address toAddress = sipFactory.createAddressFactory().createAddress(toSipURI);
 | 
 |  |  |       ToHeader toHeader = sipFactory.createHeaderFactory().createToHeader(toAddress,toTag);
 | 
 |  |  | 
 | 
 |  |  |       //Forwards
 | 
 |  |  |       MaxForwardsHeader maxForwards = sipFactory.createHeaderFactory().createMaxForwardsHeader(70);
 | 
 |  |  | 
 | 
 |  |  |       //ceq
 | 
 |  |  |       CSeqHeader cSeqHeader = sipFactory.createHeaderFactory().createCSeqHeader(1L, Request.BYE);
 | 
 |  |  |       CallIdHeader callIdHeader = sipFactory.createHeaderFactory().createCallIdHeader(callId);
 | 
 |  |  |       request = sipFactory.createMessageFactory().createRequest(requestLine, Request.BYE, callIdHeader, cSeqHeader,fromHeader, toHeader, viaHeaders, maxForwards);
 | 
 |  |  | 
 | 
 |  |  |       Address concatAddress = sipFactory.createAddressFactory().createAddress(sipFactory.createAddressFactory().createSipURI(sipConfig.getId(), sipConfig.getIp()+":"+sipConfig.getPort()));
 | 
 |  |  | 
 | 
 |  |  |       return request;
 | 
 |  |  |    }
 | 
 |  |  | 
 | 
 |  |  | 
 |  |  |       SipURI requestURI = sipFactory.createAddressFactory().createSipURI(device.getDeviceId(), device.getHostAddress());
 | 
 |  |  |       // via
 | 
 |  |  |       ArrayList<ViaHeader> viaHeaders = new ArrayList<ViaHeader>();
 | 
 |  |  |       ViaHeader viaHeader = sipFactory.createHeaderFactory().createViaHeader(sipConfig.getSipIp(), sipConfig.getSipPort(),
 | 
 |  |  |       ViaHeader viaHeader = sipFactory.createHeaderFactory().createViaHeader(sipConfig.getIp(), sipConfig.getPort(),
 | 
 |  |  |             device.getTransport(), viaTag);
 | 
 |  |  |       viaHeader.setRPort();
 | 
 |  |  |       viaHeaders.add(viaHeader);
 | 
 |  |  |       // from
 | 
 |  |  |       SipURI fromSipURI = sipFactory.createAddressFactory().createSipURI(sipConfig.getSipId(),
 | 
 |  |  |             sipConfig.getSipIp() + ":" + sipConfig.getSipPort());
 | 
 |  |  |       SipURI fromSipURI = sipFactory.createAddressFactory().createSipURI(sipConfig.getId(),
 | 
 |  |  |             sipConfig.getIp() + ":" + sipConfig.getPort());
 | 
 |  |  |       Address fromAddress = sipFactory.createAddressFactory().createAddress(fromSipURI);
 | 
 |  |  |       FromHeader fromHeader = sipFactory.createHeaderFactory().createFromHeader(fromAddress, fromTag);
 | 
 |  |  |       // to
 | 
 |  |  |       SipURI toSipURI = sipFactory.createAddressFactory().createSipURI(device.getDeviceId(), sipConfig.getSipDomain());
 | 
 |  |  |       SipURI toSipURI = sipFactory.createAddressFactory().createSipURI(device.getDeviceId(), sipConfig.getDomain());
 | 
 |  |  |       Address toAddress = sipFactory.createAddressFactory().createAddress(toSipURI);
 | 
 |  |  |       ToHeader toHeader = sipFactory.createHeaderFactory().createToHeader(toAddress, toTag);
 | 
 |  |  | 
 | 
 |  |  | 
 |  |  |             toHeader, viaHeaders, maxForwards);
 | 
 |  |  | 
 | 
 |  |  | 
 | 
 |  |  |       Address concatAddress = sipFactory.createAddressFactory().createAddress(sipFactory.createAddressFactory().createSipURI(sipConfig.getSipId(), sipConfig.getSipIp()+":"+sipConfig.getSipPort()));
 | 
 |  |  |       Address concatAddress = sipFactory.createAddressFactory().createAddress(sipFactory.createAddressFactory().createSipURI(sipConfig.getId(), sipConfig.getIp()+":"+sipConfig.getPort()));
 | 
 |  |  |       request.addHeader(sipFactory.createHeaderFactory().createContactHeader(concatAddress));
 | 
 |  |  | 
 | 
 |  |  |       // Expires
 |