bonjour
J'ai récupérer un code existant pour créer un client SIP en JAVA.
Le code existant est mjsip : http://www.mjsip.org/index.html

J'ai intégrer ce code au mien pour créer mon client. J'arrive a me connecter au serveur SIP (asterisk) et a dialoguer.
Voici mon probleme :
Je veux créer plusieurs client sur un meme poste (pour avoir plusieur communication sumultanées). Le probleme c'est qu'une fois ma premier connection innitialiser, la second ne peu plus l'etre (il y a une reservation de l'audio ou qqch comme ca).
J'ai d'ailleur essayer de lancer plusieur client avec mjsip (cf lien), le résultat est le meme : impossible d'initialiser le second client.

voici l'endroit ou d'après moi il y a une réservation (mais que je n'arrive pas a corriger) :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
/*
 
 * Copyright (C) 2005 Luca Veltri - University of Parma - Italy
 
 * Author(s):
 
 * Luca Veltri (luca.veltri@unipr.it)
 
 */
 
 
 
import java.io.OutputStream;
 
 
 
import javax.sound.sampled.AudioFormat;
 
import javax.sound.sampled.AudioSystem;
 
import javax.sound.sampled.DataLine;
 
import javax.sound.sampled.Line;
 
import javax.sound.sampled.LineUnavailableException;
 
import javax.sound.sampled.Mixer;
 
import javax.sound.sampled.SourceDataLine;
 
import javax.sound.sampled.Mixer.Info;
 
 
 
/** AudioOutput allows the access of system audio output in pure-java manner.
 
  * It uses the javax.sound library (package).
 
  */
 
public class AudioOutput
 
{
 
 
 
 
 
   // ####################### BEGIN STATIC #######################
 
 
 
   static boolean DEBUG=true;
 
 
 
   static final int INTERNAL_BUFFER_SIZE=40960;
 
 
 
   private static SourceDataLine source_line = null;
 
//   private static SourceDataLine source_line2 = null;
 
 
 
   static Mixer mixer;
 
 
 
   private static AudioFormat format;
 
 
 
   /** Init the static system audio output line */
 
   public static boolean initAudioLine(int soundCardNumber) {
 
	   if (source_line != null) {
 
		   println("init : source_line != null");
 
//		   source_line.stop();
 
//		   closeAudioLine();
 
		   soundCardNumber = 0;
 
	   }
 
 
 
	   Info[] aInfos=AudioSystem.getMixerInfo();
 
	   mixer = AudioSystem.getMixer(aInfos[soundCardNumber]);
 
 
 
	   for(int i = 0;i<aInfos.length;i++) {
 
		   println("Valeur carte audio : ("+i+") "+aInfos[i]);
 
	   }
 
 
 
//	   for(javax.sound.sampled.Line.Info i :  mixer.getSourceLineInfo()) {
 
//		   println("liste info : "+i);
 
//	   }
 
 
 
 
 
	    	  // by default use 8000 Hz, ULAW, 8bit, Mono
 
	         float fFrameRate=8000.0F;
 
	         format=new AudioFormat(AudioFormat.Encoding.PCM_SIGNED, fFrameRate, 16, 1, 2, fFrameRate, false);
 
 
 
	      DataLine.Info lineInfo=new DataLine.Info(SourceDataLine.class, format, INTERNAL_BUFFER_SIZE);
 
//      DataLine.Info lineInfo2=new DataLine.Info(SourceDataLine.class, format, INTERNAL_BUFFER_SIZE);
 
 
 
      if (!mixer.isLineSupported(lineInfo)) {
 
    	  System.err.println("ERROR: AudioLine not supported by this System.");
 
      }
 
//      if (!mixer.isLineSupported(lineInfo2)) {
 
//    	  System.err.println("ERROR: AudioLine not supported by this System.");
 
//      }
 
 
 
	   println("getMaxLines : "+mixer.getMaxLines(lineInfo));
 
 
 
 
 
 	  try {
 
 		  if (source_line == null) {
 
 			  source_line=(SourceDataLine)mixer.getLine(lineInfo);
 
 			  source_line.open(format,INTERNAL_BUFFER_SIZE);
 
// 		  } else if (source_line2 == null) {
 
// 			  source_line2=(SourceDataLine)mixer.getLine(lineInfo);
 
// 			  source_line2.open(format,INTERNAL_BUFFER_SIZE);
 
 		  }
 
	} catch (LineUnavailableException e1) {
 
		// TODO Auto-generated catch block
 
		e1.printStackTrace();
 
	}
 
 
 
 
 
//	 try {
 
//		source_line2=(SourceDataLine)mixer.getLine(lineInfo);
 
//        source_line2.open(format,INTERNAL_BUFFER_SIZE);
 
//	} catch (LineUnavailableException e) {
 
//		// TODO Auto-generated catch block
 
//		e.printStackTrace();
 
//	}
 
 
 
     if (DEBUG) {
 
    	 System.err.println("SourceDataLine: "+source_line);
 
    	 System.err.println("#####  nombre de source line : "+mixer.getSourceLines().length+" ######");
 
     }         
 
     return true;
 
 
 
 
 
 
 
 
 
 
 
   }          
 
 
 
   /** Closes the static system audio output line. */
 
   static public void closeAudioLine() {  
 
	   source_line.close(); 
 
//	   source_line2.close();
 
   }
 
 
 
 
 
   // ######################## END STATIC ########################
 
 
 
 
 
   AudioOutputStream audio_output_stream=null;
 
//   AudioOutputStream audio_output_stream2=null;
 
 
 
 
 
   public AudioOutput() {  
 
	   println("AudioOutput");
 
	   if (source_line==null)  {
 
	   println("AudioOutput::source line = null");
 
	   } else {
 
		   println("AudioOutput::source line != null");
 
	   }
 
	   init(null);
 
   }          
 
 
 
   /** Constructs an AudioOutput */
 
   public AudioOutput(AudioFormat audio_format) {  
 
	   init(audio_format);
 
   }          
 
 
 
   /** Inits an AudioOutput */
 
   private void init(AudioFormat format) {
 
//      if (source_line==null) {    	
 
    	  System.err.println ("AudioOutput : init" );
 
    	  initAudioLine(0);   
 
//      }
 
 
 
      if (format==null) {  
 
    	  // by default use 8000 Hz, ULAW, 8bit, Mono
 
         float fFrameRate=8000.0F;
 
         format=new AudioFormat(AudioFormat.Encoding.ULAW, fFrameRate, 16, 1, 1, fFrameRate, false);
 
//      } else {
 
//          float fFrameRate=8000.0F;
 
//        //  format=new AudioFormat(AudioFormat.Encoding.ULAW, fFrameRate, 8, 1, 1, fFrameRate, false);
 
//          format=new AudioFormat(AudioFormat.Encoding.PCM_SIGNED, fFrameRate, 16, 1, 2, fFrameRate, false);
 
      }
 
 
 
      if (source_line.isOpen()){  
 
    	  // convert the audio stream to the selected format
 
         try {  
 
        	 audio_output_stream=new AudioOutputStream(source_line,format);
 
         }
 
         catch (Exception e) {  
 
        	 e.printStackTrace();
 
         }
 
      }
 
      else {  
 
    	  System.err.print("WARNING: Audio init error: source line is not open.");
 
      }
 
//      if (source_line.isOpen()){  
 
//    	  // convert the audio stream to the selected format
 
//         try {  
 
//        	 audio_output_stream2=new AudioOutputStream(source_line2,format);
 
//         }
 
//         catch (Exception e) {  
 
//        	 e.printStackTrace();
 
//         }
 
//      }
 
 
 
   } 
 
 
 
 
 
   /** Gets the audio OuputStream */
 
   public OutputStream getOuputStream() {  
 
	   println("getOuputStream()");
 
//	   return output_stream;
 
      return audio_output_stream;
 
   }
 
 
 
 
 
   /** Starts playing */
 
   public void play(){  
 
	  if (source_line.isOpen()) {
 
		  source_line.start();
 
	  }
 
      else{  
 
    	  System.err.print("WARNING: Audio play error: source line is not open.");
 
      }
 
 
 
//	  if (source_line2.isOpen()) {
 
//		  source_line2.start();
 
//	  }
 
 
 
   }
 
 
 
 
 
   /** Stops playing */
 
   public void stop(){  
 
	  if (source_line.isOpen()) {  
 
		  source_line.drain();
 
         source_line.stop();
 
      }
 
      else {  
 
    	  System.err.print("WARNING: Audio stop error: source line is not open.");
 
      }
 
//      //source_line.close();
 
 
 
//	  if (source_line2.isOpen()) {  
 
//		  source_line2.drain();
 
//         source_line2.stop();
 
//      }
 
   }
 
 
 
 
 
   /** Debug output */
 
   private static void println(String str) {  
 
	   System.err.println("AudioOutput: "+str);
 
   }
 
 
 
   /** Debug output */
 
   private static void print(String str) {  
 
	   System.err.print("AudioOutput: "+str);
 
   }
 
 
 
 
 
}
c'est donc la classe AudioOutput dans mjsip.

si vous savez comment corriger ce probleme ...

MERCI