This site is only an experiment. If you want to visit www.daniweb.com - go there instead
DaniWeb IT Discussion Community http://www.daniweb.com/forums Tech support, programming, web development, and internet marketing community. Forums to get free computer help and support. en-US Thu, 09 Apr 2009 00:59:59 GMT vBulletin 60 http://www.daniweb.com/forums/myimages/misc/rss.jpg DaniWeb IT Discussion Community http://www.daniweb.com/forums hellow have a nice day http://www.daniweb.com/forums/thread185873.html Thu, 09 Apr 2009 00:46:19 GMT Dear Friends: Want to setup VoIP company, a business under your own brand name? We have complete solution to launche VoIP (Voice Over Internet Protocol) company. All support comes included. Features: PC2Phone, Device2Phone, Calling Card, Callback,sms callback solution, Ani Callback solution, DID... Dear Friends:

Want to setup VoIP company, a business under your own brand name? We have complete solution to launche VoIP (Voice Over Internet Protocol) company. All support comes included.
Features: PC2Phone, Device2Phone, Calling Card, Callback,sms callback solution, Ani Callback solution, DID callback solution, Cli Callback, Pin Callback, Wholesale Termination, Online Billing, Unlimited Resellers Creating, online shop, invoice generator, paypal integrated online shop, pin recharge modules, H323 and SIP.
No ties to us, deal with the wholesalers you want and buy VoIP minutes from any one in the market without any expensive equipment.

System

Single platform solution
Rapid Service Rollout
Pre-configured templates
Scalability - phased investment
Quick, flexible reporting
Open database architecture allowing for extended reporting functions and use of external scripts

Switching

Carrier-grade softswitch
Gatekeeper, registrar and proxy functionality
SIP and H323 protocol support
Protocols transparent conversion
Network protection capabilities
Advanced routing
Single entry point into VoIP infrastructure
Flexible proxy methods

Billing

Various authentication methods
Prepaid/postpaid accounts
Robust engine
Fully integration with the softswitch
Cooperation with MySQL or MSSQL

Management interface

Real-time traffic and system's performance monitor
Windows graphical interface
Web-based interface

Web interface for endusers

Customizable customer self care web interface
Admin section with embedded html editors
Ready to use design templates
CDRs, payments, invoices, address book, user's profile and others/
Sending SMS, web callback

IP IVR

Customizable IVR scenarios (XML)
Ready to use templates
Caller ID recognition
One or two stage calling procedures
Support for DIDs as access numbers

Softphone

Based on SIP protocol
Proprietary VOIP tunnel technology - making/receieving calls even behind voip blockades
Fully integration with the web interface
Quick access to voicemail
Sending SMS

Callback

Authentication by callerID or PIN
Various methods of realizing callback
Support for DIDs as callback service numbers
SMS and Web triggered callback
Embedded IVR system

Resellers system (VSR)

Multilevel structure
Web-based comprehensive interface
Support for multi-currency
Customizable web interface for end-users
Integration with the E-Shop

Callshop

Real-time monitoring and billing
Booths visualisation
Standalone and web based versions invoicing

E-Shop

Various payments processors
Credit cards, paypal, moneybookers
Automatic sign-up procedure
Recharge, also by vouchers/PINs
Basket for selling products online

SMS module

Support for http methods
Extended routing plan with support for multiple SMS providers
Integrated with the softphone and the end-users web interface
Support for wholesale SMS traffic

Capacity

Average result 1000 conncurent calls (full proxy) on one server (Dual Xeon CPU 2GB RAM*). For higher traffic recommended is cluster configuration with two or three servers with voipswitch software running on seperate servers and connected to one, shared SQL database installed on a dedicated server. Web services running on a backup SQL server set in replication mode so that the load from web requests (for example browsing CDRs, statistics) does not affect the performance of the main SQL server.

* tested and certified for SIP interoperatibility with Level3 (US based tier one carrier)

Scalability
Phased implementation of new services by enabling additional modules.

Operating system
Windows 2000, XP pro, Windows 2003 (both standard and web editions)

Hardware requirements
Recommended are servers based on Intel Xeon processors

dual core or quad core, in configuration of single or dual CPU,
RAM minimum 1GB,
HDD 100 GB or more

-------- Valid Link to check Before buy -----------------

VSC Panel for Administrator :
http://www.voipswitchdemo.com/vsc/admin/index.aspx

VSR or Reseller Panel :
http://www.voipswitchdemo.com/vsr

Portal for End User :
http://www.voipswitchdemo.com/portal/main.aspx

VSPortal ( Flashed Based ) For End User :
http://www.voipswitchdemo.com/vsportal

WTP ( WholeSale Trading Platform ) :
htp://www.voipswitchdemo.com/wtp

-------- Valid Link to check Before buy -----------------


------ Customized Billing for VoipSwitch ------------------

Free Billing with Rental Solution :
1. http://www.voipswitchdemo.com/Billing1

Charge Billing :
2. http://www.voipswitchdemo.com/Billing2

Charge Billing :
3. http://www.voipswitchdemo.com/Billing3

Charge Billing :
4. http://www.voipswitchdemo.com/Billing4

------ Customized Billing for VoipSwitch ------------------



Contact us if you are interested.

Thank you,
Solution4 VOIP (.) com

Phone : +16145284716
FAX : +19732702493
: +12169204385
Sales / MSN : Sales@Solution4VoIP.com
Support / MSN : Support@Solution4VoIP.com
Billing : Billing@Solution4VoIP.com
WebSite : www.solution4voip.com
WebSite : www.solution4voip.biz ]]>
Show Off your Projects jahon http://www.daniweb.com/forums/thread185873.html
x86 with nasm reading from file http://www.daniweb.com/forums/thread185872.html Thu, 09 Apr 2009 00:11:17 GMT org 100h section.text openfile: mov dx,sendfile mov al,0h mov ah,03dh int 21h mov bx,ax
org 100h
section.text

openfile:
        mov dx,sendfile
        mov al,0h
        mov ah,03dh
        int 21h
        mov bx,ax
        mov [filehandle],bx

filelength:
        mov ah,042h
        mov cx,0h
        mov dx,0h
        mov al,002h
        mov bx,[filehandle]
        int 21h
       
        shr ax,7
        shl dx,9
        or ax,dx
        mov bx,ax
        mov [filediv128],bx
 
        mov dl, bh
        mov ah, 02h
        int 21h
        mov dl, bl
        mov ah, 02h
        int 21h
     
        mov bx,[filediv128]
        mov cx,bx

loopread:
        push cx
        mov cx, 080h
        mov bx,[readin]
        mov dx,bx
        mov bx,[filehandle]
        mov ah,03fh
        int 21h
       


       
      ; mov cx,80h
        mov bx,24h
        mov [readin +129],bx
       

prints:
        mov ah,09h
        mov bx,[readin]
        mov dx,bx
        int 21h

       


endit:
        mov ah, 00h
        int 21h

section .data
        sendfile: db "C:\shit\file.txt",0h


section .bss
        filehandle: resb 2
        filediv128: resb 2
        readin: resb 129

we are trying to read in 129 bytes to a buffer (readin) and print it to the screen but it is completely not working can anyone please help ]]>
Assembly bobrien314 http://www.daniweb.com/forums/thread185872.html
EveryThing you Need To Run your voip/pc2phone/callBack/callshop/calling card Bus http://www.daniweb.com/forums/thread185871.html Thu, 09 Apr 2009 00:07:43 GMT Dear Friends: Want to setup VoIP company, a business under your own brand name? We have complete solution to launche VoIP (Voice Over Internet Protocol) company. All support comes included. Features: PC2Phone, Device2Phone, Calling Card, Callback,sms callback solution, Ani Callback solution, DID... Dear Friends:

Want to setup VoIP company, a business under your own brand name? We have complete solution to launche VoIP (Voice Over Internet Protocol) company. All support comes included.

Features: PC2Phone, Device2Phone, Calling Card, Callback,sms callback solution, Ani Callback solution, DID callback solution, Cli Callback, Pin Callback, Wholesale Termination, Online Billing, Unlimited Resellers Creating, online shop, invoice generator, paypal integrated online shop, pin recharge modules, H323 and SIP.

No ties to us, deal with the wholesalers you want and buy VoIP minutes from any one in the market without any expensive equipment.

System

Single platform solution

Rapid Service Rollout

Pre-configured templates

Scalability - phased investment

Quick, flexible reporting

Open database architecture allowing for extended reporting functions and use of external scripts

Switching

Carrier-grade softswitch

Gatekeeper, registrar and proxy functionality

SIP and H323 protocol support

Protocols transparent conversion

Network protection capabilities

Advanced routing

Single entry point into VoIP infrastructure

Flexible proxy methods

Billing

Various authentication methods

Prepaid/postpaid accounts

Robust engine

Fully integration with the softswitch

Cooperation with MySQL or MSSQL

Management interface

Real-time traffic and system's performance monitor

Windows graphical interface

Web-based interface

Web interface for endusers

Customizable customer self care web interface

Admin section with embedded html editors

Ready to use design templates

CDRs, payments, invoices, address book, user's profile and others/

Sending SMS, web callback

IP IVR

Customizable IVR scenarios (XML)

Ready to use templates

Caller ID recognition

One or two stage calling procedures

Support for DIDs as access numbers

Softphone

Based on SIP protocol

Proprietary VOIP tunnel technology - making/receieving calls even behind voip blockades

Fully integration with the web interface

Quick access to voicemail

Sending SMS

Callback

Authentication by callerID or PIN

Various methods of realizing callback

Support for DIDs as callback service numbers

SMS and Web triggered callback

Embedded IVR system

Resellers system (VSR)

Multilevel structure

Web-based comprehensive interface

Support for multi-currency

Customizable web interface for end-users

Integration with the E-Shop

Callshop

Real-time monitoring and billing

Booths visualisation

Standalone and web based versions invoicing

E-Shop

Various payments processors

Credit cards, paypal, moneybookers

Automatic sign-up procedure

Recharge, also by vouchers/PINs

Basket for selling products online

SMS module

Support for http methods

Extended routing plan with support for multiple SMS providers

Integrated with the softphone and the end-users web interface

Support for wholesale SMS traffic

[b] ( WTP ( WholeSale Trading Platform ) :



Capacity

Average result 1000 conncurent calls (full proxy) on one server (Dual Xeon CPU 2GB RAM*). For higher traffic recommended is cluster configuration with two or three servers with voipswitch software running on seperate servers and connected to one, shared SQL database installed on a dedicated server. Web services running on a backup SQL server set in replication mode so that the load from web requests (for example browsing CDRs, statistics) does not affect the performance of the main SQL server.

* tested and certified for SIP interoperatibility with Level3 (US based tier one carrier)

Scalability

Phased implementation of new services by enabling additional modules.

Operating system

Windows 2000, XP pro, Windows 2003 (both standard and web editions)

Hardware requirements

Recommended are servers based on Intel Xeon processors

dual core or quad core, in configuration of single or dual CPU,

RAM minimum 1GB,





[b]

Contact us if you are interested.

Thank you,

Solution4 VOIP (.) com



Phone : +12169204393
: +12169204385 ]]>
Java solution4voip78 http://www.daniweb.com/forums/thread185871.html
One method for stack of either Integer or Double parameters http://www.daniweb.com/forums/thread185870.html Thu, 09 Apr 2009 00:01:30 GMT Hi All, I am just learning Java and there is a concept that I cannot grasp. I am writing a simple exercise program that works with stacks. I have a sum method for two different types - Integer and Double. They both have the same logic, so it seems redundant to do it this way. I thought it would be... Hi All,

I am just learning Java and there is a concept that I cannot grasp. I am writing a simple exercise program that works with stacks. I have a sum method for two different types - Integer and Double. They both have the same logic, so it seems redundant to do it this way. I thought it would be possible to write one method that takes either type. So I have read about generics and still cannot figure out a solution. Is it at all possible?

Here are my add methods:
  // Return the sum of the stack
  public static Integer sum (Stack<Integer> stack) {
    Integer sum = 0, current;
    Stack<Integer> temp = new Stack<Integer>();
   
    // calculate the sum
    while (!stack.empty() ) {
      current = stack.pop();
      sum = sum + current;
      temp.push(current);
    }
   
    // rebuild the stack
    while (!temp.empty()) {
      stack.push(temp.pop());
    }
   
    return sum;
  }
 
  // Return the sum of the stack
  public static Double sum (Stack<Double> stack) {
    Double sum = 0.0, current;
    Stack<Double> temp = new Stack<Double>();
   
    // calculate the sum
    while (!stack.empty() ) {
      current = stack.pop();
      sum = sum + current;
      temp.push(current);
    }
   
    // rebuild the stack
    while (!temp.empty()) {
      stack.push(temp.pop());
    }
   
    return sum;
  }
]]>
Java osjak http://www.daniweb.com/forums/thread185870.html
Monitor comes on but has only colors flashing and checker board disign http://www.daniweb.com/forums/thread185869.html Wed, 08 Apr 2009 23:53:04 GMT This computer is an E Machine 600. Cant get the monitor to work right.It turns on but is full of colors and flashes. I tried another monitor with the same results.Any help would be appreciated. This computer is an E Machine 600. Cant get the monitor to work right.It turns on but is full of colors and flashes. I tried another monitor with the same results.Any help would be appreciated. ]]> Monitors, Displays and Video Cards badsiss2 http://www.daniweb.com/forums/thread185869.html Clean-up Perl Scripts HTML Output http://www.daniweb.com/forums/thread185868.html Wed, 08 Apr 2009 23:48:49 GMT Can some suggest a good way to cleanup the HTML that is output when a perl script is run using the CGI module?

I tried to install HTML::Tidy, but couldn't as i was missing libtidy.
And I don't want to go through 700 lines of code and putting up loads of '\n' here and there! ]]>
Perl sid78669 http://www.daniweb.com/forums/thread185868.html
Open tar.gz files in Access using VB Code http://www.daniweb.com/forums/thread185863.html Wed, 08 Apr 2009 22:49:07 GMT Hey all, I am having an issue opening .tar.gz files inside of access. I am using VB code. My goal is to unzip this file which has multiple excel files inside of it. I will be pulling numbers off of multiple Excel files inside not just one. These Excel files have tabs, so I am going to have to... Hey all,

I am having an issue opening .tar.gz files inside of access. I am using VB code. My goal is to unzip this file which has multiple excel files inside of it. I will be pulling numbers off of multiple Excel files inside not just one. These Excel files have tabs, so I am going to have to open the correct tab as well and then take the value from the call and place it into a more useful format. I am thinking a bunch of text boxes. As I will then need to manually add them to different excel files. I will automate that process after I do the first part. Baby Steps here.

Now the advice I received from one of my co-workers already is to use the winzip command line program. I will look into this a bit more and will post again to this thread after I see what I can do with that. Thanks in advance for any and all help on this is very much appreciated. ]]>
Visual Basic 4 / 5 / 6 amccaul1976 http://www.daniweb.com/forums/thread185863.html
Creating an Object in Project1 from a Class in Project2 http://www.daniweb.com/forums/thread185862.html Wed, 08 Apr 2009 22:48:38 GMT Have 2 Projects in my Properties Window. How do you

1) Have a Subroutine from Project1 Call a Subroutine in Project2. I get an "Object required" error message. Do not really have a need for this, just wonder if it can be accomplished.

2) Code in Project1 instantiates an object from a Class in Project2. I get "User-Defined Type not Defined". I downloaded some code that did this, and now that I am writing some code based on the download, I can not get it to work in the most simple of examples.
Dim oTest as Project2.Class1
Set oTest = New Project2.Class1

Unrelated questions

3) Can I set up my Search to default to "Visual Basic 6" or "VB6 Newbies" if I just want to search inside of these message groupings? ]]>
Visual Basic 4 / 5 / 6 TheBrenda http://www.daniweb.com/forums/thread185862.html
search http://www.daniweb.com/forums/thread185858.html Wed, 08 Apr 2009 22:21:55 GMT In this daniweb site, is there a way to search for a particular item. Example: I want to see what a solution may be for ssolving temperature? If so, how do I search all the threads for that. Just curious! In this daniweb site, is there a way to search for a particular item. Example: I want to see what a solution may be for ssolving temperature? If so, how do I search all the threads for that. Just curious! ]]> DaniWeb Community Feedback greg022549 http://www.daniweb.com/forums/thread185858.html while loop!!!! dont know how to do it??? http://www.daniweb.com/forums/thread185857.html Wed, 08 Apr 2009 22:07:55 GMT i am stuk on this and have a[solutly no idea in how to create the while loop!!!

could someone please show me how to do this???

Write a Java application that calculates the number of repayments for a loan based on the initial loan amount, annual interest rate and monthly payment. The user enters these values and application uses a loop to display the balance each month after payment has been made. Note that interest is charged each month on the remaining balance.

For this exercise, you need to use a while loop that repeats as long as the balance is greater than zero to calculate the new balance with interest after each payment. The body of the loop calculates the new balance plus monthly interest (monthly interest = annual interest rate / 12) and then subtracts the payment. Note that it may be possible for the last payment to be less than the usual monthly payment. In this case you need to take this into account by only subtracting the amount necessary to clear the outstanding balance and not the full monthly payment.

Below is an example of how a user would interact with the application, use this as a guide when designing the input and output of your application. ]]>
Java king_786 http://www.daniweb.com/forums/thread185857.html
Returning Strings from functions http://www.daniweb.com/forums/thread185856.html Wed, 08 Apr 2009 21:16:29 GMT
...]]> Aelphaeis here with another little problem.

In the Code below I attempted to make a generic function which read a line up to a newline character and then returned the string. The program reads as follows

#include <stdlib.h>
#include <stdio.h>
#include <strings.h>

int getstring(char *string,int max);

int main(int argc,char * argv [])
{
    char name[15];
    name[0] = 'A';
    while (stricmp(name,"exit")!= 0)
    {
          getstring(name,15);
          printf("%s\n",name);
    }
    system("pause");
}

int getstring(char *string,int max)
{
    for (int num = 0;num != max;num++)
    {
        string[num] = getchar();
        if (string[num]=='\n')
        {
            string[num] = '\0';
            return num;
        }
    }
}

Now if you looking at this you might ask yourself
"So whats the point of returning your string, the fact is you don't need to return it because a character array is really a pointer which points to a place in memory and what you've effectively done in this program is manipulate the actually data which the pointer is pointing to..."
However if I wanted to past the actually data that the pointer contains how would I go about doing that?

In other words I want to make a gets() function which returns the actual data read from the screen.

with this in mind it would be used in the context
char string[15];
string = getstring(15);

Of course, its not really necessary but it would be a neat trick to use. Anyone have any ideas?
]]> C Aelphaeis http://www.daniweb.com/forums/thread185856.html HTML::TreeBuilder Module not working as expected http://www.daniweb.com/forums/thread185855.html Wed, 08 Apr 2009 21:15:13 GMT Hello everyone, This question is in regards to the HTML::TreeBuilder module in perl. I am using it to extract meta tags from website contents. It was working fine until i tried to extract meta tags from http://www.audicanada.ca/audi/ca/language_selector.html This site contains all the meta tags... Hello everyone,

This question is in regards to the HTML::TreeBuilder module in perl. I am using it to extract meta tags from website contents. It was working fine until i tried to extract meta tags from http://www.audicanada.ca/audi/ca/language_selector.html

This site contains all the meta tags that i need, author, keywords, description. But the writer forgot to use newline once in a while and has the whole data in the Head tag in one single line.

Now I am unable to get the tag by using:

 for my $tag ($htmlData->look_down(_tag => "meta")) {                          
                    $document{lc($tag->attr("name"))} = $tag->attr("content");
                                }

Now I have a feeling that i missed something in the loop, but haven't been able to figure it out, so think a fresh pair of eyes might find what i must be missing.

Also, 'document' is a hash variable.

Thanks in advance!

Sid
]]> Perl sid78669 http://www.daniweb.com/forums/thread185855.html
Dice rolls bar graph http://www.daniweb.com/forums/thread185854.html Wed, 08 Apr 2009 21:00:36 GMT Hi.
I'm working on a program that rolls 2 dice a number of times and displays the number of rolls per combination. It also displays this in a bar graph that shows the percentage of times that each combination got rolled. I've gotten to the point where it rolls the dice and gets the values for each combination. But I can't get it to find the average for each combination.
Any help is appreciated :)

import java.awt.*;
import hsa.Console;

public class idice
{
    static Console i;

    public static void main (String[] args)
    {
        i = new Console ();
        int die1, die2, ctr = 0, ctr2 = 2, roll, total = 0, num = 190;
        int[] array1 = new int [13];
        int avg;

        i.println ("Enter the number of rolls.");
        roll = i.readInt ();

        for (ctr = 0 ; ctr < 11 ; ctr++)
        {
            array1 [ctr] = 0;
        }

        for (ctr = 0 ; ctr < roll ; ctr++)
        {
            die1 = (int) (Math.random () * 6) + 1;
            die2 = (int) (Math.random () * 6) + 1;
            //i.println ("dice 1: " + die1 + " dice 2: " + die2 + "");
            total = die1 + die2;
            array1 [total] += 3;
        }

        for (ctr = 2 ; ctr < 13 ; ctr++)
        {
            i.println ("# of " + ctr + "= " + (array1 [ctr2] / 3));
            ctr2++;
        }

        for (ctr = 2, avg = 0 ; num <= 540 ; ctr++)
        {
            avg = (array1 [ctr] / roll) * 100;
            i.println ("avg: " + avg + "");
            i.fillRect (num, (450 - array1 [ctr]), 23, avg);
            num = num + 35;
        }

        i.drawString ("100 ---", 155, 153); //153
        i.drawString ("90 ---", 160, 183);
        i.drawString ("88 ---", 160, 213);
        i.drawString ("70 ---", 160, 243);
        i.drawString ("60 ---", 160, 273);
        i.drawString ("50 ---", 160, 303);
        i.drawString ("40 ---", 160, 333);
        i.drawString ("30 ---", 160, 363);
        i.drawString ("20 ---", 160, 393);
        i.drawString ("10 ---", 160, 423);
        i.drawString ("0 ---", 160, 453);
        i.drawString ("  2          3        4          5        6          7          8          9        10        11        12", 190, 465);
        i.drawString ("SUM OF ROLL(S)", 330, 490);
        i.drawString ("DICE ROLL(S)", 330, 170);
        i.drawLine (180, 150, 180, 450); //y-axis
        i.drawLine (180, 450, 562, 450); //x-axis
    }
}
]]>
Java Utter_iMADNESS http://www.daniweb.com/forums/thread185854.html
Need help with Booleans http://www.daniweb.com/forums/thread185853.html Wed, 08 Apr 2009 20:39:20 GMT
]]> Python skhan23 http://www.daniweb.com/forums/thread185853.html <![CDATA[It doesn't accept my href, please help!]]> http://www.daniweb.com/forums/thread185852.html Wed, 08 Apr 2009 20:30:11 GMT '. ...]]> Hi everyone!
I'm getting this error all the time:
Parse error: parse error, expecting `','' or `';'' in...

I know that the problem is the href line, but since this is the first time I'm writing this kind of thing I can't write it correctly.
This is the code that causes trouble:
echo '<tr>'.
          '<td>'.$row['title'].'</td>'.'<td>'.$row['category'].'</td>'.'<td>'.$row['year'].'</td>'.
          '<td>'.'<font size="2"><a href=\"delete.php?id=".$row['autoid']."\" >delete</a></font>'.'</td>'.
          '</tr>';
Could someone please tell me how to write it correctly?
Thanks in advance!
]]> PHP totalnoob http://www.daniweb.com/forums/thread185852.html
garden Znaczenie Imion przedszkola efekt jojo pracownicy tymczasowi sprawdź stronę w systemie SEO Tools wymiana linkami system wymiany linków wymiana linkami