Hi paulsc,
There isn't any problem with the C++ Rest SDK here. The problem is you are trying to use some combination of both the vector::at and operator[]. You need to choose one. Either do splitpath[0] OR splitpath.at(0). Also not sure if you are aware but std::vector is indexed starting at zero, not one.
Steve
There isn't any problem with the C++ Rest SDK here. The problem is you are trying to use some combination of both the vector::at and operator[]. You need to choose one. Either do splitpath[0] OR splitpath.at(0). Also not sure if you are aware but std::vector is indexed starting at zero, not one.
Steve